/* =========================================================================
   āhāra Dining — styles.css
   Vanilla CSS. Warm editorial Indian dining. Cream / burnt orange / brown /
   forest green. Display: Eczar. Body: Mukta.
   ========================================================================= */

@font-face {
  font-family: "Eczar";
  src: url("../assets/fonts/eczar-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: "Mukta";
  src: url("../assets/fonts/mukta-latin-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Mukta";
  src: url("../assets/fonts/mukta-latin-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Mukta";
  src: url("../assets/fonts/mukta-latin-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Mukta";
  src: url("../assets/fonts/mukta-latin-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

/* ---------------------------------------------------------------- Tokens */
:root {
  /* Brand palette (from client) */
  --brown:        #722200;   /* burnt brown — darks, ink on cream */
  --orange:       #B93802;   /* burnt terracotta — hero, primary CTA */
  --cream:        #FFF8DA;   /* main light surface */
  --green:        #163F25;   /* forest — footer + veg tags */
  --navy:         #16264B;   /* used almost nowhere, per brief */

  /* Derived shades */
  --brown-deep:   #561900;
  --orange-bright:#D6470A;
  --cream-deep:   #F4ECC4;   /* card surface on cream */
  --cream-line:   #E7DCB2;   /* hairlines on cream */
  --green-deep:   #102E1B;

  /* Ink */
  --ink:          #5A1E06;   /* body text on cream */
  --ink-soft:     rgba(90, 30, 6, 0.66);
  --on-dark:      #FFF8DA;
  --on-dark-soft: rgba(255, 248, 218, 0.70);
  --on-dark-line: rgba(255, 248, 218, 0.20);

  /* Type */
  --serif: "Eczar", Georgia, "Times New Roman", serif;
  --sans:  "Mukta", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-eyebrow: 0.80rem;
  --fs-small:   0.94rem;
  --fs-body:    clamp(1rem, 0.97rem + 0.18vw, 1.16rem);
  --fs-lead:    clamp(1.18rem, 1.05rem + 0.7vw, 1.55rem);
  --fs-h3:      clamp(1.35rem, 1.1rem + 1.1vw, 2rem);
  --fs-h2:      clamp(2rem, 1.4rem + 2.6vw, 3.4rem);
  --fs-display: clamp(2.4rem, 1.5rem + 4vw, 5rem);
  --fs-hero:    clamp(2.9rem, 1.4rem + 6.6vw, 6.8rem);
  --fs-banner:  clamp(3.2rem, 1rem + 11vw, 9.5rem);

  /* Layout */
  --container: 1280px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --pad-section: clamp(4.25rem, 8vw, 8.5rem);

  /* Radius */
  --r-card: 22px;
  --r-img:  26px;
  --r-input: 12px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 72px;
  --bottombar-h: 64px;
}

/* ---------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; padding: 0; }
input, textarea, select, button { font-family: inherit; }
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
.dark-context :focus-visible { outline-color: var(--cream); }

::selection { background: var(--orange); color: var(--cream); }

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--brown); color: var(--cream);
  padding: 0.7rem 1.1rem; border-radius: var(--r-pill);
  font-size: var(--fs-small); font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 920px; }
.section { padding-block: var(--pad-section); }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 0.6em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: currentColor; display: inline-block;
}
.eyebrow--center { justify-content: center; }
.dark-context .eyebrow { color: var(--cream); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.02; letter-spacing: -0.01em; }
.lead { font-size: var(--fs-lead); line-height: 1.45; color: var(--ink); }
p { max-width: 64ch; }

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  min-height: 48px; padding: 0.85rem 1.6rem;
  border-radius: var(--r-pill);
  font-family: var(--sans); font-weight: 600; font-size: var(--fs-small);
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ar { transition: transform 0.3s var(--ease); }
.btn:hover .ar { transform: translate(3px, -3px); }

.btn--primary { background: var(--orange); color: var(--cream); }
.btn--primary:hover { background: var(--orange-bright); }
.btn--dark { background: var(--brown); color: var(--cream); }
.btn--dark:hover { background: var(--brown-deep); }
.btn--ghost { border: 1.5px solid currentColor; color: var(--brown); }
.btn--ghost:hover { background: var(--brown); color: var(--cream); border-color: var(--brown); }
.dark-context .btn--ghost { color: var(--cream); }
.dark-context .btn--ghost:hover { background: var(--cream); color: var(--brown); border-color: var(--cream); }
.btn--cream { background: var(--cream); color: var(--brown); }
.btn--cream:hover { background: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.btn-row--center { justify-content: center; }

/* ---------------------------------------------------------------- Top nav */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  height: var(--nav-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding-inline: var(--gutter);
  color: var(--cream);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.topbar.is-scrolled {
  background: var(--cream);
  color: var(--brown);
  box-shadow: 0 1px 0 var(--cream-line);
}
.topbar__menu { justify-self: start; }
.topbar__cta  { justify-self: end; }
.topbar__brand { justify-self: center; }

.nav-trigger {
  display: inline-flex; align-items: center; gap: 0.6em;
  min-height: 44px; padding: 0.4rem 0.2rem;
  font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.nav-trigger__bars { display: inline-flex; flex-direction: column; gap: 4px; width: 22px; }
.nav-trigger__bars span { height: 2px; width: 100%; background: currentColor; border-radius: 2px; transition: background-color 0.35s var(--ease); }
.nav-trigger__label { line-height: 1; }

.topbar__brand img { height: 26px; width: auto; transition: opacity 0.35s var(--ease); }
.topbar__brand .brand-cream { display: block; }
.topbar__brand .brand-brown { display: none; position: absolute; top: 0; left: 0; }
.topbar__brand a { position: relative; display: block; }
.topbar.is-scrolled .brand-cream { display: none; }
.topbar.is-scrolled .brand-brown { display: block; }

.nav-cta {
  font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  min-height: 44px; display: inline-flex; align-items: center;
  position: relative;
}
.nav-cta::after {
  content: ""; position: absolute; left: 0; bottom: 6px; height: 1.5px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.3s var(--ease);
}
.nav-cta:hover::after { transform: scaleX(1); transform-origin: left; }

/* Tiny hero corner labels (Monte touch) */
.hero-tags {
  position: absolute; inset: auto 0 clamp(1.5rem, 5vh, 3rem) 0; z-index: 5;
  display: flex; justify-content: space-between; align-items: center;
  padding-inline: var(--gutter); pointer-events: none;
  font-size: var(--fs-eyebrow); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-dark-soft);
}
.hero-tags .status-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #7ED957; margin-right: 0.5em; vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(126,217,87,0.6); animation: pulse 2.4s infinite;
}
.hero-tags .status-dot.is-closed { background: #E7A977; animation: none; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(126,217,87,0.5);} 70%{box-shadow:0 0 0 8px rgba(126,217,87,0);} 100%{box-shadow:0 0 0 0 rgba(126,217,87,0);} }

/* ---------------------------------------------------- Fullscreen overlay */
.overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--brown-deep);
  color: var(--cream);
  visibility: hidden; opacity: 0;
  transition: opacity 0.5s var(--ease), visibility 0s linear 0.5s;
  overflow-y: auto;
}
.overlay.is-open { visibility: visible; opacity: 1; transition: opacity 0.5s var(--ease); }
.overlay__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(185,56,2,0.45), transparent 60%),
    radial-gradient(90% 80% at 10% 100%, rgba(22,63,37,0.5), transparent 55%);
  opacity: 0.9;
}
.overlay__bg::after {
  content: ""; position: absolute; inset: 0;
  background: url("../assets/images/ahara-feather-cream.webp") center 18% / min(70vw, 720px) no-repeat;
  opacity: 0.05; filter: blur(1px);
}
.overlay__inner {
  position: relative; z-index: 1;
  min-height: 100%; display: flex; flex-direction: column;
  padding: clamp(1.1rem, 4vw, 2.5rem) var(--gutter) clamp(2.5rem, 6vh, 4rem);
}
.overlay__top { display: flex; justify-content: flex-end; align-items: center; }
.overlay__close {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--on-dark-line);
  display: inline-grid; place-items: center;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.overlay__close:hover { background: rgba(255,248,218,0.1); transform: rotate(90deg); }
.overlay__close svg { width: 20px; height: 20px; }

.overlay__grid {
  flex: 1; display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(2rem, 5vw, 5rem);
  align-content: center; padding-block: clamp(2rem, 5vh, 4rem);
}
.overlay__col-label {
  font-size: var(--fs-eyebrow); letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--on-dark-soft); margin-bottom: clamp(1.2rem, 3vh, 2.2rem);
}
.overlay-nav li { overflow: hidden; }
.overlay-nav a {
  display: inline-block; font-family: var(--serif);
  font-size: clamp(2.4rem, 7vw, 5rem); line-height: 1.08; font-weight: 400;
  padding-block: 0.1em;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  transform: translateY(110%);
}
.overlay.is-open .overlay-nav a { transform: translateY(0); transition: transform 0.7s var(--ease); }
.overlay.is-open .overlay-nav li:nth-child(1) a { transition-delay: 0.10s; }
.overlay.is-open .overlay-nav li:nth-child(2) a { transition-delay: 0.16s; }
.overlay.is-open .overlay-nav li:nth-child(3) a { transition-delay: 0.22s; }
.overlay.is-open .overlay-nav li:nth-child(4) a { transition-delay: 0.28s; }
.overlay-nav a:hover { color: var(--orange-bright); }
.overlay-nav a .idx {
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600; vertical-align: super;
  color: var(--on-dark-soft); margin-right: 0.4em; letter-spacing: 0.05em;
}

.overlay-contact { display: grid; gap: clamp(1.1rem, 2.6vh, 1.8rem); align-content: center; }
.overlay-contact .oc-block { opacity: 0; transform: translateY(14px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.overlay.is-open .overlay-contact .oc-block { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.oc-label { font-size: var(--fs-eyebrow); letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-soft); margin-bottom: 0.35em; }
.oc-value { font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.45; }
.oc-value a { border-bottom: 1px solid var(--on-dark-line); padding-bottom: 1px; transition: border-color 0.3s var(--ease); }
.oc-value a:hover { border-color: var(--cream); }
.oc-socials { display: flex; gap: 1.2rem; }
.oc-socials a { display: inline-flex; align-items: center; gap: 0.45em; font-size: var(--fs-small); }

/* ----------------------------------------------------- Sticky actions */
/* Desktop floating pill */
.fab {
  position: fixed; right: clamp(1rem, 2.5vw, 2rem); bottom: clamp(1rem, 2.5vw, 2rem); z-index: 70;
  display: flex; flex-direction: column-reverse; align-items: flex-end; gap: 0.7rem;
}
.fab__toggle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--brown); color: var(--cream);
  display: inline-grid; place-items: center;
  box-shadow: 0 10px 30px rgba(86,25,0,0.35);
  transition: transform 0.35s var(--ease), background-color 0.3s var(--ease);
}
.fab__toggle:hover { background: var(--brown-deep); }
.fab__toggle svg { width: 26px; height: 26px; transition: transform 0.4s var(--ease); }
.fab.is-open .fab__toggle svg { transform: rotate(135deg); }
.fab__menu {
  display: flex; flex-direction: column; gap: 0.55rem; align-items: flex-end;
}
.fab__item {
  display: inline-flex; align-items: center; gap: 0.6em;
  background: var(--cream); color: var(--brown);
  padding: 0.7rem 1.1rem; border-radius: var(--r-pill);
  font-size: var(--fs-small); font-weight: 600; white-space: nowrap;
  box-shadow: 0 8px 22px rgba(86,25,0,0.22);
  opacity: 0; transform: translateY(8px) scale(0.96); pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background-color 0.25s var(--ease);
}
.fab__item:hover { background: #fff; }
.fab__item svg { width: 18px; height: 18px; }
.fab.is-open .fab__item { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fab.is-open .fab__item:nth-child(1) { transition-delay: 0.02s; }
.fab.is-open .fab__item:nth-child(2) { transition-delay: 0.06s; }
.fab.is-open .fab__item:nth-child(3) { transition-delay: 0.10s; }

/* Mobile bottom bar */
.bottombar {
  position: fixed; inset: auto 0 0 0; z-index: 75;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  background: var(--brown);
  color: var(--cream);
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -6px 20px rgba(86,25,0,0.25);
}
.bottombar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: var(--bottombar-h); padding: 0.5rem 0.25rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  border-right: 1px solid rgba(255,248,218,0.12);
}
.bottombar a:last-child { border-right: 0; }
.bottombar a svg { width: 21px; height: 21px; }
.bottombar a:active { background: var(--brown-deep); }

/* ---------------------------------------------------------------- Hero */
.hero {
  position: relative; min-height: 100svh;
  background: var(--orange); color: var(--cream);
  display: grid; place-items: center; text-align: center;
  padding: calc(var(--nav-h) + 4vh) var(--gutter) clamp(5rem, 12vh, 8rem);
  overflow: hidden;
}
.hero__halo {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(70% 55% at 50% 42%, rgba(255,248,218,0.12), transparent 70%);
}
.hero__inner { position: relative; z-index: 2; max-width: 1000px; }
.hero__lockup { width: min(78vw, 560px); margin: 0 auto clamp(1.5rem, 4vh, 2.5rem); }
.hero__lockup img { width: 100%; height: auto; }
.hero__statement {
  font-size: var(--fs-hero); line-height: 0.98; letter-spacing: -0.02em;
  font-optical-sizing: auto; font-weight: 400;
  margin-bottom: clamp(1rem, 3vh, 1.6rem);
}
.hero__statement em { font-style: italic; }
.hero__sub { font-size: var(--fs-lead); color: var(--on-dark-soft); max-width: 32ch; margin: 0 auto clamp(1.8rem, 4vh, 2.6rem); }
.hero .btn-row { justify-content: center; }

.scroll-cue {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: clamp(4.5rem, 11vh, 6.5rem); z-index: 5;
  font-size: var(--fs-eyebrow); letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-dark-soft);
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-cue .line { width: 1px; height: 34px; background: var(--on-dark-line); position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ""; position: absolute; inset: 0; background: var(--cream); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0%{transform:translateY(-100%);} 60%,100%{transform:translateY(100%);} }

/* ------------------------------------------------------ Brand intro */
.intro { background: var(--cream); }
.intro__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 5vw, 4.5rem); align-items: end;
}
.intro__head h2 { font-size: var(--fs-display); color: var(--brown); }
.intro__head .eyebrow { margin-bottom: 1.4rem; }
.intro__body p { color: var(--ink); font-size: var(--fs-lead); line-height: 1.5; }
.intro__body p + p { margin-top: 1.1rem; }
.intro__rule { height: 1px; background: var(--cream-line); margin-top: clamp(2.5rem, 6vh, 4rem); }
.intro__meta {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 6vw, 4rem); margin-top: 1.6rem;
  font-size: var(--fs-small); color: var(--ink-soft);
}
.intro__meta b { color: var(--brown); font-weight: 600; }

/* -------------------------------------------------- Signature banners */
.banners {
  background: var(--cream); padding-block: clamp(3rem, 7vw, 6rem); overflow: hidden;
}
.banners__head { margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.banner-band {
  position: relative; width: 112%; margin-left: -6%;
  padding-block: clamp(0.3rem, 1.2vw, 0.7rem);
  overflow: hidden; color: var(--cream);
  display: flex; align-items: center;
}
.banner-band + .banner-band { margin-top: clamp(-0.4rem, -0.5vw, -0.2rem); }
.banner-band--veg     { background: var(--green);  transform: rotate(-2.2deg); }
.banner-band--tandoor { background: var(--orange); transform: rotate(1.4deg); z-index: 2; }
.banner-band--starter { background: var(--brown);  transform: rotate(-1.1deg); }

.banner-track {
  display: flex; align-items: center; gap: 0; white-space: nowrap; will-change: transform;
  flex: none;
}
.banner-track--left  { animation: marquee-left  var(--dur, 40s) linear infinite; }
.banner-track--right { animation: marquee-right var(--dur, 46s) linear infinite; }
@keyframes marquee-left  { from { transform: translateX(0); }       to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); }     to { transform: translateX(0); } }

.banner-unit {
  font-family: var(--serif); font-weight: 600; font-optical-sizing: auto;
  font-size: var(--fs-banner); line-height: 1; letter-spacing: -0.01em;
  padding-inline: clamp(0.6rem, 2vw, 2rem); text-transform: uppercase;
}
.banner-sep {
  flex: none; display: inline-grid; place-items: center;
  width: clamp(2.6rem, 6vw, 5.5rem); height: clamp(2.6rem, 6vw, 5.5rem);
  margin-inline: clamp(0.4rem, 1.5vw, 1.4rem);
}
.banner-sep img { width: 100%; height: auto; opacity: 0.9; }
.banner-pic {
  flex: none; width: clamp(3.4rem, 8vw, 7rem); height: clamp(3.4rem, 8vw, 7rem);
  border-radius: 50%; overflow: hidden; margin-inline: clamp(0.5rem, 1.6vw, 1.6rem);
  border: 2px solid rgba(255,248,218,0.55);
}
.banner-pic svg { width: 100%; height: 100%; }

/* ---------------------------------------------------------------- Menu */
.menu { background: var(--cream); }
.menu__head { display: grid; gap: 1rem; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.menu__head h2 { font-size: var(--fs-display); color: var(--brown); }
.menu__note { font-size: var(--fs-small); color: var(--ink-soft); max-width: 60ch; }

.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--cream-line); border-bottom: 1px solid var(--cream-line);
  padding-block: 1rem;
}
.menu-tab {
  min-height: 44px; padding: 0.55rem 1.15rem; border-radius: var(--r-pill);
  border: 1.5px solid var(--cream-line); color: var(--ink);
  font-size: var(--fs-small); font-weight: 600;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.menu-tab:hover { border-color: var(--brown); }
.menu-tab[aria-selected="true"] { background: var(--brown); color: var(--cream); border-color: var(--brown); }

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fade-up 0.5s var(--ease); }
.menu-panel__title { display: none; }

.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.2rem clamp(2rem, 6vw, 5rem); }
.menu-item {
  display: flex; align-items: baseline; gap: 0.75rem;
  padding: 0.95rem 0; border-bottom: 1px solid var(--cream-line);
}
.menu-item__name { font-family: var(--serif); font-size: var(--fs-h3); font-weight: 400; color: var(--brown); line-height: 1.15; }
.menu-item__dot { flex: 1; border-bottom: 1.5px dotted var(--cream-line); transform: translateY(-0.3em); min-width: 1.5rem; }
.veg-tag {
  flex: none; display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: var(--cream);
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700; transform: translateY(-0.15em);
}
.menu-item__desc { display: block; font-size: var(--fs-small); color: var(--ink-soft); margin-top: 0.25rem; }
.menu-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: clamp(2.5rem, 5vw, 3.5rem); align-items: center; }

/* -------------------------------------------------- Testimonials reveal */
.treveal { background: var(--cream); position: relative; }
.treveal__intro { text-align: center; padding-top: var(--pad-section); }
.treveal__intro h2 { font-size: var(--fs-display); color: var(--brown); margin-top: 0.8rem; }

/* Desktop scroll-apart stage */
.reveal-track { position: relative; height: 230vh; }
.reveal-stage {
  position: sticky; top: 0; height: 100vh;
  display: grid; place-items: center; overflow: hidden;
}
.reveal-content {
  position: relative; z-index: 1; text-align: center; max-width: 720px; padding-inline: var(--gutter);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.reveal-content.is-shown { opacity: 1; }
.reveal-stars { color: var(--orange); letter-spacing: 0.25em; font-size: 1.1rem; margin-bottom: 1.1rem; }
.reveal-name { font-size: var(--fs-eyebrow); letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.4rem; }
.reveal-quote { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.7rem); line-height: 1.22; color: var(--brown); }
.reveal-arrows { display: inline-flex; gap: 0.8rem; margin-top: clamp(1.8rem, 4vh, 2.6rem); }
.reveal-arrow {
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--cream-line);
  display: inline-grid; place-items: center; color: var(--brown);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.reveal-arrow:hover { background: var(--brown); color: var(--cream); border-color: var(--brown); }
.reveal-arrow svg { width: 20px; height: 20px; }

.reveal-card {
  position: absolute; top: 50%; z-index: 3;
  width: clamp(280px, 33vw, 440px); aspect-ratio: 3 / 4;
  border-radius: var(--r-img); overflow: hidden;
  box-shadow: 0 24px 60px rgba(86,25,0,0.22);
  will-change: transform;
}
.reveal-card--left  { left: 4vw;  transform: translate(0, -50%) rotate(-3deg) translateX(var(--shift-l, 78%)); }
.reveal-card--right { right: 4vw; transform: translate(0, -50%) rotate(3deg) translateX(var(--shift-r, -78%)); }
.reveal-card svg { width: 100%; height: 100%; }

/* Mobile / fallback carousel */
.tcarousel { display: none; }
.tcarousel__card {
  background: var(--cream-deep); border: 1px solid var(--cream-line);
  border-radius: var(--r-card); padding: clamp(1.6rem, 6vw, 2.4rem); text-align: center;
}
.tcarousel__media { display: flex; gap: 0.8rem; justify-content: center; margin-bottom: 1.4rem; }
.tcarousel__media .pic { width: 84px; height: 100px; border-radius: 16px; overflow: hidden; }
.tcarousel__media .pic svg { width: 100%; height: 100%; }

/* ----------------------------------------------------- Catering teaser */
.cater-teaser { background: var(--brown); color: var(--cream); }
.cater-teaser__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.8rem, 5vw, 4.5rem); align-items: center; }
.cater-teaser__visual {
  border-radius: var(--r-img); overflow: hidden; aspect-ratio: 4 / 3;
  border: 1px solid var(--on-dark-line);
}
.cater-teaser__visual svg { width: 100%; height: 100%; }
.cater-teaser__body h2 { font-size: var(--fs-display); }
.cater-teaser__body p { color: var(--on-dark-soft); font-size: var(--fs-lead); margin-block: 1.2rem 1.8rem; }

/* ---------------------------------------------------------- Final CTA */
.finalcta { background: var(--orange); color: var(--cream); text-align: center; }
.finalcta h2 { font-size: var(--fs-hero); line-height: 0.98; }
.finalcta p { color: var(--on-dark-soft); font-size: var(--fs-lead); margin: 1.2rem auto 2rem; max-width: 40ch; }
.finalcta .btn-row { justify-content: center; }

/* ---------------------------------------------------------------- Footer */
.footer { background: var(--green); color: var(--cream); position: relative; overflow: hidden; }
.footer__grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(2rem, 4vw, 3rem);
}
.footer__brand img { width: 190px; max-width: 60%; margin-bottom: 1.6rem; }
.footer-detail { display: grid; gap: 1.1rem; font-size: var(--fs-small); }
.footer-detail .fd-label { font-size: var(--fs-eyebrow); letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-soft); margin-bottom: 0.3em; }
.footer-detail a:hover { color: #fff; }
.footer-detail .hours-row { display: flex; justify-content: space-between; gap: 1rem; max-width: 280px; }
.footer-detail .hours-row span:last-child { color: var(--on-dark-soft); }
.footer-socials { display: flex; gap: 1rem; }

.footer__col-title { font-size: var(--fs-eyebrow); letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-soft); margin-bottom: 1.4rem; }
.footer-links { display: grid; gap: 0.7rem; font-size: var(--fs-small); }
.footer-links a { display: inline-flex; align-items: center; gap: 0.4em; width: fit-content; transition: color 0.2s var(--ease), gap 0.2s var(--ease); }
.footer-links a:hover { gap: 0.7em; }

.footer__cta h3 { font-family: var(--serif); font-size: var(--fs-h3); margin-bottom: 0.8rem; line-height: 1.15; }
.footer__cta p { color: var(--on-dark-soft); font-size: var(--fs-small); margin-bottom: 1.4rem; }
.footer__cta .btn-row { flex-direction: column; align-items: flex-start; }

.footer__wordmark {
  position: relative; z-index: 1; padding-bottom: clamp(0.5rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 3vw, 2rem);
}
.footer__wordmark img { width: 100%; opacity: 0.10; }
.footer__bottom {
  position: relative; z-index: 2;
  border-top: 1px solid var(--on-dark-line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem;
  padding-block: 1.4rem; font-size: var(--fs-small); color: var(--on-dark-soft);
}
.site-credit a { color: var(--cream); border-bottom: 1px solid var(--on-dark-line); }
.site-credit a:hover { border-color: var(--cream); }

/* ============================================ CATERING + CONTACT pages */
.page-hero {
  position: relative; background: var(--orange); color: var(--cream);
  padding: calc(var(--nav-h) + clamp(3rem, 9vh, 6rem)) var(--gutter) clamp(3.5rem, 9vh, 6rem);
  overflow: hidden;
}
.page-hero__inner { position: relative; z-index: 2; max-width: 920px; }
.page-hero h1 { font-size: var(--fs-hero); line-height: 0.98; margin-block: 1rem 1.2rem; }
.page-hero p { font-size: var(--fs-lead); color: var(--on-dark-soft); max-width: 52ch; margin-bottom: 1.9rem; }
.page-hero__feather {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%); z-index: 0;
  width: min(46vw, 460px); opacity: 0.10; pointer-events: none;
}

/* Event types + perks */
.cater-types { background: var(--cream); }
.cater-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); }
.event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.8rem; }
.event-pill {
  border: 1.5px solid var(--cream-line); border-radius: var(--r-card);
  padding: 1.1rem 1.2rem; display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--serif); font-size: var(--fs-h3); color: var(--brown);
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.event-pill:hover { border-color: var(--orange); }
.event-pill .num { font-family: var(--sans); font-size: 0.8rem; font-weight: 600; color: var(--orange); }
.perks-list { margin-top: 1.8rem; display: grid; gap: 0.9rem; }
.perks-list li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: var(--fs-body); color: var(--ink); }
.perks-list li svg { flex: none; width: 22px; height: 22px; color: var(--orange); margin-top: 2px; }
.cater-note { font-size: var(--fs-small); color: var(--ink-soft); margin-top: 1.4rem; font-style: italic; }

/* Catering menu */
.cater-menu { background: var(--cream-deep); }
.cater-menu__cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 4vw, 3rem); margin-top: clamp(1.8rem, 4vw, 2.6rem); }
.cater-cat__title { font-family: var(--serif); font-size: var(--fs-h3); color: var(--brown); padding-bottom: 0.7rem; margin-bottom: 0.8rem; border-bottom: 2px solid var(--orange); }
.cater-cat li { padding: 0.5rem 0; border-bottom: 1px solid var(--cream-line); font-size: var(--fs-body); color: var(--ink); }
.cater-cat li .veg-tag { display: inline-grid; transform: translateY(0); width: 18px; height: 18px; font-size: 0.62rem; margin-left: 0.4rem; }

/* Forms (catering + contact) */
.form-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.form-visual {
  border-radius: var(--r-img); overflow: hidden; aspect-ratio: 4 / 5; background: var(--cream-deep);
  border: 1px solid var(--cream-line);
}
.form-visual svg { width: 100%; height: 100%; }
.form-head h2 { font-size: var(--fs-display); color: var(--brown); line-height: 1; }
.form-head p { color: var(--ink-soft); margin-top: 1rem; }

.aform { margin-top: clamp(1.6rem, 4vw, 2.4rem); }
.aform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.3rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: var(--fs-eyebrow); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; min-height: 48px;
  background: var(--cream); color: var(--ink);
  border: 1.5px solid var(--cream-line); border-radius: var(--r-input);
  font-size: var(--fs-body); transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.cater-menu .field input, .contact-form-sec .field input,
.contact-form-sec .field select, .contact-form-sec .field textarea { background: #fff; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(185,56,2,0.14);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(90,30,6,0.4); }
.aform__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; margin-top: 1.6rem; }
.aform__help { font-size: var(--fs-small); color: var(--ink-soft); max-width: 44ch; }
.form-status { font-size: var(--fs-small); font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: var(--green); }
.form-status.err { color: var(--orange); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Contact page bits */
.contact-quick { background: var(--cream); }
.detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.detail-card {
  border: 1.5px solid var(--cream-line); border-radius: var(--r-card); padding: 1.5rem;
  display: grid; gap: 0.5rem; align-content: start;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.detail-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.detail-card .dc-icon { width: 34px; height: 34px; color: var(--orange); margin-bottom: 0.3rem; }
.detail-card .dc-label { font-size: var(--fs-eyebrow); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.detail-card .dc-value { font-family: var(--serif); font-size: var(--fs-h3); color: var(--brown); line-height: 1.2; }
.detail-card .dc-value a { display: block; }
.detail-card .dc-sub { font-size: var(--fs-small); }
.detail-card .dc-sub a { color: var(--orange); font-weight: 600; }

.contact-split { background: var(--cream-deep); }
.contact-split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.hours-table { display: grid; gap: 0; margin-top: 1.6rem; }
.hours-table .hr {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--cream-line); font-size: var(--fs-body);
}
.hours-table .hr.today { color: var(--orange); font-weight: 600; }
.hours-table .hr .day { color: var(--brown); font-weight: 500; }
.hours-table .hr.today .day { color: var(--orange); }
.hours-table .hr.closed .time { color: var(--ink-soft); }
.hours-foot { font-size: var(--fs-small); color: var(--ink-soft); margin-top: 1rem; font-style: italic; }

.map-card { border-radius: var(--r-img); overflow: hidden; border: 1px solid var(--cream-line); background: var(--cream-deep); }
.map-card iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(0.9); }
.map-actions { margin-top: 1rem; }

.contact-form-sec { background: var(--cream); }

/* ---------------------------------------------------------- Reveal anim */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ============================================================ Responsive */
@media (max-width: 980px) {
  .intro__grid { grid-template-columns: 1fr; gap: 2rem; align-items: start; }
  .cater-teaser__grid { grid-template-columns: 1fr; }
  .form-split { grid-template-columns: 1fr; }
  .form-visual { aspect-ratio: 16 / 10; max-height: 320px; }
  .contact-split__grid { grid-template-columns: 1fr; }
  .cater-cols { grid-template-columns: 1fr; }
  .cater-menu__cats { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__cta { grid-column: 1 / -1; }
  .overlay__grid { grid-template-columns: 1fr; gap: 2.5rem; align-content: start; padding-top: 1rem; }
  .overlay-contact { gap: 1.1rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  body { padding-bottom: calc(var(--bottombar-h) + env(safe-area-inset-bottom, 0)); }
  .fab { display: none; }
  .bottombar { display: grid; }
  .topbar__cta { display: none; }            /* Book lives in bottom bar on mobile */
  .menu-list { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: 1fr; }
  /* Testimonials -> carousel */
  .reveal-track { display: none; }
  .tcarousel { display: block; padding-bottom: var(--pad-section); }
  .footer__cta .btn-row { flex-direction: row; }
}

@media (max-width: 560px) {
  .detail-grid { grid-template-columns: 1fr; }
  .cater-menu__cats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .aform__grid { grid-template-columns: 1fr; }
  .hero-tags { font-size: 0.66rem; }
  .btn-row .btn { flex: 1 1 auto; }
}

/* ----------------------------------------------- Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .banner-track--left, .banner-track--right { animation: none !important; transform: none !important; }
  .banner-band { transform: none !important; width: 100%; margin-left: 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .reveal-card--left  { transform: translate(0, -50%) rotate(-3deg) translateX(0) !important; }
  .reveal-card--right { transform: translate(0, -50%) rotate(3deg) translateX(0) !important; }
  .reveal-content { opacity: 1 !important; }
  .scroll-cue, .hero-tags .status-dot { animation: none !important; }
  .overlay-nav a { transform: none !important; }
}

/* No-JS fallbacks */
.no-js .reveal { opacity: 1; transform: none; }
.no-js .reveal-content { opacity: 1; }
.no-js .reveal-card--left  { transform: translate(0,-50%) rotate(-3deg) translateX(0); }
.no-js .reveal-card--right { transform: translate(0,-50%) rotate(3deg) translateX(0); }
.no-js .overlay-nav a { transform: none; }

/* No-JS: reveal all tabbed menu panels (progressive enhancement) */
.no-js .menu-tabs { display: none; }
.no-js .menu-panel { display: block; }
.no-js .menu-panel + .menu-panel { margin-top: 2.5rem; }
.no-js .menu-panel__title { display: block; font-size: var(--fs-h3); color: var(--brown); margin-bottom: 1rem; }
.no-js .fab, .no-js .scroll-cue { display: none; }

/* defensive: hero lockup picture wrapper */
.hero__lockup picture { display: block; width: 100%; }


/* ========================================================================
   2026-06-24 refinement pass — layout cleanup + Flor/Monte inspired polish
   ======================================================================== */

.topbar {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--cream);
  mix-blend-mode: normal;
}
.topbar.theme-dark { color: var(--cream); }
.topbar.theme-light { color: var(--brown); }
.topbar__brand img { height: 24px; width: auto; }
.topbar__brand .brand-brown,
.topbar.theme-dark .brand-brown,
.topbar.theme-light .brand-cream { display: none; }
.topbar.theme-light .brand-brown { display: block; }
.topbar.theme-dark .brand-cream { display: block; }
.topbar .nav-trigger { gap: 0; }
.topbar .nav-trigger__label { display: none; }
.nav-cta::after { bottom: 8px; }

.hero {
  min-height: 100svh;
  height: 100svh;
  max-height: 1080px;
  padding: calc(var(--nav-h) + 1.5rem) var(--gutter) 1.6rem;
}
.hero__halo {
  background: radial-gradient(70% 60% at 50% 52%, rgba(255,248,218,0.10), transparent 72%);
}
.hero__inner {
  max-width: 760px;
  display: grid;
  place-items: center;
}
.hero__lockup {
  width: min(46vw, 520px);
  margin: 0 auto;
}
.hero__statement,
.hero__sub,
.hero .btn-row,
.hero-tags,
.scroll-cue { display: none !important; }

.banners {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4rem, 8vw, 7rem);
}
.banners__head { margin-bottom: clamp(2.25rem, 6vw, 4rem); }
.banner-band {
  width: 116%;
  margin-left: -8%;
  padding-block: clamp(1rem, 2vw, 1.7rem);
}
.banner-band + .banner-band { margin-top: clamp(-0.7rem, -0.8vw, -0.3rem); }
.banner-unit {
  font-size: clamp(4rem, 10vw, 8.6rem);
  padding-inline: clamp(1rem, 2.6vw, 2.6rem);
}
.banner-sep {
  width: clamp(3.2rem, 6.4vw, 6rem);
  height: clamp(3.2rem, 6.4vw, 6rem);
}
.banner-pic {
  width: clamp(5rem, 9vw, 8.4rem);
  height: clamp(5rem, 9vw, 8.4rem);
  border-width: 2.5px;
}

.reveal-track { height: 210vh; }
.reveal-content { max-width: 760px; }
.reveal-card {
  width: clamp(240px, 24vw, 360px);
}
.reveal-card--left { left: 2.5vw; }
.reveal-card--right { right: 2.5vw; }

.overlay {
  background: rgba(54, 25, 10, 0.42);
  backdrop-filter: blur(18px) saturate(115%);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
}
.overlay__bg {
  background: radial-gradient(90% 65% at 50% 40%, rgba(185,56,2,0.22), rgba(86,25,0,0.18) 45%, rgba(18,8,3,0.15) 100%);
  opacity: 1;
}
.overlay__bg::after { display: none; }
.overlay__inner { padding-top: clamp(1.25rem, 3vw, 2.5rem); }
.overlay__grid {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(3.25rem, 8vw, 8rem);
  align-content: start;
  padding-block: clamp(3.25rem, 10vh, 7rem) clamp(2rem, 4vh, 3rem);
}
.overlay__col-label { margin-bottom: 1.4rem; }
.overlay-nav a {
  font-size: clamp(2.8rem, 7.2vw, 5.4rem);
  line-height: 1.06;
}
.overlay-nav a .idx { display: none; }
.overlay-contact { align-content: start; }
.oc-value { max-width: 28ch; }
.oc-socials a svg { width: 18px; height: 18px; }

.fab {
  right: clamp(1rem, 2vw, 1.8rem);
  bottom: clamp(1rem, 2vw, 1.8rem);
  flex-direction: column;
  gap: 0.75rem;
}
.fab__menu {
  margin-bottom: 0;
}

.footer {
  background: var(--orange);
}
.footer .btn--ghost {
  color: var(--cream);
  border-color: rgba(255,248,218,0.65);
}
.footer .btn--ghost:hover {
  background: var(--cream);
  color: var(--brown);
  border-color: var(--cream);
}
.footer__feather {
  display: flex;
  justify-content: flex-end;
  padding-top: clamp(2.4rem, 6vw, 4rem);
}
.footer__feather img {
  height: 28px;
  width: auto;
}
.footer__grid {
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(2.25rem, 6vw, 3.5rem) clamp(2rem, 4vw, 2.75rem);
}
.footer__info,
.footer__nav,
.footer__cta {
  align-self: start;
}
.footer__info {
  display: grid;
  gap: 1.35rem;
  font-size: var(--fs-small);
}
.footer__label {
  margin-bottom: 0.5rem;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,248,218,0.74);
}
.footer__info a:hover,
.footer-links a:hover,
.site-credit a:hover { color: #fff; }
.footer-links {
  gap: 0.8rem;
}
.footer__cta h3 {
  font-size: clamp(2rem, 2vw, 2.8rem);
  margin-bottom: 0.8rem;
}
.footer__cta p {
  margin-bottom: 1.4rem;
  color: rgba(255,248,218,0.82);
}
.footer__cta .btn-row {
  flex-direction: row;
  flex-wrap: wrap;
}
.footer__bottom {
  align-items: flex-end;
  padding-block: 1.4rem 2rem;
}
.footer__brandmark {
  display: grid;
  gap: 0.9rem;
}
.footer__brandmark img {
  width: 150px;
  height: auto;
}
.footer__brandmark p,
.site-credit {
  color: rgba(255,248,218,0.78);
  font-size: var(--fs-small);
}
.site-credit a {
  color: var(--cream);
  border-bottom: 1px solid rgba(255,248,218,0.35);
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero {
    max-height: none;
    padding-top: calc(var(--nav-h) + 1rem);
  }
  .hero__lockup {
    width: min(74vw, 340px);
  }
  .banners {
    min-height: auto;
  }
  .banner-unit {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }
  .banner-pic {
    width: clamp(3.5rem, 13vw, 5rem);
    height: clamp(3.5rem, 13vw, 5rem);
  }
  .overlay__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 4.25rem;
  }
  .overlay-nav a {
    font-size: clamp(2.2rem, 12vw, 3.8rem);
  }
  .footer__feather {
    justify-content: flex-start;
    padding-top: 2.2rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__cta .btn-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ========================================================================
   2026-06-24 user tweak pass — hero, banners, story section, testimonials
   ======================================================================== */

/* Header + hero scale */
.topbar__brand img {
  height: clamp(34px, 2.8vw, 46px) !important;
  width: auto;
}
.hero__inner {
  max-width: 340px !important;
}
.hero__lockup {
  width: min(24vw, 310px) !important;
  max-width: 310px !important;
  min-width: 260px;
}

/* Standalone story panel: designed as a full 1920x1080 style section */
.intro--story {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-block: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem)) clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(48rem 34rem at 78% 35%, rgba(185, 56, 2, 0.08), transparent 64%),
    radial-gradient(42rem 30rem at 12% 82%, rgba(22, 63, 37, 0.08), transparent 62%),
    var(--cream);
}
.intro--story::after {
  content: "";
  position: absolute;
  right: max(-8vw, -120px);
  bottom: max(-6vw, -90px);
  width: min(46vw, 620px);
  aspect-ratio: 1254 / 728;
  background: url("../assets/images/ahara-feather-brown.webp") center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}
.intro--story .container {
  position: relative;
  z-index: 1;
}
.intro--story .intro__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}
.intro--story .intro__head h2 {
  font-size: clamp(3.35rem, 6.6vw, 7.6rem);
  line-height: 0.93;
  letter-spacing: -0.035em;
  max-width: 10.8ch;
}
.intro--story .intro__head .eyebrow {
  margin-bottom: clamp(1.2rem, 2.2vw, 1.9rem);
}
.intro--story .intro__body {
  background: var(--cream-deep);
  border: 1px solid rgba(90, 30, 6, 0.13);
  border-radius: clamp(26px, 3vw, 46px);
  padding: clamp(2rem, 4vw, 4rem);
  box-shadow: 0 28px 80px rgba(86, 25, 0, 0.10);
}
.intro--story .intro__body p {
  font-size: clamp(1.16rem, 1.1vw, 1.45rem);
  line-height: 1.55;
  max-width: 38ch;
}
.intro--story .intro__rule {
  margin-top: clamp(2.5rem, 6vh, 4.2rem);
}
.intro--story .intro__meta {
  justify-content: space-between;
  gap: 1.25rem;
}

/* Bigger, weightier signature banners */
.banners {
  min-height: 100svh;
  justify-content: center;
  padding-block: clamp(4rem, 7vw, 7rem);
}
.banners__head {
  margin-bottom: clamp(2.5rem, 5vw, 4.2rem) !important;
}
.banner-band {
  width: 124% !important;
  margin-left: -12% !important;
  min-height: clamp(138px, 14vw, 230px);
  padding-block: clamp(1.25rem, 2.4vw, 2.7rem) !important;
}
.banner-band + .banner-band {
  margin-top: clamp(-1.2rem, -1.2vw, -0.55rem) !important;
}
.banner-band--veg { transform: rotate(-2.5deg) !important; }
.banner-band--tandoor { transform: rotate(1.15deg) !important; }
.banner-band--starter { transform: rotate(-1.25deg) !important; }
.banner-unit {
  font-size: clamp(5.6rem, 12.8vw, 13rem) !important;
  line-height: 0.86 !important;
  padding-inline: clamp(1rem, 2.8vw, 3.2rem) !important;
}
.banner-pic {
  width: clamp(7rem, 10.6vw, 11.2rem) !important;
  height: clamp(7rem, 10.6vw, 11.2rem) !important;
  border-width: 3px !important;
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}
.banner-sep {
  width: clamp(4.2rem, 7.8vw, 8.3rem) !important;
  height: clamp(4.2rem, 7.8vw, 8.3rem) !important;
}

/* Brand green for footer and quick-action plus */
.footer,
.bottombar {
  background: var(--green) !important;
}
.fab__toggle {
  background: var(--green) !important;
  box-shadow: 0 10px 30px rgba(22, 63, 37, 0.36) !important;
}
.fab__toggle:hover,
.bottombar a:active {
  background: var(--green-deep) !important;
}
.fab__item {
  color: var(--green);
  box-shadow: 0 8px 22px rgba(22, 63, 37, 0.20);
}

/* Testimonials: the quote is always present on a card; the side cards reveal it by moving away */
.reveal-stage {
  background:
    radial-gradient(42rem 30rem at 50% 48%, rgba(22, 63, 37, 0.055), transparent 68%),
    var(--cream);
}
.reveal-content {
  z-index: 2 !important;
  max-width: min(780px, calc(100vw - 2 * var(--gutter))) !important;
  opacity: 1 !important;
  background: var(--cream-deep);
  border: 1px solid rgba(90, 30, 6, 0.12);
  border-radius: clamp(28px, 3vw, 48px);
  padding: clamp(2rem, 4.4vw, 4.4rem) clamp(1.6rem, 4.4vw, 4.8rem);
  box-shadow: 0 28px 80px rgba(86, 25, 0, 0.12);
}
.reveal-content.is-shown {
  opacity: 1 !important;
}
.reveal-card {
  z-index: 3 !important;
}
.reveal-quote {
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  line-height: 1.16;
}
.reveal-stars {
  color: var(--orange);
}
.reveal-arrow {
  background: rgba(255, 248, 218, 0.55);
}
.tcarousel__card {
  background: var(--cream-deep) !important;
  border-color: rgba(90, 30, 6, 0.13) !important;
  box-shadow: 0 20px 60px rgba(86, 25, 0, 0.10);
}

@media (max-width: 1024px) {
  .hero__lockup {
    width: min(34vw, 300px) !important;
    min-width: 230px;
  }
  .intro--story .intro__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .intro--story .intro__head h2 {
    max-width: 12ch;
  }
  .intro--story .intro__body p {
    max-width: 58ch;
  }
}
@media (max-width: 768px) {
  .topbar__brand img {
    height: 32px !important;
  }
  .hero__lockup {
    width: min(58vw, 270px) !important;
    min-width: 210px;
  }
  .intro--story {
    min-height: auto;
    padding-block: calc(var(--nav-h) + 2rem) 4rem;
  }
  .intro--story .intro__head h2 {
    font-size: clamp(2.65rem, 13vw, 4.4rem);
  }
  .intro--story .intro__body {
    padding: 1.45rem;
    border-radius: 24px;
  }
  .intro--story .intro__meta {
    justify-content: flex-start;
  }
  .banner-band {
    min-height: clamp(88px, 24vw, 130px);
    padding-block: clamp(0.9rem, 4vw, 1.4rem) !important;
  }
  .banner-unit {
    font-size: clamp(3.5rem, 17vw, 6rem) !important;
  }
  .banner-pic {
    width: clamp(4.5rem, 18vw, 6.5rem) !important;
    height: clamp(4.5rem, 18vw, 6.5rem) !important;
  }
  .banner-sep {
    width: clamp(3.4rem, 14vw, 5rem) !important;
    height: clamp(3.4rem, 14vw, 5rem) !important;
  }
  .reveal-content {
    padding: 1.5rem !important;
    border-radius: 24px !important;
  }
}

/* ========================================================================
   2026-06-24 nav/testimonial cleanup — no hamburger focus box, reliable logo
   ======================================================================== */

/* Kill the ugly browser focus rectangle on the hamburger only. */
.nav-trigger:focus,
.nav-trigger:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
.nav-trigger:focus-visible .nav-trigger__bars span {
  transform: none;
}

/* Use the feather artwork as a mask so it always follows the current nav colour. */
.topbar__brand a {
  position: relative !important;
  display: block !important;
  width: clamp(72px, 5.2vw, 96px) !important;
  aspect-ratio: 1254 / 728;
  line-height: 0;
  color: inherit;
}
.topbar__brand a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  -webkit-mask: url("../assets/images/ahara-feather-cream.png") center / contain no-repeat;
  mask: url("../assets/images/ahara-feather-cream.png") center / contain no-repeat;
  pointer-events: none;
}
.topbar__brand img {
  display: none !important;
}
.topbar.theme-dark { color: var(--cream) !important; }
.topbar.theme-light { color: var(--brown) !important; }

/* Make the moving testimonial cards large enough to fully hide the review card at the start. */
.reveal-card {
  width: clamp(480px, 42vw, 690px) !important;
  border-radius: clamp(30px, 3vw, 56px) !important;
}
.reveal-card--left {
  left: 2vw !important;
}
.reveal-card--right {
  right: 2vw !important;
}
@media (max-width: 1024px) {
  .reveal-card {
    width: clamp(410px, 48vw, 560px) !important;
  }
}
@media (max-width: 768px) {
  .topbar__brand a {
    width: 76px !important;
  }
}


/* ========================================================================
   2026-06-24 testimonial spacing pass — earlier reveal, bigger side cards
   ======================================================================== */

/* Pull the review heading higher so the section begins closer to the menu CTA. */
.treveal {
  padding-top: clamp(0.75rem, 2.2vw, 2.25rem) !important;
}
.treveal__intro {
  padding-top: clamp(1.4rem, 3.8vw, 3.9rem) !important;
  margin-bottom: clamp(-2.8rem, -3.2vw, -1.25rem) !important;
  position: relative;
  z-index: 5;
}
.treveal__intro h2 {
  line-height: 0.94 !important;
  max-width: 14ch;
  margin-inline: auto;
}

/* Shorter sticky distance = no dead locked scroll after the cards are already open. */
.reveal-track {
  height: 172vh !important;
  margin-top: clamp(-1.6rem, -2.3vw, -0.8rem) !important;
}
.reveal-stage {
  align-items: center !important;
  padding-top: clamp(1.5rem, 4vh, 2.7rem) !important;
  padding-bottom: clamp(1.5rem, 4vh, 2.7rem) !important;
}

/* Slightly larger cards, with a lower centre point so the image reads before it opens. */
.reveal-card {
  width: clamp(540px, 47vw, 735px) !important;
  top: 57% !important;
  border-radius: clamp(34px, 3vw, 58px) !important;
}
.reveal-card--left {
  left: 1.6vw !important;
}
.reveal-card--right {
  right: 1.6vw !important;
}

/* Keep the final open state genuinely clear of the review text. */
.reveal-content {
  max-width: min(760px, calc(100vw - 2 * var(--gutter))) !important;
}

@media (max-width: 1180px) {
  .reveal-card {
    width: clamp(460px, 49vw, 610px) !important;
  }
}
@media (max-width: 768px) {
  .treveal__intro {
    margin-bottom: 0 !important;
  }
  .treveal__intro h2 {
    max-width: 13ch;
  }
}


/* ========================================================================
   2026-06-24 hard redo — testimonial section rebuilt around the reference
   ======================================================================== */

/* The old spacing was coming mostly from the menu section bottom padding, so
   pull the review header up immediately after the menu CTA. */
.menu.section {
  padding-bottom: clamp(1.6rem, 3.2vw, 3.4rem) !important;
}

.treveal {
  padding-top: 0 !important;
  margin-top: 0 !important;
  overflow: clip;
}

.treveal__intro {
  padding-top: clamp(0.45rem, 1.2vw, 1.25rem) !important;
  margin-bottom: clamp(-4.5rem, -5.2vw, -2.8rem) !important;
  position: relative;
  z-index: 6;
}

.treveal__intro .eyebrow {
  margin-bottom: clamp(0.65rem, 1vw, 0.95rem);
}

.treveal__intro h2 {
  font-size: clamp(3.05rem, 5.15vw, 5.95rem) !important;
  line-height: 0.92 !important;
  max-width: 13.5ch !important;
  margin-inline: auto !important;
}

/* Short, intentional sticky range. The cards now finish opening right near the
   end of the sticky range, so there should be no dead locked scroll. */
.reveal-track {
  height: 142vh !important;
  margin-top: 0 !important;
  position: relative;
}

.reveal-stage {
  position: sticky !important;
  top: 0 !important;
  height: 100vh !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: var(--cream) !important;
  isolation: isolate;
}

/* Wide rounded review panel, matching the reference behaviour but using āhāra's cream family. */
.reveal-stage::before {
  content: "";
  position: absolute;
  left: clamp(1.5rem, 2.4vw, 3rem);
  right: clamp(1.5rem, 2.4vw, 3rem);
  top: clamp(6.8rem, 12.5vh, 9.4rem);
  bottom: clamp(2.5rem, 5.6vh, 4.4rem);
  border-radius: clamp(30px, 3.2vw, 58px);
  background:
    radial-gradient(48rem 28rem at 50% 48%, rgba(22, 63, 37, 0.08), transparent 70%),
    var(--cream-deep);
  border: 1px solid rgba(90, 30, 6, 0.10);
  box-shadow: 0 28px 90px rgba(86, 25, 0, 0.08);
  z-index: 0;
  pointer-events: none;
}

/* The quote sits on the panel itself now. This gives the side cards room to move
   fully away without still covering the review. */
.reveal-content {
  position: relative !important;
  z-index: 2 !important;
  opacity: 1 !important;
  max-width: min(740px, 43vw) !important;
  padding: clamp(1.3rem, 2.8vw, 2.7rem) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: translateY(clamp(1.2rem, 3.6vh, 2.8rem));
}

.reveal-quote {
  font-size: clamp(1.75rem, 2.7vw, 3.05rem) !important;
  line-height: 1.18 !important;
}

.reveal-stars {
  color: rgba(90, 30, 6, 0.56) !important;
}

.reveal-name {
  color: rgba(90, 30, 6, 0.72) !important;
}

/* Bigger, wider image cards. They read at the bottom of the viewport before
   they begin splitting, then they move far enough out to expose the review. */
.reveal-card {
  width: clamp(600px, 44vw, 810px) !important;
  aspect-ratio: 1.24 / 1 !important;
  top: 56% !important;
  border-radius: clamp(32px, 3vw, 56px) !important;
  box-shadow: 0 24px 70px rgba(86, 25, 0, 0.20) !important;
  z-index: 3 !important;
}

.reveal-card--left {
  left: -4.6vw !important;
}

.reveal-card--right {
  right: -4.6vw !important;
}

.reveal-card svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

@media (max-width: 1280px) {
  .reveal-content {
    max-width: min(680px, 48vw) !important;
  }
  .reveal-card {
    width: clamp(520px, 52vw, 690px) !important;
  }
  .reveal-card--left {
    left: -7vw !important;
  }
  .reveal-card--right {
    right: -7vw !important;
  }
}

@media (max-width: 900px) {
  .menu.section {
    padding-bottom: clamp(2.6rem, 8vw, 4.6rem) !important;
  }
  .treveal__intro {
    margin-bottom: 0 !important;
    padding-top: clamp(1.5rem, 6vw, 3rem) !important;
  }
  .reveal-track {
    display: none !important;
  }
  .tcarousel {
    display: block !important;
    padding-top: clamp(1rem, 4vw, 2rem);
    padding-bottom: var(--pad-section);
  }
}


/* ========================================================================
   2026-06-24 hero quick-links + animated hamburger
   ======================================================================== */

.hero {
  position: relative !important;
  min-height: 100svh !important;
  height: 100svh !important;
  max-height: none !important;
  padding: 0 !important;
  display: block !important;
}
.hero__halo {
  background: radial-gradient(72% 60% at 50% 52%, rgba(255,248,218,0.10), transparent 72%);
}
.hero__inner {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  max-width: none !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 var(--gutter) !important;
  pointer-events: none;
}
.hero__lockup {
  width: clamp(270px, 23vw, 400px) !important;
  max-width: 400px !important;
  min-width: 270px !important;
  margin: 0 !important;
  pointer-events: auto;
}
.hero__lockup picture,
.hero__lockup img {
  display: block;
}

.hero-actions {
  position: absolute;
  top: 50%;
  right: clamp(1.2rem, 3.1vw, 3rem);
  z-index: 6;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.4rem, 2.2vw, 2rem);
}
.hero-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  color: var(--cream);
  text-decoration: none;
}
.hero-action__circle {
  width: clamp(88px, 7vw, 118px);
  height: clamp(88px, 7vw, 118px);
  border-radius: 50%;
  background: var(--green);
  border: 1.5px solid rgba(255,248,218,0.28);
  box-shadow: 0 14px 36px rgba(22, 63, 37, 0.34);
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.hero-action:hover .hero-action__circle,
.hero-action:focus-visible .hero-action__circle {
  transform: translateY(-2px);
  background: var(--green-deep);
  border-color: rgba(255,248,218,0.5);
}
.hero-action__icon {
  position: relative;
  width: 70%;
  height: 70%;
}
.hero-action__icon--rickshaw {
  width: 76%;
  height: 76%;
}
.hero-action__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}
.hero-action__frame--1 {
  opacity: 1;
}
.hero-action:hover .hero-action__frame--1,
.hero-action:focus-visible .hero-action__frame--1 {
  animation: doodleFrameOne 0.6667s steps(1, end) infinite;
}
.hero-action:hover .hero-action__frame--2,
.hero-action:focus-visible .hero-action__frame--2 {
  animation: doodleFrameTwo 0.6667s steps(1, end) infinite;
}
.hero-action__arc {
  width: clamp(110px, 8.6vw, 144px);
  height: auto;
  overflow: visible;
}
.hero-action__arc path {
  fill: none;
}
.hero-action__arc text {
  fill: var(--cream);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.hero-action__arc textPath {
  dominant-baseline: middle;
  text-anchor: middle;
}

.nav-trigger {
  width: 44px;
  justify-content: flex-start;
}
.nav-trigger__bars {
  display: none !important;
}
.nav-trigger__anim {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  color: currentColor;
}
.nav-trigger__frame {
  position: absolute;
  inset: 0;
  background: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  opacity: 0;
}
.nav-trigger__frame--1 {
  opacity: 1;
  -webkit-mask-image: url("../assets/animations/hamburger-1.png");
  mask-image: url("../assets/animations/hamburger-1.png");
}
.nav-trigger__frame--2 {
  -webkit-mask-image: url("../assets/animations/hamburger-2.png");
  mask-image: url("../assets/animations/hamburger-2.png");
}
.nav-trigger:hover .nav-trigger__frame--1,
.nav-trigger:focus-visible .nav-trigger__frame--1 {
  animation: doodleFrameOne 0.6667s steps(1, end) infinite;
}
.nav-trigger:hover .nav-trigger__frame--2,
.nav-trigger:focus-visible .nav-trigger__frame--2 {
  animation: doodleFrameTwo 0.6667s steps(1, end) infinite;
}

@keyframes doodleFrameOne {
  0%, 49.999% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes doodleFrameTwo {
  0%, 49.999% { opacity: 0; }
  50%, 100% { opacity: 1; }
}

@media (max-width: 1024px) {
  .hero__lockup {
    width: clamp(240px, 31vw, 320px) !important;
    min-width: 240px !important;
  }
  .hero-actions {
    right: clamp(1rem, 2vw, 1.4rem);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(100svh - var(--bottombar-h));
    height: calc(100svh - var(--bottombar-h));
  }
  .hero__lockup {
    width: clamp(220px, 60vw, 280px) !important;
    min-width: 220px !important;
  }
  .hero-actions {
    right: 0.85rem;
    gap: 1rem;
  }
  .hero-action__circle {
    width: 84px;
    height: 84px;
  }
  .hero-action__arc {
    width: 106px;
  }
  .hero-action__arc text {
    font-size: 10px;
    letter-spacing: 0.17em;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    top: auto;
    bottom: calc(var(--bottombar-h) + 1rem);
    right: 0.9rem;
    transform: none;
  }
  .hero-action__circle {
    width: 78px;
    height: 78px;
  }
  .hero-action__arc {
    width: 98px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-action:hover .hero-action__frame--1,
  .hero-action:hover .hero-action__frame--2,
  .hero-action:focus-visible .hero-action__frame--1,
  .hero-action:focus-visible .hero-action__frame--2,
  .nav-trigger:hover .nav-trigger__frame--1,
  .nav-trigger:hover .nav-trigger__frame--2,
  .nav-trigger:focus-visible .nav-trigger__frame--1,
  .nav-trigger:focus-visible .nav-trigger__frame--2 {
    animation: none !important;
  }
}

/* ========================================================================
   2026-07-02 hero rebuild — mockup-driven composition
   Start frame: small centred lockup. Text expands, bowls drop L→R, float.
   Geometry measured from 1920×1080 mockups (element centres, % of frame).
   ======================================================================== */

.hero__stage {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ---- shared placement plumbing (centres via left/top + translate) ---- */
.hero-bowl,
.hero__wordmark,
.hero__dining {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  margin: 0;
  transform: translate(-50%, -50%);
}
.hero-bowl { pointer-events: none; }
.hero-bowl img,
.hero__wordmark img,
.hero__dining img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- final placements (measured) ---- */
.hero-bowl--naan      { --x: 79.896%; --y: 40.093%; --w: min(31.354vw, 55.7svh); z-index: 1; }
.hero-bowl--bchick    { --x: 36.094%; --y: 68.981%; --w: min(46.667vw, 83svh);   z-index: 2; }
.hero-bowl--spices    { --x: 14.901%; --y: 50.463%; --w: min(15.521vw, 27.6svh); z-index: 3; }
.hero-bowl--coriander { --x: 62.969%; --y: 63.259%; --w: min(15.625vw, 27.8svh); z-index: 3; }
.hero__wordmark       { --x: 50.130%; --y: 30.093%; --w: min(73.135vw, 130svh);  z-index: 5; }
.hero__dining         { --x: 79.792%; --y: 67.778%; --w: min(14.594vw, 26svh);   z-index: 5; }

/* static art rotations (from mockup) */
.hero-bowl--bchick img { transform: rotate(-24deg); }
.hero-bowl--spices img { transform: rotate(20deg); }

/* ---- intro: start states ---- */
/* Text starts as the small centred lockup, then releases to identity. */
.hero__wordmark-inner,
.hero__dining-inner {
  display: block;
  transform: translate(var(--sdx, 0), var(--sdy, 0)) scale(var(--ss, 1));
  transition: transform 1.05s var(--ease);
  will-change: transform;
}
.hero__wordmark-inner { --sdx: 0.03vw;   --sdy: 18.19vh;  --ss: 0.2961; }
.hero__wordmark-inner { --sdy: 18.19svh; }
.hero__dining-inner   { --sdx: -24.40vw; --sdy: -10.19vh; --ss: 0.8237; }
.hero__dining-inner   { --sdy: -10.19svh; }
.hero.is-set .hero__wordmark-inner,
.hero.is-set .hero__dining-inner { transform: none; }

/* Bowls wait above the viewport, then drop with a soft settle. */
.hero-bowl__drop {
  transform: translateY(-125vh);
  transform: translateY(-125svh);
  transition: transform 0.95s cubic-bezier(0.34, 1.28, 0.44, 1);
  transition-delay: var(--drop-delay, 0s);
  will-change: transform;
}
.hero-bowl--spices    .hero-bowl__drop { --drop-delay: 0.50s; }
.hero-bowl--bchick    .hero-bowl__drop { --drop-delay: 1.00s; }
.hero-bowl--coriander .hero-bowl__drop { --drop-delay: 1.50s; }
.hero-bowl--naan      .hero-bowl__drop { --drop-delay: 2.00s; }
.hero.is-set .hero-bowl__drop { transform: none; }

/* ---- float: gentle, de-phased bobbing once landed ---- */
@keyframes heroBob {
  0%, 100% { transform: translateY(0); }
  25%      { transform: translateY(calc(var(--bob, 8px) * -0.5)); }
  75%      { transform: translateY(calc(var(--bob, 8px) *  0.5)); }
}
.hero-bowl__float {
  display: block;
  animation: heroBob var(--bob-dur, 7s) ease-in-out infinite;
  animation-delay: var(--bob-delay, 0s);
  animation-play-state: paused;
}
.hero.is-set .hero-bowl__float { animation-play-state: running; }
.hero-bowl--spices    .hero-bowl__float { --bob: 7px;  --bob-dur: 5.8s; --bob-delay: 1.45s; }
.hero-bowl--bchick    .hero-bowl__float { --bob: 10px; --bob-dur: 7.4s; --bob-delay: 1.95s; }
.hero-bowl--coriander .hero-bowl__float { --bob: 7px;  --bob-dur: 6.4s; --bob-delay: 2.45s; }
.hero-bowl--naan      .hero-bowl__float { --bob: 9px;  --bob-dur: 8.2s; --bob-delay: 2.95s; }

/* ---- quick links: bare doodles, always animating, hover = grow ---- */
.hero-action {
  position: absolute;
  top: 79.8%;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--cream);
  text-decoration: none;
  transform: translateY(-50%);
  transition: transform 0.35s var(--ease), opacity 0.6s var(--ease);
  opacity: 0;
  pointer-events: none;
}
.hero-action--contact  { left:  clamp(2rem, 4.4vw, 5.2rem); }
.hero-action--ubereats { right: clamp(2rem, 4.4vw, 5.2rem); }
.hero.is-set .hero-action {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s, 2.4s;
}
.hero-action:hover,
.hero-action:focus-visible { transform: translateY(-50%) scale(1.09); }

.hero-action__icon {
  position: relative;
  width: clamp(86px, 7vw, 118px);
  color: var(--cream);
}
.hero-action__icon--phone    { aspect-ratio: 512 / 372; }
.hero-action__icon--rickshaw { aspect-ratio: 512 / 433; }
.hero-action .hero-action__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  opacity: 0;
}
.hero-action--contact .hero-action__frame--1 {
  -webkit-mask-image: url("../assets/animations/phone-1.png");
  mask-image: url("../assets/animations/phone-1.png");
}
.hero-action--contact .hero-action__frame--2 {
  -webkit-mask-image: url("../assets/animations/phone-2.png");
  mask-image: url("../assets/animations/phone-2.png");
}
.hero-action--ubereats .hero-action__frame--1 {
  -webkit-mask-image: url("../assets/animations/rickshaw-1.png");
  mask-image: url("../assets/animations/rickshaw-1.png");
}
.hero-action--ubereats .hero-action__frame--2 {
  -webkit-mask-image: url("../assets/animations/rickshaw-2.png");
  mask-image: url("../assets/animations/rickshaw-2.png");
}
/* continuous two-frame flipbook at the original cadence */
.hero-action .hero-action__frame--1 { opacity: 1; animation: doodleFrameOne 0.6667s steps(1, end) infinite; }
.hero-action .hero-action__frame--2 { animation: doodleFrameTwo 0.6667s steps(1, end) infinite; }

/* ---- topbar at page top: lowered row, enlarged colour feather ---- */
.topbar { transition: background-color 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.45s var(--ease), height 0.45s var(--ease); }
.topbar.is-top {
  padding-top: clamp(26px, 6.2svh, 66px);
  height: calc(var(--nav-h) + clamp(26px, 6.2svh, 66px));
}
/* the brand is normally a currentColor mask (a::before); at the very top of
   the page we swap in the full-colour feather artwork from the mockup */
.topbar__brand a { transition: width 0.45s var(--ease); }
.topbar__brand a::before { transition: opacity 0.35s var(--ease); }
.topbar__brand img.brand-cream { transition: opacity 0.35s var(--ease); }
.topbar.is-top.theme-dark .topbar__brand a {
  width: clamp(104px, 8.75vw, 168px) !important;
  aspect-ratio: 520 / 285;
}
.topbar.is-top.theme-dark .topbar__brand a::before { opacity: 0; }
.topbar.is-top.theme-dark .topbar__brand img.brand-cream {
  display: block !important;
  height: auto !important;
  width: 100%;
}
.nav-trigger { width: auto; }
.nav-trigger__anim { transition: width 0.45s var(--ease), height 0.45s var(--ease); }
.topbar.is-top .nav-trigger__anim { width: clamp(24px, 2.7vw, 52px); height: clamp(20px, 1.8vw, 34px); }

/* ---- responsive: portrait composition ---- */
@media (max-width: 768px) {
  .hero__wordmark       { --x: 50%; --y: 30%;   --w: 92vw; }
  .hero__dining         { --x: 72%; --y: 40.5%; --w: 26vw; }
  .hero-bowl--spices    { --x: 10%; --y: 44%;   --w: 34vw; }
  .hero-bowl--bchick    { --x: 32%; --y: 76%;   --w: 105vw; }
  .hero-bowl--coriander { --x: 78%; --y: 70%;   --w: 34vw; }
  .hero-bowl--naan      { --x: 90%; --y: 55%;   --w: 64vw; }
  .hero__wordmark-inner { --sdx: 0vw;   --sdy: 16vh;   --ss: 0.62; }
  .hero__wordmark-inner { --sdy: 16svh; }
  .hero__dining-inner   { --sdx: -14vw; --sdy: 13.5vh; --ss: 0.8; }
  .hero__dining-inner   { --sdy: 13.5svh; }
  .hero-action {
    top: auto;
    bottom: 1.1rem;
    transform: none;
  }
  .hero-action:hover,
  .hero-action:focus-visible { transform: scale(1.08); }
  .hero-action--contact  { left: 0.9rem; }
  .hero-action--ubereats { right: 0.9rem; }
  .hero-action__icon { width: clamp(64px, 18vw, 84px); }
  .hero-action__arc { width: 96px; }
  .topbar.is-top {
    padding-top: clamp(18px, 3.6svh, 34px);
    height: calc(var(--nav-h) + clamp(18px, 3.6svh, 34px));
  }
  .topbar.is-top.theme-dark .topbar__brand a { width: clamp(88px, 26vw, 118px) !important; }
  .topbar.is-top .nav-trigger__anim { width: 30px; height: 24px; }
}

/* ---- no-js / reduced motion: land on the final frame, hold still ---- */
html.no-js .hero__wordmark-inner,
html.no-js .hero__dining-inner,
html.no-js .hero-bowl__drop { transform: none !important; transition: none !important; }
html.no-js .hero-action { opacity: 1 !important; pointer-events: auto !important; }
html.no-js .hero-bowl--bchick img { transform: rotate(-24deg) !important; }
html.no-js .hero-bowl--spices img { transform: rotate(20deg) !important; }

@media (prefers-reduced-motion: reduce) {
  .hero__wordmark-inner,
  .hero__dining-inner,
  .hero-bowl__drop { transform: none !important; transition: none !important; }
  .hero-bowl__float { animation: none !important; }
  .hero-action { opacity: 1; pointer-events: auto; transition: none; }
  .hero-action .hero-action__frame--1,
  .hero-action .hero-action__frame--2 { animation: none !important; }
  .topbar,
  .topbar__brand img,
  .nav-trigger__anim { transition: none; }
}

/* ========================================================================
   2026-07-03 hero polish — cleaned text alpha, matching topbar scale, front bowl
   ======================================================================== */

/* Butter chicken sits in front of the āhāra wordmark, matching the Canva mockup. */
.hero__wordmark { z-index: 4 !important; }
.hero-bowl--bchick { z-index: 7 !important; }
.hero__dining { z-index: 5 !important; }

/* Top hero navigation: higher, smaller, and consistent with the scrolled nav. */
.topbar.is-top {
  padding-top: clamp(20px, 4.2svh, 48px) !important;
  height: calc(var(--nav-h) + clamp(20px, 4.2svh, 48px)) !important;
}

/* Use the full-colour peacock everywhere instead of the plain mask/white version. */
.topbar__brand a,
.topbar.is-top.theme-dark .topbar__brand a,
.topbar.is-scrolled .topbar__brand a {
  width: clamp(96px, 6.875vw, 132px) !important;
  aspect-ratio: 520 / 285 !important;
}
.topbar__brand a::before {
  content: none !important;
  display: none !important;
}
.topbar__brand img.brand-cream,
.topbar.is-top.theme-dark .topbar__brand img.brand-cream,
.topbar.is-scrolled .topbar__brand img.brand-cream {
  display: block !important;
  position: static !important;
  width: 100% !important;
  height: auto !important;
  opacity: 1 !important;
}
.topbar__brand img.brand-brown,
.topbar.is-scrolled .topbar__brand img.brand-brown {
  display: none !important;
}

/* Hamburger doodle scale now matches the hero/nav system instead of ballooning at top. */
.nav-trigger__anim,
.topbar.is-top .nav-trigger__anim {
  width: clamp(28px, 2.1vw, 40px) !important;
  height: clamp(22px, 1.7vw, 32px) !important;
}

/* Larger quick-action drawings, with the curved labels tucked closer underneath. */
.hero-action { gap: 0 !important; }
.hero-action__icon {
  width: clamp(108px, 8.4vw, 150px) !important;
}
.hero-action__arc {
  width: clamp(112px, 8.5vw, 148px) !important;
  margin-top: -0.55rem !important;
}
.hero-action__arc text {
  font-size: 10.5px !important;
  letter-spacing: 0.22em !important;
}

@media (max-width: 768px) {
  .topbar.is-top {
    padding-top: clamp(14px, 3.6svh, 30px) !important;
    height: calc(var(--nav-h) + clamp(14px, 3.6svh, 30px)) !important;
  }
  .topbar__brand a,
  .topbar.is-top.theme-dark .topbar__brand a,
  .topbar.is-scrolled .topbar__brand a {
    width: clamp(82px, 24vw, 106px) !important;
  }
  .nav-trigger__anim,
  .topbar.is-top .nav-trigger__anim {
    width: 30px !important;
    height: 24px !important;
  }
  .hero-action__icon { width: clamp(78px, 22vw, 98px) !important; }
  .hero-action__arc {
    width: clamp(92px, 25vw, 108px) !important;
    margin-top: -0.42rem !important;
  }
}

/* ========================================================================
   2026-07-03 requested hero pass — white lockup, feather pattern, faster fall
   ======================================================================== */
.hero {
  isolation: isolate;
  background-color: var(--orange) !important;
}

/* Repeated 10% feather pattern, built from the transparent white feather logo.
   The motif is baked into a larger transparent tile so the logos stay small,
   evenly spaced, non-overlapping, and keep a visible bottom row. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../assets/images/hero/ahara-feather-pattern-tile.png");
  background-repeat: repeat;
  background-size: clamp(290px, 18vw, 370px) auto;
  background-position: center -46px;
}
.hero__halo { z-index: 0 !important; }
.hero__stage { z-index: 1 !important; }

/* Keep hero typography fully white. The source PNG/WebP files are also rewritten to #fff. */
.hero__wordmark img,
.hero__dining img {
  opacity: 1 !important;
  filter: none !important;
}

/* Naan is still rich, just tucked back enough for the right-side āhāra letter to read. */
.hero-bowl--naan .hero-bowl__float {
  opacity: 0.93;
  filter: brightness(0.76) saturate(0.96) contrast(0.98);
}

/* Quicker intro: shorter text release and faster, tighter staggered bowl drops. */
.hero__wordmark-inner,
.hero__dining-inner {
  transition-duration: 0.86s !important;
}
.hero-bowl__drop {
  transition-duration: 0.72s !important;
  transition-timing-function: cubic-bezier(0.25, 1.16, 0.38, 1) !important;
}
.hero-bowl--spices    .hero-bowl__drop { --drop-delay: 0.20s !important; }
.hero-bowl--bchick    .hero-bowl__drop { --drop-delay: 0.42s !important; }
.hero-bowl--coriander .hero-bowl__drop { --drop-delay: 0.66s !important; }
.hero-bowl--naan      .hero-bowl__drop { --drop-delay: 0.90s !important; }
.hero.is-set .hero-action {
  transition-delay: 0s, 1.35s !important;
}

/* Unique float loops: different phase, duration and path per bowl. */
@keyframes heroBobSpices {
  0%, 100% { transform: translate3d(0, 0, 0); }
  34%      { transform: translate3d(2px, calc(var(--bob, 8px) * -0.70), 0); }
  68%      { transform: translate3d(-1px, calc(var(--bob, 8px) * 0.45), 0); }
}
@keyframes heroBobStar {
  0%, 100% { transform: translate3d(0, 0, 0); }
  28%      { transform: translate3d(0, calc(var(--bob, 20px) * -0.72), 0); }
  56%      { transform: translate3d(1px, calc(var(--bob, 20px) * 0.48), 0); }
  82%      { transform: translate3d(-1px, calc(var(--bob, 20px) * -0.22), 0); }
}
@keyframes heroBobCoriander {
  0%, 100% { transform: translate3d(0, 0, 0); }
  42%      { transform: translate3d(-2px, calc(var(--bob, 8px) * -0.55), 0); }
  74%      { transform: translate3d(1px, calc(var(--bob, 8px) * 0.55), 0); }
}
@keyframes heroBobNaan {
  0%, 100% { transform: translate3d(0, 0, 0); }
  25%      { transform: translate3d(-1px, calc(var(--bob, 9px) * -0.50), 0); }
  63%      { transform: translate3d(2px, calc(var(--bob, 9px) * 0.42), 0); }
}
.hero-bowl--spices    .hero-bowl__float { animation-name: heroBobSpices !important;    --bob: 8px;  --bob-dur: 5.35s; --bob-delay: -1.15s; }
.hero-bowl--bchick    .hero-bowl__float { animation-name: heroBobStar !important;      --bob: 22px; --bob-dur: 6.05s; --bob-delay: -2.30s; }
.hero-bowl--coriander .hero-bowl__float { animation-name: heroBobCoriander !important; --bob: 8px;  --bob-dur: 6.75s; --bob-delay: -3.05s; }
.hero-bowl--naan      .hero-bowl__float { animation-name: heroBobNaan !important;      --bob: 10px; --bob-dur: 7.65s; --bob-delay: -0.70s; }

/* Bottom hero link: same type treatment and underline logic as Book a Table. */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(1.65rem, 4.6svh, 3rem);
  z-index: 8;
  color: #fff;
  justify-content: center;
  white-space: nowrap;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.55s var(--ease) 1.65s,
    transform 0.55s var(--ease) 1.65s;
}
.hero.is-set .hero-scroll {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.hero-scroll:hover,
.hero-scroll:focus-visible {
  color: #fff;
}

@media (max-width: 768px) {
  .hero::before {
    background-size: clamp(235px, 64vw, 315px) auto;
    background-position: center -32px;
  }
  .hero-scroll {
    bottom: calc(var(--bottombar-h) + 1.2rem);
    font-size: 0.78rem;
    letter-spacing: 0.13em;
  }
  .hero-bowl--bchick .hero-bowl__float { --bob: 18px; }
  .hero-bowl--naan .hero-bowl__float { opacity: 0.90; filter: brightness(0.72) saturate(0.95); }
}


/* ========================================================================
   2026-07-12 hero ornament — traced from the approved flowing composition
   ======================================================================== */
.hero::before { content: none !important; display: none !important; }

.hero-ornament {
  position: absolute;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: 0;
  pointer-events: none;
  overflow: visible;
  opacity: .42;
}

.hero-ornament__trace {
  fill: none;
  stroke: #fff8da;
  stroke-width: 1.42;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: aharaOrnamentTrace var(--draw-duration, .8s) cubic-bezier(.22,.67,.25,1) forwards;
  animation-delay: var(--draw-delay, 0s);
}

@keyframes aharaOrnamentTrace { to { stroke-dashoffset: 0; } }

/* The ornament grows under the Contact Us badge, then climbs through the
   centre and finishes densely in the upper-right. It never crosses the badge. */
.hero__wordmark-inner,
.hero__dining-inner { transition-duration: .82s !important; }
.hero-bowl__drop { transition-duration: .68s !important; }
.hero-bowl--spices    .hero-bowl__drop { --drop-delay: .12s !important; }
.hero-bowl--bchick    .hero-bowl__drop { --drop-delay: .34s !important; }
.hero-bowl--coriander .hero-bowl__drop { --drop-delay: .56s !important; }
.hero-bowl--naan      .hero-bowl__drop { --drop-delay: .78s !important; }
.hero.is-set .hero-action { transition-delay: 0s, 1.18s !important; }
.hero-scroll { transition-delay: 1.48s, 1.48s !important; }

@media (max-width: 768px) {
  .hero-ornament {
    width: 228%;
    left: -88%;
    right: auto;
    opacity: .34;
  }
  .hero-ornament__trace { stroke-width: 1.25; }
}

html.no-js .hero-ornament__trace { animation: none !important; stroke-dashoffset: 0 !important; }

@media (prefers-reduced-motion: reduce) {
  .hero-ornament__trace { animation: none !important; stroke-dashoffset: 0 !important; }
}

/* ========================================================================
   2026-07-13 refinement — rotate the ornament away from the rickshaw and
   give the linework a thicker, smoother doodle-style presence.
   ======================================================================== */
.hero-ornament {
  opacity: .50;
  transform-origin: 57% 82%;
  transform: rotate(-7.5deg) translate(0.4%, -1.25%);
  will-change: transform;
}

.hero-ornament__trace {
  stroke-width: 2.28;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 1;
  stroke-opacity: .95;
}

.hero-action--ubereats {
  isolation: isolate;
}

/* subtle background knockout so the doodle stays unobscured even if the
   ornament passes nearby during responsive scaling */
.hero-action--ubereats::before {
  content: "";
  position: absolute;
  inset: -1.2rem -1.5rem -1.5rem -1.5rem;
  border-radius: 999px;
  background: radial-gradient(ellipse at center,
    rgba(185, 56, 2, 1) 0%,
    rgba(185, 56, 2, 0.985) 52%,
    rgba(185, 56, 2, 0.9) 68%,
    rgba(185, 56, 2, 0) 100%);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-ornament {
    width: 236%;
    left: -94%;
    right: auto;
    opacity: .38;
    transform-origin: 63% 84%;
    transform: rotate(-10deg) translate(1.8%, -1.1%);
  }

  .hero-ornament__trace {
    stroke-width: 1.96;
  }

  .hero-action--ubereats::before {
    inset: -0.8rem -1rem -1rem -1rem;
  }
}

/* ========================================================================
   2026-08-06 hand-drawn artwork, cultural typography and touch-safe motion
   ======================================================================== */

/* The supplied hand drawing replaces the legacy traced SVG completely. */
.hero-ornament {
  display: none !important;
}
.hero-handdrawn {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  opacity: 0.18;
  pointer-events: none;
}
.hero-handdrawn--static {
  object-fit: cover;
  object-position: center;
}
.hero__halo {
  background:
    radial-gradient(48% 42% at 50% 48%, rgba(114, 34, 0, 0.18), transparent 74%),
    radial-gradient(80% 70% at 50% 52%, rgba(255, 248, 218, 0.07), transparent 76%) !important;
}
.hero__stage {
  z-index: 2 !important;
  opacity: 0;
  transition: opacity 0.42s ease;
}
.hero.is-ornament-ready .hero__stage,
html.no-js .hero__stage {
  opacity: 1;
}

/* The second viewport is composed directly around the open centre of the
   supplied Delhi-market drawing. At 1920px wide it resolves to 1920x1080. */
.intro--story {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100svh;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  padding: 0 !important;
  overflow: hidden;
  background: var(--green) !important;
  color: var(--cream);
}
.intro--story::after {
  content: none !important;
  display: none !important;
}
.intro-story__art {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}
.intro-story__frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  will-change: opacity;
}
.intro-story__frame--one {
  animation: aharaStoryFrameOne 1s steps(1, end) infinite;
}
.intro-story__frame--two {
  animation: aharaStoryFrameTwo 1s steps(1, end) infinite;
}
@keyframes aharaStoryFrameOne {
  0%, 49.999% { opacity: 0.96; }
  50%, 100% { opacity: 0; }
}
@keyframes aharaStoryFrameTwo {
  0%, 49.999% { opacity: 0; }
  50%, 100% { opacity: 0.96; }
}
.intro-story__statement {
  position: relative;
  z-index: 2;
  width: min(48vw, 900px);
  margin-left: 2vw;
  top: -11vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.intro-story__statement h2 {
  color: #fff;
  font-size: clamp(3.8rem, 5.2vw, 6.6rem);
  font-weight: 500;
  line-height: 1.025;
  letter-spacing: -0.032em;
  text-wrap: balance;
  text-shadow: 0 5px 28px rgba(7, 33, 19, 0.24);
}
.intro-story__statement h2 span {
  display: block;
}
.intro-story__statement h2 span:first-child {
  color: var(--orange);
}
.intro-story__statement h2 span + span {
  margin-top: 0.04em;
}
.intro-story__cta {
  margin-top: clamp(1.35rem, 2.1vw, 2rem);
  min-width: clamp(176px, 13vw, 224px);
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.intro-story__cta:hover,
.intro-story__cta:focus-visible {
  background: var(--orange);
  color: #fff;
}

/* Site-wide refinements for the Eczar + Mukta pairing. */
body {
  letter-spacing: 0.006em;
}
h1, h2, h3, h4 {
  font-weight: 500;
  letter-spacing: -0.025em;
}
.eyebrow,
.nav-cta,
.overlay-nav__kicker,
.hero-action__arc text {
  font-family: var(--sans) !important;
}
.eyebrow,
.nav-cta {
  letter-spacing: 0.18em;
}
.banner-unit {
  font-weight: 600 !important;
  letter-spacing: -0.035em !important;
}

/* JavaScript supplies pixel-accurate marquee transforms on touch devices.
   The original CSS animation remains as a progressive fallback. */
.banner-track {
  width: max-content;
  min-width: max-content;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.banner-track > * {
  flex: 0 0 auto;
}
html.marquee-js .banner-track--left,
html.marquee-js .banner-track--right {
  animation: none !important;
}

@media (max-width: 1024px) {
  .intro-story__statement {
    width: min(58vw, 700px);
    margin-left: 2vw;
    top: -8vh;
  }
  .intro-story__statement h2 {
    font-size: clamp(3.2rem, 7.6vw, 5.7rem);
  }
}

@media (max-width: 900px) {
  .hero-handdrawn {
    opacity: 0.14;
  }

  .intro--story {
    aspect-ratio: auto;
    min-height: 100svh;
    place-items: start center;
  }
  .intro-story__art {
    inset: auto auto -1% 50%;
    width: 152%;
    height: auto;
    aspect-ratio: 16 / 9;
    transform: translateX(-50%);
  }
  .intro-story__statement {
    width: calc(100% - 2.4rem);
    max-width: 650px;
    margin: calc(var(--nav-h) + 12svh) auto 0;
    top: auto;
  }
  .intro-story__statement h2 {
    font-size: clamp(2.7rem, 10.4vw, 5rem);
    line-height: 1.02;
  }

  /* On mobile the same two-card reveal becomes a compact, touch-safe opening
     animation instead of being removed altogether. */
  .tcarousel {
    overflow: visible;
    padding-inline: max(var(--gutter), 1.15rem);
  }
  .tcarousel__card {
    position: relative;
    isolation: isolate;
    min-height: clamp(440px, 122vw, 560px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(2rem, 8vw, 3.2rem) clamp(1.4rem, 6vw, 2.4rem) !important;
  }
  .tcarousel__media {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0;
    pointer-events: none;
  }
  .tcarousel__media .pic {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    overflow: hidden;
    transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }
  .tcarousel__media .pic:first-child {
    transform-origin: right center;
  }
  .tcarousel__media .pic:last-child {
    transform-origin: left center;
  }
  .tcarousel__card > .reveal-stars,
  .tcarousel__card > .reveal-name,
  .tcarousel__card > .reveal-quote,
  .tcarousel__card > .reveal-arrows {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 0.55s ease 0.34s,
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.34s;
  }
  .tcarousel__card.is-open .tcarousel__media .pic:first-child {
    transform: translate3d(-102%, 0, 0) rotate(-2.5deg);
  }
  .tcarousel__card.is-open .tcarousel__media .pic:last-child {
    transform: translate3d(102%, 0, 0) rotate(2.5deg);
  }
  .tcarousel__card.is-open > .reveal-stars,
  .tcarousel__card.is-open > .reveal-name,
  .tcarousel__card.is-open > .reveal-quote,
  .tcarousel__card.is-open > .reveal-arrows {
    opacity: 1;
    transform: translateY(0);
  }
  .tcarousel__card .reveal-quote {
    font-size: clamp(1.6rem, 7.3vw, 2.35rem);
    max-width: 15ch;
  }
}

@media (max-width: 560px) {
  .intro-story__art {
    width: 160%;
    bottom: 0;
  }
  .intro-story__statement {
    margin-top: calc(var(--nav-h) + 11svh);
  }
  .intro-story__statement h2 {
    font-size: clamp(2.45rem, 10.8vw, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-handdrawn {
    opacity: 0.18;
  }
  .intro-story__frame--one,
  .intro-story__frame--two {
    animation: none !important;
  }
  .intro-story__frame--one {
    opacity: 0.96;
  }
  .intro-story__frame--two {
    opacity: 0;
  }
  .tcarousel__media {
    display: none;
  }
  .tcarousel__card > .reveal-stars,
  .tcarousel__card > .reveal-name,
  .tcarousel__card > .reveal-quote,
  .tcarousel__card > .reveal-arrows {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ========================================================================
   2026-08-11 refinement — cleaner story composition, real reviews and CTAs
   ======================================================================== */

/* Hero: keep the supplied 1920x1080 drawing faint, remove the badge knockouts,
   and use the same Eczar voice as the rest of the page for the two text CTAs. */
.hero-handdrawn {
  opacity: 0.115;
}
.hero-action::before,
.hero-action--contact::before,
.hero-action--ubereats::before {
  content: none !important;
  display: none !important;
  background: none !important;
}
.topbar__cta .nav-cta,
.hero-scroll {
  font-family: var(--serif) !important;
  font-size: clamp(0.94rem, 0.8rem + 0.22vw, 1.08rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0.055em !important;
  text-transform: none !important;
}

/* The name arrives first as two playful beats. Its existing positional
   transform then expands while the bowls and background drawing begin. */
.hero__stage {
  opacity: 1 !important;
  transition: none !important;
}
.hero__wordmark-inner picture,
.hero__dining-inner picture {
  display: block;
  opacity: 0;
  transform: scale(0.72);
  transform-origin: center;
  will-change: transform, opacity;
}
.hero.is-name-intro .hero__wordmark-inner picture {
  animation: aharaNamePop 0.58s cubic-bezier(0.22, 1.32, 0.38, 1) forwards;
}
.hero.is-name-intro .hero__dining-inner picture {
  animation: aharaNamePop 0.58s cubic-bezier(0.22, 1.32, 0.38, 1) 0.34s forwards;
}
@keyframes aharaNamePop {
  0%   { opacity: 0; transform: scale(0.68) translateY(10px); }
  64%  { opacity: 1; transform: scale(1.075) translateY(-2px); }
  82%  { opacity: 1; transform: scale(0.975) translateY(1px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Illustrated section: one calm cream-on-green palette, a higher text block,
   and 90% artwork opacity so the supplied drawing stays vivid but legible. */
@keyframes aharaStoryFrameOne {
  0%, 49.999% { opacity: 0.90; }
  50%, 100% { opacity: 0; }
}
@keyframes aharaStoryFrameTwo {
  0%, 49.999% { opacity: 0; }
  50%, 100% { opacity: 0.90; }
}
.intro-story__statement {
  width: min(51vw, 980px);
  margin-left: 1vw;
  top: -18svh;
}
.intro-story__statement h2,
.intro-story__statement h2 span,
.intro-story__statement h2 span:first-child {
  color: var(--cream);
}
.intro-story__statement h2 {
  font-size: clamp(4rem, 5.45vw, 6.85rem);
  line-height: 0.98;
  text-shadow: 0 5px 30px rgba(4, 27, 14, 0.64);
}
.intro-story__cta {
  margin-top: clamp(1rem, 1.6vw, 1.45rem);
  min-width: clamp(188px, 14vw, 236px);
  min-height: 54px;
  background: var(--cream);
  border: 1.5px solid var(--cream);
  color: var(--green-deep);
  box-shadow: 0 12px 34px rgba(4, 29, 15, 0.2);
}
.intro-story__cta:hover,
.intro-story__cta:focus-visible {
  background: var(--green-deep);
  border-color: var(--cream);
  color: var(--cream);
}

/* Menu dietary groups are built from the existing accessible menu list. */
.menu-diet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.2rem, 6vw, 6rem);
  align-items: start;
}
.menu-diet-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}
.menu-diet-group {
  min-width: 0;
}
.menu-diet-title {
  margin-bottom: 0.65rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid currentColor;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 1.22rem + 1.3vw, 2.55rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.menu-diet-title--veg {
  color: var(--green);
}
.menu-diet-title--nonveg {
  color: #8f2f12;
}
.menu-list--diet {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

/* Testimonial heading is deliberately locked to two lines. */
.treveal__intro h2 span {
  display: block;
}
.treveal__intro h2 {
  max-width: 16ch !important;
}
.reveal-content {
  max-width: min(800px, 48vw) !important;
}
.reveal-quote {
  font-size: clamp(1.55rem, 2.25vw, 2.65rem) !important;
}

/* Full-screen story chapter below Catering. At 1920px wide this resolves to
   the requested 1920x1080 composition while remaining fluid elsewhere. */
.our-story {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100svh;
  aspect-ratio: 16 / 9;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(6rem, 8vw, 9rem) var(--gutter) clamp(7rem, 9vw, 10rem);
  background: var(--cream);
  color: var(--brown);
}
.our-story::before {
  content: "nourishment";
  position: absolute;
  right: -0.06em;
  bottom: -0.26em;
  z-index: -1;
  font-family: var(--serif);
  font-size: clamp(9rem, 22vw, 27rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.07em;
  color: rgba(114, 34, 0, 0.045);
  pointer-events: none;
}
.our-story::after {
  content: "";
  position: absolute;
  left: -9vw;
  top: -18vw;
  z-index: -1;
  width: clamp(360px, 38vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: clamp(36px, 4.5vw, 86px) solid rgba(185, 56, 2, 0.075);
  pointer-events: none;
}
.our-story__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 72%, rgba(185, 56, 2, 0.11) 0 2px, transparent 2.5px) 0 0 / 34px 34px,
    radial-gradient(circle at 88% 18%, rgba(22, 63, 37, 0.10), transparent 27%);
}
.our-story__inner {
  width: 100%;
  max-width: 1580px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.72fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}
.our-story__lead .eyebrow {
  margin-bottom: clamp(1.25rem, 2.4vw, 2.2rem);
}
.our-story__lead h2 {
  max-width: 10.5ch;
  color: var(--brown);
  font-size: clamp(4rem, 5.55vw, 7.35rem);
  line-height: 0.91;
  letter-spacing: -0.045em;
}
.our-story__intro {
  max-width: 39ch;
  margin-top: clamp(1.7rem, 3vw, 2.8rem);
  color: rgba(90, 30, 6, 0.76);
  font-size: clamp(1.24rem, 1.05rem + 0.55vw, 1.72rem);
  line-height: 1.42;
}
.our-story__card {
  position: relative;
  min-height: min(70svh, 730px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 4.2vw, 5rem) clamp(2.1rem, 3.6vw, 4.2rem);
  overflow: hidden;
  border-radius: clamp(190px, 18vw, 340px) clamp(190px, 18vw, 340px) 38px 38px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 248, 218, 0.11), transparent 34%),
    var(--green);
  color: var(--cream);
  box-shadow: 0 34px 90px rgba(86, 25, 0, 0.16);
}
.our-story__card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 248, 218, 0.22);
  border-radius: inherit;
  pointer-events: none;
}
.our-story__card img {
  width: clamp(82px, 7vw, 118px);
  height: auto;
  margin: 0 auto clamp(1.4rem, 2.3vw, 2.2rem);
  opacity: 0.88;
}
.our-story__card p {
  position: relative;
  z-index: 1;
  max-width: 44ch;
  color: rgba(255, 248, 218, 0.78);
  font-size: clamp(1rem, 0.94rem + 0.22vw, 1.2rem);
  line-height: 1.55;
}
.our-story__card p + p {
  margin-top: 1.05rem;
}
.our-story__card .our-story__meaning {
  margin-bottom: 0.35rem;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2rem, 2.55vw, 3.35rem);
  line-height: 1.04;
}
.our-story__meaning span {
  color: #efaa6c;
}
.our-story__card .our-story__closing {
  margin-top: clamp(1.4rem, 2.2vw, 2rem);
  padding-top: clamp(1.1rem, 1.8vw, 1.55rem);
  border-top: 1px solid rgba(255, 248, 218, 0.24);
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.25vw, 1.58rem);
  line-height: 1.35;
}
.our-story__footerline {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(2.2rem, 3.3vw, 4rem);
  max-width: none;
  color: rgba(90, 30, 6, 0.50);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Homepage and menu CTA groups share one pill footprint, so short labels do
   not become circles and longer labels never wrap. */
.finalcta .btn-row,
.menu-cta {
  align-items: stretch;
}
.finalcta .btn,
.menu-cta .btn {
  flex: 0 0 196px;
  width: 196px;
  min-width: 196px;
  min-height: 58px;
  padding-inline: 1.35rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  line-height: 1;
}
.finalcta .btn .ar,
.menu-cta .btn .ar {
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .our-story__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: clamp(2rem, 5vw, 4rem);
  }
  .our-story__lead h2 {
    font-size: clamp(3.6rem, 6.4vw, 5.8rem);
  }
  .our-story__card {
    min-height: min(68svh, 690px);
  }
}

@media (max-width: 900px) {
  .hero-handdrawn {
    opacity: 0.095;
  }
  .intro-story__art {
    left: 40%;
    width: 178%;
  }
  .intro-story__statement {
    width: calc(100% - 2.4rem);
    max-width: 680px;
    margin: calc(var(--nav-h) + 6.5svh) auto 0;
    top: auto;
  }
  .intro-story__statement h2 {
    font-size: clamp(2.8rem, 10.8vw, 5.2rem);
    line-height: 0.99;
  }
  .intro-story__cta {
    margin-top: 1rem;
  }
  .menu-diet-grid,
  .menu-diet-grid.is-single {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.6rem;
    max-width: none;
  }
  .menu-diet-title {
    font-size: clamp(1.8rem, 7vw, 2.35rem);
  }
  .our-story {
    min-height: auto;
    aspect-ratio: auto;
    padding: calc(var(--nav-h) + 3.5rem) var(--gutter) 7rem;
  }
  .our-story__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }
  .our-story__lead h2 {
    max-width: 11ch;
    font-size: clamp(3.2rem, 10.6vw, 5.7rem);
  }
  .our-story__intro {
    max-width: 48ch;
  }
  .our-story__card {
    min-height: 0;
    max-width: 680px;
    padding: 5rem clamp(1.7rem, 6vw, 3.6rem) 3.4rem;
    border-radius: 260px 260px 32px 32px;
  }
  .our-story__footerline {
    left: var(--gutter);
    right: var(--gutter);
    bottom: 2.2rem;
    line-height: 1.45;
  }
  .finalcta .btn,
  .menu-cta .btn {
    flex: 1 1 176px;
    width: auto;
    min-width: 176px;
  }
}

@media (max-width: 560px) {
  .intro-story__art {
    left: 36%;
    width: 190%;
    bottom: -1%;
  }
  .intro-story__statement {
    margin-top: calc(var(--nav-h) + 5svh);
  }
  .intro-story__statement h2 {
    font-size: clamp(2.55rem, 11.3vw, 4rem);
  }
  .treveal__intro h2 {
    max-width: 13ch !important;
    font-size: clamp(2.75rem, 13vw, 4.6rem) !important;
  }
  .our-story__lead h2 {
    font-size: clamp(3rem, 13.5vw, 4.65rem);
  }
  .our-story__card {
    padding-top: 4.3rem;
    border-radius: 190px 190px 26px 26px;
  }
  .finalcta .btn-row,
  .menu-cta {
    width: min(100%, 340px);
    margin-inline: auto;
  }
  .finalcta .btn,
  .menu-cta .btn {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__wordmark-inner picture,
  .hero__dining-inner picture {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .intro-story__frame--one {
    opacity: 0.90;
  }
}

/* =========================================================================
   Website TLC — CTA sizing, illustrated story, catering hero + enquiry wizard
   ========================================================================= */

/* Arrow artwork always follows the text size. Without an explicit footprint,
   an inline SVG can use the browser's 300x150 default and inflate pill CTAs. */
.btn .ar {
  display: block;
  flex: 0 0 1.12em;
  width: 1.12em;
  height: 1.12em;
  min-width: 1.12em;
  max-width: 1.12em;
}

/* Catering hero — the supplied two-frame India Gate drawing plays at 1fps. */
.page-hero--catering {
  isolation: isolate;
  min-height: clamp(720px, 86svh, 960px);
  display: flex;
  align-items: center;
}
.page-hero--catering::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(185, 56, 2, 0.88) 0%, rgba(185, 56, 2, 0.58) 44%, rgba(185, 56, 2, 0.16) 78%, rgba(185, 56, 2, 0.06) 100%);
}
.page-hero--catering .page-hero__inner {
  width: min(100%, 820px);
}
.page-hero--catering .page-hero__copy {
  color: var(--cream);
  opacity: 0.96;
}
.page-hero__gate {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.26;
}
.page-hero__gate-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.08);
  transform-origin: center bottom;
}
.page-hero__gate-frame--one {
  animation: indiaGateFrameOne 2s steps(1, end) infinite;
}
.page-hero__gate-frame--two {
  animation: indiaGateFrameTwo 2s steps(1, end) infinite;
}
@keyframes indiaGateFrameOne {
  0%, 49.999% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes indiaGateFrameTwo {
  0%, 49.999% { opacity: 0; }
  50%, 100% { opacity: 1; }
}

/* Our story — text leads, with the carrier illustration integrated beneath it. */
.our-story {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100svh;
  aspect-ratio: auto;
  display: grid;
  grid-template-rows: auto minmax(390px, 1fr) auto;
  align-items: start;
  gap: clamp(1.6rem, 2.7vw, 3rem);
  overflow: hidden;
  padding: calc(var(--nav-h) + clamp(2.2rem, 4vw, 4.5rem)) var(--gutter) clamp(2.4rem, 4vw, 4.5rem);
  background: var(--cream);
  color: var(--brown);
}
.our-story::before,
.our-story::after {
  content: none;
}
.our-story__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 13% 72%, rgba(185, 56, 2, 0.08) 0 2px, transparent 2.4px) 0 0 / 38px 38px,
    radial-gradient(circle at 86% 28%, rgba(22, 63, 37, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 35%);
}
.our-story__header {
  width: min(100%, 1120px);
  margin-inline: auto;
  text-align: center;
}
.our-story__header .eyebrow {
  margin-bottom: clamp(1rem, 1.8vw, 1.65rem);
}
.our-story__header h2 {
  max-width: 15ch;
  margin-inline: auto;
  color: var(--brown);
  font-size: clamp(3.6rem, 5vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: -0.042em;
}
.our-story__header > p:last-child {
  max-width: 63ch;
  margin: clamp(1.25rem, 2vw, 1.9rem) auto 0;
  color: rgba(90, 30, 6, 0.76);
  font-size: clamp(1.08rem, 0.98rem + 0.34vw, 1.42rem);
  line-height: 1.48;
}
.our-story__composition {
  width: min(100%, 1540px);
  min-height: 390px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(390px, 0.95fr) minmax(250px, 1fr);
  grid-template-areas: "left carrier right";
  gap: clamp(2rem, 4vw, 5.2rem);
  align-items: center;
}
.our-story__carrier {
  grid-area: carrier;
  position: relative;
  align-self: end;
  justify-self: center;
  width: min(100%, 570px);
  aspect-ratio: 1;
  margin-bottom: clamp(-8rem, -7vw, -4.5rem);
  filter: brightness(0) saturate(100%) invert(20%) sepia(31%) saturate(744%) hue-rotate(92deg) brightness(90%) contrast(93%);
  opacity: 0.94;
}
.our-story__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.our-story__frame--one {
  animation: storyCarrierFrameOne 1s steps(1, end) infinite;
}
.our-story__frame--two {
  animation: storyCarrierFrameTwo 1s steps(1, end) infinite;
}
@keyframes storyCarrierFrameOne {
  0%, 49.999% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes storyCarrierFrameTwo {
  0%, 49.999% { opacity: 0; }
  50%, 100% { opacity: 1; }
}
.our-story__note {
  position: relative;
  max-width: 40ch;
  padding-top: clamp(1.1rem, 1.8vw, 1.6rem);
  border-top: 1.5px solid rgba(22, 63, 37, 0.48);
  color: rgba(90, 30, 6, 0.78);
  font-size: clamp(1rem, 0.95rem + 0.18vw, 1.18rem);
  line-height: 1.58;
}
.our-story__note::before {
  content: "";
  position: absolute;
  top: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.our-story__note--left {
  grid-area: left;
  justify-self: end;
  text-align: right;
}
.our-story__note--left::before { right: 0; }
.our-story__note--right {
  grid-area: right;
  justify-self: start;
  text-align: left;
}
.our-story__note--right::before { left: 0; }
.our-story__label {
  margin-bottom: 0.55rem;
  color: var(--orange);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.our-story__note .our-story__meaning {
  margin-bottom: 0.65rem;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.2vw, 2.9rem);
  line-height: 1.03;
}
.our-story__meaning span { color: var(--orange); }
.our-story__ending {
  position: relative;
  z-index: 2;
  width: min(100%, 900px);
  margin-inline: auto;
  text-align: center;
}
.our-story__ending p {
  max-width: 54ch;
  margin-inline: auto;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.35vw, 1.72rem);
  line-height: 1.35;
}
.our-story__ending span {
  display: block;
  margin-top: 0.85rem;
  color: rgba(90, 30, 6, 0.5);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
}

/* Catering enquiry wizard — three small decisions instead of one long form. */
.catering-wizard-section {
  background: var(--cream-deep);
}
.catering-wizard-shell {
  width: min(100%, 1320px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid rgba(90, 30, 6, 0.12);
  border-radius: clamp(24px, 2.6vw, 38px);
  background: var(--cream);
  box-shadow: 0 30px 90px rgba(86, 25, 0, 0.1);
}
.catering-wizard__intro {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.6rem, 4.5vw, 5.4rem);
  overflow: hidden;
  background: var(--green);
  color: var(--cream);
}
.catering-wizard__intro::after {
  content: "";
  position: absolute;
  right: -32%;
  bottom: -18%;
  z-index: -1;
  width: 92%;
  aspect-ratio: 1;
  border: clamp(26px, 3.2vw, 54px) solid rgba(255, 248, 218, 0.08);
  border-radius: 50%;
}
.catering-wizard__intro .eyebrow { color: #efaa6c; }
.catering-wizard__intro h2 {
  max-width: 8.5ch;
  margin-top: clamp(1.1rem, 2vw, 1.8rem);
  font-size: clamp(3rem, 4vw, 5.3rem);
  line-height: 0.96;
}
.catering-wizard__intro > p:last-child {
  margin-top: clamp(1.4rem, 2.2vw, 2rem);
  color: rgba(255, 248, 218, 0.78);
  font-size: clamp(1.05rem, 1rem + 0.22vw, 1.26rem);
  line-height: 1.52;
}
.catering-wizard {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  padding: clamp(2.2rem, 4vw, 4.5rem);
}
.catering-wizard__progress {
  margin-bottom: clamp(2rem, 3vw, 3rem);
}
.catering-wizard__progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
  color: var(--ink-soft);
  font-size: var(--fs-small);
  font-weight: 700;
}
.catering-wizard__progress-copy span:last-child { color: var(--brown); }
.catering-wizard__track {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(90, 30, 6, 0.1);
}
.catering-wizard__track span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transition: width 0.35s var(--ease);
}
.catering-wizard__step {
  min-width: 0;
  border: 0;
  padding: 0;
}
.catering-wizard__step legend {
  width: 100%;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.2vw, 3.8rem);
  line-height: 1.02;
}
.catering-wizard__hint {
  margin: 0.7rem 0 clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--ink-soft);
}
.wizard-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.wizard-choice-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.wizard-choice {
  position: relative;
  min-width: 0;
  cursor: pointer;
}
.wizard-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.wizard-choice span {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--cream-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.24);
  color: var(--brown);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.wizard-choice:hover span {
  border-color: rgba(185, 56, 2, 0.65);
  transform: translateY(-1px);
}
.wizard-choice input:focus-visible + span {
  outline: 3px solid rgba(185, 56, 2, 0.2);
  outline-offset: 2px;
}
.wizard-choice input:checked + span {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--cream);
}
.wizard-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.15rem;
  margin-top: 1.25rem;
}
.catering-wizard .field label span {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.catering-wizard .field input,
.catering-wizard .field select,
.catering-wizard .field textarea {
  background: rgba(255, 255, 255, 0.48);
}
.catering-wizard__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: clamp(1.8rem, 3vw, 2.7rem);
}
.catering-wizard__submit-note {
  max-width: 58ch;
  margin: 1rem 0 0 auto;
  color: var(--ink-soft);
  font-size: var(--fs-small);
  line-height: 1.45;
  text-align: right;
}
.catering-wizard .form-status {
  margin-top: 0.75rem;
  text-align: right;
}

@media (max-width: 1050px) {
  .page-hero--catering {
    min-height: clamp(680px, 82svh, 860px);
  }
  .our-story__composition {
    grid-template-columns: minmax(220px, 1fr) minmax(330px, 0.9fr) minmax(220px, 1fr);
    gap: 2rem;
  }
  .our-story__carrier {
    margin-bottom: -3rem;
  }
  .catering-wizard-shell {
    grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
  }
  .wizard-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wizard-choice-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .page-hero--catering {
    min-height: 760px;
  }
  .page-hero--catering::after {
    background: linear-gradient(180deg, rgba(185, 56, 2, 0.76) 0%, rgba(185, 56, 2, 0.4) 52%, rgba(185, 56, 2, 0.2) 100%);
  }
  .page-hero__gate {
    opacity: 0.21;
  }
  .page-hero__gate-frame {
    width: 145%;
    max-width: none;
    left: -22.5%;
    object-fit: contain;
    transform: none;
  }
  .our-story {
    min-height: auto;
    grid-template-rows: auto auto auto;
    gap: 2.4rem;
    padding: calc(var(--nav-h) + 3rem) var(--gutter) 4rem;
  }
  .our-story__header h2 {
    font-size: clamp(3.1rem, 10vw, 5.4rem);
  }
  .our-story__composition {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "carrier carrier"
      "left right";
    gap: 1.5rem;
  }
  .our-story__carrier {
    width: min(82vw, 540px);
    margin: -1.5rem auto -4rem;
  }
  .our-story__note,
  .our-story__note--left,
  .our-story__note--right {
    justify-self: stretch;
    text-align: left;
  }
  .our-story__note--left::before { left: 0; right: auto; }
  .catering-wizard-shell {
    grid-template-columns: minmax(0, 1fr);
  }
  .catering-wizard__intro {
    min-height: 350px;
  }
  .catering-wizard__intro h2 {
    max-width: 12ch;
  }
  .catering-wizard {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .page-hero--catering {
    min-height: 700px;
  }
  .page-hero--catering .page-hero__inner {
    text-align: left;
  }
  .page-hero__gate-frame {
    width: 190%;
    left: -45%;
  }
  .our-story__header h2 {
    font-size: clamp(2.85rem, 13vw, 4.3rem);
  }
  .our-story__header > p:last-child {
    font-size: 1.05rem;
  }
  .our-story__composition {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "carrier"
      "left"
      "right";
  }
  .our-story__carrier {
    width: min(100%, 440px);
    margin-bottom: -2.5rem;
  }
  .our-story__note {
    max-width: none;
  }
  .our-story__ending {
    text-align: left;
  }
  .our-story__ending span {
    font-size: 0.7rem;
  }
  .catering-wizard-section {
    padding-inline: 0;
  }
  .catering-wizard-shell {
    border-inline: 0;
    border-radius: 0;
  }
  .catering-wizard__intro,
  .catering-wizard {
    padding: 2.2rem var(--gutter);
  }
  .catering-wizard__intro {
    min-height: 320px;
  }
  .catering-wizard__intro h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }
  .wizard-choice-grid,
  .wizard-choice-grid--compact,
  .wizard-field-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .wizard-choice-grid--events {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wizard-choice span {
    min-height: 56px;
  }
  .catering-wizard__actions .btn {
    flex: 1 1 auto;
  }
  .catering-wizard__submit-note,
  .catering-wizard .form-status {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__gate-frame,
  .our-story__frame {
    animation: none !important;
  }
  .page-hero__gate-frame--one,
  .our-story__frame--one { opacity: 1; }
  .page-hero__gate-frame--two,
  .our-story__frame--two { opacity: 0; }
}

/* =========================================================================
   Website TLC v2 — edge-to-edge catering art and a tighter story sequence
   ========================================================================= */

/* The supplied India Gate artwork is 1920x1080 and already touches both image
   edges. Fit by width/cover so a shallower browser viewport cannot letterbox it. */
.page-hero__gate-frame {
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
  transform: none;
}

/* Story chapter: one 16:9 scene, one narrative line and one dominant figure. */
.our-story {
  height: clamp(760px, 56.25vw, 1080px);
  min-height: 0;
  max-height: 1080px;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(0.7rem, 1.3vw, 1.4rem);
  padding: calc(var(--nav-h) + clamp(1rem, 1.7vw, 2rem)) var(--gutter) clamp(1.5rem, 2.5vw, 3rem);
}
.our-story__grain {
  inset: 0;
  overflow: hidden;
  opacity: 1;
  background:
    radial-gradient(circle at 50% 64%, rgba(255, 255, 255, 0.48), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.20), transparent 42%);
}
.our-story__motif {
  --motif-colour: var(--orange);
  --motif-opacity: 0.045;
  position: absolute;
  display: block;
  width: var(--motif-size, 150px);
  aspect-ratio: 1;
  background: var(--motif-colour);
  opacity: var(--motif-opacity);
  transform: rotate(var(--motif-rotate, 0deg));
  -webkit-mask: url("/assets/images/ahara-feather-closed-source.png") center / contain no-repeat;
  mask: url("/assets/images/ahara-feather-closed-source.png") center / contain no-repeat;
}
.our-story__motif--one {
  --motif-size: clamp(120px, 10vw, 195px);
  --motif-rotate: -13deg;
  left: 1.5%;
  top: 8%;
}
.our-story__motif--two {
  --motif-size: clamp(92px, 7vw, 140px);
  --motif-rotate: 18deg;
  --motif-colour: var(--green);
  --motif-opacity: 0.052;
  right: 7%;
  top: 16%;
}
.our-story__motif--three {
  --motif-size: clamp(170px, 13vw, 250px);
  --motif-rotate: 7deg;
  --motif-colour: var(--brown);
  --motif-opacity: 0.035;
  left: 9%;
  bottom: -3%;
}
.our-story__motif--four {
  --motif-size: clamp(135px, 10vw, 205px);
  --motif-rotate: -17deg;
  right: 16%;
  bottom: 1%;
}
.our-story__motif--five {
  --motif-size: clamp(72px, 5.5vw, 110px);
  --motif-rotate: 29deg;
  --motif-colour: var(--green);
  --motif-opacity: 0.04;
  left: 36%;
  top: 4%;
}
.our-story__motif--six {
  --motif-size: clamp(100px, 8vw, 165px);
  --motif-rotate: 11deg;
  --motif-colour: var(--brown);
  --motif-opacity: 0.032;
  right: -1.5%;
  top: 43%;
}
.our-story__motif--seven {
  --motif-size: clamp(84px, 6vw, 125px);
  --motif-rotate: -27deg;
  --motif-colour: var(--green);
  --motif-opacity: 0.042;
  left: 28%;
  bottom: 5%;
}
.our-story__header {
  position: relative;
  z-index: 3;
  width: min(100%, 1240px);
}
.our-story__header .eyebrow {
  margin-bottom: clamp(0.65rem, 1vw, 1rem);
}
.our-story__header h2 {
  max-width: none;
  font-size: clamp(3.45rem, 4.25vw, 5.3rem);
  line-height: 0.92;
}
.our-story__header h2 span {
  display: block;
  white-space: nowrap;
}
.our-story__header > p:last-child {
  max-width: 67ch;
  margin-top: clamp(0.9rem, 1.4vw, 1.35rem);
  font-size: clamp(1.02rem, 0.92rem + 0.28vw, 1.28rem);
  line-height: 1.42;
}
.our-story__composition {
  position: relative;
  z-index: 2;
  width: min(100%, 1740px);
  min-height: 0;
  height: 100%;
  grid-template-columns: minmax(260px, 0.86fr) minmax(520px, 1.38fr) minmax(260px, 0.86fr);
  grid-template-areas: "left carrier right";
  gap: clamp(1.2rem, 2vw, 2.4rem);
  align-items: center;
}
.our-story__composition::before {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  top: 56%;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 63, 37, 0.38) 12%, rgba(22, 63, 37, 0.38) 88%, transparent);
}
.our-story__carrier {
  grid-area: carrier;
  z-index: 1;
  align-self: end;
  width: min(42vw, 66svh, 720px);
  max-width: 100%;
  margin: 0;
  filter: brightness(0) saturate(100%) invert(20%) sepia(31%) saturate(744%) hue-rotate(92deg) brightness(90%) contrast(93%);
  opacity: 0.98;
}
.our-story__carrier::before {
  content: "";
  position: absolute;
  inset: 12% 6% 3%;
  z-index: -1;
  border: 1px solid rgba(185, 56, 2, 0.14);
  border-radius: 48% 48% 42% 42%;
  background: radial-gradient(circle at 50% 46%, rgba(185, 56, 2, 0.065), transparent 68%);
}
.our-story__note,
.our-story__note--left,
.our-story__note--right {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: stretch;
  max-width: 36ch;
  padding: clamp(1rem, 1.5vw, 1.4rem) clamp(0.35rem, 0.9vw, 0.9rem);
  border: 0;
  background: linear-gradient(90deg, rgba(255, 248, 218, 0.92), rgba(255, 248, 218, 0.76));
  color: rgba(90, 30, 6, 0.78);
  font-size: clamp(0.98rem, 0.88rem + 0.22vw, 1.16rem);
  line-height: 1.5;
  text-align: left;
}
.our-story__note--left {
  grid-area: left;
  justify-self: end;
}
.our-story__note--right {
  grid-area: right;
  justify-self: start;
  background: linear-gradient(270deg, rgba(255, 248, 218, 0.92), rgba(255, 248, 218, 0.76));
}
.our-story__note::before {
  content: none;
}
.our-story__chapter {
  margin-bottom: 0.55rem;
  color: var(--orange);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.our-story__note h3,
.our-story__note .our-story__meaning {
  margin: 0 0 0.65rem;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  line-height: 1.02;
}
.our-story__meaning span {
  color: var(--orange);
}
.our-story__closing {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(22, 63, 37, 0.24);
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1vw, 1.18rem);
  line-height: 1.32;
}

/* Hand-drawn catering accents. Two frames over two seconds = 1fps; two frames
   over one second = 2fps. Their positions follow the supplied pink markers. */
.finalcta--catering-art {
  position: relative;
  isolation: isolate;
  min-height: clamp(590px, 35vw, 710px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.finalcta--catering-art .container {
  position: relative;
  z-index: 2;
}
.catering-food-sketch {
  --sketch-cycle: 2s;
  position: absolute;
  z-index: 1;
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.82;
}
.catering-food-sketch--pani {
  left: clamp(-36px, -1vw, 0px);
  top: clamp(68px, 10%, 112px);
  width: clamp(350px, 25vw, 500px);
}
.catering-food-sketch--samosa {
  --sketch-cycle: 1s;
  right: clamp(-34px, -1vw, 0px);
  top: clamp(-72px, -3vw, -26px);
  width: clamp(340px, 24.5vw, 490px);
}
.catering-food-sketch__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.catering-food-sketch__frame--one {
  animation: cateringSketchFrameOne var(--sketch-cycle) steps(1, end) infinite;
}
.catering-food-sketch__frame--two {
  animation: cateringSketchFrameTwo var(--sketch-cycle) steps(1, end) infinite;
}
@keyframes cateringSketchFrameOne {
  0%, 49.999% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes cateringSketchFrameTwo {
  0%, 49.999% { opacity: 0; }
  50%, 100% { opacity: 1; }
}

@media (max-width: 1180px) {
  .our-story {
    height: auto;
    min-height: 0;
    max-height: none;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    padding: calc(var(--nav-h) + 2.5rem) var(--gutter) 4.5rem;
  }
  .our-story__header h2 {
    font-size: clamp(3.4rem, 7vw, 5.6rem);
  }
  .our-story__composition {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "carrier carrier"
      "left right";
    gap: 1.3rem 2rem;
  }
  .our-story__composition::before {
    top: 70%;
  }
  .our-story__carrier {
    width: min(78vw, 650px);
    margin-inline: auto;
  }
  .our-story__note,
  .our-story__note--left,
  .our-story__note--right {
    justify-self: stretch;
    max-width: none;
  }
  .catering-food-sketch {
    opacity: 0.52;
  }
  .catering-food-sketch--pani {
    left: -100px;
  }
  .catering-food-sketch--samosa {
    right: -100px;
  }
}

@media (max-width: 700px) {
  .page-hero__gate-frame {
    inset: 0;
    width: 100%;
    left: 0;
    object-fit: cover;
  }
  .our-story {
    padding-top: calc(var(--nav-h) + 2rem);
  }
  .our-story__header h2 {
    font-size: clamp(2.8rem, 12vw, 4.25rem);
  }
  .our-story__header h2 span {
    white-space: normal;
  }
  .our-story__composition {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "carrier"
      "left"
      "right";
  }
  .our-story__composition::before {
    content: none;
  }
  .our-story__carrier {
    width: min(105vw, 540px);
  }
  .our-story__note,
  .our-story__note--left,
  .our-story__note--right {
    padding: 1.15rem 0;
    background: rgba(255, 248, 218, 0.88);
  }
  .our-story__motif--five,
  .our-story__motif--seven {
    display: none;
  }
  .finalcta--catering-art {
    min-height: 620px;
  }
  .catering-food-sketch {
    width: 340px;
    opacity: 0.22;
  }
  .catering-food-sketch--pani {
    left: -175px;
    top: 170px;
  }
  .catering-food-sketch--samosa {
    right: -170px;
    top: -10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catering-food-sketch__frame {
    animation: none !important;
  }
  .catering-food-sketch__frame--one { opacity: 1; }
  .catering-food-sketch__frame--two { opacity: 0; }
}


/* =========================================================================
   2026-08-12 composition lock — supplied nav recolour, story checkerboard,
   simplified catering overview, wizard watermark and final catering artwork.
   ========================================================================= */

/* Exact alternate navbar artwork on light sections; dark sections retain the
   existing cream/currentColor treatment. The anchor dimensions do not change. */
.topbar.theme-light .topbar__brand a::before {
  opacity: 0 !important;
}
.topbar.theme-light .topbar__brand img.brand-brown {
  display: block !important;
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  opacity: 1;
}
.topbar.theme-dark:not(.is-top) .topbar__brand img.brand-brown {
  display: none !important;
}

/* ------------------------------ Our story: annotated three-column scene */
.our-story {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: clamp(760px, 56.25vw, 1080px);
  min-height: 0;
  max-height: 1080px;
  display: block;
  overflow: hidden;
  padding: 0;
  background: var(--cream);
  color: var(--brown);
}
.our-story::before,
.our-story::after { content: none !important; }
.our-story__grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 1;
  pointer-events: none;
  background-color: var(--cream);
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 32%),
    url("../assets/images/ahara-story-checker.png");
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 420px 420px;
  background-position: center, -18px -24px;
}
.our-story__grain::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 55%, rgba(255,248,218,0.88) 0%, rgba(255,248,218,0.46) 32%, rgba(255,248,218,0.04) 66%);
  pointer-events: none;
}
.our-story__motif { display: none !important; }
.our-story__layout {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (2 * var(--gutter))), 1760px);
  height: 100%;
  margin-inline: auto;
  padding-top: calc(var(--nav-h) + clamp(2.2rem, 3.1vw, 3.7rem));
  padding-bottom: clamp(2.2rem, 3vw, 3.8rem);
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(520px, 1.22fr) minmax(300px, 0.92fr);
  grid-template-rows: minmax(0, 0.49fr) minmax(0, 0.51fr);
  grid-template-areas:
    "header carrier spare"
    "left   carrier right";
  column-gap: clamp(1.2rem, 2.2vw, 3rem);
  row-gap: clamp(0.7rem, 1.2vw, 1.4rem);
}
.our-story__header {
  grid-area: header;
  align-self: start;
  justify-self: start;
  width: min(100%, 455px);
  margin: 0;
  text-align: left;
}
.our-story__header .eyebrow {
  margin: 0 0 clamp(0.85rem, 1.25vw, 1.25rem);
}
.our-story__header h2 {
  max-width: 10.8ch;
  margin: 0;
  color: var(--brown);
  font-size: clamp(3.1rem, 3.65vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.our-story__header h2 span { display: inline; white-space: normal; }
.our-story__header > p:last-child {
  max-width: 43ch;
  margin: clamp(1rem, 1.45vw, 1.5rem) 0 0;
  color: rgba(90, 30, 6, 0.73);
  font-size: clamp(0.98rem, 0.92rem + 0.2vw, 1.17rem);
  line-height: 1.48;
}
.our-story__carrier {
  grid-area: carrier;
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: min(48vw, 78svh, 820px);
  max-width: 820px;
  aspect-ratio: 1;
  margin: clamp(-1rem, -1vw, 0rem) 0 0;
  filter: brightness(0) saturate(100%) invert(20%) sepia(31%) saturate(744%) hue-rotate(92deg) brightness(90%) contrast(93%);
  opacity: 0.98;
}
.our-story__carrier::before { content: none !important; }
.our-story__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.our-story__note,
.our-story__note--left,
.our-story__note--right {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  max-width: 430px;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(90, 30, 6, 0.78);
  font-size: clamp(0.98rem, 0.91rem + 0.22vw, 1.16rem);
  line-height: 1.54;
  text-align: left;
}
.our-story__note::before { content: none !important; }
.our-story__note--left {
  grid-area: left;
  align-self: end;
  justify-self: start;
  margin-bottom: clamp(0.4rem, 2.1vw, 2.5rem);
}
.our-story__note--right {
  grid-area: right;
  align-self: end;
  justify-self: end;
  margin-bottom: clamp(1.2rem, 5.6vw, 5.8rem);
}
.our-story__chapter {
  margin: 0 0 0.6rem;
  color: var(--orange);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.our-story__note h3,
.our-story__note .our-story__meaning {
  margin: 0 0 0.68rem;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.05vw, 2.75rem);
  line-height: 1.01;
}
.our-story__meaning span { color: var(--orange); }
.our-story__closing {
  margin-top: 1rem;
  padding-top: 0;
  border-top: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1vw, 1.18rem);
  line-height: 1.32;
}

/* ------------------------------ Catering overview: one clear invitation */
.cater-overview {
  min-height: clamp(500px, 58svh, 650px);
  padding-top: clamp(4.8rem, 7vw, 7.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.8rem);
  background: var(--cream);
}
.cater-overview__inner {
  min-height: inherit;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.cater-overview__copy {
  width: min(100%, 980px);
  margin-inline: auto;
  text-align: center;
}
.cater-overview__copy h2 {
  max-width: 13ch;
  margin: clamp(0.7rem, 1vw, 1rem) auto 0;
  color: var(--brown);
  font-size: clamp(3rem, 4.6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.cater-overview__copy > p:not(.eyebrow):not(.cater-overview__events) {
  max-width: 64ch;
  margin: clamp(1.2rem, 2vw, 1.8rem) auto 0;
  color: rgba(90,30,6,0.76);
  font-size: clamp(1.08rem, 1rem + 0.3vw, 1.35rem);
  line-height: 1.52;
}
.cater-overview__events {
  max-width: 80ch;
  margin: clamp(1.5rem, 2.5vw, 2.2rem) auto 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.02rem, 0.94rem + 0.2vw, 1.18rem);
  line-height: 1.7;
}
.cater-overview__events span {
  display: inline-block;
  margin-inline: 0.45em;
  color: var(--orange);
}
.cater-overview__action {
  display: flex;
  justify-content: center;
}
.cater-overview__action .btn {
  min-width: min(100%, 270px);
}
#quote { scroll-margin-top: calc(var(--nav-h) + 1.25rem); }

/* ------------------------------ Wizard watermark: replace the old ring */
.catering-wizard__intro::after {
  content: "";
  position: absolute;
  left: 50%;
  top: clamp(1.3rem, 3.2vw, 3.1rem);
  right: auto;
  bottom: auto;
  z-index: -1;
  width: min(70%, 290px);
  aspect-ratio: 1254 / 728;
  border: 0;
  border-radius: 0;
  background: url("../assets/images/ahara-feather-white.webp") center / contain no-repeat;
  opacity: 0.085;
  transform: translateX(-50%);
}

/* ------------------------------ Final catering drawings: cream + marker boxes */
.finalcta--catering-art {
  min-height: clamp(590px, 35vw, 710px);
}
.catering-food-sketch {
  opacity: 0.9;
  filter: none;
}
.catering-food-sketch--pani {
  left: clamp(42px, 3.2vw, 64px);
  top: clamp(238px, 42%, 285px);
  width: clamp(275px, 20vw, 325px);
}
.catering-food-sketch--samosa {
  right: clamp(36px, 3vw, 58px);
  top: clamp(46px, 9%, 72px);
  width: clamp(270px, 19vw, 318px);
}

@media (max-width: 1180px) {
  .our-story {
    height: auto;
    min-height: 980px;
    max-height: none;
  }
  .our-story__layout {
    min-height: 980px;
    grid-template-columns: minmax(250px, 0.9fr) minmax(430px, 1.15fr) minmax(250px, 0.9fr);
  }
  .our-story__header h2 { font-size: clamp(2.9rem, 4.8vw, 4rem); }
  .our-story__carrier { width: min(54vw, 690px); }
  .catering-food-sketch--pani { left: 22px; }
  .catering-food-sketch--samosa { right: 18px; }
}

@media (max-width: 850px) {
  .our-story {
    height: auto;
    min-height: 0;
    overflow: hidden;
  }
  .our-story__grain {
    background-size: 100% 100%, 320px 320px;
  }
  .our-story__layout {
    width: min(calc(100% - (2 * var(--gutter))), 720px);
    height: auto;
    min-height: 0;
    padding-top: calc(var(--nav-h) + 2.2rem);
    padding-bottom: 4rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "header"
      "carrier"
      "left"
      "right";
    gap: 2.1rem;
  }
  .our-story__header,
  .our-story__note,
  .our-story__note--left,
  .our-story__note--right {
    width: 100%;
    max-width: none;
    margin: 0;
    justify-self: stretch;
    align-self: auto;
  }
  .our-story__header h2 { max-width: 11ch; }
  .our-story__carrier {
    width: min(108vw, 630px);
    margin: -1.2rem auto -3.6rem;
  }
  .our-story__note--right { margin-top: 0.25rem; }
  .cater-overview { min-height: 540px; }
  .catering-food-sketch { opacity: 0.34; }
  .catering-food-sketch--pani {
    left: -85px;
    top: 56%;
    width: 285px;
  }
  .catering-food-sketch--samosa {
    right: -82px;
    top: 8%;
    width: 280px;
  }
}

@media (max-width: 560px) {
  .topbar.theme-light .topbar__brand img.brand-brown { object-fit: contain; }
  .our-story__layout { padding-bottom: 3.3rem; }
  .our-story__header h2 { font-size: clamp(2.75rem, 13vw, 4.15rem); }
  .our-story__carrier {
    width: min(118vw, 520px);
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .cater-overview {
    min-height: 570px;
    padding-top: 4.5rem;
  }
  .cater-overview__copy h2 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .cater-overview__events span { margin-inline: 0.25em; }
  .catering-wizard__intro::after {
    top: 1.7rem;
    width: min(64%, 230px);
    opacity: 0.075;
  }
  .finalcta--catering-art { min-height: 620px; }
  .catering-food-sketch { opacity: 0.22; }
  .catering-food-sketch--pani { left: -120px; top: 58%; width: 270px; }
  .catering-food-sketch--samosa { right: -115px; top: 6%; width: 265px; }
}

/* Final geometry nudge from the supplied pink-box annotations. */
.our-story__carrier {
  width: min(44vw, 72svh, 720px);
  max-width: 720px;
}
.cater-overview__inner {
  min-height: clamp(350px, 44svh, 470px);
}
.catering-food-sketch--pani {
  left: clamp(18px, 1.3vw, 24px);
  top: clamp(205px, 37%, 225px);
  width: clamp(340px, 23.5vw, 365px);
}
.catering-food-sketch--samosa {
  right: clamp(34px, 2.4vw, 42px);
  top: clamp(4px, 0.8vw, 14px);
  width: clamp(292px, 20.2vw, 318px);
}
@media (max-width: 1180px) {
  .our-story__carrier { width: min(52vw, 670px); }
}
@media (max-width: 850px) {
  .our-story__carrier { width: min(108vw, 630px); }
  .catering-food-sketch--pani { left: -85px; top: 56%; width: 285px; }
  .catering-food-sketch--samosa { right: -82px; top: 8%; width: 280px; }
}
@media (max-width: 560px) {
  .our-story__carrier { width: min(118vw, 520px); }
  .catering-food-sketch--pani { left: -120px; top: 58%; width: 270px; }
  .catering-food-sketch--samosa { right: -115px; top: 6%; width: 265px; }
}


/* =========================================================================
   2026-08-12 follow-up polish — ancestry-inspired story collage,
   homepage table animation, and catering sketch scale/tilt refinement.
   ========================================================================= */

/* ------------------------------ Homepage story: ancestry-inspired collage */
.our-story--ancestry {
  position: relative;
  overflow: hidden;
  background: #f4eedb;
  color: var(--brown);
  padding: calc(var(--nav-h) + clamp(2.6rem, 5vw, 4.5rem)) 0 clamp(4rem, 6vw, 6rem);
}
.our-story--ancestry::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(90,30,6,0.11) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(90,30,6,0.11) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.08) 34%, rgba(255,255,255,0) 58%);
  background-size: 126px 126px, 126px 126px, 100% 100%;
  background-position: center;
  opacity: 0.62;
  pointer-events: none;
}
.our-story--ancestry::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 17%, rgba(255,248,218,0.96), rgba(255,248,218,0.42) 28%, rgba(255,248,218,0.04) 55%);
  pointer-events: none;
}
.our-story-ancestry__grid { display: none; }
.our-story-ancestry__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (2 * var(--gutter))), 1320px);
  margin-inline: auto;
}
.our-story-ancestry__copy {
  position: relative;
  z-index: 3;
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
}
.our-story-ancestry__copy .eyebrow { margin-bottom: clamp(0.75rem, 1.2vw, 1.15rem); }
.our-story-ancestry__copy h2 {
  width: min(100%, 10.5ch);
  margin: 0 auto;
  color: #2d281f;
  font-size: clamp(3.35rem, 6.1vw, 6.7rem);
  line-height: 0.93;
  letter-spacing: -0.045em;
}
.our-story-ancestry__lede {
  width: min(100%, 33ch);
  margin: clamp(1.15rem, 1.8vw, 1.8rem) auto 0;
  color: rgba(45,40,31,0.82);
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.35rem);
  line-height: 1.45;
}
.our-story-ancestry__collage {
  position: relative;
  min-height: clamp(620px, 58vw, 820px);
  margin-top: clamp(1.2rem, 3vw, 2.2rem);
}
.story-collage__piece,
.story-collage__note {
  position: absolute;
  will-change: transform;
}
.story-collage__piece img {
  display: block;
  width: 100%;
  height: auto;
}
.story-collage__piece--map {
  left: clamp(0px, 0.2vw, 8px);
  bottom: clamp(28px, 7%, 72px);
  width: clamp(250px, 23vw, 360px);
  transform: rotate(-6deg);
  z-index: 1;
  box-shadow: 0 18px 34px rgba(47, 29, 8, 0.11);
}
.story-collage__piece--stamp {
  left: clamp(112px, 10vw, 170px);
  top: clamp(18px, 3%, 38px);
  width: clamp(118px, 10.5vw, 176px);
  transform: rotate(-10deg);
  z-index: 4;
  filter: drop-shadow(0 18px 28px rgba(24, 29, 50, 0.15));
}
.story-collage__piece--carrier {
  left: 50%;
  top: clamp(118px, 23%, 188px);
  width: clamp(310px, 33vw, 520px);
  aspect-ratio: 1;
  transform: translateX(-50%) rotate(-1.5deg);
  z-index: 3;
}
.story-collage__piece--carrier::before {
  content: "";
  position: absolute;
  inset: -6% -12%;
  background: radial-gradient(circle at 50% 48%, rgba(255,248,218,0.9), rgba(255,248,218,0.18) 56%, rgba(255,248,218,0) 74%);
  z-index: -1;
}
.story-collage__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(23%) sepia(20%) saturate(715%) hue-rotate(93deg) brightness(90%) contrast(92%);
}
.story-collage__frame--one { animation: storyCarrierFrameOne 1s steps(1, end) infinite; }
.story-collage__frame--two { animation: storyCarrierFrameTwo 1s steps(1, end) infinite; }
.story-collage__piece--mural {
  right: clamp(8px, 0.8vw, 14px);
  top: clamp(78px, 10%, 116px);
  width: clamp(330px, 31vw, 470px);
  transform: rotate(6.5deg);
  z-index: 2;
  box-shadow: 0 20px 34px rgba(56, 30, 6, 0.16);
}
.story-collage__note {
  width: clamp(255px, 23vw, 310px);
  padding: 1.3rem 1.35rem 1.35rem;
  background: rgba(255, 248, 218, 0.92);
  border: 1px solid rgba(90,30,6,0.14);
  box-shadow: 0 16px 26px rgba(56, 30, 6, 0.07);
  backdrop-filter: blur(1px);
  color: rgba(90, 30, 6, 0.78);
  z-index: 4;
}
.story-collage__note--left {
  left: clamp(76px, 7vw, 122px);
  top: clamp(180px, 33%, 262px);
  transform: rotate(-1.75deg);
}
.story-collage__note--right {
  right: clamp(74px, 6vw, 118px);
  bottom: clamp(28px, 4%, 52px);
  transform: rotate(1.65deg);
}
.story-collage__chapter {
  margin: 0 0 0.6rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.story-collage__note h3 {
  margin: 0 0 0.6rem;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 1.6vw, 2.15rem);
  line-height: 1;
}
.story-collage__note h3 span { color: var(--orange); }
.story-collage__note p:last-child,
.story-collage__note > p {
  font-size: 0.98rem;
  line-height: 1.48;
}
.story-collage__closing {
  margin-top: 0.85rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(90,30,6,0.16);
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.3;
}

/* ------------------------------ Homepage final CTA: table sketch */
.finalcta--home-art {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 35vw, 680px);
  display: grid;
  place-items: center;
}
.finalcta--home-art .container {
  position: relative;
  z-index: 2;
}
.home-table-sketch {
  position: absolute;
  right: clamp(56px, 9vw, 148px);
  top: clamp(98px, 18%, 150px);
  width: clamp(190px, 18vw, 290px);
  aspect-ratio: 1;
  transform: rotate(11deg);
  pointer-events: none;
  opacity: 0.88;
  z-index: 1;
}
.home-table-sketch__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-table-sketch__frame--one { animation: cateringSketchFrameOne 1s steps(1, end) infinite; }
.home-table-sketch__frame--two { animation: cateringSketchFrameTwo 1s steps(1, end) infinite; }

/* ------------------------------ Catering final CTA: smaller + tilted */
.catering-food-sketch--pani {
  left: clamp(34px, 3vw, 72px) !important;
  top: clamp(258px, 43%, 324px) !important;
  width: clamp(205px, 15vw, 248px) !important;
  transform: rotate(-14deg);
}
.catering-food-sketch--samosa {
  right: clamp(46px, 3.4vw, 76px) !important;
  top: clamp(62px, 10%, 110px) !important;
  width: clamp(198px, 14vw, 236px) !important;
  transform: rotate(13deg);
}

@media (max-width: 1180px) {
  .our-story-ancestry__collage { min-height: 760px; }
  .story-collage__piece--map { width: clamp(230px, 28vw, 320px); }
  .story-collage__piece--stamp { left: 88px; }
  .story-collage__piece--mural { width: clamp(295px, 34vw, 420px); }
  .story-collage__note--left { left: 32px; }
  .story-collage__note--right { right: 40px; }
}
@media (max-width: 900px) {
  .our-story--ancestry { padding-bottom: 4rem; }
  .our-story--ancestry::before { background-size: 96px 96px, 96px 96px, 100% 100%; }
  .our-story-ancestry__copy h2 { font-size: clamp(3rem, 11vw, 4.8rem); }
  .our-story-ancestry__collage {
    min-height: 0;
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
  }
  .story-collage__piece,
  .story-collage__note {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none !important;
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .story-collage__piece--carrier {
    order: 1;
    width: min(100%, 480px);
    margin: 0 auto -0.8rem;
    aspect-ratio: 1;
  }
  .story-collage__piece--mural { order: 2; width: min(100%, 520px); margin-inline: auto; }
  .story-collage__piece--map { order: 3; width: min(100%, 340px); }
  .story-collage__piece--stamp {
    order: 4;
    width: min(42%, 170px);
    margin-left: auto;
    margin-top: -6rem;
    z-index: 5;
  }
  .story-collage__note { order: 5; width: 100%; }
  .home-table-sketch {
    right: -42px;
    top: 150px;
    width: 230px;
    opacity: 0.32;
  }
  .catering-food-sketch--pani {
    left: -36px !important;
    top: 60% !important;
    width: 210px !important;
    opacity: 0.26;
  }
  .catering-food-sketch--samosa {
    right: -44px !important;
    top: 7% !important;
    width: 205px !important;
    opacity: 0.26;
  }
}
@media (max-width: 560px) {
  .our-story-ancestry__copy h2 { width: min(100%, 9.6ch); }
  .our-story-ancestry__lede { width: min(100%, 30ch); }
  .story-collage__piece--carrier { width: min(100%, 380px); }
  .story-collage__piece--stamp {
    width: 155px;
    margin-top: -4rem;
  }
  .story-collage__note {
    padding: 1.1rem 1rem 1.12rem;
  }
  .finalcta--home-art { min-height: 540px; }
  .home-table-sketch {
    right: -58px;
    top: 182px;
    width: 198px;
    opacity: 0.22;
  }
}


/* =========================================================================
   2026-08-12 v4 — story-led split layout and staggered heritage collage
   ========================================================================= */
.our-story--ancestry {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  height: clamp(800px, 100svh, 1080px);
  min-height: clamp(800px, 100svh, 1080px);
  max-height: 1080px;
  aspect-ratio: auto;
  padding: 0;
  overflow: hidden;
  background: var(--cream);
  color: var(--brown);
}
.our-story--ancestry::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  background:
    linear-gradient(to right, rgba(90, 30, 6, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(90, 30, 6, 0.055) 1px, transparent 1px);
  background-size: 116px 116px;
  background-position: center;
  opacity: 0.55;
  pointer-events: none;
}
.our-story--ancestry::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  background:
    linear-gradient(90deg, rgba(255, 248, 218, 0.99) 0%, rgba(255, 248, 218, 0.96) 36%, rgba(255, 248, 218, 0.52) 50%, rgba(255, 248, 218, 0.08) 72%),
    radial-gradient(circle at 76% 50%, rgba(255, 248, 218, 0.72), rgba(255, 248, 218, 0) 58%);
  pointer-events: none;
}
.our-story-ancestry__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(620px, 1.18fr);
  align-items: center;
  gap: clamp(1.8rem, 3vw, 4.2rem);
  width: min(calc(100% - (2 * var(--gutter))), 1740px);
  height: 100%;
  margin-inline: auto;
  padding-top: calc(var(--nav-h) + clamp(1.1rem, 2.4vh, 2.4rem));
  padding-bottom: clamp(2.2rem, 4vh, 4.2rem);
  box-sizing: border-box;
}
.our-story-ancestry__copy {
  position: relative;
  z-index: 20;
  align-self: center;
  width: min(100%, 610px);
  margin: 0;
  text-align: left;
}
.our-story-ancestry__copy .eyebrow {
  margin: 0 0 clamp(0.75rem, 1.2vw, 1.15rem);
  color: var(--orange);
  letter-spacing: 0.17em;
}
.our-story-ancestry__copy h2 {
  width: min(100%, 9.2ch);
  margin: 0;
  color: #2d281f;
  font-size: clamp(3.5rem, 4.65vw, 5.95rem);
  font-weight: 550;
  line-height: 0.91;
  letter-spacing: -0.047em;
  text-wrap: balance;
}
.our-story-ancestry__body {
  display: grid;
  gap: clamp(0.72rem, 1.15vh, 1.05rem);
  width: min(100%, 57ch);
  margin-top: clamp(1.35rem, 2.3vh, 2.15rem);
  color: rgba(45, 40, 31, 0.79);
  font-size: clamp(0.98rem, 0.82rem + 0.23vw, 1.17rem);
  line-height: 1.48;
}
.our-story-ancestry__body p { margin: 0; }
.our-story-ancestry__lede {
  width: auto;
  margin: 0;
  color: rgba(45, 40, 31, 0.92);
  font-size: clamp(1.08rem, 0.95rem + 0.22vw, 1.28rem);
  font-weight: 500;
  line-height: 1.43;
}
.our-story-ancestry__meaning {
  margin-top: 0.08rem !important;
  padding-left: clamp(0.9rem, 1.15vw, 1.2rem);
  border-left: 3px solid var(--orange);
}
.our-story-ancestry__meaning em {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.08em;
  font-style: normal;
  font-weight: 650;
}
.our-story-ancestry__closing {
  width: min(100%, 36ch);
  margin: clamp(1rem, 1.7vh, 1.5rem) 0 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1rem + 0.24vw, 1.38rem);
  font-weight: 560;
  line-height: 1.28;
}

.our-story-ancestry__collage {
  position: relative;
  align-self: center;
  width: 100%;
  height: min(76svh, 820px);
  min-height: 680px;
  margin: 0;
  perspective: 1200px;
}
.story-collage__piece {
  --piece-rotate: 0deg;
  --float-x: 3px;
  --float-y: -8px;
  --float-tilt: 0.7deg;
  --float-x-return: -2px;
  --float-y-return: 4px;
  --float-tilt-return: -0.4deg;
  --float-duration: 8s;
  --float-delay: -2s;
  position: absolute;
  inset: auto;
  margin: 0;
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.68) rotate(calc(var(--piece-rotate) - 5deg));
  transform-origin: 50% 56%;
  will-change: opacity, transform;
}
.story-collage__piece img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}
.story-collage__piece::before { pointer-events: none; }
.story-collage__piece--carrier::before { content: none; }
.story-collage__piece.is-in {
  animation: storyPiecePop 760ms cubic-bezier(0.19, 1.42, 0.37, 1) both;
  animation-delay: var(--pop-delay, 0ms);
}
.story-collage__float {
  width: 100%;
  transform-origin: center;
  will-change: transform;
}
.story-collage__piece.is-in .story-collage__float {
  animation: storyPieceFloat var(--float-duration) ease-in-out infinite;
  animation-delay: calc(var(--pop-delay, 0ms) + 680ms + var(--float-delay));
}
@keyframes storyPiecePop {
  0% {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(0.68) rotate(calc(var(--piece-rotate) - 5deg));
  }
  62% {
    opacity: 1;
    transform: translate3d(0, -7px, 0) scale(1.055) rotate(calc(var(--piece-rotate) + 0.8deg));
  }
  82% {
    opacity: 1;
    transform: translate3d(0, 2px, 0) scale(0.985) rotate(calc(var(--piece-rotate) - 0.25deg));
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(var(--piece-rotate));
  }
}
@keyframes storyPieceFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  32% { transform: translate3d(var(--float-x), var(--float-y), 0) rotate(var(--float-tilt)); }
  68% { transform: translate3d(var(--float-x-return), var(--float-y-return), 0) rotate(var(--float-tilt-return)); }
}

.story-collage__piece--mural {
  --piece-rotate: -6deg;
  --float-x: -3px;
  --float-y: -7px;
  left: 23%;
  top: 5%;
  z-index: 1;
  width: 45%;
  padding: 7px;
  background: #fff8da;
  box-shadow: 0 18px 38px rgba(56, 30, 6, 0.16);
}
.story-collage__piece--mural::after {
  content: "";
  position: absolute;
  left: 42%;
  top: -13px;
  width: 86px;
  height: 26px;
  background: rgba(224, 187, 119, 0.72);
  transform: rotate(4deg);
  box-shadow: 0 1px 1px rgba(69, 43, 16, 0.08);
}
.story-collage__piece--temple {
  --piece-rotate: 5.5deg;
  --float-x: 2px;
  --float-y: -9px;
  right: 0;
  top: 5.5%;
  z-index: 2;
  width: 48%;
}
.story-collage__photo {
  position: relative;
  padding: 8px 8px 36px;
  background: #fffaf0;
  box-shadow: 0 24px 50px rgba(47, 29, 8, 0.2);
}
.story-collage__photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 8px;
  color: rgba(45, 40, 31, 0.72);
  font-family: var(--sans);
  font-size: clamp(0.62rem, 0.72vw, 0.78rem);
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.story-collage__piece--route {
  --piece-rotate: -2.5deg;
  --float-x: -2px;
  --float-y: -6px;
  left: 0;
  top: 3.5%;
  z-index: 8;
  width: 33%;
}
.story-collage__route-card {
  position: relative;
  display: grid;
  gap: 0.28rem;
  padding: clamp(0.8rem, 1.2vw, 1.15rem) clamp(0.9rem, 1.25vw, 1.25rem);
  overflow: hidden;
  border: 1px solid rgba(90, 30, 6, 0.26);
  background: #fff8da;
  box-shadow: 0 15px 26px rgba(56, 30, 6, 0.12);
  color: var(--brown);
}
.story-collage__route-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--orange);
}
.story-collage__route-card span,
.story-collage__route-card small {
  color: rgba(90, 30, 6, 0.62);
  font-size: clamp(0.58rem, 0.62vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.story-collage__route-card strong {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.25vw, 1.42rem);
  line-height: 1.02;
}
.story-collage__route-card b { color: var(--orange); }
.story-collage__piece--stamp {
  --piece-rotate: -10deg;
  --float-x: -2px;
  --float-y: -10px;
  left: 12%;
  top: 24%;
  z-index: 9;
  width: 13%;
  filter: drop-shadow(0 16px 18px rgba(24, 29, 50, 0.2));
}
.story-collage__piece--map {
  --piece-rotate: 4.5deg;
  --float-x: 4px;
  --float-y: -7px;
  right: -7%;
  bottom: 1%;
  z-index: 1;
  width: 52%;
}
.story-collage__map-card {
  padding: 6px;
  background: #efe2b7;
  box-shadow: 0 22px 46px rgba(47, 29, 8, 0.18);
}
.story-collage__piece--carrier,
.story-collage__piece--rickshaw {
  filter: none;
}
.story-collage__piece--carrier {
  --piece-rotate: -1deg;
  left: 20%;
  top: 21%;
  z-index: 6;
  width: 51%;
  aspect-ratio: 1;
}
.story-collage__piece--rickshaw {
  --piece-rotate: -6deg;
  left: 1%;
  bottom: 9%;
  z-index: 8;
  width: 25%;
  aspect-ratio: 512 / 435;
}
.story-collage__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}
.story-collage__frame--carrier-one { animation: storyCarrierFrameOne 1s steps(1, end) infinite; }
.story-collage__frame--carrier-two { animation: storyCarrierFrameTwo 1s steps(1, end) infinite; }
.story-collage__frame--rickshaw-one { animation: storyRickshawFrameOne 0.6667s steps(1, end) infinite; }
.story-collage__frame--rickshaw-two { animation: storyRickshawFrameTwo 0.6667s steps(1, end) infinite; }
@keyframes storyRickshawFrameOne {
  0%, 49.999% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes storyRickshawFrameTwo {
  0%, 49.999% { opacity: 0; }
  50%, 100% { opacity: 1; }
}
.story-collage__piece--jalebi {
  --piece-rotate: -8deg;
  --float-x: -2px;
  --float-y: -9px;
  left: 13%;
  bottom: 4%;
  z-index: 12;
  width: 15%;
  filter: drop-shadow(0 15px 18px rgba(40, 27, 12, 0.17));
}
.story-collage__piece--saag {
  --piece-rotate: 1deg;
  --float-x: 3px;
  --float-y: -10px;
  left: 34%;
  bottom: -3%;
  z-index: 11;
  width: 31%;
  filter: drop-shadow(0 22px 24px rgba(40, 27, 12, 0.2));
}
.story-collage__piece--gulab {
  --piece-rotate: 6deg;
  --float-x: 2px;
  --float-y: -8px;
  right: 0;
  bottom: 3%;
  z-index: 10;
  width: 20%;
  filter: drop-shadow(0 18px 20px rgba(40, 27, 12, 0.18));
}
.story-collage__piece--keepsake {
  --piece-rotate: 3.5deg;
  --float-x: 2px;
  --float-y: -6px;
  right: 5%;
  top: 43%;
  z-index: 8;
  width: 24%;
}
.story-collage__keepsake {
  display: grid;
  gap: 0.2rem;
  padding: clamp(0.75rem, 1vw, 1rem);
  border: 4px double rgba(255, 248, 218, 0.68);
  background: #17294b;
  box-shadow: 0 15px 28px rgba(24, 29, 50, 0.18);
  color: #fff8da;
  text-align: center;
}
.story-collage__keepsake span {
  color: #e7a977;
  font-size: clamp(0.56rem, 0.6vw, 0.7rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.story-collage__keepsake strong {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.12vw, 1.25rem);
  font-weight: 550;
  line-height: 1.05;
}

html.no-js .story-collage__piece {
  opacity: 1;
  transform: rotate(var(--piece-rotate));
}

@media (max-width: 1280px) {
  .our-story-ancestry__inner {
    grid-template-columns: minmax(350px, 0.82fr) minmax(560px, 1.18fr);
    gap: 1rem;
  }
  .our-story-ancestry__copy h2 { font-size: clamp(3.25rem, 5.2vw, 5rem); }
  .our-story-ancestry__body {
    font-size: clamp(0.94rem, 0.83rem + 0.18vw, 1.08rem);
    line-height: 1.44;
  }
  .our-story-ancestry__collage { min-height: 650px; }
}

@media (max-width: 980px) {
  .our-story--ancestry {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: hidden;
  }
  .our-story--ancestry::after {
    background:
      linear-gradient(180deg, rgba(244, 238, 219, 0.98) 0%, rgba(244, 238, 219, 0.92) 42%, rgba(244, 238, 219, 0.18) 68%, rgba(244, 238, 219, 0.04) 100%),
      radial-gradient(circle at 50% 74%, rgba(255, 248, 218, 0.68), rgba(255, 248, 218, 0) 57%);
  }
  .our-story-ancestry__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.8rem, 5vw, 3rem);
    width: min(calc(100% - (2 * var(--gutter))), 760px);
    height: auto;
    padding-top: calc(var(--nav-h) + 2.6rem);
    padding-bottom: 3.5rem;
  }
  .our-story-ancestry__copy {
    width: min(100%, 650px);
    margin-inline: auto;
  }
  .our-story-ancestry__copy h2 {
    width: min(100%, 10ch);
    font-size: clamp(3.25rem, 10.5vw, 5.3rem);
  }
  .our-story-ancestry__body {
    width: min(100%, 62ch);
    font-size: clamp(1rem, 0.94rem + 0.25vw, 1.12rem);
  }
  .our-story-ancestry__collage {
    position: relative;
    display: block;
    width: min(100%, 760px);
    height: clamp(600px, 96vw, 730px);
    min-height: 600px;
    margin-inline: auto;
  }
  .story-collage__piece { position: absolute; }
  .story-collage__piece--mural { left: 24%; top: 7%; width: 48%; }
  .story-collage__piece--temple { right: -1%; top: 4%; width: 52%; }
  .story-collage__piece--route { left: 0; top: 4%; width: 37%; }
  .story-collage__piece--stamp { left: 5%; top: 24%; width: 14%; }
  .story-collage__piece--map { right: -9%; bottom: 0; width: 55%; }
  .story-collage__piece--carrier { left: 17%; top: 22%; width: 57%; }
  .story-collage__piece--rickshaw { left: 0; bottom: 10%; width: 28%; }
  .story-collage__piece--jalebi { left: 16%; bottom: 4%; width: 16%; }
  .story-collage__piece--saag { left: 35%; bottom: -3%; width: 34%; }
  .story-collage__piece--gulab { right: -1%; bottom: 3%; width: 22%; }
  .story-collage__piece--keepsake { right: 3%; top: 44%; width: 27%; }
}

@media (max-width: 560px) {
  .our-story--ancestry::before { background-size: 82px 82px; }
  .our-story-ancestry__inner {
    gap: 1.7rem;
    padding-top: calc(var(--nav-h) + 2rem);
    padding-bottom: 2.8rem;
  }
  .our-story-ancestry__copy .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.13em;
  }
  .our-story-ancestry__copy h2 {
    width: min(100%, 9.4ch);
    font-size: clamp(2.85rem, 14.2vw, 4.25rem);
  }
  .our-story-ancestry__body {
    gap: 0.85rem;
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.46;
  }
  .our-story-ancestry__lede { font-size: 1.08rem; }
  .our-story-ancestry__closing { font-size: 1.18rem; }
  .our-story-ancestry__collage {
    width: calc(100% + 1.2rem);
    height: clamp(500px, 133vw, 610px);
    min-height: 500px;
    margin-left: -0.6rem;
  }
  .story-collage__piece--mural { left: 26%; top: 8%; width: 49%; }
  .story-collage__piece--temple { right: -4%; top: 5%; width: 55%; }
  .story-collage__piece--route { left: -1%; top: 3%; width: 42%; }
  .story-collage__piece--stamp { left: 5%; top: 25%; width: 15%; }
  .story-collage__piece--map { right: -14%; bottom: 2%; width: 59%; }
  .story-collage__piece--carrier { left: 14%; top: 23%; width: 63%; }
  .story-collage__piece--rickshaw { left: -2%; bottom: 11%; width: 31%; }
  .story-collage__piece--jalebi { left: 15%; bottom: 5%; width: 18%; }
  .story-collage__piece--saag { left: 34%; bottom: 0; width: 36%; }
  .story-collage__piece--gulab { right: -2%; bottom: 5%; width: 23%; }
  .story-collage__piece--keepsake { right: -1%; top: 45%; width: 31%; }
  .story-collage__photo { padding: 5px 5px 26px; }
  .story-collage__photo figcaption { left: 9px; bottom: 6px; font-size: 0.52rem; }
  .story-collage__route-card { padding: 0.62rem 0.66rem 0.62rem 0.8rem; }
  .story-collage__route-card strong { font-size: 0.85rem; }
  .story-collage__route-card span,
  .story-collage__route-card small { font-size: 0.48rem; letter-spacing: 0.09em; }
  .story-collage__keepsake { padding: 0.55rem; border-width: 3px; }
  .story-collage__keepsake span { font-size: 0.47rem; }
  .story-collage__keepsake strong { font-size: 0.76rem; }
}

@media (prefers-reduced-motion: reduce) {
  .story-collage__piece,
  .story-collage__piece.is-in {
    opacity: 1 !important;
    transform: rotate(var(--piece-rotate)) !important;
    animation: none !important;
  }
  .story-collage__float { animation: none !important; }
  .story-collage__frame--carrier-one,
  .story-collage__frame--rickshaw-one {
    opacity: 1 !important;
    animation: none !important;
  }
  .story-collage__frame--carrier-two,
  .story-collage__frame--rickshaw-two {
    opacity: 0 !important;
    animation: none !important;
  }
}


/* =========================================================================
   2026-08-12 v5 — tighter table cluster and a clearer migration journey
   ========================================================================= */

/* The route now lands on the map in the former gulab-jamun position. */
.story-collage__piece--route {
  --piece-rotate: 3deg;
  left: auto;
  right: -1%;
  top: auto;
  bottom: 4.5%;
  z-index: 15;
  width: 27%;
}

/* Turn the lower-left objects into one Tamil Nadu street-life vignette. */
.story-collage__piece--keepsake {
  --piece-rotate: -3.5deg;
  left: 0;
  right: auto;
  top: 43%;
  width: 25%;
  z-index: 9;
}
.story-collage__piece--stamp {
  --piece-rotate: -8deg;
  left: 15%;
  top: 57%;
  width: 12%;
  z-index: 11;
}
.story-collage__piece--rickshaw {
  --piece-rotate: -4deg;
  left: 0;
  bottom: 7%;
  width: 27%;
  z-index: 13;
}
.story-collage__keepsake {
  padding-inline: clamp(0.7rem, 0.9vw, 0.95rem);
}
.story-collage__keepsake strong {
  font-size: clamp(0.84rem, 1vw, 1.12rem);
}

/* The carrier now faces back into the composition. */
.story-collage__piece--carrier {
  left: 22%;
  top: 19%;
  width: 52%;
}
.story-collage__piece--carrier .story-collage__frame {
  transform: scaleX(-1);
}

/* Treat the three dishes like a single generous family table. */
.story-collage__piece--jalebi {
  left: 28%;
  bottom: 2%;
  width: 13%;
  z-index: 14;
}
.story-collage__piece--saag {
  left: 38%;
  bottom: -4%;
  width: 31%;
  z-index: 12;
}
.story-collage__piece--gulab {
  left: 61%;
  right: auto;
  bottom: 0;
  width: 15%;
  z-index: 14;
}

/* Keep the lower story layers close enough to read as one collected scene. */
.story-collage__piece--map {
  right: -6%;
  bottom: -1%;
  width: 51%;
}

@media (max-width: 980px) {
  .story-collage__piece--route {
    left: auto;
    right: -3%;
    top: auto;
    bottom: 4%;
    width: 31%;
  }
  .story-collage__piece--keepsake {
    left: 0;
    right: auto;
    top: 43%;
    width: 29%;
  }
  .story-collage__piece--stamp {
    left: 16%;
    top: 57%;
    width: 13%;
  }
  .story-collage__piece--rickshaw {
    left: -1%;
    bottom: 9%;
    width: 30%;
  }
  .story-collage__piece--carrier {
    left: 19%;
    top: 20%;
    width: 59%;
  }
  .story-collage__piece--jalebi {
    left: 27%;
    bottom: 3%;
    width: 15%;
  }
  .story-collage__piece--saag {
    left: 39%;
    bottom: -3%;
    width: 34%;
  }
  .story-collage__piece--gulab {
    left: 64%;
    right: auto;
    bottom: 1%;
    width: 16%;
  }
  .story-collage__piece--map {
    right: -12%;
    bottom: 0;
    width: 57%;
  }
}

@media (max-width: 560px) {
  .story-collage__piece--route {
    right: -4%;
    bottom: 5%;
    width: 35%;
  }
  .story-collage__piece--keepsake {
    left: -1%;
    top: 42%;
    width: 32%;
  }
  .story-collage__piece--stamp {
    left: 17%;
    top: 57%;
    width: 14%;
  }
  .story-collage__piece--rickshaw {
    left: -2%;
    bottom: 10%;
    width: 32%;
  }
  .story-collage__piece--carrier {
    left: 17%;
    top: 20%;
    width: 63%;
  }
  .story-collage__piece--jalebi {
    left: 27%;
    bottom: 4%;
    width: 17%;
  }
  .story-collage__piece--saag {
    left: 40%;
    bottom: 0;
    width: 35%;
  }
  .story-collage__piece--gulab {
    left: 66%;
    bottom: 3%;
    width: 17%;
  }
  .story-collage__piece--map {
    right: -16%;
    bottom: 2%;
    width: 61%;
  }
  .story-collage__keepsake span {
    font-size: 0.43rem;
  }
  .story-collage__keepsake strong {
    font-size: 0.7rem;
  }
}

/* =========================================================================
   2026-08-12 v6 — clear carrier portrait, right-hand stamp and dosa vignette
   ========================================================================= */

/* Move the upper Tamil artwork fully clear of the carrier's head. */
.story-collage__piece--mural {
  left: 0;
  top: 4%;
  width: 42%;
}

/* The stamp becomes the front-most keepsake on the far-right edge. */
.story-collage__piece--stamp {
  left: auto;
  right: 1%;
  top: 43%;
  width: 13%;
  z-index: 30;
}

/* Keep the street vignette compact: navy card, smaller tuk-tuk, then dosa. */
.story-collage__piece--rickshaw {
  left: 2%;
  top: 59%;
  bottom: auto;
  width: 21%;
  z-index: 14;
}
.story-collage__piece--dosa {
  --piece-rotate: -11deg;
  --float-x: -3px;
  --float-y: -8px;
  left: 7%;
  bottom: 1.5%;
  z-index: 10;
  width: 33%;
  filter: drop-shadow(0 18px 22px rgba(40, 27, 12, 0.18));
}

/* Contact hero — the homepage's original two-frame ornament, treated like
   the full-width catering gate and playing at the hero's native 2fps. */
.page-hero--contact {
  isolation: isolate;
  min-height: clamp(620px, 78svh, 850px);
  display: flex;
  align-items: center;
}
.page-hero--contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(185, 56, 2, 0.88) 0%, rgba(185, 56, 2, 0.58) 46%, rgba(185, 56, 2, 0.18) 78%, rgba(185, 56, 2, 0.08) 100%);
}
.page-hero--contact .page-hero__inner {
  width: min(100%, 820px);
}
.page-hero__contact-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.23;
}
.page-hero__contact-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.page-hero__contact-frame--one {
  animation: contactOrnamentFrameOne 1s steps(1, end) infinite;
}
.page-hero__contact-frame--two {
  animation: contactOrnamentFrameTwo 1s steps(1, end) infinite;
}
@keyframes contactOrnamentFrameOne {
  0%, 49.999% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes contactOrnamentFrameTwo {
  0%, 49.999% { opacity: 0; }
  50%, 100% { opacity: 1; }
}

@media (max-width: 980px) {
  .story-collage__piece--mural {
    left: 1%;
    top: 6%;
    width: 43%;
  }
  .story-collage__piece--stamp {
    left: auto;
    right: -1%;
    top: 43%;
    width: 14%;
  }
  .story-collage__piece--rickshaw {
    left: 1%;
    top: 59%;
    bottom: auto;
    width: 23%;
  }
  .story-collage__piece--dosa {
    left: 6%;
    bottom: 1.5%;
    width: 36%;
  }
}

@media (max-width: 820px) {
  .page-hero--contact {
    min-height: 720px;
  }
  .page-hero--contact::after {
    background: linear-gradient(180deg, rgba(185, 56, 2, 0.77) 0%, rgba(185, 56, 2, 0.43) 55%, rgba(185, 56, 2, 0.2) 100%);
  }
  .page-hero__contact-art { opacity: 0.2; }
  .page-hero__contact-frame {
    width: 145%;
    left: -22.5%;
    object-fit: cover;
  }
}

@media (max-width: 560px) {
  .story-collage__piece--mural {
    left: 0;
    top: 7%;
    width: 44%;
  }
  .story-collage__piece--stamp {
    left: auto;
    right: -3%;
    top: 44%;
    width: 15%;
  }
  .story-collage__piece--rickshaw {
    left: 0;
    top: 59%;
    bottom: auto;
    width: 24%;
  }
  .story-collage__piece--dosa {
    left: 4%;
    bottom: 2%;
    width: 39%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__contact-frame { animation: none !important; }
  .page-hero__contact-frame--one { opacity: 1 !important; }
  .page-hero__contact-frame--two { opacity: 0 !important; }
}

/* =========================================================================
   2026-08-13 v7 — final story-collage placement refinements
   ========================================================================= */

/* The mural, mount, shadow and tape now float as one physical keepsake. */
.story-collage__piece--mural {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.story-collage__piece--mural::after {
  content: none;
}
.story-collage__piece--mural .story-collage__float {
  position: relative;
  padding: 7px;
  background: #fff8da;
  box-shadow: 0 18px 38px rgba(56, 30, 6, 0.16);
}
.story-collage__piece--mural .story-collage__float::after {
  content: "";
  position: absolute;
  left: 42%;
  top: -13px;
  width: 86px;
  height: 26px;
  background: rgba(224, 187, 119, 0.72);
  box-shadow: 0 1px 1px rgba(69, 43, 16, 0.08);
  transform: rotate(4deg);
  pointer-events: none;
}

/* Replace the removed navy card with the migration card below the mural. */
.story-collage__piece--route {
  --piece-rotate: -2.5deg;
  left: 0;
  right: auto;
  top: 42%;
  bottom: auto;
  width: 27%;
  z-index: 12;
}

/* Keep the temple label readable on the clear right-hand side. */
.story-collage__piece--temple .story-collage__photo figcaption {
  left: auto;
  right: 14px;
  width: calc(100% - 28px);
  text-align: right;
}

/* Bring the jalebi into the carrier-and-saag food grouping. */
.story-collage__piece--jalebi {
  left: 30.5%;
  bottom: 15%;
  z-index: 15;
}

/* Lift and angle the tuk-tuk so its rear wheel clears the dosa platter. */
.story-collage__piece--rickshaw {
  --piece-rotate: -8deg;
  left: 3%;
  top: 49%;
  bottom: auto;
}

@media (max-width: 980px) {
  .story-collage__piece--route {
    left: 1%;
    right: auto;
    top: 42%;
    bottom: auto;
    width: 30%;
  }
  .story-collage__piece--jalebi {
    left: 29%;
    bottom: 15%;
  }
  .story-collage__piece--rickshaw {
    left: 2%;
    top: 49%;
  }
}

@media (max-width: 560px) {
  .story-collage__piece--mural .story-collage__float {
    padding: 5px;
  }
  .story-collage__piece--mural .story-collage__float::after {
    top: -9px;
    width: 58px;
    height: 18px;
  }
  .story-collage__piece--route {
    left: 0;
    top: 42%;
    width: 33%;
  }
  .story-collage__piece--temple .story-collage__photo figcaption {
    right: 9px;
    width: calc(100% - 18px);
  }
  .story-collage__piece--jalebi {
    left: 28%;
    bottom: 16%;
  }
  .story-collage__piece--rickshaw {
    left: 1%;
    top: 49%;
  }
}

/* =========================================================================
   2026-08-13 v8 — annotation-matched final food and journey placement
   ========================================================================= */

/* Lift the migration card beneath the mural, leaving a clean parking space
   for the tuk-tuk below it. */
.story-collage__piece--route {
  left: 0;
  top: 34.5%;
  width: 27%;
  z-index: 12;
}
.story-collage__piece--rickshaw {
  left: 3%;
  top: 49%;
  width: 21%;
  z-index: 14;
}

/* Enlarge the jalebi and pull it into the small space beside the carrier. */
.story-collage__piece--jalebi {
  left: 31.5%;
  bottom: 17%;
  width: 17%;
  z-index: 19;
}

/* Restore the saag prominently in the open lower circle above all nearby
   collage layers. */
.story-collage__piece--saag {
  left: 37%;
  bottom: -5%;
  width: 25%;
  z-index: 18;
  visibility: visible;
}

@media (max-width: 980px) {
  .story-collage__piece--route {
    left: 1%;
    top: 34.5%;
    width: 30%;
  }
  .story-collage__piece--rickshaw {
    left: 2%;
    top: 49%;
    width: 23%;
  }
  .story-collage__piece--jalebi {
    left: 30.5%;
    bottom: 17%;
    width: 18%;
  }
  .story-collage__piece--saag {
    left: 36%;
    bottom: -4%;
    width: 27%;
  }
}

@media (max-width: 560px) {
  .story-collage__piece--route {
    left: 0;
    top: 34.5%;
    width: 33%;
  }
  .story-collage__piece--rickshaw {
    left: 1%;
    top: 49%;
    width: 24%;
  }
  .story-collage__piece--jalebi {
    left: 29.5%;
    bottom: 18%;
    width: 20%;
  }
  .story-collage__piece--saag {
    left: 35%;
    bottom: -3%;
    width: 29%;
  }
}


/* =========================================================================
   2026-08-13 v9 — larger tuk-tuk + exact brand cream story surface
   ========================================================================= */
.our-story--ancestry {
  background: var(--cream);
}
.our-story--ancestry::before {
  background:
    linear-gradient(to right, rgba(90, 30, 6, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(90, 30, 6, 0.055) 1px, transparent 1px);
  background-size: 116px 116px;
}
.our-story--ancestry::after {
  background:
    linear-gradient(90deg, rgba(255, 248, 218, 0.99) 0%, rgba(255, 248, 218, 0.96) 36%, rgba(255, 248, 218, 0.52) 50%, rgba(255, 248, 218, 0.08) 72%),
    radial-gradient(circle at 76% 50%, rgba(255, 248, 218, 0.72), rgba(255, 248, 218, 0) 58%);
}
.story-collage__piece--rickshaw {
  left: 1%;
  top: 47.5%;
  width: 28%;
}

@media (max-width: 980px) {
  .story-collage__piece--rickshaw {
    left: 0.5%;
    top: 47.5%;
    width: 30%;
  }
}

@media (max-width: 560px) {
  .our-story--ancestry::before { background-size: 82px 82px; }
  .story-collage__piece--rickshaw {
    left: -1%;
    top: 47.5%;
    width: 32%;
  }
}

/* =========================================================================
   2026-08-13 v10 — nudge the story tuk-tuk down-left for cleaner spacing
   ========================================================================= */
.story-collage__piece--rickshaw {
  left: -0.75%;
  top: 50.2%;
  width: 28%;
}

@media (max-width: 980px) {
  .story-collage__piece--rickshaw {
    left: -1%;
    top: 50.2%;
    width: 30%;
  }
}

@media (max-width: 560px) {
  .story-collage__piece--rickshaw {
    left: -1.25%;
    top: 50.5%;
    width: 24%;
  }
}

/* =========================================================================
   2026-08-13 v11 — real food cutouts in the moving signature banners
   ========================================================================= */
.banner-band {
  overflow: visible;
}
.banner-pic {
  display: inline-grid;
  place-items: center;
  width: clamp(7rem, 10.6vw, 11.2rem) !important;
  height: clamp(7rem, 10.6vw, 11.2rem) !important;
  margin-inline: clamp(0.7rem, 1.8vw, 1.9rem);
  overflow: visible;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
}
.banner-pic--wide {
  width: clamp(10rem, 14.5vw, 15.5rem) !important;
}
.banner-pic--dosa {
  width: clamp(12rem, 18vw, 19.5rem) !important;
}
.banner-pic--lassi {
  width: clamp(6.6rem, 9vw, 9.6rem) !important;
}
.banner-food {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  transform:
    translateY(var(--food-shift-y, 0))
    rotate(var(--food-rotate, 0deg))
    scaleX(var(--food-flip, 1))
    scale(var(--food-scale, 1));
  filter: drop-shadow(0 12px 15px rgba(45, 19, 4, 0.2));
}

.cater-teaser__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

@media (max-width: 768px) {
  .banner-pic {
    width: clamp(4.8rem, 19vw, 6.8rem) !important;
    height: clamp(4.8rem, 19vw, 6.8rem) !important;
    margin-inline: clamp(0.45rem, 2vw, 0.8rem);
  }
  .banner-pic--wide {
    width: clamp(7.5rem, 29vw, 10.5rem) !important;
  }
  .banner-pic--dosa {
    width: clamp(9rem, 34vw, 12.5rem) !important;
  }
  .banner-pic--lassi {
    width: clamp(4.2rem, 16vw, 5.8rem) !important;
  }
  .banner-food {
    filter: drop-shadow(0 7px 9px rgba(45, 19, 4, 0.18));
  }
}

/* =========================================================================
   2026-08-16 — menu copy, real review imagery and contact-page refinements
   ========================================================================= */

/* Keep the two hero navigation prompts crisp, uppercase and on-palette. */
.topbar__cta .nav-cta {
  text-transform: uppercase !important;
}
.topbar.theme-dark .topbar__cta .nav-cta,
.hero .hero-scroll,
.hero .hero-scroll:hover,
.hero .hero-scroll:focus-visible {
  color: var(--cream) !important;
}
.hero .hero-scroll {
  text-transform: uppercase !important;
}

/* The supplied photographs replace the testimonial placeholders. */
.reveal-card > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reveal-card--left > img {
  object-position: 50% 46%;
}
.reveal-card--right > img {
  object-position: 50% 43%;
}
.tcarousel__media .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tcarousel__media .pic--restaurant img {
  object-position: 50% 44%;
}
.tcarousel__media .pic--bowls img {
  object-position: 50% 40%;
}

/* Removing the oversized inline arrow lets these cards size to their content. */
.contact-quick.section {
  padding-block: clamp(2.2rem, 3.8vw, 3.8rem);
}
.contact-quick .detail-card {
  min-height: 0;
  padding: clamp(1.1rem, 1.7vw, 1.45rem);
  gap: 0.42rem;
}
.contact-quick .detail-card .dc-icon {
  margin-bottom: 0.1rem;
}
.contact-quick .detail-card .dc-sub {
  margin-top: 0.15rem;
}

/* Portrait crop made from the supplied table photograph. */
.form-visual__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* Contact CTA: the supplied naan sketch mirrors the homepage table animation. */
.finalcta--contact-art {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 35vw, 680px);
  display: grid;
  place-items: center;
}
.finalcta--contact-art .container {
  position: relative;
  z-index: 2;
}
.contact-naan-sketch {
  position: absolute;
  left: clamp(42px, 7vw, 126px);
  top: 50%;
  width: clamp(220px, 18vw, 310px);
  aspect-ratio: 1;
  transform: translateY(-50%) rotate(-9deg);
  pointer-events: none;
  opacity: 0.88;
  z-index: 1;
}
.contact-naan-sketch__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-naan-sketch__frame--one {
  animation: cateringSketchFrameOne 1s steps(1, end) infinite;
}
.contact-naan-sketch__frame--two {
  animation: cateringSketchFrameTwo 1s steps(1, end) infinite;
}

@media (max-width: 900px) {
  .contact-quick.section {
    padding-block: clamp(2rem, 6vw, 3.2rem);
  }
  .contact-naan-sketch {
    left: -58px;
    top: 52%;
    width: 238px;
    opacity: 0.28;
  }
}

@media (max-width: 560px) {
  .contact-naan-sketch {
    left: -78px;
    width: 215px;
    opacity: 0.22;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-naan-sketch__frame {
    animation: none !important;
  }
  .contact-naan-sketch__frame--one {
    opacity: 1 !important;
  }
  .contact-naan-sketch__frame--two {
    opacity: 0 !important;
  }
}

/* =========================================================================
   2026-08-16 v12 — menu pricing, testimonial palette and mobile experience
   ========================================================================= */

/* Match both navigation prompts to the exact Eczar treatment used by the
   moving banner words, rather than inheriting the smaller navigation voice. */
.topbar .topbar__cta .nav-cta,
.hero > .hero-scroll.nav-cta {
  font-family: "Eczar", Georgia, "Times New Roman", serif !important;
  font-size: clamp(1rem, 0.91rem + 0.32vw, 1.26rem) !important;
  font-optical-sizing: auto;
  font-weight: 600 !important;
  font-variation-settings: "wght" 600;
  font-synthesis: none;
  font-style: normal !important;
  font-kerning: normal;
  letter-spacing: -0.035em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}
.topbar.theme-dark .topbar__cta .nav-cta,
.hero .hero-scroll,
.hero .hero-scroll:hover,
.hero .hero-scroll:focus-visible {
  color: var(--cream) !important;
}
.topbar.theme-light .topbar__cta .nav-cta {
  color: var(--brown) !important;
}

/* Menu prices sit on the same baseline as the dish names and dotted leaders. */
.menu-item__price {
  flex: none;
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(1rem, 0.93rem + 0.25vw, 1.18rem);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

/* The review panel now uses the same dark brown as the catering section that
   follows it, with a deliberately simple cream-only type and control palette. */
.reveal-stage::before {
  background: var(--brown) !important;
  border-color: rgba(255, 248, 218, 0.18) !important;
  box-shadow: 0 28px 90px rgba(86, 25, 0, 0.22) !important;
}
.reveal-quote {
  color: var(--cream) !important;
}
.reveal-stars {
  color: var(--cream) !important;
  text-shadow: none;
}
.reveal-name {
  color: rgba(255, 248, 218, 0.72) !important;
}
.reveal-arrow {
  color: var(--cream) !important;
  background: rgba(255, 248, 218, 0.07) !important;
  border-color: rgba(255, 248, 218, 0.42) !important;
}
.reveal-arrow:hover,
.reveal-arrow:focus-visible {
  color: var(--brown) !important;
  background: var(--cream) !important;
  border-color: var(--cream) !important;
}
.tcarousel__card {
  background: var(--brown) !important;
  border-color: rgba(255, 248, 218, 0.18) !important;
  box-shadow: 0 22px 62px rgba(86, 25, 0, 0.22) !important;
}

/* Contact CTA: the new samosa mirrors the naan from the opposite side. */
.contact-samosa-sketch {
  position: absolute;
  right: clamp(42px, 7vw, 126px);
  top: 50%;
  width: clamp(220px, 18vw, 310px);
  aspect-ratio: 1;
  transform: translateY(-50%) rotate(9deg);
  pointer-events: none;
  opacity: 0.88;
  z-index: 1;
}
.contact-samosa-sketch__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-samosa-sketch__frame--one {
  animation: cateringSketchFrameOne 2s steps(1, end) infinite;
}
.contact-samosa-sketch__frame--two {
  animation: cateringSketchFrameTwo 2s steps(1, end) infinite;
}

/* Mobile keeps the desktop's movement and content, while making controls easy
   to swipe and the denser menu easier to scan. Desktop rules are untouched. */
@media (max-width: 900px) {
  .menu-tabs {
    flex-wrap: nowrap;
    gap: 0.55rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: var(--gutter);
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    touch-action: pan-x pan-y;
  }
  .menu-tabs::-webkit-scrollbar {
    display: none;
  }
  .menu-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .menu-panel {
    scroll-margin-top: calc(var(--nav-h) + 1rem);
  }
  .tcarousel__card {
    touch-action: pan-y;
  }
  .home-table-sketch {
    right: -34px;
    opacity: 0.46 !important;
  }
  .catering-food-sketch--pani,
  .catering-food-sketch--samosa {
    opacity: 0.42 !important;
  }
  .contact-naan-sketch {
    left: -52px;
    top: 59%;
    width: 238px;
    opacity: 0.44;
  }
  .contact-samosa-sketch {
    right: -52px;
    top: 16%;
    width: 238px;
    opacity: 0.44;
  }
}

@media (min-width: 561px) and (max-width: 900px) {
  .menu-diet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.2rem, 4vw, 2.4rem);
  }
  .menu-diet-grid.is-single {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .menu-item {
    gap: 0.45rem;
    padding-block: 0.82rem;
  }
  .menu-item__name {
    font-size: clamp(1.12rem, 5.5vw, 1.48rem);
  }
  .menu-item__dot {
    min-width: 0.5rem;
  }
  .menu-item__price {
    font-size: 1rem;
  }
  .veg-tag {
    width: 20px;
    height: 20px;
  }
  .finalcta--home-art,
  .finalcta--catering-art,
  .finalcta--contact-art {
    min-height: 600px;
  }
  .home-table-sketch {
    right: -52px;
    top: 64%;
    width: 210px;
    opacity: 0.40 !important;
  }
  .catering-food-sketch--pani,
  .catering-food-sketch--samosa {
    opacity: 0.36 !important;
  }
  .contact-naan-sketch {
    left: -82px;
    top: 64%;
    width: 220px;
    opacity: 0.38;
  }
  .contact-samosa-sketch {
    right: -82px;
    top: 12%;
    width: 220px;
    opacity: 0.38;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-samosa-sketch__frame {
    animation: none !important;
  }
  .contact-samosa-sketch__frame--one {
    opacity: 1 !important;
  }
  .contact-samosa-sketch__frame--two {
    opacity: 0 !important;
  }
}
