/* The Coffee Passport — main stylesheet
   Type: Newsreader (editorial), Archivo (labels/UI/stamps), IBM Plex Mono (passport data) */

:root {
  --paper: #F4EBDD;
  --paper-2: #EDE1CE;
  --cream: #F8F2E8;
  --ink: #1C110B;
  --espresso: #23150E;
  --espresso-2: #2E1B12;
  --leather: #6E3B1F;
  --leather-2: #8B4A25;
  --gold: #C9A46A;
  --gold-2: #B08A4A;
  --muted: #6B5A4B;
  --line: rgba(28, 17, 11, .14);
  --line-light: rgba(244, 235, 221, .16);
  --ink-ox: #8E2A2A;
  --ink-navy: #2B3F66;
  --ink-forest: #2F5A3D;
  --ink-ochre: #B8862B;
  --ink-saffron: #C1652A;

  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  --nav-h: 72px;
  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --section: clamp(72px, 10vw, 140px);
  --radius: 12px;
  --pw: clamp(184px, 40vw, 340px);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --bean-cut: var(--paper);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, p, figure, dl, dd { margin: 0; }
::selection { background: var(--leather); color: var(--paper); }
:focus-visible { outline: 2px solid var(--leather-2); outline-offset: 3px; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--paper); padding: 10px 14px; z-index: 100; }
.skip:focus { left: 8px; }

[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--leather-2);
  margin-bottom: 18px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leather-2); }
.eyebrow-light { color: var(--gold); }
.display {
  font-weight: 400; font-size: clamp(2.5rem, 1.1rem + 4.6vw, 5.3rem);
  line-height: 1.02; letter-spacing: -.022em; text-wrap: balance;
}
.display em { font-style: italic; font-weight: 300; color: var(--leather); }
.h2 {
  font-weight: 400; font-size: clamp(2rem, 1rem + 3vw, 3.5rem);
  line-height: 1.06; letter-spacing: -.018em; text-wrap: balance; margin-bottom: 22px;
}
.lede { font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem); line-height: 1.5; color: var(--muted); max-width: 34em; }
.body { color: var(--muted); max-width: 40em; }
.body-lg { font-size: 1.2rem; line-height: 1.55; max-width: 34em; color: var(--muted); }
.body + .body, .body-lg + .body { margin-top: 16px; }
.muted-light { color: rgba(244, 235, 221, .7); }
.mono { font-family: var(--mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section-dark { background: var(--espresso); color: var(--paper); }
.section-dark .h2 { color: var(--paper); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
@media (max-width: 899px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 15px 22px; min-height: 48px; border-radius: 6px; border: 1px solid transparent;
  transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease-out);
  white-space: nowrap;
}
.btn .arrow { display: inline-block; font-family: var(--serif); font-size: 1.1em; line-height: 0; transition: transform .3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(5px); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--leather); color: var(--paper); }
.btn-primary:hover { background: var(--ink); }
.btn-ghost { background: transparent; color: inherit; border-color: rgba(28, 17, 11, .28); }
.btn-ghost:hover { border-color: currentColor; }
.section-dark .btn-ghost { border-color: rgba(244, 235, 221, .3); }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { background: #fff; }
.btn-lg { padding: 18px 28px; font-size: .88rem; min-height: 56px; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--nav-h);
  color: var(--ink);
  transition: background .35s, border-color .35s, color .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(244, 235, 221, .86); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-color: rgba(28, 17, 11, .08); }
.nav.is-dark { color: var(--paper); --bean-cut: var(--espresso); }
.nav.is-dark.is-scrolled { background: rgba(35, 21, 14, .78); border-color: rgba(244, 235, 221, .1); }
.nav-inner { height: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 32px; }
.brand-mark svg { width: 44px; height: 30px; color: currentColor; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.12rem; letter-spacing: -.01em; }
.brand-tag { font-family: var(--sans); font-size: .55rem; letter-spacing: .22em; text-transform: uppercase; opacity: .7; margin-top: 4px; }
.nav-links { display: flex; gap: 26px; font-family: var(--sans); font-size: .8rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.nav-links a { position: relative; padding: 6px 0; opacity: .82; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: currentColor; transition: right .3s var(--ease-out); }
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { right: 0; }
.nav-cta { padding: 12px 18px; min-height: 42px; font-size: .74rem; }
.nav.is-dark .nav-cta { background: var(--paper); color: var(--ink); }
.nav.is-dark .nav-cta:hover { background: #fff; }
.nav-toggle { display: none; width: 44px; height: 44px; position: relative; margin-right: -10px; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: currentColor; transition: transform .35s var(--ease-out), top .35s; }
.nav-toggle span:first-child { top: 17px; } .nav-toggle span:last-child { top: 25px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
@media (max-width: 899px) {
  :root { --nav-h: 64px; }
  .nav-links, .brand-tag { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .brand-mark, .brand-mark svg { width: 38px; }
}

.menu[hidden], [hidden] { display: none !important; }
.menu {
  position: fixed; inset: 0; z-index: 49; background: var(--espresso); color: var(--paper);
  padding: calc(var(--nav-h) + 24px) var(--gutter) 32px; display: flex; flex-direction: column; justify-content: space-between;
}
.menu-links { display: flex; flex-direction: column; }
.menu-links a { display: flex; align-items: baseline; gap: 16px; font-size: 2.4rem; line-height: 1.1; padding: 14px 0; border-bottom: 1px solid var(--line-light); }
.menu-links small { font-family: var(--mono); font-size: .75rem; color: var(--gold); }
.menu-foot { display: grid; gap: 16px; }
.menu-ig { font-family: var(--sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; text-align: center; opacity: .75; }
.menu .btn-primary { background: var(--paper); color: var(--ink); }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden; background: var(--paper);
}
.hero-paper { position: absolute; inset: 0; background: url("../assets/img/paper-1200.webp") center/cover; opacity: .7; mix-blend-mode: multiply; pointer-events: none; }
.hero-beans { position: absolute; right: -1%; top: 8%; height: 86%; width: auto; opacity: .95; pointer-events: none; }
.hero-inner {
  position: relative; width: 100%; max-width: var(--wrap); margin-inline: auto; padding: 24px var(--gutter) 40px;
  display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 32px;
}
.hero-copy { max-width: 620px; }
.hero .display { margin: 8px 0 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 18px; font-family: var(--sans); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.hero-stage { position: relative; display: grid; place-items: center; min-height: calc(var(--pw) * 1.4125 + 60px); }
.hero-cue { position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; white-space: nowrap; font-family: var(--sans); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.cue-line { width: 28px; height: 1px; background: var(--leather-2); animation: cue 1.8s ease-in-out infinite; transform-origin: left; }
@keyframes cue { 0%, 100% { transform: scaleX(.4); opacity: .4; } 50% { transform: scaleX(1); opacity: 1; } }

/* 3D passport */
.pp-scene { position: relative; width: var(--pw); height: calc(var(--pw) * 1.4125); perspective: 1800px; z-index: 2; }
.pp { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; }
.pp-back {
  position: absolute; inset: 0; border-radius: 10px 14px 14px 10px;
  background: #4a2412 url("../assets/img/cover-640.webp") center/cover; filter: brightness(.45) saturate(.8);
  transform: translateZ(-8px); box-shadow: 0 40px 70px -24px rgba(28, 17, 11, .55), 0 10px 20px -10px rgba(28, 17, 11, .35);
}
.pp-edge { position: absolute; top: 5px; bottom: 5px; right: -4px; width: 6px; border-radius: 0 3px 3px 0; transform: translateZ(-4px);
  background: repeating-linear-gradient(to bottom, #f1e6d3 0 1px, #cdbc9f 1px 2px); }
.pp-page {
  position: absolute; inset: 4px 3px 4px 0; border-radius: 2px 10px 10px 2px; overflow: hidden;
  background: var(--cream) url("../assets/img/paper-1200.webp") center/cover; color: var(--ink);
  transform: translateZ(0);
}
.pp-guilloche { position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background: repeating-linear-gradient(115deg, rgba(110, 59, 31, .08) 0 1px, transparent 1px 7px), repeating-linear-gradient(-115deg, rgba(110, 59, 31, .06) 0 1px, transparent 1px 9px); }
.pp-page-title { position: absolute; top: 7%; left: 8%; font-family: var(--sans); font-size: calc(var(--pw) * .028); letter-spacing: .22em; text-transform: uppercase; color: var(--leather); }
.pp-page-no { position: absolute; top: 6.5%; right: 8%; font-family: var(--mono); font-size: calc(var(--pw) * .03); color: var(--leather); }
.pp-cover { position: absolute; inset: 0; transform-style: preserve-3d; transform-origin: 0 50%; will-change: transform; }
.pp-face { position: absolute; inset: 0; border-radius: 10px 14px 14px 10px; overflow: hidden; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.pp-face-front img { width: 100%; height: 100%; object-fit: cover; }
.pp-face-front::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(255, 255, 255, .12), transparent 30%, rgba(0, 0, 0, .12) 85%); }
.pp-face-inside { transform: rotateY(180deg); inset: 4px 0 4px 3px; border-radius: 10px 2px 2px 10px; }
.pp-ghost { position: absolute; left: 50%; top: 32%; width: 62%; height: auto; transform: translateX(-50%); color: var(--leather); opacity: .13; --bean-cut: var(--cream); }
.pp-data { position: absolute; left: 8%; right: 8%; top: 22%; display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--pw) * .03) calc(var(--pw) * .04); }
.pp-data div:nth-child(3), .pp-data div:nth-child(4) { grid-column: span 2; }
.pp-data dt { font-family: var(--sans); font-size: calc(var(--pw) * .024); letter-spacing: .16em; text-transform: uppercase; color: var(--leather-2); }
.pp-data dd { font-family: var(--mono); font-size: calc(var(--pw) * .034); letter-spacing: .04em; margin-top: 2px; white-space: nowrap; overflow: hidden; }
.pp-mrz { position: absolute; left: 6%; right: 6%; bottom: 6%; font-family: var(--mono); font-size: calc(var(--pw) * .03); line-height: 1.5; letter-spacing: .06em; color: rgba(28, 17, 11, .8); white-space: nowrap; overflow: hidden; }
.pp-shadow { position: absolute; inset: 4px 3px 4px 0; border-radius: 2px 10px 10px 2px; background: linear-gradient(90deg, rgba(28, 17, 11, .5), rgba(28, 17, 11, .18) 30%, transparent 60%); pointer-events: none; transform: translateZ(1px); }

/* Stamps */
.stamp { position: absolute; mix-blend-mode: multiply; opacity: .9; filter: url(#ink); pointer-events: none; transform-origin: 50% 50%; }
.stamp-ethiopia { width: 54%; height: auto; right: 5%; bottom: 13%; rotate: -12deg; }
.stamp-colombia { width: 66%; left: 8%; top: 16%; rotate: -7deg; }
.stamp-brazil { width: 46%; right: 4%; top: 38%; rotate: 10deg; }
.stamp-panama { width: 62%; left: 5%; top: 60%; rotate: 5deg; }
.stamp-india { width: 48%; right: -5%; bottom: 3%; rotate: -14deg; }
.stamp-approved { position: relative; width: 168px; height: 168px; margin: 0 auto 14px; rotate: -8deg; }
.stamp svg, .stamp-tab svg, .origin-stamp { overflow: visible; }
.st-ring { font-family: var(--sans); font-weight: 700; font-size: 15.5px; letter-spacing: .14em; font-stretch: 85%; }
.st-small { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: .16em; }
.st-mid { font-family: var(--sans); font-weight: 700; font-size: 24px; letter-spacing: .1em; font-stretch: 90%; }
.st-big { font-family: var(--sans); font-weight: 700; font-size: 44px; letter-spacing: .02em; font-stretch: 85%; }
svg[viewBox="0 0 240 150"] .st-big { font-size: 40px; }

@media (max-width: 899px) {
  :root { --pw: clamp(150px, 42vw, 176px); }
  .hero { align-items: safe center; }
  .hero-inner { grid-template-columns: 1fr; gap: 4px; padding-top: 10px; padding-bottom: 28px; }
  .hero .eyebrow { margin-bottom: 10px; font-size: .64rem; }
  .hero .eyebrow .long { display: none; }
  .hero .display { margin: 4px 0 12px; font-size: clamp(2.15rem, 1rem + 5.2vw, 2.6rem); }
  .hero .lede { font-size: 1rem; line-height: 1.45; }
  .hero-actions { margin-top: 16px; gap: 6px 18px; align-items: center; }
  .hero-actions .btn-primary { padding: 15px 20px; min-height: 52px; font-size: .8rem; flex: 1 1 100%; }
  .hero-actions .btn-ghost { border: 0; padding: 8px 0; min-height: 0; font-size: .74rem; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(28, 17, 11, .35); }
  .hero-actions .btn-ghost:hover { text-decoration-color: currentColor; }
  .hero-note { margin-top: 6px; font-size: .62rem; }
  .hero-stage { min-height: calc(var(--pw) * 1.4125 + 40px); margin-top: 2px; }
  .hero-cue { bottom: -2px; font-size: .58rem; }
  .hero-beans { right: -18%; bottom: -6%; top: auto; height: 44%; opacity: .9; }
}
@media (max-width: 899px) and (max-height: 700px) {
  :root { --pw: clamp(136px, 36vw, 156px); }
  .hero .display { font-size: clamp(1.95rem, 1rem + 4.4vw, 2.3rem); }
  .hero .lede { font-size: .94rem; }
  .hero-note { display: none; }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--paper-2); padding: 14px 0; }
.marquee-track { display: flex; align-items: center; gap: 36px; width: max-content; animation: marquee 44s linear infinite; }
.marquee-track span { font-style: italic; font-weight: 300; font-size: 1.4rem; white-space: nowrap; color: var(--leather); }
.marquee-track i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Facts ---------- */
.facts { border-bottom: 1px solid var(--line); }
.facts-grid { list-style: none; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); display: grid; grid-template-columns: repeat(4, 1fr); }
.facts-grid li { padding: 34px 20px 34px 0; display: grid; gap: 6px; border-right: 1px solid var(--line); }
.facts-grid li:not(:first-child) { padding-left: 24px; }
.facts-grid li:last-child { border-right: 0; }
.facts-grid strong { font-weight: 400; font-size: 2.5rem; line-height: 1; letter-spacing: -.02em; }
.facts-grid > li > span { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 899px) {
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .facts-grid li { padding: 24px 12px 24px 0; }
  .facts-grid li:nth-child(2n) { border-right: 0; }
  .facts-grid li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .facts-grid li:not(:first-child) { padding-left: 16px; }
  .facts-grid li:nth-child(3) { padding-left: 0; }
  .facts-grid strong { font-size: 2.1rem; }
}

/* ---------- Philosophy ---------- */
.phil-figure { position: relative; }
.img-parallax { aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); }
.img-parallax img { width: 100%; height: 116%; object-fit: cover; margin-top: -8%; }
.phil-figure figcaption, .how-figure figcaption { margin-top: 14px; font-size: .95rem; color: var(--muted); display: flex; gap: 12px; align-items: baseline; }
.phil-figure .mono, .how-figure .mono { color: var(--leather-2); }
.pillars, .steps { list-style: none; display: grid; margin-top: 40px; border-top: 1px solid var(--line); padding-top: 32px; }
.pillars { grid-template-columns: 1fr 1fr; gap: 26px 36px; }
.pillars li, .steps li { display: flex; gap: 16px; align-items: flex-start; }
.num { font-family: var(--mono); font-size: .75rem; color: var(--leather-2); padding-top: 6px; letter-spacing: .06em; }
.pillars h3, .steps h3 { font-weight: 400; font-size: 1.28rem; line-height: 1.2; margin-bottom: 6px; }
.pillars p, .steps p { font-size: .98rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 599px) { .pillars { grid-template-columns: 1fr; gap: 22px; } }

/* ---------- Origins ---------- */
.origins { position: relative; overflow: hidden; }
.origins-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .32; pointer-events: none; }
.origins::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--espresso) 0%, rgba(35, 21, 14, .6) 45%, rgba(35, 21, 14, .2) 100%); pointer-events: none; }
.origins-inner { position: relative; }
.stamp-tabs { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 28px; }
.stamp-tab { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-family: var(--sans); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(244, 235, 221, .7); transition: color .25s; }
.stamp-tab svg { width: 42px; height: 42px; opacity: .8; transition: transform .35s var(--ease-out), opacity .25s; }
.stamp-tab[aria-selected="true"], .stamp-tab:hover { color: var(--paper); }
.stamp-tab[aria-selected="true"] svg, .stamp-tab:hover svg { opacity: 1; transform: scale(1.12) rotate(-6deg); }
.origin-card { background: rgba(255, 255, 255, .045); border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.origin-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.origin-img img { width: 100%; height: 100%; object-fit: cover; }
.origin-stamp { position: absolute; top: 14px; right: 14px; width: 92px; height: 92px; rotate: 8deg; opacity: .95; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .35)); }
.origin-stamp[viewBox] { }
.origin-body { padding: 24px 26px 28px; display: grid; gap: 12px; }
.origin-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-family: var(--sans); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.origin-card h3 { font-weight: 400; font-size: 2.2rem; line-height: 1; letter-spacing: -.02em; }
.origin-line { font-style: italic; font-weight: 300; font-size: 1.25rem; color: var(--gold); margin-top: -4px; }
.origin-desc { font-size: 1rem; line-height: 1.55; color: rgba(244, 235, 221, .72); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.chips li { font-family: var(--sans); font-size: .66rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 7px 12px; border: 1px solid currentColor; border-radius: 999px; color: var(--gold); }
.chips-ink li { color: var(--leather); }
.origin-end { display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.origin-end-text { font-size: 2.2rem; font-weight: 300; font-style: italic; line-height: 1.1; color: var(--paper); }

@media (min-width: 1024px) {
  .origins-inner { display: grid; grid-template-columns: minmax(300px, 34%) 1fr; align-items: center; min-height: 100vh; gap: 0 clamp(24px, 4vw, 64px); padding-left: var(--gutter); }
  .origins-viewport { overflow: hidden; align-self: stretch; display: flex; align-items: center; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 56px); mask-image: linear-gradient(90deg, transparent 0, #000 56px); }
  .origins-track { padding-left: 8px; }
  .origins-head { padding-block: 40px; max-width: 460px; }
  .origins-track { display: flex; gap: 24px; align-items: stretch; padding-right: 40vw; will-change: transform; }
  .origin-card { flex: 0 0 clamp(340px, 30vw, 440px); }
  .origin-end { flex: 0 0 320px; padding: 20px; }
  .origin-card h3 { font-size: 2rem; }
  .origin-desc { font-size: .95rem; }
}
@media (max-width: 1023px) {
  .origins-inner { padding: var(--section) var(--gutter); max-width: var(--wrap); margin-inline: auto; }
  .origins-head { margin-bottom: 40px; }
  .origins-track { display: block; }
  .origin-card { position: sticky; top: calc(var(--nav-h) + 14px); margin-bottom: 40px; background: var(--espresso-2); box-shadow: 0 -20px 40px -30px rgba(0, 0, 0, .6); }
  .origin-end { position: relative; padding-top: 12px; }
}

/* ---------- India ---------- */
.india-head { display: grid; grid-template-columns: 1fr 1fr; gap: 32px clamp(32px, 6vw, 96px); align-items: end; margin-bottom: 56px; }
.india-head .h2 { margin-bottom: 0; }
.india-head .body-lg { padding-bottom: 8px; }
.estates { display: grid; grid-template-columns: 1fr 1fr; gap: 56px 40px; }
.estate-img { aspect-ratio: 16 / 10; overflow: hidden; border-radius: 10px; margin-bottom: 18px; }
.estate-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.estate:hover .estate-img img { transform: scale(1.04); }
.estate-meta { display: flex; gap: 12px; align-items: baseline; font-family: var(--sans); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.estate-meta .mono { color: var(--leather-2); }
.estate h3 { font-weight: 400; font-size: 1.9rem; line-height: 1.05; letter-spacing: -.015em; margin-bottom: 10px; }
.estate p { color: var(--muted); max-width: 36em; margin-bottom: 14px; }
@media (max-width: 899px) {
  .india-head { grid-template-columns: 1fr; margin-bottom: 36px; }
  .estates { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- How it works ---------- */
.steps { gap: 24px; grid-template-columns: 1fr; }
.steps .num { font-size: .8rem; }
.how-copy .btn { margin-top: 34px; }
.how-figure video { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); background: #111; }
.menu-strip { margin-top: clamp(56px, 8vw, 110px); }
.menu-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.menu-grid li { display: grid; gap: 10px; }
.menu-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; }
.menu-grid span { font-family: var(--sans); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.menu-note { margin-top: 22px; color: var(--muted); font-style: italic; }
@media (max-width: 899px) {
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .how-figure { order: -1; }
  .how-figure video { aspect-ratio: 4 / 3; }
}

/* ---------- Reserve ---------- */
.reserve { position: relative; }
.benefits { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; margin-top: 40px; }
.benefits li { border-top: 1px solid var(--line-light); padding-top: 16px; }
.benefits h3 { font-weight: 400; font-size: 1.25rem; margin-bottom: 4px; }
.benefits p { font-family: var(--sans); font-size: .78rem; letter-spacing: .06em; color: rgba(244, 235, 221, .6); }
.form-card { position: relative; background: var(--paper); color: var(--ink); border-radius: 14px; padding: clamp(24px, 4vw, 44px); box-shadow: 0 50px 90px -40px rgba(0, 0, 0, .7); overflow: hidden; }
.form-card::before { content: ""; position: absolute; inset: 10px; border: 1px dashed rgba(110, 59, 31, .3); border-radius: 8px; pointer-events: none; }
.form-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.form-mark { width: 56px; height: 40px; color: var(--leather); --bean-cut: var(--paper); }
.form-card-head .mono { color: var(--leather-2); }
.reserve-form h3 { font-weight: 400; font-size: 1.7rem; line-height: 1.1; letter-spacing: -.015em; margin-bottom: 22px; }
.field { display: grid; gap: 8px; margin-bottom: 16px; }
.field label { font-family: var(--sans); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--leather-2); }
.field input { width: 100%; height: 54px; padding: 0 16px; border: 1px solid rgba(28, 17, 11, .28); border-radius: 6px; background: #fffaf2; font-family: var(--serif); font-size: 1.1rem; color: var(--ink); transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none; }
.field input::placeholder { color: rgba(28, 17, 11, .35); }
.field input:focus { outline: none; border-color: var(--leather); box-shadow: 0 0 0 3px rgba(110, 59, 31, .16); }
.field input[aria-invalid="true"] { border-color: var(--ink-ox); }
.phone { display: flex; align-items: stretch; }
.phone .prefix { display: grid; place-items: center; padding: 0 14px; border: 1px solid rgba(28, 17, 11, .28); border-right: 0; border-radius: 6px 0 0 6px; background: var(--paper-2); font-family: var(--mono); font-size: .95rem; }
.phone input { border-radius: 0 6px 6px 0; }
.form-error { color: var(--ink-ox); font-size: .95rem; margin: -6px 0 14px; }
.reserve-form .btn { margin-top: 6px; }
.form-note { margin-top: 14px; font-size: .9rem; color: var(--muted); text-align: center; font-style: italic; }
.form-success { text-align: center; padding: 12px 0 8px; }
.form-success h3 { font-weight: 400; font-size: 1.8rem; line-height: 1.1; margin-bottom: 10px; }
.form-success p { color: var(--muted); max-width: 30em; margin: 0 auto 22px; }
.form-success .btn-ghost { border-color: rgba(28, 17, 11, .3); }
.btn.is-loading { opacity: .7; pointer-events: none; }
@media (max-width: 599px) { .benefits { grid-template-columns: 1fr; gap: 18px; } }

/* ---------- FAQ ---------- */
.faq-cols { align-items: start; }
.faq-figure { margin-top: 36px; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 9; }
.faq-figure img { width: 100%; height: 100%; object-fit: cover; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-size: 1.3rem; line-height: 1.25; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex: none; font-family: var(--sans); font-weight: 300; font-size: 1.6rem; color: var(--leather-2); transition: transform .35s var(--ease-out); width: 28px; text-align: center; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-a { overflow: hidden; }
.faq-a p { padding: 0 44px 24px 0; color: var(--muted); max-width: 40em; }
@media (max-width: 899px) { .faq-figure { display: none; } .faq-list summary { font-size: 1.15rem; padding: 18px 0; } }

/* ---------- Footer ---------- */
.footer { background: var(--espresso); color: var(--paper); padding: clamp(56px, 8vw, 96px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-light); }
.footer-mark { width: 64px; height: 44px; color: var(--paper); --bean-cut: var(--espresso); margin-bottom: 16px; }
.footer-name { font-size: 1.4rem; margin-bottom: 10px; }
.footer-tag { color: rgba(244, 235, 221, .62); max-width: 32em; font-size: 1rem; }
.footer-links { display: grid; gap: 12px; align-content: start; font-family: var(--sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a, .footer-social a { opacity: .8; transition: opacity .2s; }
.footer-links a:hover, .footer-social a:hover { opacity: 1; }
.footer-social { font-family: var(--sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; font-family: var(--sans); font-size: .72rem; letter-spacing: .06em; color: rgba(244, 235, 221, .55); }
.footer-quote { font-family: var(--serif); font-style: italic; font-size: .95rem; letter-spacing: 0; }
@media (max-width: 899px) { .footer { padding-bottom: 96px; } .footer-grid { grid-template-columns: 1fr; gap: 32px; } .footer-bottom { flex-direction: column; } }

/* ---------- Sticky CTA (mobile) ---------- */
.sticky-cta { position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 45; transform: translateY(150%); transition: transform .45s var(--ease-out); }
.sticky-cta .btn { box-shadow: 0 16px 40px -12px rgba(28, 17, 11, .6); min-height: 54px; }
.sticky-cta.is-visible { transform: none; }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ---------- Grain ---------- */
.grain { position: fixed; inset: 0; z-index: 70; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px; }

/* ---------- Motion states ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(26px); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js .split-line { display: block; overflow: hidden; }
.js.reduce [data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .cue-line { animation: none; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .pp-cover { transform: rotateY(-180deg); }
  .pp-shadow { opacity: 0; }
}
