/* ── COMPONENTS — Nav, Buttons, Footer ── */

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 150, 90, 0.15);
  transition: all 0.4s ease;
}

nav.scrolled {
  padding: 1rem 4rem;
  box-shadow: 0 4px 30px rgba(44, 40, 37, 0.08);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--charcoal);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-logo span {
  font-style: italic;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.1s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.1s ease;
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 0;
  letter-spacing: 0.2em !important;
  font-size: 0.73rem !important;
  transition: background 0.1s ease !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 1rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.35s, transform 0.25s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(253, 250, 245, 0.5);
  cursor: pointer;
  transition: border-color 0.35s, background 0.35s, color 0.35s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold-light);
  background: rgba(212, 175, 111, 0.12);
  color: var(--gold-light);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 1rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.25s;
  display: inline-block;
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: rgba(253, 250, 245, 0.7);
  padding: 1rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(253, 250, 245, 0.2);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ── FOOTER ── */
footer {
  background: #1e1b18;
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  color: var(--cream-dark);
  text-transform: uppercase;
  font-weight: 400;
}

.footer-logo span {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(237, 231, 216, 0.35);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 231, 216, 0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold-light);
}