/* ========================================================================
   Masala & Maple — V2 cinematic
   Dark by default (charcoal + embers); cream/light mode is a class toggle.
   ====================================================================== */

/* ─── tokens ──────────────────────────────────────────────────────────── */
:root {
  /* brand */
  --cream:        #FAF6EE;
  --cream-2:      #F1E9D6;
  --char:         #0E0A07;
  --char-1:       #15110D;
  --char-2:       #1E1814;
  --char-3:       #2A2118;
  --rust:         #C24A1F;
  --rust-deep:    #8A2E0E;
  --gold:         #E8B23B;
  --gold-soft:    #F0C879;

  /* type */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* metrics */
  --maxw:         1240px;
  --gutter:       clamp(20px, 4vw, 56px);
  --radius-xs:    8px;
  --radius-sm:    12px;
  --radius:       20px;
  --radius-lg:    28px;

  /* shadows */
  --shadow-1: 0 1px 2px rgba(0,0,0,.5), 0 8px 28px rgba(0,0,0,.35);
  --shadow-2: 0 2px 6px rgba(0,0,0,.45), 0 30px 80px rgba(0,0,0,.55);
  --glow:     0 0 0 1px rgba(232,178,59,.18), 0 30px 100px -10px rgba(194,74,31,.45);
}

/* ─── theme variables ────────────────────────────────────────────────── */
html[data-theme="dark"] {
  --bg:         var(--char);
  --bg-2:       var(--char-1);
  --bg-3:       var(--char-2);
  --bg-elev:    var(--char-2);
  --bg-elev-2:  var(--char-3);
  --ink:        #F4ECE0;
  --ink-2:      #D8CDBD;
  --ink-60:     rgba(244,236,224,.62);
  --ink-30:     rgba(244,236,224,.30);
  --line:       rgba(244,236,224,.10);
  --line-2:     rgba(244,236,224,.16);
  --accent:     var(--gold);
  --accent-2:   var(--rust);
  --on-accent:  #fff;
  --map-bg:     #1A1410;
  --map-park:   #2A2A1E;
  --map-block:  #221A14;
  --map-road:   #3A2E22;
  --map-road-text: var(--cream);
  --hero-grad:  radial-gradient(120% 90% at 70% 10%, #2a160a 0%, transparent 55%),
                radial-gradient(80% 60% at 20% 90%, #2b1a08 0%, transparent 55%),
                linear-gradient(180deg, #0E0A07 0%, #0E0A07 100%);
}
html[data-theme="light"] {
  --bg:         var(--cream);
  --bg-2:       #F4ECDE;
  --bg-3:       #EADFC4;
  --bg-elev:    var(--cream-2);
  --bg-elev-2:  #EADFC4;
  --ink:        #1B1410;
  --ink-2:      #2a201a;
  --ink-60:     rgba(27,20,16,.62);
  --ink-30:     rgba(27,20,16,.28);
  --line:       rgba(27,20,16,.12);
  --line-2:     rgba(27,20,16,.18);
  --accent:     var(--rust);
  --accent-2:   var(--gold);
  --on-accent:  var(--cream);
  --map-bg:     #F1E9D6;
  --map-park:   #D9E4C1;
  --map-block:  #EADFC4;
  --map-road:   #1B1410;
  --map-road-text: var(--cream);
  --hero-grad:  radial-gradient(120% 90% at 70% 10%, #fbe7c5 0%, transparent 55%),
                radial-gradient(80% 60% at 20% 90%, #fae0c0 0%, transparent 55%),
                linear-gradient(180deg, var(--cream) 0%, var(--cream) 100%);
}

/* ─── reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .5s ease, color .5s ease;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: -.018em; line-height: 1.04; }
p { margin: 0 0 1em; }
em { font-style: italic; color: var(--accent); font-family: var(--font-display); }

/* hide cursor everywhere on devices that get the custom one */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor, body.has-cursor * { cursor: none !important; }
}

/* ─── shared bits ────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
  animation: dotPulse 2.6s ease-out infinite;
}
@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  70%  { box-shadow: 0 0 0 10px transparent; opacity: .85; }
  100% { box-shadow: 0 0 0 0 transparent; opacity: 1; }
}

.section-title {
  font-size: clamp(36px, 5.6vw, 72px);
  margin: 14px 0 16px;
  font-weight: 400;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
  will-change: transform;
}
.btn--solid {
  background: var(--accent);
  color: #1a0e05;
  box-shadow: 0 14px 36px -10px color-mix(in oklab, var(--accent) 60%, transparent);
}
.btn--solid:hover { background: var(--accent-2); color: var(--on-accent); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
  padding: 10px 18px;
  font-size: 13px;
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn--link {
  background: transparent;
  padding: 14px 6px;
  color: var(--ink);
  position: relative;
}
.btn--link::after {
  content: ""; position: absolute; left: 6px; right: 6px; bottom: 6px;
  height: 1px; background: currentColor; transform-origin: left;
  transform: scaleX(0); transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.btn--link:hover { color: var(--accent); }
.btn--link:hover::after { transform: scaleX(1); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
  padding: 12px 18px;
  font-size: 13.5px;
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

.btn--whats {
  background: #25D366;
  color: #062f17;
  border: none;
  padding: 16px 26px;
  font-size: 15px;
  width: 100%;
  justify-content: center;
  box-shadow: 0 18px 40px -10px rgba(37,211,102,.45);
}
.btn--whats:hover { background: #1ebe5a; }
.btn--whats .whats { width: 20px; height: 20px; }

/* ─── splash ─────────────────────────────────────────────────────────── */
.splash {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: grid; place-items: center;
  color: var(--accent);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), visibility .8s;
}
.splash.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.splash__mark { width: clamp(220px, 30vw, 360px); height: auto; }
.splash__stroke {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: splashDraw 1.1s cubic-bezier(.2,.7,.2,1) forwards;
}
.splash__stroke:nth-of-type(2) { animation-delay: .2s; }
.splash__stroke:nth-of-type(3) { animation-delay: .4s; }
@keyframes splashDraw {
  to { stroke-dashoffset: 0; }
}

/* ─── custom cursor ──────────────────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 90;
  mix-blend-mode: difference;
  transition: opacity .25s;
}
.cursor__dot, .cursor__ring {
  position: absolute; top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cursor__dot {
  width: 5px; height: 5px;
  background: var(--cream);
}
.cursor__ring {
  width: 28px; height: 28px;
  border: 1px solid var(--cream);
  transition: width .25s cubic-bezier(.2,.7,.2,1),
              height .25s cubic-bezier(.2,.7,.2,1),
              opacity .25s,
              background .25s,
              border-color .25s;
}
.cursor.is-hover .cursor__ring {
  width: 52px; height: 52px;
  background: rgba(250,246,238,.10);
  border-color: var(--cream);
}
.cursor.is-down .cursor__ring { width: 22px; height: 22px; }

@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ─── scroll progress ────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 80;
  pointer-events: none;
}

/* ─── topbar ─────────────────────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px var(--gutter);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding .3s, border-color .3s, background .3s;
}
.topbar.is-scrolled {
  padding-top: 12px; padding-bottom: 12px;
  border-bottom-color: var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a0e05;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  letter-spacing: -.02em;
  box-shadow: 0 10px 24px -6px color-mix(in oklab, var(--accent) 60%, transparent);
}
.brand__name {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -.01em;
}

.topnav {
  display: flex; gap: 28px; justify-content: center;
  font-family: var(--font-body);
}
.topnav a {
  font-size: 13.5px;
  color: var(--ink-60);
  position: relative;
  padding: 6px 2px;
  transition: color .2s;
}
.topnav a::after {
  content: ""; position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s cubic-bezier(.2,.7,.2,1), left .3s cubic-bezier(.2,.7,.2,1);
}
.topnav a:hover { color: var(--ink); }
.topnav a:hover::after { width: 100%; left: 0; }

.topbar__tools { display: inline-flex; align-items: center; gap: 8px; justify-self: end; }
.icon-btn {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--ink);
  transition: background .25s, color .25s, transform .25s, border-color .25s;
}
.icon-btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.icon-btn[aria-pressed="true"] { color: var(--accent); border-color: var(--accent); }

.topbar__menu { display: none; width: 36px; height: 36px; flex-direction: column; gap: 5px; place-items: center; }
.topbar__menu span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }

@media (max-width: 980px) {
  .topnav, .topbar__cta { display: none; }
  .topbar { grid-template-columns: auto 1fr auto; }
  .topbar__menu { display: inline-flex; justify-self: end; }
  .topbar__tools { display: none; }

  .topbar.is-open .topnav,
  .topbar.is-open .topbar__tools {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--bg);
    padding: 18px var(--gutter);
    border-bottom: 1px solid var(--line);
    gap: 14px;
  }
  .topbar.is-open .topbar__tools { top: calc(100% + 220px); }
  .topbar.is-open .topbar__menu span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .topbar.is-open .topbar__menu span:nth-child(2) { opacity: 0; }
  .topbar.is-open .topbar__menu span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .topbar.is-open .topnav a { font-size: 18px; color: var(--ink); }
}

/* ─── hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 100px var(--gutter) 80px;
  background: var(--hero-grad);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}

.hero__title {
  font-size: clamp(54px, 10vw, 138px);
  line-height: .9;
  letter-spacing: -.04em;
  margin: 22px 0 28px;
  font-weight: 400;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__title .line.small { font-size: .58em; font-style: italic; color: var(--ink-60); letter-spacing: -.01em; }
.hero__title .word { display: inline-block; will-change: transform; }
.hero__title .word.accent  { color: var(--accent-2); font-style: italic; }
.hero__title .word.accent-2 { color: var(--accent); }

/* split-char animation seed (JS upgrades it) */
.hero__title .word .char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

.hero__lede {
  font-size: clamp(16px, 1.55vw, 19px);
  color: var(--ink-60);
  max-width: 50ch;
  line-height: 1.55;
}
.hero__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px; flex-wrap: wrap;
}

.hero__meta {
  display: flex; gap: clamp(20px, 3vw, 40px);
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero__meta dt {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.hero__meta dd {
  margin: 0; font-family: var(--font-display); font-size: 17px; color: var(--ink-2);
}

.hero__plate {
  position: relative; margin: 0;
  aspect-ratio: 4/5;
  perspective: 1200px;
}
.hero__plate-frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
  box-shadow: var(--shadow-2), var(--glow);
}
.hero__plate-frame::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 60%, rgba(14,10,7,.55) 100%);
  pointer-events: none;
}
.hero__plate-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.08);
}
.kenburns { animation: kenburns 16s ease-in-out infinite alternate; }
@keyframes kenburns {
  0%   { transform: scale(1.06) translate(0,0); }
  50%  { transform: scale(1.14) translate(-1.5%, -1.5%); }
  100% { transform: scale(1.08) translate(1.5%, 1%); }
}
.hero__plate-glow {
  position: absolute; inset: -20%;
  background: radial-gradient(circle at 50% 100%, rgba(194,74,31,.45), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}

/* chips */
.chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: color-mix(in oklab, var(--bg-elev) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -.005em;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-1);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.chip.is-in { animation: chipIn .8s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes chipIn { to { opacity: 1; transform: translateY(0); } }
.chip:hover { transform: translateY(-4px); border-color: var(--accent); }
.chip__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent-2) 55%, transparent);
  animation: dotPulse 2.6s ease-out infinite;
}
.chip--1 { top: 6%;  left: -22px;  }
.chip--2 { top: 46%; right: -24px; }
.chip--3 { bottom: 6%; left: 10%; background: var(--accent); color: #1a0e05; border-color: transparent; }
.chip--3 .chip__dot { display: none; }

/* embers */
.embers { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.embers span {
  position: absolute; bottom: -10px;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px 1px color-mix(in oklab, var(--accent) 70%, transparent);
  opacity: 0;
  animation: ember 8s linear infinite;
}
.embers span:nth-child(1)  { left:  5%; animation-delay: 0s;  animation-duration: 9s; }
.embers span:nth-child(2)  { left: 12%; animation-delay: 1.5s; animation-duration: 11s; }
.embers span:nth-child(3)  { left: 18%; animation-delay: 3s;  animation-duration: 7s; background: var(--accent-2); box-shadow: 0 0 6px 1px color-mix(in oklab, var(--accent-2) 70%, transparent); }
.embers span:nth-child(4)  { left: 22%; animation-delay: 4.5s;animation-duration: 10s; }
.embers span:nth-child(5)  { left: 28%; animation-delay: 2s;  animation-duration: 12s; }
.embers span:nth-child(6)  { left: 34%; animation-delay: 5.5s;animation-duration: 8s; }
.embers span:nth-child(7)  { left: 40%; animation-delay: 1s;  animation-duration: 10s; background: var(--accent-2); box-shadow: 0 0 6px 1px color-mix(in oklab, var(--accent-2) 70%, transparent); }
.embers span:nth-child(8)  { left: 46%; animation-delay: 6s;  animation-duration: 9s; }
.embers span:nth-child(9)  { left: 52%; animation-delay: 3.5s;animation-duration: 11s; }
.embers span:nth-child(10) { left: 58%; animation-delay: 0.5s;animation-duration: 12s; }
.embers span:nth-child(11) { left: 64%; animation-delay: 4s;  animation-duration: 8s; background: var(--accent-2); box-shadow: 0 0 6px 1px color-mix(in oklab, var(--accent-2) 70%, transparent); }
.embers span:nth-child(12) { left: 70%; animation-delay: 2.5s;animation-duration: 10s; }
.embers span:nth-child(13) { left: 76%; animation-delay: 5s;  animation-duration: 9s; }
.embers span:nth-child(14) { left: 82%; animation-delay: 7s;  animation-duration: 11s; }
.embers span:nth-child(15) { left: 88%; animation-delay: 1.8s;animation-duration: 8s; }
.embers span:nth-child(16) { left: 94%; animation-delay: 4.2s;animation-duration: 12s; }
.embers span:nth-child(17) { left:  8%; animation-delay: 6.5s;animation-duration: 9s; }
.embers span:nth-child(18) { left: 30%; animation-delay: 7.5s;animation-duration: 10s; background: var(--accent-2); box-shadow: 0 0 6px 1px color-mix(in oklab, var(--accent-2) 70%, transparent); }
.embers span:nth-child(19) { left: 60%; animation-delay: 8s;  animation-duration: 11s; }
.embers span:nth-child(20) { left: 85%; animation-delay: 6.8s;animation-duration: 9s; }
@keyframes ember {
  0%   { transform: translateY(0)   translateX(0)    scale(1);   opacity: 0; }
  10%  { opacity: .9; }
  100% { transform: translateY(-110vh) translateX(40px) scale(.3); opacity: 0; }
}

.hero__scroll-cue {
  position: absolute; left: 50%; bottom: 24px;
  transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-60);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--ink-60), transparent);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; top: -100%; left: 0; right: 0; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: scrollCue 2s linear infinite;
}
@keyframes scrollCue { to { top: 100%; } }

@media (max-width: 980px) {
  .hero { padding-top: 120px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__plate { aspect-ratio: 4/4.4; max-height: 460px; order: -1; }
  .chip--1 { left: 8px; }
  .chip--2 { right: 8px; }
  .hero__scroll-cue { display: none; }
}

/* ─── press marquee ──────────────────────────────────────────────────── */
.press {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg);
}
.press__track {
  display: flex; gap: 64px; width: max-content;
  animation: marquee 42s linear infinite;
}
.press__row {
  display: inline-flex; align-items: center; gap: 64px;
  font-family: var(--font-display); font-style: italic;
  font-size: 19px; color: var(--ink-60);
}
.press__row li { white-space: nowrap; }
.press__edge {
  position: absolute; top: 0; bottom: 0; width: 100px; z-index: 1;
  pointer-events: none;
}
.press__edge--l { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.press__edge--r { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }
.press:hover .press__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── story ──────────────────────────────────────────────────────────── */
.story {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 80px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 140px) var(--gutter);
  align-items: center;
}
.spice-trail {
  position: absolute; inset: 0; width: 100%; height: 100%;
  color: var(--ink-30);
  pointer-events: none; opacity: .35;
  z-index: 0;
}
.spice-trail__path {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
}
.story > * { position: relative; z-index: 1; }

.story__chef {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-2);
}
.story__chef img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.8s cubic-bezier(.2,.7,.2,1);
}
.story__chef:hover img { transform: scale(1.05); }
.story__chef figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
  color: var(--cream);
  display: flex; flex-direction: column; gap: 2px;
}
.story__chef figcaption span { font-size: 14px; letter-spacing: .04em; font-weight: 600; }
.story__chef figcaption em { font-size: 12.5px; color: rgba(250,246,238,.7); font-family: var(--font-body); font-style: normal; }

.story__chef-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent);
  color: #1a0e05;
  border-radius: 999px;
  padding: 10px 14px;
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 0;
  box-shadow: 0 12px 28px -8px color-mix(in oklab, var(--accent) 60%, transparent);
}
.story__chef-badge strong { font-family: var(--font-display); font-size: 22px; line-height: 1; }
.story__chef-badge small { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }

.story__title {
  font-size: clamp(36px, 5vw, 60px);
  margin: 16px 0 18px;
}
.story__copy p {
  color: var(--ink-60);
  font-size: clamp(15px, 1.4vw, 17.5px);
  max-width: 52ch;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 46px);
  color: var(--ink);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.02em;
}
.stat__label { font-size: 12.5px; color: var(--ink-60); letter-spacing: .02em; }

@media (max-width: 980px) {
  .story { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
}

/* ─── menu ───────────────────────────────────────────────────────────── */
.menu {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 120px) var(--gutter);
}
.menu__head { text-align: left; margin-bottom: 36px; max-width: 60ch; }
.menu__head p { color: var(--ink-60); }

.menu__filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.filter {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.filter em { font-style: normal; font-size: 11px; color: var(--ink-30); transition: color .25s; }
.filter:hover { border-color: var(--ink); transform: translateY(-1px); }
.filter.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.filter.is-active em { color: color-mix(in oklab, var(--bg) 60%, transparent); }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 56px;
}
.dish {
  padding: 24px 0;
  border-bottom: 1px dashed var(--line);
  transition: opacity .35s cubic-bezier(.2,.7,.2,1), transform .35s cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.dish.is-hidden { display: none; }
.dish.is-fade { opacity: 0; transform: translateY(6px); }
.dish__head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 6px;
}
.dish__head h3 {
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 400;
  letter-spacing: -.01em;
  transition: color .25s, transform .25s;
}
.dish__head::before {
  content: ""; flex: 1; order: 2;
  border-bottom: 1px dotted var(--ink-30);
  transform: translateY(-4px);
  transition: border-color .25s;
}
.dish__price {
  order: 3;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent);
  transition: transform .25s;
}
.dish p {
  color: var(--ink-60);
  font-size: 14.5px;
  max-width: 46ch;
  margin: 0 0 8px;
}
.dish__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
}
.dish:hover h3 { color: var(--accent); transform: translateX(4px); }
.dish:hover .dish__head::before { border-color: var(--accent); }
.dish:hover .dish__price { transform: translateX(-4px); }

@media (max-width: 760px) { .menu__grid { grid-template-columns: 1fr; gap: 0; } }

/* hover-card */
.dish-card {
  position: fixed; top: 0; left: 0;
  z-index: 70;
  background: var(--bg-elev);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  width: 280px;
  box-shadow: var(--shadow-2);
  opacity: 0; visibility: hidden;
  transform: translate(-50%, -100%) translateY(-12px) scale(.96);
  transition: opacity .25s, transform .25s, visibility .25s;
  pointer-events: none;
}
.dish-card.is-show {
  opacity: 1; visibility: visible;
  transform: translate(-50%, -100%) translateY(-16px) scale(1);
}
.dish-card__eyebrow {
  display: inline-block;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
  margin-bottom: 6px;
}
.dish-card__spice {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}
.dish-card__pair { font-size: 12.5px; color: var(--ink-60); margin: 0; }
@media (hover: none), (pointer: coarse) { .dish-card { display: none; } }

/* ─── cocktails ──────────────────────────────────────────────────────── */
.cocktails {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(80px, 11vw, 140px) var(--gutter);
}
.cocktails__head {
  max-width: var(--maxw); margin: 0 auto 48px;
}
.cocktails__head p { color: var(--ink-60); max-width: 50ch; }

.cocktails__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.cocktail {
  display: flex; flex-direction: column;
  padding: 22px 18px 18px;
  border-radius: var(--radius);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .35s, background .35s;
}
.cocktail:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
}
.cocktail__glass {
  height: 130px;
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 14px;
}
.cocktail__glass svg { height: 100%; width: auto; }
.cocktail__body h3 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 8px;
}
.cocktail__notes {
  font-size: 13px;
  color: var(--ink-60);
  margin: 0 0 14px;
  line-height: 1.5;
}
.cocktail__meta {
  display: flex; justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-size: 12px; color: var(--ink-60);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.cocktail__meta span:last-child { color: var(--accent); font-family: var(--font-display); font-size: 16px; }

@media (max-width: 1100px) { .cocktails__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .cocktails__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .cocktails__grid { grid-template-columns: 1fr; } }

/* ─── bento gallery ──────────────────────────────────────────────────── */
.gallery {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 120px) var(--gutter);
}
.gallery__head { margin-bottom: 36px; }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 160px;
  gap: 14px;
}
.bento__cell {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-elev);
  box-shadow: var(--shadow-1);
}
.bento__cell img {
  width: 100%; height: 110%;
  object-fit: cover;
  will-change: transform;
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1);
}
.bento__cell:hover img { transform: scale(1.08); }
.bento__cell figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.6));
  color: var(--cream);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s, transform .35s;
}
.bento__cell:hover figcaption { opacity: 1; transform: translateY(0); }

.bento__cell--a { grid-column: span 3; grid-row: span 2; }
.bento__cell--b { grid-column: span 3; grid-row: span 1; }
.bento__cell--c { grid-column: span 2; grid-row: span 1; }
.bento__cell--d { grid-column: span 2; grid-row: span 2; }
.bento__cell--e { grid-column: span 2; grid-row: span 1; }

@media (max-width: 760px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .bento__cell--a, .bento__cell--d { grid-column: span 2; grid-row: span 2; }
  .bento__cell--b, .bento__cell--c, .bento__cell--e { grid-column: span 1; }
}

/* ─── reviews ────────────────────────────────────────────────────────── */
.reviews {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(80px, 11vw, 140px) var(--gutter);
}
.reviews__head { max-width: var(--maxw); margin: 0 auto 40px; }
.reviews__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.review {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px; line-height: 1.5;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s;
  position: relative;
}
.review__quote {
  position: absolute; top: -2px; left: 18px;
  font-family: var(--font-display);
  font-size: 78px;
  line-height: 1;
  color: var(--accent);
  opacity: .8;
  pointer-events: none;
}
.review:hover { transform: translateY(-6px); border-color: var(--accent); }
.review p { color: var(--ink); margin: 0 0 16px; }
.review footer {
  font-family: var(--font-body); font-style: normal;
  font-size: 12.5px; color: var(--ink-60); letter-spacing: .02em;
}
.review strong { color: var(--accent); font-weight: 600; }

@media (max-width: 860px) { .reviews__grid { grid-template-columns: 1fr; } }

/* ─── experiences (chef's table + private dining) ────────────────────── */
.experiences {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 140px) var(--gutter);
}
.experiences__head { margin-bottom: 40px; max-width: 60ch; }
.experiences__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.exp {
  display: flex; flex-direction: column; gap: 22px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .4s, box-shadow .4s;
  position: relative;
  overflow: hidden;
}
.exp::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 100% 0%, color-mix(in oklab, var(--accent) 16%, transparent), transparent 70%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.exp:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 30px 80px -30px rgba(0,0,0,.5); }
.exp:hover::before { opacity: 1; }

.exp__head { display: flex; flex-direction: column; gap: 14px; }
.exp__no {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.exp__head h3 {
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.05;
  font-weight: 400;
}
.exp__list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.exp__list li { display: flex; flex-direction: column; gap: 4px; }
.exp__list span {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-60); font-weight: 600;
}
.exp__list em {
  font-style: normal; font-family: var(--font-display); font-size: 17px;
  color: var(--ink);
}
.exp__meta {
  margin: 0; font-size: 13.5px; color: var(--ink-60);
  padding-top: 18px; border-top: 1px solid var(--line);
}
.exp__meta strong { color: var(--accent); font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: 16px; }

@media (max-width: 860px) {
  .experiences__grid { grid-template-columns: 1fr; }
  .exp__list { grid-template-columns: 1fr 1fr; }
}

/* ─── reserve ────────────────────────────────────────────────────────── */
.reserve {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(80px, 11vw, 140px) var(--gutter);
  align-items: start;
}
.reserve__copy p { color: var(--ink-60); max-width: 46ch; }
.reserve__bullets {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
  color: var(--ink); font-size: 14.5px;
}
.reserve__bullets li { display: flex; align-items: center; gap: 12px; }
.reserve__bullets li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex: 0 0 6px;
}

.reserve__form {
  background: var(--bg-elev);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-1);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-60); font-weight: 600;
}
.field label span {
  text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--ink-30);
}
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 16%, transparent);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-30); }
.field textarea { resize: vertical; min-height: 80px; }

.reserve__legal { font-size: 12px; color: var(--ink-30); margin: 4px 0 0; text-align: center; }

.whats--pulse { animation: whatsPulse 1.8s ease-out infinite; transform-origin: center; }
@keyframes whatsPulse {
  0%, 100% { transform: scale(1);   filter: drop-shadow(0 0 0 rgba(11,61,34,0)); }
  50%      { transform: scale(1.18); filter: drop-shadow(0 0 6px rgba(11,61,34,.4)); }
}
.btn--whats:hover .whats--pulse { animation-duration: 1.1s; }

@media (max-width: 980px) { .reserve { grid-template-columns: 1fr; } }

/* ─── visit / map ────────────────────────────────────────────────────── */
.visit {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(60px, 9vw, 120px) var(--gutter);
  align-items: center;
}
.visit__list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 8px;
}
.visit__list li {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 14.5px; color: var(--ink);
}
.visit__list strong {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}

.visit__map {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  background: var(--map-bg);
  color: var(--ink);
}
.visit__map svg { display: block; width: 100%; height: auto; }

.visit__map .pin circle:nth-child(1) { animation: pinPulse 2.4s ease-out infinite; transform-origin: center; }
.visit__map .pin circle:nth-child(2) { animation: pinPulse 2.4s ease-out .4s infinite; transform-origin: center; }
@keyframes pinPulse {
  0%   { transform: scale(.6); opacity: .9; }
  100% { transform: scale(1.6); opacity: 0; }
}
.map-pin__ping {
  fill: var(--accent);
  transform-origin: center;
  animation: cuisinePing 2.6s ease-out infinite;
}
.map-pin--mangalore .map-pin__ping { animation-delay: .8s; }
.map-pin--coorg     .map-pin__ping { animation-delay: 1.6s; }
@keyframes cuisinePing {
  0%   { opacity: .55; transform: scale(.4); }
  100% { opacity: 0;   transform: scale(1.8); }
}
.map-pin__dot { fill: var(--accent); }

@media (max-width: 860px) {
  .visit { grid-template-columns: 1fr; }
  .visit__list { grid-template-columns: 1fr; }
}

/* ─── footer ─────────────────────────────────────────────────────────── */
.foot {
  position: relative;
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 60px var(--gutter) 28px;
  overflow: hidden;
}
.foot__monogram {
  position: absolute; left: 0; right: 0; bottom: -40%;
  display: grid; place-items: center;
  pointer-events: none;
  color: var(--ink);
  z-index: 0;
}
.foot__monogram svg { width: 100%; max-width: 900px; height: auto; }
.foot__row, .foot__credit { position: relative; z-index: 1; }
.foot__row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  max-width: var(--maxw); margin: 0 auto 24px;
}
.foot__brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 16px; }
.foot__nav { display: flex; gap: 22px; flex-wrap: wrap; }
.foot__nav a { font-size: 14px; color: var(--ink-60); transition: color .25s; }
.foot__nav a:hover { color: var(--accent); }
.foot__credit {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--ink-30);
  padding-top: 22px; border-top: 1px solid var(--line);
}
.foot__credit a { color: var(--accent); }

/* ─── scroll reveal (used pre-GSAP and as fallback) ──────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1),
              transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1; transform: translateY(0);
}

/* ─── motion preferences ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__title .word .char,
  .chip,
  [data-reveal] { transform: none !important; opacity: 1 !important; }
  .embers, .splash, .cursor, .scroll-progress { display: none !important; }
  .spice-trail__path { stroke-dashoffset: 0; }
}
