/* =========================================================
   Orvella Overseas — design tokens
   Ink + ivory base, turmeric gold accent, chilli + lotus-leaf
   as supporting tones. Cormorant Garamond / Manrope.
   ========================================================= */
:root {
  --ink: #14110d;
  --ink-2: #1e1a14;
  --ink-3: #2a241c;
  --ivory: #f6f0e4;
  --ivory-2: #ede4d2;
  --paper: #fbf8f1;
  --gold: #c8902e;
  --gold-soft: #e0b862;
  --gold-deep: #8a5e14;       /* gold for text on light bg (AA) */
  --chilli: #9e2b1e;
  --leaf: #1f3326;
  --text: #221d16;
  --text-muted: #5c5346;      /* 7:1 on ivory */
  --on-ink: #f3ecdf;
  --on-ink-muted: #b9ad98;    /* ~8:1 on ink */
  --line: rgba(34, 29, 22, .14);
  --line-ink: rgba(243, 236, 223, .14);

  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-dev: "Tiro Devanagari Hindi", serif;

  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 48px);
  --sec: clamp(80px, 11vw, 160px);
  --r: 4px;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in: cubic-bezier(.7, 0, .84, 0);
  --t-fast: 180ms;
  --t-med: 420ms;
  --t-slow: 900ms;

  --z-nav: 40;
  --z-drawer: 50;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 400 1rem/1.65 var(--f-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
[id] { scroll-margin-top: 88px; }

.skip {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--gold); color: var(--ink); padding: 10px 16px; font-weight: 600;
  transition: top var(--t-fast);
}
.skip:focus { top: 16px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sec); position: relative; }
.section--ink { background: var(--ink); color: var(--on-ink); }
.section--leaf { background: var(--leaf); color: var(--on-ink); }

/* grain texture over dark sections for a printed, tactile feel */
.section--ink::after, .hero::after, .footer::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Type ---------- */
.h2 {
  font: 500 clamp(2.1rem, 4.6vw, 3.9rem)/1.06 var(--f-display);
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
.h2 em, .hero__title em, .band__quote em { font-style: italic; color: var(--gold-deep); }
.section--ink .h2 em, .section--leaf .h2 em, .hero__title em, .band__quote em { color: var(--gold-soft); }
.lead { font-size: clamp(1.05rem, 1.3vw, 1.2rem); line-height: 1.7; color: var(--text-muted); max-width: 60ch; }
.section--ink .lead, .section--leaf .lead { color: var(--on-ink-muted); }
.lead em { color: inherit; font-style: italic; }

.eyebrow {
  display: flex; align-items: center; gap: .75em; flex-wrap: wrap;
  font: 600 .75rem/1.4 var(--f-body); letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 1.6rem;
}
.eyebrow--light { color: var(--gold-soft); }
.eyebrow .num {
  font: italic 500 1.05rem/1 var(--f-display); letter-spacing: 0; text-transform: none;
  display: inline-grid; place-items: center; width: 2.1em; height: 2.1em;
  border: 1px solid currentColor; border-radius: 50%;
}
.dev { font: 400 1.05rem/1 var(--f-dev); letter-spacing: 0; text-transform: none; }

/* ---------- Buttons ---------- */
.btn {
  --h: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: var(--h); padding: 0 1.6em; border-radius: 999px;
  font: 600 .88rem/1 var(--f-body); letter-spacing: .06em; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  touch-action: manipulation;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform var(--t-fast) var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(.98); }
.btn--sm { --h: 44px; padding: 0 1.25em; font-size: .8rem; }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-soft); }
.btn--ghost { color: var(--on-ink); border-color: rgba(243, 236, 223, .45); }
.btn--ghost:hover { border-color: var(--on-ink); background: rgba(243, 236, 223, .08); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5em; margin-top: 1.5rem;
  font-weight: 600; letter-spacing: .04em; color: var(--gold-deep); text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 4px; min-height: 44px;
}
.link-arrow svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform var(--t-fast); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: var(--z-nav);
  color: var(--on-ink);
  transition: background var(--t-med), backdrop-filter var(--t-med), box-shadow var(--t-med);
}
.nav.is-solid {
  background: rgba(20, 17, 13, .86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line-ink);
}
.nav__inner {
  max-width: 1400px; margin-inline: auto; padding: 18px var(--gutter);
  display: flex; align-items: center; gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand__mark { width: 40px; height: 40px; color: var(--gold-soft); }
.brand__word {
  display: flex; flex-direction: column;
  font: 500 1.65rem/.9 var(--f-display); letter-spacing: .02em;
}
.brand__word small { font: 600 .58rem/1.6 var(--f-body); letter-spacing: .42em; text-transform: uppercase; color: var(--on-ink-muted); }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  font-size: .85rem; font-weight: 500; letter-spacing: .06em; text-decoration: none;
  color: var(--on-ink); opacity: .85; position: relative; padding-block: 12px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 1px; background: var(--gold-soft);
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-med) var(--ease-out);
}
.nav__links a:hover, .nav__links a.is-active { opacity: 1; }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__toggle {
  display: none; width: 48px; height: 48px; margin-left: auto; background: none; border: 0; color: inherit;
  position: relative;
}
.nav__toggle span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: currentColor; transition: transform var(--t-med) var(--ease-out); }
.nav__toggle span:first-child { top: 19px; }
.nav__toggle span:last-child { top: 28px; }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: var(--z-drawer); background: var(--ink); color: var(--on-ink);
  padding: 110px var(--gutter) 40px;
}
.drawer nav { display: flex; flex-direction: column; gap: 6px; }
.drawer a:not(.btn) { font: 500 2.2rem/1.3 var(--f-display); text-decoration: none; padding-block: 6px; border-bottom: 1px solid var(--line-ink); }
.drawer .btn { margin-top: 28px; }
body.menu-open { overflow: hidden; }
body.menu-open .nav { z-index: 60; background: transparent; box-shadow: none; backdrop-filter: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: grid; grid-template-rows: 1fr auto; color: var(--on-ink); background: var(--ink); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__vid {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.6s ease, transform 9s linear;
}
.hero__vid.is-on { opacity: 1; transform: scale(1); }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,17,13,.55) 0%, rgba(20,17,13,.15) 35%, rgba(20,17,13,.35) 65%, rgba(20,17,13,.92) 100%),
    radial-gradient(120% 80% at 15% 70%, rgba(20,17,13,.7), transparent 60%);
}
.hero__content { position: relative; align-self: end; padding-top: 140px; padding-bottom: 56px; }
.hero__title {
  font: 500 clamp(2.9rem, 7.4vw, 7rem)/.98 var(--f-display); letter-spacing: -.02em;
  margin: 0 0 .35em;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__lede { max-width: 52ch; font-size: clamp(1rem, 1.25vw, 1.15rem); color: var(--on-ink); opacity: .88; margin: 0 0 2.2rem; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__foot {
  position: relative; display: flex; align-items: center; gap: 24px; justify-content: space-between;
  padding-bottom: 28px; border-top: 1px solid var(--line-ink); padding-top: 18px;
}
.hero__chapters { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; flex-wrap: wrap; }
.hero__chapters button {
  position: relative; background: none; border: 0; color: var(--on-ink); opacity: .6;
  padding: 12px 14px 14px 0; min-height: 44px; margin-right: 18px;
  font: 500 .8rem/1 var(--f-body); letter-spacing: .12em; text-transform: uppercase;
  transition: opacity var(--t-fast);
}
.hero__chapters button span { color: var(--gold-soft); margin-right: .5em; }
.hero__chapters button::after {
  content: ""; position: absolute; left: 0; right: 14px; bottom: 4px; height: 1px; background: var(--gold-soft);
  transform: scaleX(0); transform-origin: left;
}
.hero__chapters li.is-on button { opacity: 1; }
.hero__chapters li.is-on button::after { animation: fill var(--dur, 8s) linear forwards; }
.hero.is-paused .hero__chapters li.is-on button::after { animation-play-state: paused; }
@keyframes fill { to { transform: scaleX(1); } }
.hero__pause {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(243,236,223,.4);
  background: rgba(20,17,13,.3); color: var(--on-ink); display: grid; place-items: center; flex: none;
}
.hero__pause svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; }
.hero__pause .i-play { display: none; fill: currentColor; }
.hero__pause[aria-pressed="true"] .i-pause { display: none; }
.hero__pause[aria-pressed="true"] .i-play { display: block; }

/* hero entrance */
.js .hero .eyebrow, .js .hero__title .line, .js .hero__lede, .js .hero__ctas {
  opacity: 0; transform: translateY(24px);
  animation: rise 1.1s var(--ease-out) forwards;
}
.js .hero .eyebrow { animation-delay: .15s; }
.js .hero__title .line:nth-child(1) { animation-delay: .25s; }
.js .hero__title .line:nth-child(2) { animation-delay: .37s; }
.js .hero__title .line:nth-child(3) { animation-delay: .49s; }
.js .hero__lede { animation-delay: .7s; }
.js .hero__ctas { animation-delay: .85s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Marquee ---------- */
.marquee { background: var(--gold); color: var(--ink); overflow: hidden; padding-block: 18px; }
.marquee__track { display: flex; align-items: center; gap: 36px; width: max-content; animation: marquee 48s linear infinite; }
.marquee span { font: italic 500 clamp(1.4rem, 2.4vw, 2rem)/1 var(--f-display); white-space: nowrap; }
.marquee i { width: 8px; height: 8px; transform: rotate(45deg); background: var(--ink); flex: none; opacity: .6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(36px); transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Origin ---------- */
.origin { background: var(--ivory); }
.origin__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.origin__copy p:not(.lead):not(.eyebrow) { color: var(--text-muted); max-width: 58ch; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 3rem 0 0; padding-top: 2rem; border-top: 1px solid var(--line); }
.facts dt { font: 500 clamp(2.4rem, 4vw, 3.4rem)/1 var(--f-display); color: var(--gold-deep); margin-bottom: .4rem; }
.facts dd { margin: 0; font-size: .88rem; line-height: 1.5; color: var(--text-muted); }
.origin__media { position: relative; margin: 0; padding: 0 0 60px 40px; }
.frame { overflow: hidden; background: var(--ivory-2); }
.frame video, .frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--arch { aspect-ratio: 4 / 5; border-radius: 999px 999px var(--r) var(--r); }
.frame--seal {
  position: absolute; left: 0; bottom: 0; width: clamp(140px, 17vw, 230px); aspect-ratio: 1;
  border-radius: 50%; border: 8px solid var(--ivory); box-shadow: 0 24px 50px -20px rgba(20,17,13,.45);
}
.origin__media figcaption {
  position: absolute; right: 0; bottom: 18px; font: italic 1rem/1.3 var(--f-display); color: var(--text-muted);
  max-width: 18ch; text-align: right;
}

/* ---------- Mithila border ---------- */
.mithila-border { position: absolute; left: 0; right: 0; top: 0; width: 100%; height: 28px; color: var(--gold-soft); opacity: .55; }

/* ---------- Section heads ---------- */
.sec-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 84px); }
.sec-head--split { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: end; }
.sec-head--split .h2 { margin-bottom: 0; }
.sec-head--center { text-align: center; margin-inline: auto; }
.sec-head--center .eyebrow { justify-content: center; }

/* ---------- Makhana ---------- */
.makhana__feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.makhana__img { position: relative; border-radius: var(--r); overflow: hidden; min-height: 420px; }
.makhana__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease-out); }
.makhana__img:hover img { transform: scale(1.04); }
.tag {
  position: absolute; left: 20px; bottom: 20px; background: rgba(20,17,13,.78); backdrop-filter: blur(8px);
  color: var(--on-ink); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; padding: 10px 14px; border-radius: 999px;
}
.grades { display: flex; flex-direction: column; justify-content: center; }
.grades__row {
  display: grid; grid-template-columns: 1.2fr .9fr 1.3fr; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--line-ink); font-size: .95rem; color: var(--on-ink-muted);
  font-variant-numeric: tabular-nums; transition: background var(--t-fast), padding var(--t-fast);
}
.grades__row b { display: block; font: 500 1.45rem/1.1 var(--f-display); color: var(--on-ink); }
.grades__row:not(.grades__row--head):hover { background: rgba(224,184,98,.06); }
.grades__row--head { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); padding-top: 0; }
.grades__note { font-size: .82rem; color: var(--on-ink-muted); margin: 18px 0 0; font-style: italic; }

.formats { list-style: none; padding: 0; margin: clamp(56px, 7vw, 96px) 0 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-ink); }
.formats li { padding: 36px 28px 8px 0; }
.formats li + li { padding-left: 28px; border-left: 1px solid var(--line-ink); }
.formats svg { width: 44px; height: 44px; fill: none; stroke: var(--gold-soft); stroke-width: 1.3; stroke-linecap: round; margin-bottom: 20px; }
.formats h3 { font: 500 1.6rem/1.15 var(--f-display); margin: 0 0 .5rem; }
.formats p { margin: 0; font-size: .92rem; color: var(--on-ink-muted); }

/* ---------- Film band ---------- */
.band { position: relative; min-height: clamp(460px, 80vh, 760px); display: grid; place-items: center; overflow: hidden; background: var(--ink); color: var(--on-ink); }
.band__vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band__veil { position: absolute; inset: 0; background: radial-gradient(70% 70% at 50% 50%, rgba(20,17,13,.55), rgba(20,17,13,.85)); }
.band__quote { position: relative; text-align: center; margin: 0 auto; max-width: 1000px; }
.band__quote p { font: 500 clamp(2rem, 4.4vw, 3.8rem)/1.12 var(--f-display); margin: 0 0 1.4rem; text-wrap: balance; }
.band__quote cite { font-style: normal; font-size: .78rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-soft); }

/* ---------- Spices ---------- */
.spices { background: var(--paper); }
.spice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 3vw, 44px) clamp(18px, 2vw, 28px); }
.spice { position: relative; }
.spice:nth-child(4n+2), .spice:nth-child(4n+4) { margin-top: 48px; }
.spice__img { aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--r); background: var(--ivory-2); }
.spice__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out), filter var(--t-med); filter: saturate(.92); }
.spice:hover .spice__img img { transform: scale(1.06); filter: saturate(1.08); }
.spice__body { padding-top: 20px; }
.spice__origin { margin: 0 0 .3rem; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.spice h3 { font: 500 1.7rem/1.1 var(--f-display); margin: 0 0 .4rem; }
.spice__body p:last-child { margin: 0; color: var(--text-muted); font-size: .95rem; max-width: 36ch; }

/* ---------- Services ---------- */
.svc { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-ink); }
.svc li { position: relative; padding: 40px 36px 44px 0; border-bottom: 1px solid var(--line-ink); transition: background var(--t-med); }
.svc li:not(:nth-child(3n+1)) { padding-left: 36px; border-left: 1px solid var(--line-ink); }
.svc li::before { content: ""; position: absolute; left: 0; top: -1px; height: 1px; width: 0; background: var(--gold-soft); transition: width var(--t-slow) var(--ease-out); }
.svc li:hover::before { width: 100%; }
.svc__n { display: block; font: italic 500 2.6rem/1 var(--f-display); color: var(--gold-soft); margin-bottom: 22px; }
.svc h3 { font: 500 1.75rem/1.15 var(--f-display); margin: 0 0 .6rem; color: var(--on-ink); }
.svc p { margin: 0; font-size: .95rem; color: var(--on-ink-muted); max-width: 40ch; }
.js .svc li.reveal:nth-child(3n+2) { transition-delay: 90ms; }
.js .svc li.reveal:nth-child(3n+3) { transition-delay: 180ms; }
@media (max-width: 900px) {
  .svc { grid-template-columns: 1fr 1fr; }
  .svc li, .svc li:not(:nth-child(3n+1)) { padding: 32px 24px 36px 0; border-left: 0; }
  .svc li:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line-ink); }
}
@media (max-width: 600px) {
  .svc { grid-template-columns: 1fr; }
  .svc li, .svc li:nth-child(even) { padding: 28px 0 30px; border-left: 0; }
}

/* ---------- Process ---------- */
.process { overflow: hidden; }
.process__vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.process__veil { position: absolute; inset: 0; background: linear-gradient(180deg, var(--leaf) 0%, rgba(31,51,38,.72) 40%, rgba(31,51,38,.9) 100%); }
.process .wrap { position: relative; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; counter-reset: s; }
.step { padding: 32px 24px 8px 0; border-top: 1px solid rgba(243,236,223,.28); position: relative; }
.step::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--gold-soft); }
.step + .step { padding-left: 0; }
.step__n { font: italic 500 3rem/1 var(--f-display); color: var(--gold-soft); display: block; margin-bottom: 18px; }
.step h3 { font: 500 1.5rem/1.15 var(--f-display); margin: 0 0 .5rem; }
.step p { margin: 0; font-size: .92rem; color: var(--on-ink-muted); }
.js .step.reveal:nth-child(2) { transition-delay: 90ms; }
.js .step.reveal:nth-child(3) { transition-delay: 180ms; }
.js .step.reveal:nth-child(4) { transition-delay: 270ms; }
.js .step.reveal:nth-child(5) { transition-delay: 360ms; }

/* ---------- Packs ---------- */
.packs { background: var(--ivory); }
.packs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.packs__media { aspect-ratio: 1; border-radius: var(--r); overflow: hidden; background: var(--ivory-2); }
.packs__media video { width: 100%; height: 100%; object-fit: cover; }
.packlist { list-style: none; padding: 0; margin: 1rem 0 0; }
.packlist li { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.packlist b { font: 500 1.35rem/1.2 var(--f-display); }
.packlist span { color: var(--text-muted); font-size: .95rem; }

/* ---------- Markets ---------- */
.markets__map { position: relative; margin-bottom: 56px; }
.markets__map svg { width: 100%; height: auto; }
.map__dots circle { fill: rgba(243,236,223,.18); }
.map__routes path { fill: none; stroke: var(--gold-soft); stroke-width: 1.4; stroke-dasharray: 5 6; opacity: .85; }
.js .map__routes path { stroke-dashoffset: 600; transition: stroke-dashoffset 2.6s var(--ease-out); }
.js .markets__map.is-in .map__routes path { stroke-dashoffset: 0; }
.pin { fill: var(--gold-soft); }
.pin--home { fill: var(--chilli); stroke: var(--gold-soft); stroke-width: 2; }
.pin--home { animation: pulse 2.4s ease-out infinite; }
.map__label { fill: var(--on-ink); font: italic 500 20px var(--f-display); }
@keyframes pulse { 0%,100% { stroke-width: 2; } 50% { stroke-width: 7; stroke-opacity: .3; } }
.regions { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.regions li { border-top: 1px solid var(--line-ink); padding-top: 20px; color: var(--on-ink-muted); font-size: .92rem; }
.regions b { display: block; font: 500 1.5rem/1.2 var(--f-display); color: var(--on-ink); margin-bottom: 6px; }

/* ---------- Trust ---------- */
.trust { background: var(--paper); padding-block: clamp(72px, 9vw, 120px); }
.badges { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid var(--line); border-radius: var(--r); }
.badges li { padding: 32px 18px; text-align: center; font-size: .82rem; color: var(--text-muted); line-height: 1.45; }
.badges li + li { border-left: 1px solid var(--line); }
.badges span { display: block; font: 600 1.6rem/1.1 var(--f-display); color: var(--text); margin-bottom: 8px; letter-spacing: .02em; }

/* ---------- Enquire ---------- */
.enquire__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.enquire .h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
.contact { list-style: none; padding: 0; margin: 2.4rem 0 0; display: grid; gap: 14px; }
.contact li { display: flex; align-items: center; gap: 14px; color: var(--on-ink-muted); }
.contact svg { width: 22px; height: 22px; fill: none; stroke: var(--gold-soft); stroke-width: 1.5; flex: none; }
.contact a { color: var(--on-ink); text-decoration: none; border-bottom: 1px solid var(--line-ink); padding-block: 8px; }
.contact a:hover { border-color: var(--gold-soft); }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; background: var(--ink-2); border: 1px solid var(--line-ink); padding: clamp(24px, 3.5vw, 44px); border-radius: var(--r); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--on-ink-muted); }
.field abbr { color: var(--gold-soft); text-decoration: none; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; font: 400 1rem/1.4 var(--f-body);
  color: var(--on-ink); background: var(--ink); border: 1px solid rgba(243,236,223,.22); border-radius: var(--r);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23e0b862' stroke-width='1.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #8d8272; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-soft); box-shadow: 0 0 0 3px rgba(224,184,98,.2); }
.field input[aria-invalid="true"] { border-color: #e2715f; }
.field__err { margin: 0; min-height: 0; font-size: .82rem; color: #f09a8a; }
.field__err:empty { display: none; }
.form__foot { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form__status { margin: 0; font-size: .92rem; color: var(--gold-soft); }
.btn[disabled] { opacity: .5; cursor: progress; }

/* ---------- Footer ---------- */
.footer { position: relative; background: var(--ink); color: var(--on-ink-muted); padding: 96px 0 32px; border-top: 1px solid var(--line-ink); }
.mithila-border--top { top: 18px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line-ink); }
.brand--footer { color: var(--on-ink); }
.footer__tag { font: italic 1.25rem/1.4 var(--f-display); color: var(--on-ink-muted); max-width: 28ch; margin-top: 20px; }
.footer h3 { font: 600 .72rem/1 var(--f-body); letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); margin: 8px 0 18px; }
.footer nav a { display: block; text-decoration: none; padding-block: 7px; font-size: .92rem; color: var(--on-ink-muted); transition: color var(--t-fast); }
.footer nav a:hover, .footer p a:hover { color: var(--on-ink); }
.footer p { font-size: .92rem; margin: 0; }
.footer p a { text-decoration: none; }
.footer__base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; font-size: .8rem; }
.footer__base p { font-size: .8rem; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .nav__links { gap: 22px; }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .badges { grid-template-columns: repeat(3, 1fr); }
  .badges li:nth-child(4) { border-left: 0; }
  .badges li:nth-child(n+4) { border-top: 1px solid var(--line); }
  .formats { grid-template-columns: repeat(2, 1fr); }
  .formats li:nth-child(3) { border-left: 0; padding-left: 0; }
  .formats li:nth-child(n+3) { border-top: 1px solid var(--line-ink); }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .origin__grid, .makhana__feature, .packs__grid, .enquire__grid, .sec-head--split { grid-template-columns: 1fr; }
  .origin__media { max-width: 520px; }
  .spice-grid { grid-template-columns: repeat(2, 1fr); }
  .spice-grid { grid-template-columns: repeat(2, 1fr); }
  .spice:nth-child(4n+2), .spice:nth-child(4n+4) { margin-top: 0; }
  .spice:nth-child(even) { margin-top: 40px; }
  .regions { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .makhana__img { min-height: 320px; }
}

@media (max-width: 600px) {
  .hero__title { font-size: clamp(2.6rem, 11vw, 3.4rem); }
  .hero__chapters button { margin-right: 4px; padding-right: 10px; font-size: .72rem; }
  .hero__chapters li:not(.is-on) button { font-size: 0; }
  .hero__chapters li:not(.is-on) button span { font-size: .72rem; }
  .facts { grid-template-columns: 1fr; gap: 20px; }
  .facts div { display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 16px; }
  .facts dt { margin: 0; }
  .grades__row { grid-template-columns: 1fr 1fr; }
  .grades__row span:last-child { grid-column: 1 / -1; margin-top: -8px; font-size: .88rem; }
  .grades__row--head span:last-child { display: none; }
  .formats { grid-template-columns: 1fr; }
  .formats li, .formats li + li { padding: 28px 0 8px; border-left: 0; }
  .formats li + li { border-top: 1px solid var(--line-ink); }
  .spice-grid { gap: 28px 14px; }
  .spice h3 { font-size: 1.35rem; }
  .spice__body p:last-child { font-size: .85rem; }
  .spice__origin { font-size: .62rem; letter-spacing: .14em; }
  .steps { grid-template-columns: 1fr; }
  .packlist li { grid-template-columns: 1fr; gap: 4px; }
  .regions { grid-template-columns: 1fr; gap: 20px; }
  .markets__map { overflow: hidden; margin-inline: calc(var(--gutter) * -1); }
  .markets__map svg { width: 190%; max-width: none; margin-left: -88%; }
  .badges { grid-template-columns: repeat(2, 1fr); }
  .badges li { border-left: 0 !important; border-top: 1px solid var(--line); }
  .badges li:nth-child(-n+2) { border-top: 0; }
  .badges li:nth-child(even) { border-left: 1px solid var(--line) !important; }
  .form { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .origin__media { padding-left: 24px; padding-bottom: 48px; }
  .origin__media figcaption { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js .reveal, .js .hero .eyebrow, .js .hero__title .line, .js .hero__lede, .js .hero__ctas { opacity: 1; transform: none; }
  .hero__vid { transform: none; }
  .marquee__track { animation: none; }
}
