:root {
  --bg: #0f0e0d;
  --bg-alt: #1a1917;
  --text: #e8e4dc;
  --muted: rgba(232, 228, 220, 0.6);
  --gold: #c9a84c;
  --gold-soft: rgba(201, 168, 76, 0.3);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* CONTAINERS */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 820px; }
.container--prose { max-width: 720px; margin: 0 auto; padding: 0 2rem; }
.center { text-align: center; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 14, 13, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(15, 14, 13, 0.95);
  border-bottom-color: rgba(232, 228, 220, 0.08);
}
.nav__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}
.nav__links { display: flex; gap: 1rem; align-items: center; }
.nav__toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0;
}
.nav__toggle span {
  display: block; height: 1px; width: 24px;
  background: var(--text); transition: 0.3s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold); color: #0f0e0d; border-color: var(--gold);
}
.btn--gold:hover { background: transparent; color: var(--gold); }
.btn--outline {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn--outline:hover { background: var(--gold); color: #0f0e0d; }
.btn--ghost {
  background: transparent; color: var(--text); border-color: transparent;
}
.btn--ghost:hover { color: var(--gold); }
.btn--lg { padding: 1.1rem 2rem; font-size: 0.82rem; }

.cta-row {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center; margin-top: 3rem;
}

/* HERO */
.hero {
  padding: 9rem 0 7rem;
}
.hero__headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.3rem, 5.5vw, 4.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}
.hero__break { display: block; color: var(--gold); margin-top: 0.6rem; font-style: italic; }
.hero__sub {
  max-width: 600px;
  margin: 2.5rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* SECTIONS */
.section { padding: 7rem 0; }
.section--alt { background: var(--bg-alt); }
.section--final { padding: 9rem 0; }
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.eyebrow--muted { color: var(--muted); }
.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  margin: 0 0 2rem;
  letter-spacing: -0.005em;
}
.section__sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 4rem;
}

/* DIVIDER */
.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin: 0 auto;
}

/* PROSE */
.prose p { margin: 0 0 1.5rem; color: var(--text); opacity: 0.92; }
.prose p:last-child { margin-bottom: 0; }
.intro-italic {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--muted);
  margin: 0 0 2rem;
  line-height: 1.5;
}
.strong { font-weight: 500; color: var(--text); margin-top: 2rem; }
.note { font-style: italic; color: var(--muted); margin-top: 0.5rem; }

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.card {
  border: 1px solid var(--gold-soft);
  padding: 2.5rem 2rem;
  background: transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.card:hover { border-color: var(--gold); }
.card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 0 1.5rem;
  letter-spacing: 0.01em;
}
.card p { margin: 0; color: var(--text); opacity: 0.88; line-height: 1.75; }

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* LIST */
.list {
  list-style: none; padding: 0; margin: 0 0 2rem;
}
.list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.1rem;
  line-height: 1.65;
}
.list li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-size: 0.85rem;
}
.list--lg li { margin-bottom: 1.4rem; font-size: 1.02rem; }

/* FAQ */
.faq { border-top: 1px solid rgba(232, 228, 220, 0.1); }
.faq__item { border-bottom: 1px solid rgba(232, 228, 220, 0.1); }
.faq__q {
  width: 100%;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  padding: 1.75rem 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--gold); }
.faq__icon {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__a p {
  margin: 0; padding: 0 0 1.75rem;
  color: var(--muted); line-height: 1.75;
  max-width: 90%;
}

/* FINAL */
.final__headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.2;
  margin: 0 0 3rem;
  letter-spacing: -0.01em;
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(232, 228, 220, 0.08);
  padding: 3rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
.footer__brand {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.footer__tag {
  text-align: center;
  font-style: italic;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.05rem;
}
.footer__social {
  display: flex; gap: 1.25rem; justify-content: flex-end;
  color: var(--muted);
}
.footer__social a { transition: color 0.2s; display: inline-flex; }
.footer__social a:hover { color: var(--gold); }
.footer__copy {
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2.5rem;
  letter-spacing: 0.05em;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .cards { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 3.5rem; }
  .section { padding: 5rem 0; }
  .hero { padding: 6rem 0 5rem; }
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__brand, .footer__social { justify-content: center; display: flex; }
  .footer__brand { justify-content: center; }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(232, 228, 220, 0.08);
    gap: 0.75rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
  }
  .nav__links.is-open {
    transform: none; opacity: 1; pointer-events: auto;
  }
  .nav__links .btn { width: 100%; text-align: center; }
  .container, .container--prose { padding: 0 1.5rem; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { text-align: center; }
}
