/* ============================================================
   GRILLER (Seven Kings) — charcoal / ember / peri-peri
   Design system: Anton (display) + Archivo (body)
   ============================================================ */

/* ---- Tokens ---- */
:root {
  /* Charcoal base */
  --char-900: #0E0B0A;
  --char-850: #140F0E;
  --char-800: #1A1413;
  --char-700: #2A201D;
  --char-600: #3A2C27;

  /* Fire */
  --ember:        #FF5A1F;
  --ember-bright: #FF8A3D;
  --coal-red:     #E11D2A;
  --gold:         #F2B705;
  --herb:         #8BC34A;

  /* Text */
  --cream: #F6EFE7;
  --ash:   #C9BDB6;
  --ash-dim: #8A7F78;

  /* Heat-scale ramp */
  --heat-1: #8BC34A; /* lemon & herb */
  --heat-2: #F2B705; /* medium */
  --heat-3: #FF5A1F; /* hot */
  --heat-4: #E11D2A; /* extra hot */

  /* System */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;
  --ring: 0 0 0 3px rgba(255, 138, 61, .55);

  /* z-scale */
  --z-nav: 100;
  --z-overlay: 200;
  --z-lightbox: 300;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1); /* refined, expensive-feeling */
  --t-fast: 160ms;
  --t-med: 260ms;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ash);
  background: var(--char-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; color: var(--cream); line-height: 1; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ember-bright);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), transparent);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .005em;
  color: var(--cream);
}

.section {
  position: relative;
  padding-block: clamp(64px, 11vw, 132px);
}
.section__head { max-width: 60ch; margin-bottom: clamp(32px, 5vw, 56px); }
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  letter-spacing: .01em;
  margin-top: 14px;
}
.section__lead {
  margin-top: 18px;
  max-width: 52ch;
  font-size: 1.08rem;
  color: var(--ash);
}

/* ---- Buttons ---- */
.btn {
  --bg: var(--ember);
  --fg: #1a0a02;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 48px;
  padding: 0 1.5em;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bg);
  border: 2px solid transparent;
  border-radius: 999px;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-med) var(--ease),
              background var(--t-med) var(--ease),
              color var(--t-med) var(--ease);
  will-change: transform;
}
.btn:hover {
  box-shadow: 0 10px 34px -10px rgba(255, 90, 31, .8);
  transform: translateY(-2px);
}
.btn:active { transform: translateY(0); }

.btn--ember { --bg: linear-gradient(180deg, var(--ember-bright), var(--ember)); --fg: #200a01; }
.btn--ghost {
  --bg: transparent; --fg: var(--cream);
  border-color: var(--char-600);
}
.btn--ghost:hover {
  border-color: var(--ember);
  color: var(--ember-bright);
  box-shadow: none;
}
.btn--gold { --bg: var(--gold); --fg: #241a00; }
.btn--sm { min-height: 40px; font-size: .82rem; padding: 0 1.15em; }
.btn[aria-disabled="true"] { opacity: .5; pointer-events: none; cursor: not-allowed; }

.icon { width: 1.15em; height: 1.15em; flex: none; stroke-width: 2; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  transition: background var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}
.nav.is-stuck {
  background: rgba(14, 11, 10, .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--char-700);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand__logo { width: auto; height: 30px; flex: none; }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand small {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .56rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ember-bright);
  padding-left: 10px;
  border-left: 1px solid var(--char-600);
  align-self: center;
}
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  padding: 8px 14px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ash);
  border-radius: 10px;
  transition: color var(--t-fast) var(--ease);
}
/* ember bloom on hover — ported from 21st.dev "Glow Menu" radial-glow idea */
.nav__link::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 60%, rgba(255,90,31,.22) 0%, rgba(255,90,31,.07) 45%, transparent 72%);
  opacity: 0;
  transform: scale(.7);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  pointer-events: none;
}
.nav__link:hover::before { opacity: 1; transform: scale(1); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta { margin-left: 10px; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid var(--char-600);
  border-radius: 10px;
  color: var(--cream);
  align-items: center;
  justify-content: center;
}
.nav__toggle svg { width: 22px; height: 22px; }

/* Mobile overlay */
.navmenu {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  padding: 24px var(--gutter) 40px;
  background: linear-gradient(180deg, var(--char-850), var(--char-900));
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 420ms var(--ease), visibility 420ms;
}
.navmenu.is-open { transform: translateY(0); visibility: visible; }
.navmenu__top { display: flex; align-items: center; }
.navmenu__close {
  margin-left: auto;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid var(--char-600);
  border-radius: 10px;
  color: var(--cream);
}
.navmenu__list {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.navmenu__list a {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 12vw, 3.6rem);
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 0;
  letter-spacing: .02em;
}
.navmenu__list a.is-cta { color: var(--ember); }
.navmenu__foot { color: var(--ash-dim); font-size: .9rem; }

/* ============================================================
   HERO — living fire
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(60% 55% at 2% 104%, rgba(255,90,31,.20), transparent 62%),
    radial-gradient(60% 55% at 98% 104%, rgba(225,29,42,.18), transparent 62%),
    radial-gradient(150% 100% at 50% 124%, rgba(255,90,31,.24) 0%, transparent 64%),
    var(--char-900);
}
.hero__stage {
  position: absolute;
  inset: -8% 0 0 0;
  z-index: -3;
  pointer-events: none;
}
.hero__layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  will-change: transform;
}
/* deep ember glow rising from the grill */
.hero__layer--glow {
  background:
    radial-gradient(60% 50% at 50% 100%, rgba(225, 29, 42, .55), transparent 70%),
    radial-gradient(80% 60% at 50% 108%, rgba(255, 90, 31, .65), transparent 72%);
  filter: blur(6px);
}
/* flame core */
.hero__layer--flame {
  background:
    radial-gradient(34% 46% at 50% 102%, rgba(255, 174, 84, .85), rgba(255, 90, 31, .35) 55%, transparent 78%),
    radial-gradient(20% 30% at 38% 104%, rgba(255, 138, 61, .7), transparent 70%),
    radial-gradient(22% 34% at 64% 104%, rgba(255, 110, 40, .7), transparent 70%);
  mix-blend-mode: screen;
  animation: flameBreathe 5s var(--ease) infinite;
}
/* smoke drifting */
.hero__layer--smoke {
  inset: -20% -10% 0 -10%;
  background:
    radial-gradient(40% 30% at 30% 60%, rgba(120, 110, 105, .16), transparent 70%),
    radial-gradient(46% 34% at 72% 48%, rgba(90, 82, 78, .14), transparent 70%);
  filter: blur(20px);
  mix-blend-mode: screen;
}
.hero__embers {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.hero::after { /* vignette + readability scrim */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,11,10,.6) 0%, rgba(14,11,10,.15) 36%, rgba(14,11,10,.55) 78%, var(--char-900) 100%);
}

.hero__inner {
  padding-block: clamp(92px, 11vh, 124px) 92px;
  max-width: 1040px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(18px, 3vw, 30px);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--char-600);
  background: rgba(20,15,14,.6);
  color: var(--cream);
  backdrop-filter: blur(4px);
}
.pill--open .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--herb);
  box-shadow: 0 0 0 0 rgba(139,195,74,.7);
  animation: livePulse 2.4s ease-out infinite;
}
.pill--offer {
  border: none;
  color: #241a00;
  background: linear-gradient(180deg, var(--gold), #d99e04);
}
/* rooster mascot — the hero centrepiece */
.hero__rooster {
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: clamp(6px, 1.5vw, 18px);
}
.hero__rooster-glow {
  position: absolute;
  inset: -18% -12%;
  z-index: 0;
  background: radial-gradient(46% 44% at 50% 52%, rgba(255,90,31,.5), rgba(225,29,42,.18) 46%, transparent 72%);
  filter: blur(34px);
  animation: roostGlow 4.5s ease-in-out infinite;
}
.hero__chick {
  position: relative;
  z-index: 1;
  width: auto;
  height: clamp(170px, 24vh, 290px);
  transform-origin: 50% 85%;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.5));
  animation: wipeIn 1s var(--ease-lux) both, roostFloat 4.6s ease-in-out 1s infinite;
  will-change: transform;
}
.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 1vw, 12px);
  line-height: 1;
}
.hero__wordmark {
  width: clamp(210px, 34vw, 440px);
  height: auto;
  filter: drop-shadow(0 6px 40px rgba(255, 90, 31, .35));
}
.hero__title .line2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.4rem, 4.4vw, 2.6rem);
  letter-spacing: .34em;
  padding-left: .34em;
  color: transparent;
  background: linear-gradient(180deg, var(--cream), var(--ash));
  -webkit-background-clip: text;
  background-clip: text;
}
.hero__eyebrow { margin-bottom: 20px; }
.hero__tagline {
  margin-top: clamp(18px, 2.5vw, 26px);
  max-width: 34ch;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: var(--cream);
  font-weight: 600;
}
.hero__ctas { margin-top: clamp(24px, 3vw, 34px); display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: .64rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ash-dim);
  pointer-events: none;
}
.hero__scroll span:last-child {
  width: 1px; height: 30px;
  background: linear-gradient(var(--ember), transparent);
  animation: scrollHint 2.2s var(--ease) infinite;
}
/* never let the scroll cue crowd the CTAs on shorter / laptop screens */
@media (max-height: 860px) { .hero__scroll { display: none; } }

/* ============================================================
   THE FIRE strip
   ============================================================ */
.fire-strip {
  padding-block: clamp(56px, 9vw, 104px);
  background:
    linear-gradient(180deg, var(--char-900), var(--char-850));
  border-block: 1px solid var(--char-700);
  position: relative;
}
.fire-strip__statement {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: .01em;
  color: var(--cream);
  max-width: 22ch;
}
.fire-strip__statement b {
  color: transparent;
  background: linear-gradient(180deg, var(--ember-bright), var(--coal-red));
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: inherit;
}
.fire-strip__kicker {
  margin-bottom: 22px;
}

/* ============================================================
   SIGNATURE DISHES
   ============================================================ */
.dishes { background: var(--char-900); }
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.dish {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, var(--char-800), var(--char-850));
  border: 1px solid var(--char-700);
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
  transition: border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              transform var(--t-fast) var(--ease);
  will-change: transform;
}
.dish::before { /* ember edge glow on hover */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255,138,61,.85), transparent 42%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.dish:hover, .dish:focus-visible {
  border-color: transparent;
  box-shadow: 0 26px 64px -28px rgba(255, 90, 31, .6);
}
.dish:hover::before, .dish:focus-visible::before { opacity: 1; }

/* media (photo or charcoal flame panel) */
.dish__media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background:
    radial-gradient(85% 75% at 50% 38%, rgba(255,90,31,.16), transparent 70%),
    radial-gradient(120% 100% at 50% 120%, var(--char-700), var(--char-850) 70%);
}
.dish__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.dish:hover .dish__img { transform: scale(1.05); }
.dish__media::after { /* bottom scrim to seat the tag + blend bright photos */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(14,11,10,.6) 100%);
  pointer-events: none;
}
.dish__noimg { display: grid; place-items: center; width: 100%; height: 100%; }
.dish__mark { width: 44%; height: 44%; opacity: .9; filter: drop-shadow(0 8px 30px rgba(255,90,31,.45)); }
.dish__mark path { fill: var(--ember); }
.dish__mark-core { fill: #ffd9a3; opacity: .85; }
.dish__tag {
  position: absolute; left: 12px; top: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 11px;
  font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream);
  background: rgba(14,11,10,.62);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  backdrop-filter: blur(5px);
}
.dish__heat { color: var(--coal-red); letter-spacing: -.12em; font-size: .8em; }

.dish__body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.dish__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.02;
  color: var(--cream);
  margin: 0 0 10px;
  transform: translateZ(28px);
}
.dish__desc { font-size: .96rem; color: var(--ash); flex: 1; }
.dish__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}
.dish__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: .02em;
}
.dish__price small { font-size: .58em; color: var(--ash-dim); letter-spacing: .1em; }
.dish__price .dish__price-flat { color: var(--ash); font-size: .62em; letter-spacing: .06em; }

/* feature card (whole chicken) — earns the extra room */
@media (min-width: 760px) {
  .dish--feature { grid-column: span 2; flex-direction: row; }
  .dish--feature .dish__media { aspect-ratio: auto; flex: 1.1; min-height: 320px; }
  .dish--feature .dish__body { flex: 1; justify-content: center; }
  .dish--feature .dish__name { font-size: clamp(1.8rem, 3vw, 2.4rem); }
  .dish--feature .dish__desc { font-size: 1.05rem; }
}
.dishes__note {
  margin-top: 28px;
  font-size: .86rem;
  color: var(--ash-dim);
  max-width: 60ch;
}

/* ============================================================
   FULL MENU
   ============================================================ */
.menu-sec { background: linear-gradient(180deg, var(--char-850), var(--char-900)); }
.menu-sec__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}
.menu-viewer {
  position: relative;
  border: 1px solid var(--char-700);
  border-radius: var(--radius-lg);
  background: var(--char-850);
  padding: clamp(14px, 2.4vw, 26px);
}
.menu-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.menu-page {
  position: relative;
  border: 1px solid var(--char-700);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--char-800);
  cursor: zoom-in;
  transition: border-color var(--t-med) var(--ease), transform var(--t-fast) var(--ease);
}
.menu-page:hover { border-color: var(--ember); transform: translateY(-3px); }
.menu-page img { width: 100%; height: auto; }
.menu-page__hint {
  position: absolute;
  inset: auto 10px 10px auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(14,11,10,.7);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
/* PDF.js canvas pages */
.menu-pdf { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.menu-pdf canvas { max-width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--char-700); }
.menu-sec__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* ============================================================
   FLAVOURS — the neon peri hand (signature interaction)
   ============================================================ */
.flav {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 50% 120%, rgba(255,90,31,.10), transparent 70%),
    var(--char-850);
}
.flav__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.flav__handwrap {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  isolation: isolate;
}
.flav__handwrap::before { /* ambient glow in the selected flavour colour */
  content: "";
  position: absolute;
  inset: 4%;
  z-index: 0;
  background: radial-gradient(48% 46% at 50% 50%, var(--c, var(--ember)), transparent 70%);
  filter: blur(50px);
  opacity: .26;
  transition: opacity 520ms var(--ease), background 420ms var(--ease);
}
.flav__hand {
  position: relative;
  z-index: 1;
  width: clamp(230px, 44vw, 380px);
  height: auto;
  overflow: visible;
}
.flav-base { fill: rgba(255,255,255,.012); stroke: rgba(255,255,255,.05); stroke-width: 2; }
/* resting: crisp coloured outlines, NO glow (so adjacent zones never bleed together) */
.flav-zone rect {
  fill: color-mix(in srgb, var(--c) 12%, #120d0c);
  stroke: var(--c);
  stroke-width: 3;
  opacity: .82;
  transition: opacity .35s var(--ease), fill .35s var(--ease), stroke-width .35s var(--ease);
}
.flav-zone:hover rect { opacity: 1; }
/* only the SELECTED zone lights up */
.flav-zone.sel rect {
  opacity: 1;
  fill: color-mix(in srgb, var(--c) 34%, #120d0c);
  stroke-width: 4.5;
  filter: url(#neonGlow);
}
.flav[data-reduced="true"] .flav-zone.sel rect { filter: none; }
.flav-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  fill: #fff;
  text-anchor: middle;
  dominant-baseline: middle;
  opacity: .72;
  pointer-events: none;
  paint-order: stroke;
  stroke: rgba(0,0,0,.55);
  stroke-width: 2.4px;
  transition: opacity .35s var(--ease);
}
.flav-label--pad { font-size: 14px; }
.flav-zone:hover .flav-label { opacity: .95; }
.flav-zone.sel .flav-label { opacity: 1; }

/* panel */
.flav__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--c, var(--ember));
  transition: color 380ms var(--ease);
  line-height: .95;
}
.flav__meta { display: flex; align-items: center; gap: 14px; margin: 16px 0 6px; }
.flav__chilis { display: inline-flex; gap: 6px; }
.flav__chilis .chili { width: 22px; height: 22px; color: var(--char-600); transition: color 300ms var(--ease); }
.flav__chilis .chili.on { color: var(--c, var(--ember)); }
.flav__heatlabel {
  font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ash); padding: 4px 11px; border: 1px solid var(--char-700); border-radius: 999px;
}
.flav__copy { min-height: 1.6em; font-size: 1.12rem; color: var(--cream); margin-top: 8px; }

.flav__opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 26px;
}
.flav-opt {
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
  padding: 12px 14px;
  background: var(--char-800);
  border: 1px solid var(--char-700);
  border-radius: var(--radius);
  color: var(--ash);
  transition: border-color var(--t-med) var(--ease),
              background var(--t-med) var(--ease),
              color var(--t-med) var(--ease),
              transform var(--t-fast) var(--ease);
}
.flav-opt:hover { transform: translateY(-2px); color: var(--cream); border-color: color-mix(in srgb, var(--c) 60%, var(--char-700)); }
.flav-opt__dot {
  width: 13px; height: 13px; border-radius: 50%; flex: none;
  background: var(--c);
  box-shadow: 0 0 10px -1px var(--c);
}
.flav-opt__label { font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; letter-spacing: .03em; text-transform: uppercase; line-height: 1; }
.flav-opt[aria-pressed="true"] {
  color: var(--cream);
  background: linear-gradient(180deg, var(--char-700), var(--char-800));
  border-color: var(--c);
  box-shadow: 0 0 0 1px var(--c) inset, 0 16px 40px -22px var(--c);
}
.flav__hint { margin-top: 16px; font-size: .82rem; color: var(--ash-dim); }

/* ============================================================
   ORDER BAND
   ============================================================ */
.order-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(255,90,31,.22), transparent 60%),
    linear-gradient(180deg, var(--char-900), var(--char-850));
  border-block: 1px solid var(--char-700);
}
.order-band__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 8vw, 5rem);
  color: var(--cream);
}
.order-band__body { margin: 18px auto 0; max-width: 46ch; color: var(--ash); font-size: 1.1rem; }
.order-band__ctas { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   APP + QR
   ============================================================ */
.app-sec { background: var(--char-900); }
.app-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px 11px 18px;
  border-radius: 12px;
  background: #000;
  border: 1px solid #2b2b2b;
  color: #fff;
  transition: transform var(--t-fast) var(--ease), border-color var(--t-med) var(--ease);
}
.store-badge:hover { transform: translateY(-2px); border-color: #555; }
.store-badge svg { width: 30px; height: 30px; flex: none; }
.store-badge .b-small { display: block; font-size: .62rem; letter-spacing: .04em; opacity: .85; }
.store-badge .b-big { display: block; font-family: var(--font-body); font-weight: 700; font-size: 1.18rem; line-height: 1.05; }
.store-badge--disabled { opacity: .42; }
.store-badge__cap { font-size: .76rem; color: var(--ash-dim); margin-top: 7px; }
.app-badge-col { display: flex; flex-direction: column; }

.qr-card {
  justify-self: center;
  text-align: center;
  padding: 22px;
  background: linear-gradient(180deg, var(--char-800), var(--char-850));
  border: 1px solid var(--char-700);
  border-radius: var(--radius-lg);
}
.qr-card__frame {
  width: 196px; height: 196px;
  margin: 0 auto 14px;
  padding: 12px;
  background: var(--cream);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}
.qr-card__frame svg, .qr-card__frame canvas, .qr-card__frame img { width: 100%; height: 100%; }
.qr-card__cap { font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; color: var(--ash); }

/* ============================================================
   FIND US
   ============================================================ */
.find { background: linear-gradient(180deg, var(--char-850), var(--char-900)); }
.find__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(26px, 4vw, 52px);
  align-items: stretch;
}
.find__info { display: flex; flex-direction: column; }
.info-list { margin-top: 26px; display: flex; flex-direction: column; gap: 20px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row svg { width: 22px; height: 22px; color: var(--ember); flex: none; margin-top: 3px; }
.info-row__k { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ash-dim); }
.info-row__v { color: var(--cream); font-weight: 600; }
.info-row__v a:hover { color: var(--ember-bright); }
.find__strap { color: var(--ember-bright); font-weight: 700; margin-top: 8px; letter-spacing: .02em; }
.find__cta { margin-top: 30px; align-self: flex-start; }
.map-card {
  position: relative;
  display: block;
  border: 1px solid var(--char-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  background: var(--char-800);
  transition: border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.map-card:hover { border-color: var(--ember); box-shadow: 0 20px 50px -28px rgba(255,90,31,.55); }
.map-card iframe { width: 100%; height: 100%; min-height: 340px; border: 0; pointer-events: none; filter: grayscale(.35) contrast(1.05) brightness(.95); }
.map-card__pin {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .02em;
  color: var(--cream);
  background: rgba(14,11,10,.82);
  border: 1px solid var(--char-600);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.map-card__pin svg { width: 18px; height: 18px; color: var(--ember); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--char-850);
  border-top: 1px solid var(--char-700);
  padding-block: 56px 34px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand img { width: auto; height: 32px; }
.footer__brand span { font-family: var(--font-body); font-weight: 800; font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--ember-bright); padding-left: 12px; border-left: 1px solid var(--char-600); }
.footer__tag { margin-top: 12px; color: var(--ash-dim); max-width: 34ch; font-size: .94rem; }
.footer h4 { font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ember-bright); margin: 0 0 14px; }
.footer a { color: var(--ash); }
.footer a:hover { color: var(--cream); }
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--char-700);
  border-radius: 11px;
  color: var(--ash);
  transition: border-color var(--t-med) var(--ease), color var(--t-med) var(--ease), transform var(--t-fast) var(--ease);
}
.socials a:hover { border-color: var(--ember); color: var(--ember-bright); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; }
.footer__bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--char-700);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--ash-dim);
  font-size: .86rem;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 4vw, 48px);
  background: rgba(8, 6, 5, .94);
  backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; }
.lightbox__stage {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  touch-action: none;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 10px;
  transform-origin: center;
  transition: transform 80ms linear;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.lightbox__img.is-panning { cursor: grabbing; transition: none; }
.lightbox__bar {
  position: absolute;
  top: 16px; right: 16px;
  display: flex;
  gap: 10px;
}
.lightbox__btn {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  color: var(--cream);
  background: rgba(20,15,14,.7);
  border: 1px solid var(--char-600);
  border-radius: 11px;
}
.lightbox__btn:hover { border-color: var(--ember); color: var(--ember-bright); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: rgba(20,15,14,.7);
  border: 1px solid var(--char-600);
  border-radius: 50%;
  color: var(--cream);
}
.lightbox__nav:hover { border-color: var(--ember); color: var(--ember-bright); }
.lightbox__nav--prev { left: 14px; }
.lightbox__nav--next { right: 14px; }
.lightbox__hint {
  position: absolute;
  left: 50%; bottom: 16px; transform: translateX(-50%);
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ash-dim);
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity .7s var(--ease-lux), transform .7s var(--ease-lux);
  will-change: transform, opacity;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .flav__grid { grid-template-columns: 1fr; }
  .flav__handwrap { order: -1; aspect-ratio: 4 / 4.4; max-width: 360px; margin-inline: auto; }
  .app-grid { grid-template-columns: 1fr; }
  .qr-card { order: -1; }
  .find__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gframe--wide { grid-column: span 2; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .footer__grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gframe--wide { grid-column: span 1; }
  .gframe--wide .gframe__media { aspect-ratio: 4 / 3; }
}
@media (max-width: 420px) {
  .hero__ctas .btn, .order-band__ctas .btn { width: 100%; }
}

/* ============================================================
   PREMIUM IMAGE MOTION (cohesive system)
   ============================================================ */
/* blur-up: any [data-blur] image sharpens + settles in once loaded */
[data-blur] {
  filter: blur(16px);
  opacity: 0;
  transform: scale(1.06);
  transition: filter .7s var(--ease-lux), opacity .7s var(--ease-lux), transform .7s var(--ease-lux);
}
[data-blur].is-loaded { filter: blur(0); opacity: 1; transform: scale(1.0001); }

/* ============================================================
   FOOD GALLERY
   ============================================================ */
.gallery { background: linear-gradient(180deg, var(--char-900), var(--char-850)); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gframe {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--char-700);
  background: var(--char-850);
  transform-style: preserve-3d;
  transition: border-color var(--t-med) var(--ease-lux),
              box-shadow var(--t-med) var(--ease-lux),
              transform var(--t-fast) var(--ease-lux);
  will-change: transform;
}
.gframe--wide { grid-column: span 2; }
.gframe__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: radial-gradient(78% 70% at 50% 34%, #ffffff, #f4efe7 68%, #e7ddd0);
}
.gframe--wide .gframe__media { aspect-ratio: 16 / 9; }
.gimg {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-lux), filter .7s var(--ease-lux), opacity .7s var(--ease-lux);
  will-change: transform;
}
.gframe:hover, .gframe:focus-within {
  border-color: var(--ember);
  box-shadow: 0 26px 64px -30px rgba(255, 90, 31, .6);
}
.gframe:hover .gimg, .gframe:focus-within .gimg { transform: scale(1.07); }
/* soft light sweep on hover */
.gframe__sweep {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.4) 48%, transparent 64%);
  transform: translateX(-130%);
  transition: transform 1s var(--ease-lux);
}
.gframe:hover .gframe__sweep, .gframe:focus-within .gframe__sweep { transform: translateX(130%); }
.gframe__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 30px 18px 14px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.18rem;
  letter-spacing: .02em;
  color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(14,11,10,.78));
  text-shadow: 0 2px 16px rgba(0,0,0,.7);
}
/* slow Ken Burns on the feature image */
.gframe--wide .gimg.is-loaded { animation: kenBurns 20s ease-in-out infinite alternate; }
.gframe--wide:hover .gimg { animation-play-state: paused; }

/* menu pages get the same restrained zoom + sweep */
.menu-page { overflow: hidden; }
.menu-page img { transition: transform .8s var(--ease-lux); will-change: transform; }
.menu-page:hover img { transform: scale(1.04); }

/* ============================================================
   HERO — flame atmosphere (sits behind content, below the scrim)
   ============================================================ */
.hero__atmos { position: absolute; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }
.flame-lick {
  position: absolute; bottom: -14%;
  width: 50%; height: 95%;
  filter: blur(36px);
  mix-blend-mode: screen;
  opacity: .5;
  will-change: transform, opacity;
}
.flame-lick--l {
  left: -12%;
  background:
    radial-gradient(36% 58% at 32% 100%, rgba(255,138,61,.55), transparent 70%),
    radial-gradient(26% 46% at 24% 86%, rgba(225,29,42,.42), transparent 72%),
    radial-gradient(20% 38% at 40% 74%, rgba(255,90,31,.4), transparent 74%);
  animation: lickL 7.5s ease-in-out infinite;
}
.flame-lick--r {
  right: -12%;
  background:
    radial-gradient(36% 58% at 68% 100%, rgba(255,138,61,.55), transparent 70%),
    radial-gradient(26% 46% at 76% 86%, rgba(225,29,42,.42), transparent 72%),
    radial-gradient(20% 38% at 60% 74%, rgba(255,110,40,.4), transparent 74%);
  animation: lickR 8.5s ease-in-out infinite;
}
.hero__haze {
  position: absolute; left: -10%; right: -10%; bottom: -8%; height: 48%;
  background:
    radial-gradient(58% 100% at 50% 100%, rgba(122,112,106,.18), transparent 72%),
    radial-gradient(92% 84% at 50% 112%, rgba(82,74,70,.14), transparent 76%);
  filter: blur(28px);
  mix-blend-mode: screen;
  animation: hazeDrift 12s ease-in-out infinite;
}
@media (max-width: 640px) { .flame-lick { width: 64%; opacity: .42; } }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  [data-blur] { opacity: 1; filter: none; transform: none; }
  .hero__layer--flame, .flame-lick, .hero__haze { animation: none; }
}

/* ---- Keyframes ---- */
@keyframes flameBreathe {
  0%, 100% { transform: translateY(0) scaleY(1); opacity: .92; }
  50% { transform: translateY(-2%) scaleY(1.05); opacity: 1; }
}
@keyframes flicker {
  0%, 100% { transform: scaleY(1) scaleX(1); }
  25% { transform: scaleY(1.04) scaleX(.985); }
  50% { transform: scaleY(.97) scaleX(1.015); }
  75% { transform: scaleY(1.03) scaleX(.99); }
}
@keyframes roostFloat {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50% { transform: translateY(-15px) rotate(1.2deg); }
}
@keyframes roostGlow {
  0%, 100% { opacity: .8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
@keyframes neonPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .72; }
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(139,195,74,.6); }
  70% { box-shadow: 0 0 0 8px rgba(139,195,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(139,195,74,0); }
}
@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; }
  40% { transform: scaleY(1); transform-origin: top; }
  60% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Premium motion keyframes ---- */
@keyframes kenBurns {
  0%   { transform: scale(1.001) translate3d(0, 0, 0); }
  100% { transform: scale(1.09) translate3d(-1.5%, -1.5%, 0); }
}
@keyframes lickL {
  0%, 100% { transform: translate3d(0, 0, 0) scaleY(1); opacity: .46; }
  50%      { transform: translate3d(2%, -3%, 0) scaleY(1.06); opacity: .6; }
}
@keyframes lickR {
  0%, 100% { transform: translate3d(0, 0, 0) scaleY(1); opacity: .46; }
  50%      { transform: translate3d(-2%, -3.5%, 0) scaleY(1.07); opacity: .58; }
}
@keyframes hazeDrift {
  0%, 100% { transform: translate3d(-1.5%, 0, 0); opacity: .8; }
  50%      { transform: translate3d(1.5%, -3%, 0); opacity: 1; }
}
@keyframes wipeIn {
  0%   { clip-path: inset(0 0 0 100%); opacity: 0; }
  60%  { opacity: 1; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; }
}

/* ---- Gallery responsive (placed last so it overrides the base grid) ---- */
@media (max-width: 960px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gframe--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gframe--wide { grid-column: span 1; }
  .gframe--wide .gframe__media { aspect-ratio: 4 / 3; }
}
