:root {
  --navy: #0b1d34;
  --navy-deep: #061221;
  --brown: #2b211a;
  --brown-soft: #46372c;
  --gold: #b89554;
  --gold-light: #d8c18f;
  --beige: #eee5d6;
  --cream: #f7f3ea;
  --paper: #fbf8f1;
  --ink: #182132;
  --muted: #756c62;
  --line: rgba(32, 28, 23, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --shadow: 0 28px 80px rgba(28, 22, 17, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(251,248,241,.965), rgba(251,248,241,.965)),
    url("assets/paper-texture.jpg") center / 700px repeat;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--gold-light); color: var(--navy); }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 100;
  background: var(--navy); color: #fff; padding: 12px 18px;
}
.skip-link:focus { top: 16px; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 116px 0; }
.section-soft { background: rgba(238,229,214,.62); }
.section-dark { background: var(--brown); color: var(--cream); }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
}
h1 { font-size: clamp(4.3rem, 8vw, 8.5rem); }
h2 { font-size: clamp(2.8rem, 5vw, 5.3rem); }
h3 { font-size: clamp(1.9rem, 3vw, 3rem); }
p { margin: 0 0 1.25rem; }

.btn {
  min-height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--navy);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  transition: .25s ease;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.text-link {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,248,241,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(43,33,26,.08);
}
.nav-wrap {
  min-height: 82px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.brand img { width: 205px; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.btn) {
  font-size: .65rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; position: relative;
}
.main-nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px;
  height: 1px; background: var(--gold); transition: .25s ease;
}
.main-nav > a:not(.btn):hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: none; width: 44px; height: 44px; }
.menu-toggle span { display: block; height: 1px; background: var(--navy); margin: 8px 0; }

.hero { padding: 52px 0 92px; overflow: hidden; }
.hero-grid { min-height: 720px; display: grid; grid-template-columns: 1fr 1.03fr; align-items: stretch; }
.hero-copy { padding: 88px 70px 60px 0; align-self: center; }
.hero-copy .eyebrow { max-width: 520px; }
.hero-script {
  max-width: 650px; margin-top: 8px;
  color: var(--gold);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(2.8rem, 4.8vw, 5.3rem); line-height: 1;
}
.gold-rule { width: 72px; height: 1px; margin: 30px 0; background: var(--gold); }
.hero-text { max-width: 570px; font-size: 1.02rem; color: #3d4148; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-top: 30px; }
.privacy-note { margin-top: 16px; color: var(--muted); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-visual { position: relative; min-height: 690px; background: var(--brown); box-shadow: var(--shadow); }
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,11,18,.03), rgba(5,11,18,.36));
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption {
  position: absolute; z-index: 2; right: 24px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 13px;
  color: #fff; font-size: .6rem; text-transform: uppercase; letter-spacing: .2em;
}
.hero-caption i { width: 1px; height: 56px; background: rgba(255,255,255,.55); }

.bio-grid, .exchange-grid {
  display: grid; grid-template-columns: .35fr 1.65fr; gap: 80px;
}
.section-label { display: flex; flex-direction: column; justify-content: space-between; min-height: 280px; }
.section-number { color: var(--gold); font-family: var(--serif); font-size: 4rem; }
.bio-copy { max-width: 850px; }
.bio-copy .lead { font-family: var(--serif); font-size: 2rem; color: var(--brown); }
.question-heading { margin: 10px 0 42px; color: var(--navy); font-style: italic; }
.bio-copy > p:not(.lead):not(.closing-thought) { font-size: 1.03rem; max-width: 760px; }
.closing-thought {
  margin-top: 38px; padding-top: 30px;
  border-top: 1px solid var(--line);
  font-family: var(--serif); font-size: 2rem; line-height: 1.25;
}
.closing-thought strong { color: var(--gold); font-weight: 500; }

.section-heading { max-width: 900px; margin-bottom: 60px; }
.section-dark .section-heading h2 { color: var(--cream); }
.moment-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.moment {
  min-height: 390px; padding: 42px 38px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.moment:last-child { border-right: 0; }
.moment-index { color: var(--gold); font-family: var(--serif); font-size: 1.3rem; }
.kicker { margin-top: 62px; color: var(--gold-light); font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.moment h3 { margin: 15px 0 22px; }
.moment p:last-child { color: rgba(247,243,234,.72); }

.offer-section { background: var(--paper); }
.offer-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.offer-intro { position: sticky; top: 130px; align-self: start; }
.offer-intro h2 { color: var(--brown); }
.offer-intro > p:last-child { max-width: 520px; margin-top: 28px; }
.offer-list { border-top: 1px solid var(--line); }
.offer-row {
  display: grid; grid-template-columns: 56px 1fr; gap: 25px;
  padding: 34px 0; border-bottom: 1px solid var(--line);
}
.offer-row > span { color: var(--gold); font-family: var(--serif); font-size: 1.4rem; }
.offer-row h3 { font-size: 2.3rem; color: var(--navy); }
.offer-row p { max-width: 650px; margin-top: 10px; color: #55504a; }

.statement-band { padding: 90px 0; background: var(--navy); color: var(--cream); }
.statement-small { color: var(--gold); font-size: .68rem; letter-spacing: .17em; text-transform: uppercase; }
.statement-band blockquote {
  max-width: 1020px; margin: 24px 0 0;
  font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 1.03; color: var(--gold-light);
}

.method-section { background: var(--beige); }
.method-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.method-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.method-list li {
  display: grid; grid-template-columns: 55px 1fr; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.method-list li > span { color: var(--gold); font-family: var(--serif); font-size: 1.35rem; }
.method-list strong { font-family: var(--serif); font-size: 1.75rem; font-weight: 500; color: var(--brown); }
.method-list p { margin-top: 6px; color: #5f574f; }

.exchange-copy { max-width: 840px; }
.exchange-copy h2 { color: var(--brown); }
.exchange-copy > p:not(.accent-copy) { max-width: 760px; margin-top: 26px; font-size: 1.05rem; }
.accent-copy {
  margin-top: 38px; color: var(--gold);
  font-family: var(--serif); font-size: 2.2rem; font-style: italic;
}

.contact-section { background: linear-gradient(135deg, var(--brown) 0 50%, var(--cream) 50% 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; }
.contact-copy { padding: 68px 70px 68px 0; color: var(--cream); }
.contact-copy h2 { color: var(--gold-light); }
.contact-copy > p:not(.eyebrow) { max-width: 510px; margin-top: 28px; color: rgba(247,243,234,.76); }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 0; margin: 30px 0; list-style: none; }
.trust-list li { font-size: .67rem; letter-spacing: .13em; text-transform: uppercase; color: var(--gold-light); }
.contact-email { display: inline-block; margin-top: 24px; font-family: var(--serif); font-size: 2.2rem; color: #fff; border-bottom: 1px solid var(--gold); }
.contact-form { padding: 68px 0 68px 70px; }
.contact-form label { display: block; margin-bottom: 23px; font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: 8px; padding: 14px 0;
  border: 0; border-bottom: 1px solid var(--line); outline: 0;
  background: transparent; color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.form-note { margin-top: 14px; color: var(--muted); font-size: .69rem; }

.site-footer { padding: 48px 0; border-top: 1px solid var(--line); background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: center; }
.footer-logo { width: 205px; }
.footer-grid > p { margin: 0; color: var(--muted); font-size: .83rem; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; font-size: .79rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .72s ease, transform .72s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; left: 0; right: 0; top: 82px;
    padding: 30px 20px; flex-direction: column; align-items: flex-start;
    background: var(--paper); border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .hero-grid, .bio-grid, .offer-grid, .method-grid, .exchange-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-right: 0; }
  .hero-visual { min-height: 600px; }
  .section-label { min-height: auto; flex-direction: row; align-items: center; }
  .moment-grid { grid-template-columns: 1fr; }
  .moment { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .offer-intro { position: static; }
  .contact-section { background: var(--brown); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 60px; background: var(--cream); }
  .contact-copy { padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact { align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 82px 0; }
  .nav-wrap { min-height: 72px; }
  .main-nav { top: 72px; }
  .brand img { width: 165px; }
  .hero { padding-top: 20px; }
  .hero-copy { padding: 64px 0 45px; }
  .hero-visual { min-height: 470px; }
  .hero-caption { display: none; }
  .bio-grid, .exchange-grid, .offer-grid, .method-grid { gap: 44px; }
  .moment { padding: 34px 0; }
  .offer-row { grid-template-columns: 42px 1fr; }
  .contact-form { padding: 40px 24px; }
  .contact-email { font-size: 1.6rem; }
}
