:root {
  --ink: #211c17;
  --ink-soft: #655d54;
  --cream: #f8f4ec;
  --paper: #fffdf8;
  --sand: #eee5d6;
  --gold: #aa7c2d;
  --gold-dark: #7f5b1d;
  --forest: #26392f;
  --line: rgba(54, 44, 33, 0.14);
  --shadow: 0 24px 70px rgba(50, 39, 24, 0.11);
  --radius: 24px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(170, 124, 45, 0.45); outline-offset: 4px; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 10px 16px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { top: 16px; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-tight { padding: 76px 0; }
.paper { background: var(--paper); }
.dark { background: var(--forest); color: #fdf8ed; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 27px; height: 1px; background: currentColor; }
.dark .eyebrow { color: #e7c98d; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.02; letter-spacing: -0.025em; margin: 0; }
h1 { font-size: clamp(3.4rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.55rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.55rem, 2.7vw, 2.15rem); }
p { margin: 0; }
.lede { color: var(--ink-soft); font-size: clamp(1.05rem, 1.7vw, 1.25rem); max-width: 720px; }
.dark .lede { color: rgba(255,255,255,.75); }
.section-head { display: grid; gap: 22px; margin-bottom: 54px; max-width: 760px; }
.section-head.center { text-align: center; margin-inline: auto; justify-items: center; }

.announcement { background: var(--forest); color: #f7edda; text-align: center; padding: 9px 20px; font-size: 0.84rem; letter-spacing: .025em; }
.announcement a { font-weight: 800; text-underline-offset: 3px; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(248,244,236,.93); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.nav-shell { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-family: var(--serif); font-size: 1.55rem; font-weight: 700; }
.brand img { width: 48px; height: 40px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; color: #4e473f; font-size: .9rem; font-weight: 700; }
.nav-links a:hover { color: var(--gold-dark); }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--paper); color: var(--ink); border-radius: 999px; padding: 9px 13px; cursor: pointer; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-size: .9rem; font-weight: 800; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fffaf0; background: var(--forest); box-shadow: 0 12px 28px rgba(38,57,47,.18); }
.btn-primary:hover { background: #18271f; }
.btn-gold { color: #221b10; background: #e5c480; box-shadow: 0 12px 28px rgba(170,124,45,.18); }
.btn-secondary { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.54); }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }

.hero { padding: 78px 0 100px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(45px, 7vw, 96px); align-items: center; }
.hero-copy { display: grid; gap: 26px; }
.hero h1 em { color: var(--gold-dark); font-style: italic; font-weight: 500; }
.hero-proof { position: relative; }
.hero-proof::before { content: ""; position: absolute; inset: 8% -8% -7% 15%; border-radius: 42% 58% 50% 45%; background: #e8dcc7; z-index: -1; }
.hero-proof img { aspect-ratio: .9; object-fit: cover; border-radius: 180px 180px 28px 28px; box-shadow: var(--shadow); }
.proof-caption { position: absolute; left: -34px; bottom: 32px; max-width: 235px; padding: 16px 18px; border-radius: 16px; background: rgba(255,253,248,.95); box-shadow: 0 15px 36px rgba(45,34,19,.15); font-size: .84rem; }
.proof-caption strong { display: block; color: var(--forest); }
.micro-trust { display: flex; flex-wrap: wrap; gap: 10px 20px; color: var(--ink-soft); font-size: .82rem; font-weight: 700; }
.micro-trust span::before { content: "✓"; color: var(--gold-dark); margin-right: 7px; }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,253,248,.6); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-point { min-height: 118px; padding: 26px 20px; border-right: 1px solid var(--line); display: grid; place-content: center; gap: 5px; text-align: center; }
.trust-point:last-child { border-right: 0; }
.trust-point strong { font-family: var(--serif); font-size: 1.18rem; }
.trust-point span { color: var(--ink-soft); font-size: .75rem; }

.why-grid, .founder-grid, .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(42px, 7vw, 100px); align-items: center; }
.quote-large { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.55rem); line-height: 1.14; }
.body-stack { display: grid; gap: 19px; color: var(--ink-soft); }

.photo-feature { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; }
.photo-feature img { height: 100%; object-fit: cover; border-radius: var(--radius); }
.photo-main { min-height: 650px; }
.photo-stack { display: grid; gap: 22px; }
.photo-stack img { min-height: 314px; }
.family-proof { position: relative; margin-top: 22px; overflow: hidden; border-radius: var(--radius); background: var(--forest); }
.family-proof img { display: block; width: 100%; aspect-ratio: 16 / 8; object-fit: cover; object-position: center 42%; }
.family-proof figcaption { position: absolute; left: clamp(18px, 4vw, 48px); bottom: clamp(18px, 4vw, 42px); max-width: 420px; padding: 18px 22px; border-radius: 16px; color: var(--ink); background: rgba(255,253,248,.94); box-shadow: var(--shadow); }
.family-proof figcaption strong { display: block; margin-bottom: 4px; font-family: var(--serif); color: var(--forest); font-size: 1.35rem; }
.caption { margin-top: 10px; color: var(--ink-soft); font-size: .78rem; }

.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; min-height: 220px; padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); }
.step::before { counter-increment: step; content: "0" counter(step); display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 36px; border-radius: 50%; color: var(--gold-dark); background: #f2e7d2; font-weight: 800; font-size: .78rem; }
.step p { margin-top: 12px; color: var(--ink-soft); font-size: .9rem; }

.founder-photo img { max-height: 720px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.film-placeholder { min-height: 310px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); display: grid; place-items: center; text-align: center; padding: 40px; background: radial-gradient(circle at 50% 30%, rgba(229,196,128,.16), transparent 45%); }
.play-mark { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 18px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-size: 1.2rem; }

.offer-shell { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px; align-items: stretch; }
.offer-intro, .offer-card { padding: clamp(32px, 5vw, 58px); border-radius: var(--radius); }
.offer-intro { background: #ede4d4; display: grid; align-content: space-between; gap: 60px; }
.offer-card { background: var(--forest); color: #fffaf0; box-shadow: var(--shadow); }
.offer-card .price { font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.6rem); line-height: .95; margin: 18px 0 6px; }
.price-note { color: rgba(255,255,255,.68); font-size: .82rem; }
.feature-list { list-style: none; margin: 30px 0 36px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; }
.feature-list li { position: relative; padding-left: 24px; font-size: .88rem; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: #e5c480; font-weight: 900; }
.country-row { display: grid; gap: 9px; max-width: 310px; }
.country-row label { font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.country-row select { min-height: 50px; padding: 0 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 12px; color: white; background: #31483b; }

.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.collection-card { padding: 32px; min-height: 265px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); display: flex; flex-direction: column; }
.collection-card.active { border-color: rgba(170,124,45,.55); box-shadow: 0 18px 45px rgba(70,50,20,.08); }
.status { align-self: flex-start; margin-bottom: 34px; padding: 6px 10px; border-radius: 999px; background: #f2e7d2; color: var(--gold-dark); font-size: .66rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.collection-card p { margin: 13px 0 22px; color: var(--ink-soft); font-size: .9rem; }
.collection-card a { margin-top: auto; font-weight: 800; text-underline-offset: 4px; }
.disabled-link { margin-top: auto; color: #8c847a; font-size: .78rem; font-weight: 800; }

.testimonial { max-width: 920px; margin: auto; text-align: center; }
.stars { color: var(--gold); letter-spacing: .2em; margin-bottom: 24px; }
.testimonial blockquote { margin: 0; font-family: var(--serif); font-size: clamp(2.1rem, 4.5vw, 4rem); line-height: 1.18; }
.testimonial cite { display: block; margin-top: 24px; color: var(--ink-soft); font-style: normal; font-size: .86rem; }

.faq-list { display: grid; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 0; }
.faq-list summary { cursor: pointer; list-style: none; padding: 25px 40px 25px 0; font-family: var(--serif); font-size: 1.45rem; font-weight: 600; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 24px; color: var(--gold-dark); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; padding: 0 0 26px; color: var(--ink-soft); }

.cta-panel { padding: clamp(42px, 7vw, 80px); border-radius: var(--radius); background: var(--forest); color: #fffaf0; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.cta-panel p { margin-top: 17px; color: rgba(255,255,255,.7); max-width: 650px; }

.page-hero { padding: 86px 0 74px; text-align: center; }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 { max-width: 980px; margin: auto; }
.page-hero .lede { margin: 25px auto 0; }
.application-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 36px; align-items: start; }
.application-aside { position: sticky; top: 115px; padding: 32px; background: #ede4d4; border-radius: 20px; }
.application-aside h2 { font-size: 2.3rem; }
.application-aside ul { padding-left: 20px; color: var(--ink-soft); }
.form-card { padding: clamp(26px, 5vw, 48px); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 50px rgba(55,42,25,.06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 800; }
.field small { color: var(--ink-soft); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #d8d0c4; border-radius: 12px; background: white; padding: 13px 14px; color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.checkbox { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; color: var(--ink-soft); font-size: .83rem; }
.checkbox input { margin-top: 5px; }
.form-status { margin-top: 14px; color: #8f2f25; font-size: .84rem; }

.site-footer { padding: 68px 0 28px; background: #1b2720; color: #f7f0e4; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.65); font-size: .84rem; }
.footer-grid h4 { margin: 0 0 15px; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { text-decoration: none; }
.footer-bottom { margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: .75rem; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links { display: none; position: absolute; top: calc(100% + 1px); left: 0; right: 0; padding: 22px 20px 28px; background: var(--cream); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .hero-grid, .why-grid, .founder-grid, .split, .offer-shell, .application-layout { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-proof { order: 2; width: min(600px, 92%); margin: auto; }
  .proof-caption { left: -18px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-point:nth-child(2) { border-right: 0; }
  .trust-point:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .photo-feature { grid-template-columns: 1fr; }
  .photo-main { min-height: 480px; }
  .photo-stack { grid-template-columns: 1fr 1fr; }
  .timeline, .roadmap { grid-template-columns: 1fr 1fr; }
  .application-aside { position: static; }
  .cta-panel { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .section { padding: 78px 0; }
  .hero { padding: 54px 0 72px; }
  h1 { font-size: clamp(3.05rem, 17vw, 4.5rem); }
  .hero-proof { width: 100%; }
  .hero-proof img { border-radius: 100px 100px 22px 22px; }
  .proof-caption { position: static; margin: -18px 14px 0; max-width: none; transform: translateY(0); }
  .trust-grid, .timeline, .roadmap, .photo-stack, .feature-list, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-point, .trust-point:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-point:last-child { grid-column: auto; border-bottom: 0; border-top: 0; }
  .photo-main, .photo-stack img { min-height: 0; aspect-ratio: 1 / 1; }
  .family-proof img { aspect-ratio: 4 / 3; }
  .family-proof figcaption { position: static; max-width: none; border-radius: 0; box-shadow: none; }
  .field.full { grid-column: auto; }
  .button-row .btn { width: 100%; }
  .cta-panel .btn { width: 100%; }
  .announcement { font-size: .72rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
