@import url('assets/fonts/royal-fonts.css');

/* ============================================================
   Diet DharBhar — v3 (immersive arch)
   v2's dark theme (charcoal #151311 + logo orange #EF7F2C)
   with a scroll-through Mughal-arch hero (GSAP scrub).
   Self-hosted royal serifs (Cinzel / Cormorant / Great Vibes).
   ============================================================ */

:root {
  /* Palette — derived from the new orange-on-black logo */
  --bg:            #151311;   /* warm near-black page canvas */
  --bg-2:          #1E1B17;   /* alternating section band */
  --surface:       #221E19;   /* raised card surface */
  --surface-2:     #2A251F;   /* hover / deeper surface */
  --footer-bg:     #100E0C;   /* darkest band (contact/footer) */

  --orange:        #EF7F2C;   /* primary accent — logo orange */
  --orange-bright: #FF9542;   /* hover / glow */
  --orange-deep:   #C8601B;   /* pressed / deep border */

  --cream:         #F4ECDF;   /* primary text — warm off-white */
  --muted:         #B7AC9C;   /* secondary text */
  --white:         #FFFFFF;   /* tiny caps labels (echo logo tagline) */

  --veg:           #7CA65A;   /* muted garden green — vegetarian marker */
  --nonveg:        #C0492B;   /* deep terracotta — non-veg (kin to --orange-deep) */

  --line:          rgba(239, 127, 44, 0.22);  /* orange hairlines */
  --line-soft:     rgba(255, 255, 255, 0.08); /* subtle neutral borders */

  /* v3 — arch hero */
  --gold:          #FFD9A0;   /* rim apex highlight */
  --gold-2:        #FFCE7A;   /* secondary gold */
  --hero-wall:     #1A1613;   /* arch wall fill */
  --hero-void:     #0F0C0A;   /* deepest interior beyond the arch */
  --hero-runway:   280vh;     /* scroll distance of the pass-through */

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  0.7s;

  /* Content rhythm */
  --pad-x: clamp(24px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 132px);
  --maxw: 1180px;
  --header-h: 120px;   /* minimal bar: hamburger · big logo · contact icon */
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  /* clip (not hidden) so the sticky hero stage keeps the viewport as its scroller */
  overflow-x: hidden;
  overflow-x: clip;
}
img, svg, iframe { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--orange); color: var(--bg); }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 200;
  background: var(--orange); color: var(--bg);
  padding: 10px 16px; border-radius: 6px; font-family: 'Cinzel', serif; font-weight: 600;
  transform: translateY(-160%); transition: transform var(--dur) var(--ease);
}
.skip-link:focus { transform: none; }

/* ---------------- Type roles ---------------- */
.eyebrow {
  font-family: 'Cinzel', serif; font-weight: 600;
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--orange);
}
.heading {
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.08; letter-spacing: 0.01em;
  text-transform: uppercase; color: var(--cream);
}
.heading--center { text-align: center; }
.script {
  font-family: 'Great Vibes', cursive; font-weight: 400;
  line-height: 1.05; font-size: clamp(34px, 6vw, 76px);
  color: var(--orange);
}
.lead {
  font-size: clamp(19px, 1.7vw, 24px); font-weight: 500;
  line-height: 1.45; max-width: 60ch; color: var(--muted);
}
.lead--center { margin-inline: auto; text-align: center; }
.body { max-width: 62ch; color: var(--cream); }
em { font-style: italic; color: var(--orange-bright); }
.note { font-size: 0.82em; font-style: italic; color: var(--orange); display: inline-block; }

/* ---------------- Buttons ---------------- */
.pill {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-weight: 600;
  font-size: clamp(12px, 1vw, 14px); letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.95em 1.9em; border-radius: 999px;
  border: 1.5px solid var(--orange);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}
.pill--solid { background: var(--orange); color: var(--bg); }
.pill--solid:hover, .pill--solid:focus-visible { background: var(--orange-bright); border-color: var(--orange-bright); }
.pill--ghost { background: transparent; color: var(--orange); }
.pill--ghost:hover, .pill--ghost:focus-visible { background: var(--orange); color: var(--bg); }

/* ---------------- Reveal ----------------
   Hidden states are scoped to .js so a no-JS visit still sees everything. */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); transition-delay: var(--rd, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }
.frame { overflow: hidden; border-radius: 6px; }
.frame > img { width: 100%; height: 100%; object-fit: cover; }
.js .frame > img { transform: scale(1.12); transition: transform 1s var(--ease); }
.js .is-in .frame > img, .js .frame.is-in > img { transform: scale(1); }

/* ---------------- Divider (minimal orange rule + diamond) ---------------- */
.divider {
  display: block;
  width: min(280px, 60%); height: 1px; margin: clamp(48px, 7vw, 96px) auto 0;
  background: var(--line-soft);
  position: relative;
}
.divider::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 8px; height: 8px; background: var(--orange);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; z-index: 50; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 14px var(--pad-x);
  transition: padding var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.scrolled {
  padding: 8px var(--pad-x);
  background: rgba(21, 19, 17, 0.94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-soft), 0 12px 30px rgba(0, 0, 0, 0.4);
}
/* When the full-screen menu is open, drop the scrolled bar's background,
   blur and shadow so it doesn't paint a seam across the overlay (the bar
   sits above the overlay; this was the "not good after scrolling" glitch). */
.nav-open .site-header,
.nav-open .site-header.scrolled {
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
.brand { z-index: 55; display: inline-flex; align-items: center; transition: opacity var(--dur) var(--ease), visibility var(--dur); }
.brand-logo { height: clamp(60px, 8vw, 92px); width: auto; transition: height var(--dur) var(--ease); }
.site-header.scrolled .brand-logo { height: clamp(46px, 5.4vw, 62px); }

/* v3: the centered brand yields the stage to the arch until the copy settles */
.js body:not(.show-brand) .site-header .brand { opacity: 0; visibility: hidden; }

/* Minimal WhatsApp / contact icon (right), brand orange */
.header-contact { position: absolute; right: var(--pad-x); top: 50%; transform: translateY(-50%); z-index: 55; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; color: var(--orange); transition: color var(--dur) var(--ease); }
.header-contact svg { width: 24px; height: 24px; }
.header-contact:hover, .header-contact:focus-visible { color: var(--orange-bright); }

/* Nav lives behind the hamburger at all widths — the links are a fixed
   full-screen overlay, so the .nav wrapper takes no layout of its own. */
.nav { position: absolute; }
.nav-links {
  position: fixed; inset: 0; z-index: 45;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(22px, 3vw, 34px); padding: calc(var(--header-h) + 24px) 24px 48px;
  background: rgba(16, 14, 12, 0.98);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.nav-open .nav-links { opacity: 1; visibility: visible; transform: none; }
.nav-links a {
  font-family: 'Cinzel', serif; font-weight: 600; font-size: clamp(16px, 2vw, 20px);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream);
  padding: 6px 2px; position: relative;
  transition: color var(--dur) var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--orange); transform: scaleX(0); transform-origin: center;
  transition: transform var(--dur) var(--ease);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--orange); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }

/* Assessment CTA styled as a solid pill inside the menu overlay.
   Explicit rules so the .nav-links a cascade doesn't override the pill's colours. */
.nav-links .nav-cta {
  margin-top: 12px; color: var(--bg);
  padding: 0.95em 1.9em;
  font-size: clamp(13px, 1.4vw, 15px); letter-spacing: 0.14em;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover, .nav-links .nav-cta:focus-visible { color: var(--bg); }

/* Hamburger (left) */
.nav-toggle { position: absolute; left: var(--pad-x); top: 50%; transform: translateY(-50%); z-index: 60; display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 2px; background: var(--orange);
  border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }
.nav-toggle:hover span, .nav-toggle:hover span::before, .nav-toggle:hover span::after { background: var(--orange-bright); }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Layout wrappers
   ============================================================ */
main { display: block; }
.band { background: var(--bg); }
.band--alt { background: var(--bg-2); }
.section {
  max-width: var(--maxw); margin-inline: auto;
  padding: var(--section-y) var(--pad-x);
  scroll-margin-top: 84px;
}
.section--wide { max-width: 1440px; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vw, 72px); display: grid; gap: 18px; justify-items: center; }

/* Kept from v2's hero — reused by the arch hero's h1 */
.hero-title { display: flex; flex-direction: column; align-items: center; }
.hero-line-1 { font-family: 'Cinzel', serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: clamp(20px, 3.4vw, 44px); line-height: 1.05; color: var(--cream); }
.hero-line-2 { font-size: clamp(52px, 10.5vw, 138px); line-height: 0.9; color: var(--orange); margin-top: 0.04em; }

/* ============================================================
   What is Diet — asymmetric two-column
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 4vw, 56px); }
.col-side .eyebrow { position: sticky; top: 104px; }
.col-main { display: grid; gap: 22px; }
.col-main .lead { margin-top: 4px; }
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 22px; }
.feature-row li { display: grid; gap: 6px; padding-top: 18px; border-top: 2px solid var(--orange); transition: border-top-color var(--dur) var(--ease); }
.feature-row li:hover { border-top-color: var(--orange-bright); }
.feature-num { font-family: 'Cinzel', serif; font-weight: 700; color: var(--orange); font-size: 14px; letter-spacing: 0.1em; transition: color var(--dur) var(--ease); }
.feature-row li:hover .feature-num { color: var(--orange-bright); }
.feature-t { font-family: 'Cinzel', serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: clamp(15px, 1.4vw, 18px); color: var(--cream); }
.feature-d { font-size: 0.94em; color: var(--muted); }

@media (min-width: 860px) { .two-col { grid-template-columns: 0.32fr 0.68fr; } }

/* ============================================================
   The Food — plate grid
   ============================================================ */
/* proportion bar — visual ½ / ¼ / ¼ plate composition */
.plate-bar { display: flex; gap: 4px; max-width: 760px; margin: 0 auto clamp(30px, 4vw, 50px); border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3); }
.pb-seg { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: clamp(16px, 2.4vw, 26px) 10px; text-align: center; }
.pb-frac { font-family: 'Cinzel', serif; font-weight: 700; line-height: 1; font-size: clamp(24px, 3.2vw, 40px); }
.pb-lab { font-family: 'Cinzel', serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-size: clamp(10px, 1vw, 12px); }
.pb-veg { flex: 2; background: var(--orange); color: var(--bg); }
.pb-pro { flex: 1; background: rgba(239, 127, 44, 0.42); color: var(--cream); }
.pb-gra { flex: 1; background: rgba(239, 127, 44, 0.20); color: var(--cream); }

.plate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: clamp(16px, 2vw, 26px); }
.plate-card, .step { position: relative; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 16px; padding: clamp(30px, 3vw, 42px) clamp(20px, 2.4vw, 30px); text-align: center; display: grid; gap: 12px; justify-items: center; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3); transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.plate-card:hover, .step:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42), 0 10px 40px rgba(239, 127, 44, 0.15); }
.plate-medallion, .step-medallion { position: relative; width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; background: var(--bg); border: 2px solid var(--orange); margin-bottom: 6px; }
.plate-medallion::after, .step-medallion::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; border: 1px solid var(--orange-deep); }
.plate-frac, .step-num { font-family: 'Cinzel', serif; font-weight: 700; font-size: 30px; line-height: 1; color: var(--orange); }
.plate-t, .step-t { font-family: 'Cinzel', serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: clamp(15px, 1.4vw, 18px); color: var(--cream); }
.plate-d, .step-d { font-size: 0.95em; color: var(--muted); }
.step-d { max-width: 30ch; }

/* ============================================================
   Dishes — carousel
   ============================================================ */
.carousel { position: relative; }
.dishes-track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 78vw, 400px);
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px 2px 26px; margin: 0 -2px;
  scrollbar-width: thin; scrollbar-color: var(--orange-deep) transparent;
}
.dishes-track::-webkit-scrollbar { height: 8px; }
.dishes-track::-webkit-scrollbar-thumb { background: var(--orange-deep); border-radius: 999px; }
.dishes-track::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.06); border-radius: 999px; }
.dishes-track.dragging { scroll-snap-type: none; cursor: grabbing; }
.dish-card { position: relative; scroll-snap-align: start; display: grid; gap: 10px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 14px; padding: 14px 14px 22px; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32); transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.dish-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42), 0 10px 40px rgba(239, 127, 44, 0.15); }

/* Shared top accent — a thin gold rule that scales in on card hover */
.plate-card::after, .dish-card::after, .plan-card::after, .review::after {
  content: ""; position: absolute; top: 0; left: 20%; right: 20%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  transform: scaleX(0); transition: transform var(--dur) var(--ease);
  pointer-events: none;
}
.plate-card:hover::after, .dish-card:hover::after,
.plan-card:hover::after, .review:hover::after { transform: scaleX(1); }
.dish-frame { aspect-ratio: 4 / 3; border-radius: 10px; border: 1px solid var(--line); }
.dish-frame img { -webkit-user-drag: none; user-select: none; object-position: center; }
.dish-name { font-family: 'Cinzel', serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; font-size: clamp(15px, 1.5vw, 19px); color: var(--cream); line-height: 1.15; }
.dish-note { font-size: 0.95em; color: var(--muted); }

/* Veg / Non-veg / High-protein tags (replaces .dish-time) */
.dish-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.dish-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Cinzel', serif; font-weight: 600;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--line-soft); background: rgba(255, 255, 255, 0.02);
}
/* FSSAI-style rounded-square marker; colour is decorative (label carries meaning) */
.dish-dot {
  flex: none; width: 11px; height: 11px;
  border: 1.5px solid currentColor; border-radius: 3px;
  display: inline-grid; place-items: center;
}
.dish-dot::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
.dish-tag--veg    .dish-dot { color: var(--veg); }
.dish-tag--nonveg .dish-dot { color: var(--nonveg); }
.dish-tag--protein { color: var(--orange-bright); background: rgba(239, 127, 44, 0.14); border-color: var(--line); }

/* Diet breakdown: kcal lead + macro stat row */
.dish-stats { display: grid; gap: 10px; margin-top: 2px; padding-top: 12px; border-top: 1px solid var(--line-soft); }
.dish-kcal { font-family: 'Cinzel', serif; font-weight: 700; font-size: clamp(15px, 1.6vw, 18px); letter-spacing: 0.05em; color: var(--orange); }
.dish-approx { font-family: 'Cinzel', serif; font-weight: 600; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-left: 4px; }
.dish-macros { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.macro { display: grid; gap: 3px; justify-items: center; text-align: center; min-width: 0; }
.macro-v { font-family: 'Cinzel', serif; font-weight: 700; line-height: 1; font-size: clamp(14px, 1.5vw, 17px); color: var(--cream); }
.macro-l { font-family: 'Cinzel', serif; font-weight: 600; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.macro--hi .macro-v { color: var(--orange-bright); }
.macro--hi .macro-l { color: var(--orange); }

/* What's inside — the 3 compartments */
.dish-inside { font-size: 0.92em; line-height: 1.4; color: var(--muted); }
.dish-inside-lab { font-family: 'Cinzel', serif; font-weight: 600; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); display: inline-block; margin-right: 6px; }

/* Approx-numbers footnote under the carousel */
.dishes-note { text-align: center; margin-top: 22px; font-style: italic; color: var(--muted); font-size: 0.9em; }

@media (max-width: 400px) {
  .macro-v { font-size: 13px; }
  .dish-tag { font-size: 9px; letter-spacing: 0.12em; padding: 4px 10px; }
}

.dish-nav { position: absolute; top: 38%; z-index: 5; width: 48px; height: 48px; border-radius: 999px; border: 1.5px solid var(--orange); background: rgba(21, 19, 17, 0.85); color: var(--orange); font-size: 26px; line-height: 1; display: grid; place-items: center; box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4); transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.dish-nav:hover { background: var(--orange); color: var(--bg); }
.dish-nav--prev { left: -6px; }
.dish-nav--next { right: -6px; }
@media (max-width: 620px) { .dish-nav { display: none; } }

/* ============================================================
   How it works — connected timeline
   ============================================================ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 30px); position: relative; align-items: start; }
.timeline::before { content: ""; position: absolute; top: 37px; left: 12.5%; right: 12.5%; height: 2px; background: var(--line); z-index: 0; }
.tl-step { position: relative; z-index: 1; display: grid; justify-items: center; text-align: center; gap: 14px; padding: 0 6px; }
.tl-node { width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-2); border: 2px solid var(--orange); color: var(--orange); font-family: 'Cinzel', serif; font-weight: 700; font-size: 30px; line-height: 1; transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.tl-step:hover .tl-node { background: var(--orange); color: var(--bg); transform: translateY(-4px); box-shadow: 0 10px 26px rgba(239, 127, 44, 0.28); }
.tl-body { display: grid; gap: 8px; }
.tl-t { font-family: 'Cinzel', serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: clamp(15px, 1.4vw, 18px); color: var(--cream); }
.tl-d { font-size: 0.95em; color: var(--muted); max-width: 28ch; margin-inline: auto; }

@media (max-width: 760px) {
  .timeline { grid-template-columns: 1fr; gap: 26px; }
  .timeline::before { top: 10px; bottom: 10px; left: 37px; right: auto; width: 2px; height: auto; }
  .tl-step { grid-template-columns: 74px 1fr; justify-items: start; text-align: left; gap: 18px; align-items: center; }
  .tl-d { margin-inline: 0; max-width: none; }
}

/* ============================================================
   Plans
   ============================================================ */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(18px, 2vw, 28px); align-items: start; }
.plan-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 16px; padding: clamp(26px, 3vw, 38px); display: grid; gap: 14px; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32); position: relative; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.plan-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42), 0 10px 40px rgba(239, 127, 44, 0.15); }
.plan-card--featured { background: linear-gradient(180deg, rgba(239, 127, 44, 0.08), var(--surface) 42%); border: 1.5px solid var(--orange); transform: translateY(-10px); box-shadow: 0 20px 46px rgba(0, 0, 0, 0.42), 0 8px 34px rgba(239, 127, 44, 0.12); }
.plan-card--featured::after { transform: scaleX(1); }
.plan-card--featured:hover { transform: translateY(-16px); box-shadow: 0 28px 58px rgba(0, 0, 0, 0.46), 0 12px 44px rgba(239, 127, 44, 0.2); }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--bg); font-family: 'Cinzel', serif; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.plan-name { font-family: 'Cinzel', serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: clamp(18px, 1.8vw, 24px); color: var(--orange); }
.plan-price { font-family: 'Cinzel', serif; font-weight: 700; font-size: clamp(30px, 3.4vw, 44px); line-height: 1; color: var(--cream); }
.plan-cur { font-size: 0.55em; vertical-align: 0.35em; margin-right: 2px; color: var(--orange); }
.plan-per { font-size: 0.34em; letter-spacing: 0.06em; color: var(--muted); }
.plan-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05em; color: var(--muted); }
.plan-feats { display: grid; gap: 10px; margin: 4px 0 6px; }
.plan-feats li { position: relative; padding-left: 26px; font-size: 0.98em; color: var(--cream); }
.plan-feats li::before { content: ""; position: absolute; left: 4px; top: 0.62em; width: 7px; height: 7px; background: var(--orange); transform: rotate(45deg); }
.plan-cta { justify-self: start; margin-top: 6px; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(18px, 2vw, 30px); }
.review { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 14px; padding: clamp(26px, 3vw, 38px); display: grid; gap: 16px; box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3); position: relative; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.review:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42), 0 10px 40px rgba(239, 127, 44, 0.15); }
/* Quote mark → decorative watermark so the star rating leads the card */
.review::before { content: "\201C"; position: absolute; top: 14px; right: 24px; font-family: 'Cinzel', serif; font-size: 72px; line-height: 0.7; color: var(--orange); opacity: 0.16; pointer-events: none; }
.review-stars { color: var(--orange); font-size: 15px; letter-spacing: 0.12em; line-height: 1; }
.review blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15em; line-height: 1.4; color: var(--cream); }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.review-avatar { flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--bg); border: 1.5px solid var(--orange); font-family: 'Cinzel', serif; font-weight: 700; font-size: 18px; color: var(--orange); }
.review-who { display: flex; flex-direction: column; gap: 2px; }
.review-name { font-family: 'Cinzel', serif; font-weight: 600; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); }
.review-city { font-family: 'Cormorant Garamond', serif; font-size: 0.95em; color: var(--muted); }
.reviews-note { text-align: center; margin-top: 30px; font-style: italic; color: var(--muted); font-size: 0.9em; }

/* ============================================================
   Founders
   ============================================================ */
.founders-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(18px, 2vw, 30px); }
.founder-card { --founder-pad: clamp(26px, 3vw, 38px); background: var(--surface); border: 1px solid var(--line-soft); border-radius: 14px; padding: var(--founder-pad); display: grid; gap: 14px; justify-items: center; text-align: center; box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3); transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.founder-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42), 0 10px 40px rgba(239, 127, 44, 0.15); }
/* full poster, uncropped, bled to the card edges — the name is baked into the artwork */
.founder-photo { width: calc(100% + 2 * var(--founder-pad)); max-width: none; height: auto; margin: calc(-1 * var(--founder-pad)) calc(-1 * var(--founder-pad)) 0; border-radius: 13px 13px 0 0; }
.founder-role { font-family: 'Cinzel', serif; font-weight: 600; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); }
.founder-bio { max-width: 52ch; color: var(--muted); }
.founder-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15em; color: var(--cream); }

/* ============================================================
   Footer / contact
   ============================================================ */
.site-footer { background: var(--footer-bg); color: var(--cream); scroll-margin-top: 70px; padding: clamp(56px, 8vw, 110px) var(--pad-x) 0; border-top: 1px solid var(--line); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; gap: clamp(40px, 6vw, 72px); grid-template-columns: 1fr; align-items: start; }
.footer-lead { display: grid; gap: 16px; justify-items: start; }
.footer-script { color: var(--orange); }
.footer-lead .heading { color: var(--cream); }
.footer-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.footer-hours { color: var(--muted); font-style: italic; }

.footer-address { font-style: normal; display: grid; gap: 16px; }
.footer-address .eyebrow { color: var(--orange); }
.delivery-areas { display: flex; flex-wrap: wrap; gap: 10px; margin: 2px 0 4px; }
.delivery-areas li { font-family: 'Cinzel', serif; font-weight: 600; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 6px 15px; }
.footer-delivery { font-family: 'Cormorant Garamond', serif; font-size: 1.08em; line-height: 1.55; color: var(--muted); max-width: 46ch; }
.footer-delivery strong { color: var(--orange); font-weight: 600; }
.addr-lines { font-family: 'Cinzel', serif; font-weight: 600; letter-spacing: 0.06em; font-size: clamp(12px, 1.1vw, 14px); line-height: 1.6; color: var(--muted); text-transform: uppercase; }

.footer-bottom { max-width: var(--maxw); margin: clamp(48px, 6vw, 80px) auto 0; padding: 28px 0 40px; border-top: 1px solid var(--line-soft); display: grid; justify-items: center; gap: 14px; text-align: center; }
.footer-logo { height: 46px; width: auto; opacity: 0.9; }
.footer-tagline { color: var(--orange); }
.footer-credits { font-family: 'Cormorant Garamond', serif; font-size: 0.86em; color: var(--muted); max-width: 60ch; }

@media (min-width: 900px) { .footer-inner { grid-template-columns: 1.05fr 0.95fr; } }

/* ============================================================
   Responsive — mobile nav overlay
   ============================================================ */
@media (max-width: 820px) {
  :root { --header-h: 96px; }
}

@media (max-width: 700px) {
  :root { --hero-runway: 220vh; }
}

@media (max-width: 560px) {
  .feature-row { grid-template-columns: 1fr; gap: 18px; }
  .plan-card--featured { transform: none; }
}

/* ============================================================
   v3 — Arch hero: scroll geometry
   The runway is reserved in CSS (sticky stage, no GSAP pin-spacer),
   so document layout is final at first paint: anchors, the header
   threshold and the IntersectionObserver reveals all stay truthful.
   ============================================================ */
.hero-scroll {
  position: relative;
  height: calc(100vh + var(--hero-runway));
  height: calc(100svh + var(--hero-runway));
  background: var(--hero-void);
}
.arch-stage {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden;
  z-index: 0; /* own stacking context: hero blend modes + z-indices never escape */
}
.arch-layer { position: absolute; inset: 0; }
.arch-stage svg.arch-layer { width: 100%; height: 100%; }

/* ---------------- Layer stack ---------------- */

/* z1 — the space beyond the arch */
.arch-interior {
  z-index: 1;
  background:
    radial-gradient(70% 50% at 50% 80%, rgba(200, 96, 27, 0.28), transparent 65%),
    linear-gradient(180deg, #14100C 0%, var(--hero-void) 55%, #1A120A 100%);
  transform-origin: var(--arch-cx, 50%) var(--arch-cy, 61%);
  will-change: transform;
}
.arch-bloom {
  position: absolute;
  left: var(--arch-cx, 50%); top: var(--arch-cy, 61%);
  width: 120vmin; height: 120vmin;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0.35;
  mix-blend-mode: screen;
  background: radial-gradient(closest-side, rgba(255, 217, 160, 0.85), rgba(255, 149, 66, 0.4) 34%, rgba(239, 127, 44, 0.16) 58%, transparent 72%);
  will-change: transform, opacity;
}
/* Light spokes, split from the bloom so the scrub can fade them out before arrival */
.arch-rays {
  position: absolute;
  left: var(--arch-cx, 50%); top: var(--arch-cy, 61%);
  width: 140vmin; height: 140vmin;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0.15;
  mix-blend-mode: screen;
  background: repeating-conic-gradient(from -4deg, rgba(255, 206, 122, 0.05) 0deg 6deg, transparent 6deg 15deg);
  -webkit-mask-image: radial-gradient(closest-side, #000 25%, transparent 70%);
  mask-image: radial-gradient(closest-side, #000 25%, transparent 70%);
  will-change: transform, opacity;
}

/* z2 — receding echo moldings (start scales baked as SVG matrices around 500,640) */
.arch-echo { z-index: 2; pointer-events: none; }
.arch-echo path { fill: none; stroke: url(#echo-grad); }
.arch-echo--3 path { stroke-width: 1.5; }
.arch-echo--2 path { stroke-width: 2; }
.arch-echo--1 path { stroke-width: 2.5; }

/* z3 — the wall (evenodd hole + jali), scaled as one composited element */
.arch-wall {
  z-index: 3; pointer-events: none;
  transform-origin: var(--arch-cx, 50%) var(--arch-cy, 61%);
  will-change: transform, opacity;
}

/* z4 — ornamental band arch (patterned pillars + ring), scaled on inner geometry */
.arch-rim { z-index: 4; pointer-events: none; will-change: opacity; }
.arch-rim path { stroke-linejoin: round; stroke-linecap: round; }
.arch-band-edge { fill: none; stroke: url(#rim-grad); stroke-width: 4; }

/* z5 — vignette, opens as you enter */
.arch-vignette {
  z-index: 5; pointer-events: none;
  opacity: 0.62;
  background: radial-gradient(120% 90% at 50% 50%, transparent 42%, rgba(6, 4, 3, 0.9) 100%);
  will-change: opacity;
}

/* z6 — dust motes */
.arch-motes { z-index: 6; pointer-events: none; }
.arch-motes span {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 206, 122, 0.9), rgba(239, 127, 44, 0) 70%);
  opacity: 0.45;
}
.arch-motes span:nth-child(1) { left: 22%; top: 72%; --mt: 13s; --md: 0s; }
.arch-motes span:nth-child(2) { left: 37%; top: 84%; --mt: 17s; --md: -6s; width: 4px; height: 4px; }
.arch-motes span:nth-child(3) { left: 51%; top: 78%; --mt: 15s; --md: -11s; }
.arch-motes span:nth-child(4) { left: 63%; top: 86%; --mt: 19s; --md: -3s; width: 6px; height: 6px; }
.arch-motes span:nth-child(5) { left: 74%; top: 74%; --mt: 14s; --md: -9s; width: 4px; height: 4px; }
.arch-motes span:nth-child(6) { left: 44%; top: 90%; --mt: 21s; --md: -14s; }
@media (prefers-reduced-motion: no-preference) {
  .arch-motes span { animation: mote-rise var(--mt, 15s) linear infinite; animation-delay: var(--md, 0s); }
}
@keyframes mote-rise {
  0%   { transform: translateY(0); opacity: 0; }
  12%  { opacity: 0.5; }
  80%  { opacity: 0.3; }
  100% { transform: translateY(-52vh); opacity: 0; }
}

/* z7 — the copy that settles inside */
.arch-copy {
  z-index: 7;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: clamp(14px, 2.2vh, 22px);
  padding: calc(var(--header-h) * 0.5) 6vw 8vh;
  will-change: transform, opacity;
}
/* Two staged reveal groups — the greeting plaque lands first, the tagline
   settles in after. The .arch-copy container itself stays put (children
   animate) so the centred column never reflows between the two reveals. */
.arch-welcome, .arch-settle {
  display: flex; flex-direction: column; align-items: center;
  will-change: transform, opacity;
}
.arch-welcome { gap: clamp(8px, 1.4vh, 14px); }
.arch-settle  { gap: clamp(14px, 2.2vh, 22px); }
html.js:not(.is-static) .arch-welcome,
html.js:not(.is-static) .arch-settle { opacity: 0; visibility: hidden; }
html.js:not(.is-static) .arch-welcome { transform: translateY(24px); }
html.js:not(.is-static) .arch-settle  { transform: translateY(34px); }
/* Animated path only: stack both reveal groups in one centred cell so the feast
   content stays centred after the greeting lifts away. The static/no-JS fallback
   keeps the flow-stacked column (both visible, welcome above settle). */
html.js:not(.is-static) .arch-copy { display: grid; grid-template: 1fr / 1fr; place-items: center; gap: 0; }
html.js:not(.is-static) .arch-copy > .arch-welcome,
html.js:not(.is-static) .arch-copy > .arch-settle { grid-area: 1 / 1; width: 100%; }

/* Greeting plaque — a threshold welcome above the feast tagline */
.arch-welcome-kicker {
  font-family: 'Cinzel', serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.28em; font-size: clamp(11px, 1.5vw, 15px); color: var(--orange);
}
.arch-welcome-name {
  position: relative;
  font-family: 'Cinzel', serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; line-height: 1.02; font-size: clamp(26px, 4.4vw, 54px);
  color: var(--cream); padding-bottom: 14px;
}
.arch-welcome-name::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 48px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}

.arch-cartouche { display: inline-flex; align-items: center; gap: 12px; color: var(--orange); }
.arch-cartouche span {
  font-family: 'Cinzel', serif; font-weight: 600;
  font-size: clamp(9px, 2.2vw, 12px); letter-spacing: 0.24em; text-transform: uppercase;
  padding: 8px 4px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.cartouche-end { width: 18px; height: 26px; color: var(--gold-2); flex: none; }
.cartouche-end--r { transform: scaleX(-1); }

.arch-sub {
  font-family: 'Cinzel', serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: clamp(11px, 1.4vw, 16px);
  color: var(--muted); max-width: 52ch;
}
.arch-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 10px; }

/* z8 — film grain (static raster tile — never a live filter) */
.arch-grain {
  z-index: 8; pointer-events: none;
  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='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.05;
  mix-blend-mode: overlay;
}

/* z9 — scroll cue */
.arch-cue {
  position: absolute; z-index: 9; left: 50%; bottom: clamp(18px, 4vh, 40px);
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  pointer-events: none; will-change: opacity;
}
.arch-cue-label {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.arch-cue-line { width: 1px; height: 54px; background: linear-gradient(180deg, var(--orange), transparent); transform-origin: top; }
@media (prefers-reduced-motion: no-preference) {
  .arch-cue-line { animation: cue-pulse 2.2s var(--ease) infinite; }
}
@keyframes cue-pulse {
  0%   { transform: scaleY(0); opacity: 0; }
  45%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ============================================================
   v3 — Arrival (the payoff after the pass-through)
   ============================================================ */
.band--arrival {
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(239, 127, 44, 0.10), transparent 70%),
    var(--bg);
}
.arrival {
  min-height: clamp(420px, 72vh, 680px);
  display: grid; place-content: center; justify-items: center;
  text-align: center; gap: 20px;
}
.arrival-note { font-style: italic; color: var(--muted); font-size: 1.05em; max-width: 46ch; }
.arrival .pill { margin-top: 8px; }

/* ============================================================
   v3 — Static fallback (.is-static = reduced motion or no GSAP;
   html:not(.js) = JavaScript never ran). One composed screen:
   the arch frames the copy, no pin, normal scrolling.
   ============================================================ */
html:not(.js) .hero-scroll, .is-static .hero-scroll { height: auto; }
html:not(.js) .arch-stage, .is-static .arch-stage {
  position: relative;
  height: auto; min-height: 100vh; min-height: 100svh;
}
html:not(.js) .arch-cue, .is-static .arch-cue { display: none; }
html:not(.js) .arch-bloom, .is-static .arch-bloom { opacity: 0.55; transform: translate(-50%, -50%) scale(1.05); }
html:not(.js) .arch-rays, .is-static .arch-rays { opacity: 0.09; transform: translate(-50%, -50%) scale(1); }
html:not(.js) .arch-vignette, .is-static .arch-vignette { opacity: 0.5; }
html:not(.js) .arch-echo, .is-static .arch-echo { opacity: 0.55; }

/* Copy sized to sit inside the arch opening at scale 1 */
html:not(.js) .arch-welcome-name, .is-static .arch-welcome-name { font-size: clamp(20px, 3.2vw, 34px); padding-bottom: 10px; }
html:not(.js) .arch-copy .hero-line-1, .is-static .arch-copy .hero-line-1 { font-size: clamp(15px, 2.4vw, 28px); }
html:not(.js) .arch-copy .hero-line-2, .is-static .arch-copy .hero-line-2 { font-size: clamp(38px, 6.5vw, 84px); }
html:not(.js) .arch-sub, .is-static .arch-sub { font-size: clamp(10px, 1.1vw, 13px); max-width: 34ch; }
html:not(.js) .arch-cta, .is-static .arch-cta { flex-direction: column; align-items: center; gap: 10px; }

/* Phone sizing for the LIVE (animated) hero copy — the shrink rules above are
   gated to the static fallback, so without this the GSAP path keeps desktop
   type clamps that overflow a phone's stage. Applies in both paths on mobile. */
@media (max-width: 700px) {
  /* Greeting plaque: smaller name + tighter tracking so "Diet DharBhar" fits;
     max-width lets it wrap rather than clip on very narrow phones. */
  .arch-welcome-name { font-size: clamp(18px, 5vw, 34px); letter-spacing: 0.04em; max-width: 100%; padding-bottom: 10px; }
  .arch-cartouche { max-width: 100%; }
  .arch-cartouche span { font-size: clamp(8px, 2vw, 12px); letter-spacing: 0.12em; white-space: normal; }
  /* Feast content sized down for the live (animated) path — the desktop clamps
     otherwise overflow a phone's stage. max-width caps each line to the copy
     width so nothing can clip off-screen (wraps as a last resort). */
  .arch-copy .hero-line-1 { font-size: clamp(15px, 4.5vw, 28px); }
  .arch-copy .hero-line-2 { font-size: clamp(30px, 9vw, 62px); max-width: 100%; }
  .arch-sub { font-size: clamp(10px, 3vw, 13px); max-width: 34ch; }
  .arch-cta { flex-direction: column; align-items: center; gap: 10px; }
}

/* On narrow screens the scale-1 opening is too slim for copy —
   soften the wall so the composition reads as arch-over-backdrop */
@media (max-width: 700px) {
  html:not(.js) .arch-wall, .is-static .arch-wall,
  html:not(.js) .arch-rim,  .is-static .arch-rim { opacity: 0.45; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .frame > img { transform: none !important; }
}
