/* =========================================================
   WHITE CAT BURGER — Pass 1 premium rebuild
   Tokens grounded in the brand's own assets: near-black base,
   warm cream type, gold bun-arch accent from the logo.
   ========================================================= */

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

:root{
  --black:      #0e0d0c;
  --board:      #1a1816;
  --board-elev: #232019;
  --hairline:   #33302a;
  --gold:       #deba81;
  --gold-deep:  #b9905a;
  --cream:      #f6f1e7;
  --cream-dim:  #cdc4b3;
  --muted:      #928a79;
  --veg:        #5a9552;
  --nonveg:     #c1442c;
  --nonveg-text:#e86a4a;
  --whatsapp:   #4a8f6c;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;

  --wrap: 1220px;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
/* Accounts for the fixed 78px header on any anchor jump — native browser
   scroll (used when Lenis/GSAP is unavailable or reduced-motion is on) and
   the JS-driven Lenis offset both benefit from this; harmless overlap. */
#menu, #about, #gallery, #location, #hero { scroll-margin-top: 90px; }
body{
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Removed: a fixed, full-viewport mix-blend-mode grain overlay used to sit
   here. It requires the browser to recomposite the entire page on every
   scroll frame (mix-blend-mode forces a blend calculation against
   everything underneath), which combined with the scroll-linked GSAP
   parallax is a well-known cause of severe jank on mid/low-end mobile —
   exactly the "heavy, barely scrollable" symptom reported after deploy.
   The visual gain was marginal; the risk wasn't worth it. */
img{ max-width: 100%; display:block; }
picture{ display: block; line-height: 0; min-width: 0; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4{ margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: .01em; }
p { margin: 0; }

.wrap{ max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--gold); color:var(--black);
  padding:10px 16px; z-index: 999; font-weight:600;
}
.skip-link:focus{ left: 12px; top: 12px; }
:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

.eyebrow{
  font-family: var(--font-body); font-size: .8rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 500;
}
.eyebrow--light{ color: var(--cream); opacity: .8; }

/* ============ BUTTONS ============ */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; font-family: var(--font-body); font-weight: 600; font-size: .92rem;
  letter-spacing: .02em; border-radius: 2px; border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  position: relative; overflow: hidden;
}
.btn::after{
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at var(--bx,50%) var(--by,50%), rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 60%);
  opacity: 0; transition: opacity .5s ease; pointer-events: none;
}
.btn:active::after{ opacity: 1; transition: none; }
.btn:active{ transform: translateY(1px); }
.btn-primary{ background: var(--gold); color: var(--black); }
.btn-primary:hover{ background: var(--cream); }
.btn-primary:disabled{ background: var(--hairline); color: var(--muted); cursor: not-allowed; opacity: .7; }
.btn-outline{ border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover{ background: var(--gold); color: var(--black); }
.btn-sm{ padding: 10px 20px; font-size: .8rem; }
.btn-block{ width: 100%; }

/* ============ LOADER ============ */
.loader{
  position: fixed; inset: 0; z-index: 500;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  transition: opacity .45s ease, visibility .45s ease;
}
.loader-mark{ width: 56px; height: 56px; object-fit: contain; margin-bottom: 14px; animation: loader-pulse 1.1s ease-in-out infinite; }
.loader-word{ font-family: var(--font-display); font-size: 1.4rem; letter-spacing: .12em; color: var(--cream); }
.loader-word--sub{ color: var(--gold); font-size: 1rem; }
@keyframes loader-pulse{ 0%,100%{ transform: scale(1); opacity: .85; } 50%{ transform: scale(1.08); opacity: 1; } }
.loader.is-hidden{ opacity: 0; visibility: hidden; }
@media (prefers-reduced-motion: reduce){ .loader-mark{ animation: none; } }

/* ============ HEADER ============ */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
  background: rgba(14,13,12,.88);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--hairline);
}
.header-inner{ display: flex; align-items: center; gap: 24px; height: 78px; }
.brand{ display:flex; align-items:center; margin-right: auto; }
.brand-logo{ height: 38px; width: auto; transition: transform .35s ease; }
.brand:hover .brand-logo{ transform: rotate(-4deg) scale(1.05); }
.primary-nav{ display:none; gap: 30px; }
.primary-nav a{
  font-size: .9rem; font-weight: 500; color: var(--cream-dim); position: relative; padding: 6px 0;
  text-transform: uppercase; letter-spacing: .04em;
}
.primary-nav a:hover{ color: var(--cream); }
.primary-nav a::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.primary-nav a:hover::after{ transform: scaleX(1); }
.primary-nav a.is-current{ color: var(--gold); }
.primary-nav a.is-current::after{ transform: scaleX(1); }
.header-cta{ display:none; }

/* Scroll progress bar */
.scroll-progress{
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 70;
  background: transparent; pointer-events: none;
}
.scroll-progress span{
  display: block; height: 100%; width: 100%; background: var(--gold);
  transform: scaleX(0); transform-origin: left; will-change: transform;
}
@media (prefers-reduced-motion: reduce){ .scroll-progress{ display: none; } }

/* Nav sliding indicator (GSAP-driven; harmless if unused) */
.primary-nav{ position: relative; }
.nav-indicator{
  position: absolute; bottom: -1px; left: 0; height: 2px; width: 0;
  background: var(--gold); opacity: 0; pointer-events: none;
}

/* Hero headline line-mask reveal */
.hero h1{ font-size: clamp(3rem, 9vw, 6.4rem); line-height: .92; color: var(--cream); }
.hero h1 .line-mask{ display: block; overflow: hidden; }
.hero h1 .line{ display: block; }

.nav-toggle{
  width: 44px; height: 44px; background: none; border: none;
  display: flex; flex-direction: column; justify-content: center; gap: 4px; cursor: pointer; padding: 0;
}
.nav-toggle span{ display:block; width: 100%; transition: transform .25s ease, opacity .25s ease, background-color .25s ease; }
.nav-toggle span:nth-child(1){
  height: 5px; border-radius: 6px 6px 1px 1px; background-color: var(--gold);
  background-image:
    radial-gradient(circle at 22% 50%, var(--board) 1px, transparent 1.4px),
    radial-gradient(circle at 50% 42%, var(--board) 1px, transparent 1.4px),
    radial-gradient(circle at 78% 50%, var(--board) 1px, transparent 1.4px);
}
.nav-toggle span:nth-child(2){ height: 6px; border-radius: 2px; background-color: #8a4a2a; }
.nav-toggle span:nth-child(3){ height: 5px; border-radius: 1px 1px 6px 6px; background-color: var(--gold); }
.nav-toggle[aria-expanded="true"] span{ background-image: none; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(9px) rotate(45deg); background-color: var(--cream); border-radius: 2px; }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); background-color: var(--cream); border-radius: 2px; }

.mobile-nav{
  position: fixed; top: 78px; left:0; right:0; max-height: calc(100vh - 78px); overflow-y: auto;
  background: var(--board); border-bottom: 1px solid var(--hairline);
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
  display: flex; flex-direction: column;
}
.mobile-nav.is-open{ transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav a{ padding: 17px 24px; border-top: 1px solid var(--hairline); font-weight: 500; color: var(--cream-dim); text-transform: uppercase; letter-spacing: .03em; font-size: .92rem; }
.mobile-order{ color: var(--gold) !important; font-weight: 700 !important; }
.mobile-call{ color: var(--cream) !important; }

@media (min-width: 900px){
  .primary-nav{ display:flex; }
  .header-cta{ display:inline-flex; }
  .nav-toggle{ display:none; }
  .mobile-nav{ display:none; }
}

/* ============ HERO ============ */
.hero{
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden;
}
@media (max-height: 620px){ .hero{ min-height: auto; padding-bottom: 60px; } }
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{
  width:100%; height:100%; object-fit: cover; object-position: center 30%;
  animation: hero-zoom 26s ease-in-out infinite alternate;
}
@keyframes hero-zoom{ 0%{ transform: scale(1); } 100%{ transform: scale(1.08); } }
@media (prefers-reduced-motion: reduce){ .hero-media img{ animation: none; } }
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(0deg, rgba(14,13,12,.97) 5%, rgba(14,13,12,.55) 45%, rgba(14,13,12,.32) 100%),
    linear-gradient(100deg, rgba(14,13,12,.9) 0%, rgba(14,13,12,.12) 55%);
}
.hero-cat{ position:absolute; top: 104px; right: 6%; width: 88px; opacity: .9; z-index: 1; animation: float 5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce){ .hero-cat{ animation: none; } }
@keyframes float{ 0%,100%{ transform: translateY(0) rotate(-4deg); } 50%{ transform: translateY(-14px) rotate(4deg); } }
.hero-content{ position: relative; z-index: 2; padding: 140px 0 88px; max-width: 720px; }
@media (max-width: 480px){ .hero-content{ padding-top: 110px; } }
.hero-label{ font-family: var(--font-body); font-size: .85rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.hero-copy{ margin-top: 20px; font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--cream-dim); max-width: 46ch; }
.hero-actions{ display:flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

[data-reveal-hero]{ opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.hero.is-loaded [data-reveal-hero]{ opacity: 1; transform: translateY(0); }
.hero.is-loaded [data-reveal-hero]:nth-of-type(1){ transition-delay: .05s; }
.hero.is-loaded [data-reveal-hero]:nth-of-type(2){ transition-delay: .15s; }
.hero.is-loaded [data-reveal-hero]:nth-of-type(3){ transition-delay: .28s; }
.hero.is-loaded [data-reveal-hero]:nth-of-type(4){ transition-delay: .4s; }
@media (prefers-reduced-motion: reduce){ [data-reveal-hero]{ opacity: 1; transform: none; transition: none; } }

.scroll-cue{ position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-cue span{
  display: block; width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent);
  animation: cue-drop 1.8s ease-in-out infinite;
}
@keyframes cue-drop{ 0%{ opacity: 0; transform: translateY(-8px); } 40%{ opacity: 1; } 100%{ opacity: 0; transform: translateY(14px); } }
@media (prefers-reduced-motion: reduce){ .scroll-cue span{ animation: none; opacity: .6; } }

/* ============ SECTION HEAD (shared) ============ */
.section-head{ margin-bottom: 44px; max-width: 60ch; }
.section-head h2{ font-size: clamp(2rem, 4vw, 3rem); }
.section-sub{ color: var(--cream-dim); margin-top: 14px; }

/* ============ SCROLL-REVEAL ============ */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--reveal-delay, 0s); }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-pop{ transform: translateY(18px) scale(.94); }
.reveal-pop.is-visible{ transform: translateY(0) scale(1); }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity: 1; transform: none; transition: none; } }

[data-word-reveal]{ opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; transition-delay: var(--word-delay, 0s); }
[data-word-reveal].is-visible{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){ [data-word-reveal]{ opacity: 1; transform: none; transition: none; } }

/* ============ BRAND STATEMENT ============ */
.statement{ padding: 84px 0; background: var(--black); text-align: center; }
.statement-line{ font-size: clamp(2.6rem, 8vw, 5.5rem); line-height: 1.02; color: var(--cream); }
.statement-sub{ font-family: var(--font-script); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--gold); margin-top: 18px; }
.statement-body{ max-width: 62ch; margin: 50px auto 0; text-align: left; }
.statement-body p{ color: var(--cream-dim); margin-bottom: 16px; }
@media (max-width: 640px){ .statement{ padding: 84px 0; } }

/* ============ SIGNATURE BURGERS (product rows) ============ */
.showcase{ padding: 80px 0 60px; background: var(--board); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
@media (max-width: 640px){ .showcase{ padding: 72px 0 60px; } }

.product-list{ display: flex; flex-direction: column; }
.product-row{
  display: grid; grid-template-columns: 1fr; gap: 24px;
  padding: 40px 24px; max-width: var(--wrap); margin: 0 auto;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
}
.product-row:first-child{ border-top: 1px solid var(--hairline); }
.product-media{ overflow: hidden; border-radius: var(--radius); }
.product-media picture{ height: 100%; }
.product-media img{ width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/9; transition: transform .6s ease; }
.product-row:hover .product-media img{ transform: scale(1.04); }
.product-info h3{ font-family: var(--font-body); font-weight: 700; font-size: 1.5rem; color: var(--cream); margin: 10px 0 12px; }
.product-info p{ color: var(--cream-dim); max-width: 46ch; margin-bottom: 20px; }
.product-foot{ display: flex; align-items: center; gap: 20px; }
.product-info .price{ font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); }

@media (min-width: 860px){
  .product-row{ grid-template-columns: 1.2fr 1fr; gap: 56px; padding: 56px 24px; }
  .product-row--reverse{ grid-template-columns: 1fr 1.2fr; }
  .product-row--reverse .product-media{ order: 2; }
  .product-row--reverse .product-info{ order: 1; }
}

.rest-of-menu{ margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--hairline); }
.rest-of-menu h3{ font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; color: var(--cream-dim); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 26px; }

.menu-tabs{ display:flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; border-bottom: 1px solid var(--hairline); padding-bottom: 18px; }
.tab-btn{
  background: none; border: 1px solid var(--hairline); color: var(--cream-dim); padding: 10px 18px;
  border-radius: 999px; cursor: pointer; font-family: var(--font-body); font-size: .88rem; font-weight: 500;
  transition: all .2s ease;
}
.tab-btn:hover{ border-color: var(--gold); color: var(--cream); }
.tab-btn.is-active{ background: var(--gold); border-color: var(--gold); color: var(--black); font-weight: 600; }

.menu-panel{ padding-top: 30px; transition: opacity .35s ease; }
.menu-panel[hidden]{ display: none; }
.menu-panel.is-entering{ opacity: 0; }
.panel-note{ color: var(--cream-dim); margin-bottom: 22px; font-style: italic; }

.menu-list{ display: block; }
.menu-item{ padding: 20px 0; border-bottom: 1px solid var(--hairline); }
.menu-item:first-child{ padding-top: 0; }
.menu-item-head{ display: flex; align-items: baseline; gap: 12px; }
.menu-item-head h4{ font-family: var(--font-body); font-weight: 600; font-size: 1.08rem; color: var(--cream); flex: 1; }
.menu-item .price{ font-family: var(--font-display); font-size: 1.2rem; letter-spacing: .01em; color: var(--gold); white-space: nowrap; }
.price-ask{ font-family: var(--font-body); font-size: .82rem; color: var(--cream-dim); font-style: italic; }
.menu-item p{ color: var(--cream-dim); margin-top: 6px; max-width: 62ch; font-size: .93rem; }
.menu-list--shakes{ display: grid; grid-template-columns: 1fr; }
@media (min-width: 640px){ .menu-list--shakes{ grid-template-columns: 1fr 1fr; column-gap: 40px; } }
@media (max-width: 560px){
  .menu-item{ padding: 14px 0; }
  .menu-item-head h4{ font-size: 1rem; }
  .menu-item p{ font-size: .87rem; margin-top: 4px; line-height: 1.4; }
  .rest-of-menu{ margin-top: 36px; padding-top: 30px; }
}

.dot{ width: 11px; height: 11px; flex: none; border-radius: 2px; }
.dot-veg{ background: var(--veg); }
.dot-nonveg{ background: var(--nonveg); }
.tag{
  display:inline-block; font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: .04em;
  color: var(--nonveg-text); border: 1px solid var(--nonveg-text); padding: 2px 8px; border-radius: 999px;
  margin-left: 8px; vertical-align: middle;
}

/* ============ 420 FEATURE ============ */
.feature-420{ position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.feature-420-media{ position: absolute; inset: 0; z-index: 0; }
.feature-420-media img{ width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.feature-420-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(14,13,12,.95) 20%, rgba(14,13,12,.5) 60%, rgba(14,13,12,.2) 100%);
}
.feature-420-content{ position: relative; z-index: 2; max-width: 620px; padding: 90px 24px; }
.feature-420-content h2{ font-size: clamp(4rem, 12vw, 8rem); line-height: .85; color: var(--gold); }
.feature-420-tag{ font-size: clamp(1.4rem, 3vw, 2rem); color: var(--cream); margin-top: 6px; }
.ingredient-list{ display: flex; flex-wrap: wrap; gap: 10px 14px; margin: 26px 0; }
.ingredient-list li{
  font-family: var(--font-body); font-weight: 600; font-size: .9rem; color: var(--cream);
  border: 1px solid var(--hairline); padding: 8px 16px; border-radius: 999px; text-transform: uppercase; letter-spacing: .03em;
}
.feature-420-note{ color: var(--cream-dim); font-style: italic; margin-bottom: 28px; }
.feature-420-foot{ display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.price--lg{ font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
@media (max-width: 640px){ .feature-420{ min-height: auto; padding: 40px 0; } }

/* ============ WINGS ============ */
.wings{ padding: 80px 0; background: var(--black); }
.wings-grid{ display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 780px){ .wings-grid{ grid-template-columns: repeat(3, 1fr); } }
.wing-card{ border-radius: var(--radius); overflow: hidden; background: var(--board); border: 1px solid var(--hairline); }
.wing-card picture{ display: block; }
.wing-card img{ width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.wing-card:hover img{ transform: scale(1.06); }
.wing-card-body{ padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.wing-card-body h3{ font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--cream); }
@media (max-width: 640px){ .wings{ padding: 72px 0; } }

/* ============ CHICKEN + SIDES ============ */
.sides{ padding: 76px 0; background: var(--board); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.sides-grid{ display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 780px){ .sides-grid{ grid-template-columns: repeat(3, 1fr); } .side-card--wide{ grid-column: span 3; } }
.side-card{ border-radius: var(--radius); overflow: hidden; background: var(--black); border: 1px solid var(--hairline); }
.side-card--wide{ display: grid; grid-template-columns: 1fr; }
@media (min-width: 640px){ .side-card--wide{ grid-template-columns: 1.4fr 1fr; align-items: center; } }
.side-card img{ width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.side-card--wide img{ aspect-ratio: 16/10; }
.side-card:hover img{ transform: scale(1.05); }
.side-card-body{ padding: 22px; }
.side-card-body h3{ font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; color: var(--cream); margin-bottom: 8px; }
.side-card-body p{ color: var(--cream-dim); font-size: .92rem; margin-bottom: 12px; }
@media (max-width: 640px){ .sides{ padding: 68px 0; } }

/* ============ OTHER FOOD ============ */
.other-food{ padding: 56px 0; background: var(--black); }
.other-food-grid{ display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px){ .other-food-grid{ grid-template-columns: 1fr 1fr; } }
.other-card{ display: flex; align-items: center; gap: 18px; background: var(--board); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; }
.other-card img{ width: 130px; height: 110px; object-fit: cover; flex: none; }
.other-card-body{ padding: 14px 18px 14px 0; display: flex; flex-direction: column; gap: 6px; }
.other-card-body h3{ font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--cream); display: flex; align-items: center; gap: 8px; }

/* ============ SHAKES ============ */
.shakes{ padding: 90px 0; background: var(--board); border-top: 1px solid var(--hairline); text-align: center; }
.shakes-grid{ max-width: 640px; margin: 0 auto; }
.shakes-copy h2{ font-size: clamp(2.2rem, 4.5vw, 3.2rem); line-height: 1.08; margin-bottom: 34px; }
.shake-list{ display: grid; grid-template-columns: 1fr; gap: 4px; text-align: left; }
.shake-list li{ display: flex; justify-content: space-between; padding: 14px 4px; border-bottom: 1px solid var(--hairline); font-family: var(--font-body); }
.shake-list span{ color: var(--cream); font-weight: 500; }
.shake-list em{ font-style: normal; color: var(--gold); font-family: var(--font-display); font-size: 1.1rem; }
@media (min-width: 560px){ .shake-list{ grid-template-columns: 1fr 1fr; column-gap: 32px; } }
@media (max-width: 640px){ .shakes{ padding: 64px 0; } }

/* ============ CRAVING METER ============ */
.craving{ padding: 80px 0; background: var(--black); text-align: center; position: relative; overflow: hidden; }
.craving::before{
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 40%, rgba(222,186,129, calc(var(--craving-glow, .3) * .35)) 0%, transparent 60%);
  transition: background .2s ease;
}
.craving .wrap{ position: relative; z-index: 1; }
.craving h2{ font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 46px; }
.craving-widget{ max-width: 480px; margin: 0 auto; --craving-glow: .3; }
.craving-readout{ font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--gold); min-height: 2.4em; display: flex; align-items: center; justify-content: center; }
.craving-widget input[type="range"]{
  width: 100%; margin: 24px 0 10px; -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 999px; background: var(--hairline); outline: none;
}
.craving-widget input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance: none; appearance: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); cursor: pointer; border: 3px solid var(--black); box-shadow: 0 0 0 1px var(--gold);
}
.craving-widget input[type="range"]::-moz-range-thumb{
  width: 28px; height: 28px; border-radius: 50%; background: var(--gold); cursor: pointer; border: 3px solid var(--black);
}
.craving-scale{ display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); margin-bottom: 34px; }
@media (max-width: 640px){ .craving{ padding: 72px 0; } }

/* ============ GALLERY ============ */
.gallery{ padding: 80px 0; background: var(--board); border-top: 1px solid var(--hairline); }
.gallery-grid{ display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; grid-auto-flow: dense; gap: 10px; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.gallery-item{ border: none; padding: 0; background: none; cursor: pointer; overflow: hidden; border-radius: var(--radius); position: relative; width: 100%; height: 100%; }
.gallery-item img{ width:100%; height:100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item.span-2{ grid-column: span 2; }
@media (min-width: 720px){ .gallery-grid{ grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; } }
.gallery-follow{ margin-top: 40px; text-align: center; }
@media (max-width: 640px){ .gallery{ padding: 72px 0; } }

/* ============ REVIEWS ============ */
.reviews{ padding: 72px 0; background: var(--black); text-align: center; }
.reviews .section-head{ margin-left: auto; margin-right: auto; }
.reviews-actions{ display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
@media (max-width: 640px){ .reviews{ padding: 68px 0; } }

/* ============ LOCATION ============ */
.location{ padding: 76px 0 0; background: var(--board); border-top: 1px solid var(--hairline); }
.location-grid{ display: grid; gap: 44px; padding-bottom: 64px; }
.location h2{ font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 18px; }
.location-address{ color: var(--cream-dim); margin-bottom: 12px; }
.hours-table{ width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.hours-table th, .hours-table td{ text-align: left; padding: 10px 0; border-bottom: 1px solid var(--hairline); font-weight: 400; font-size: .92rem; color: var(--cream-dim); }
.hours-table th{ color: var(--cream); font-weight: 500; width: 40%; }
.hours-table td.closed{ color: var(--nonveg-text); }
.hours-note{ display:block; font-size: .75rem; color: var(--gold); margin-top: 2px; }
.hours-table tr.is-today th, .hours-table tr.is-today td{ color: var(--gold); position: relative; }
.hours-table tr.is-today th::before{ content: ''; position: absolute; left: -14px; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hours-table tr.is-today td.closed{ color: var(--nonveg-text); }
.location-actions{ display:flex; flex-wrap: wrap; gap: 14px; }
.location-map{ min-height: 320px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); }
.location-map iframe{ width:100%; height:100%; min-height: 320px; border: 0; filter: grayscale(.3) contrast(1.05); }
@media (min-width: 900px){ .location-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .location{ padding: 68px 0 0; } .location-grid{ padding-bottom: 60px; } }

/* Booking (preserved functionality, restyled) */
.booking-wrap{ padding-bottom: 72px; border-top: 1px solid var(--hairline); padding-top: 64px; }
@media (max-width: 640px){ .booking-wrap{ padding: 64px 0; } }
.booking-grid{ display: grid; gap: 56px; }
.booking-intro h2{ font-size: clamp(2rem, 3.6vw, 2.8rem); line-height: 1.1; margin: 6px 0 20px; }
.booking-intro p{ color: var(--cream-dim); max-width: 46ch; }
.booking-facts{ margin-top: 26px; display:flex; flex-direction: column; gap: 12px; }
.booking-facts li{ color: var(--cream-dim); font-size: .95rem; padding-left: 20px; position: relative; }
.booking-facts li::before{ content:'—'; position:absolute; left:0; color: var(--gold); }
.booking-facts strong{ color: var(--cream); }
.call-instead{ display:inline-block; margin-top: 30px; color: var(--gold); font-weight: 600; font-size: .9rem; }
.call-instead:hover{ color: var(--cream); }
.arrow-glyph{ display: inline-block; transition: transform .25s ease; }
a:hover .arrow-glyph{ transform: translateX(5px); }

.ticket{ position: relative; background: var(--board-elev); border: 1px solid var(--hairline); border-radius: 10px; padding: 40px 32px; }
.ticket-title{ font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); margin-bottom: 4px; }
.ticket-notch{ position:absolute; width: 26px; height: 26px; background: var(--board); border-radius: 50%; left: 50%; transform: translateX(-50%); }
.ticket-notch-top{ top: -13px; }
.ticket-notch-bottom{ bottom: -13px; }
#bookingFormFields{ display: flex; flex-direction: column; gap: 18px; }
#bookingFormFields[hidden]{ display: none; }
.field{ display:flex; flex-direction: column; gap: 8px; flex: 1; }
.field span{ font-size: .8rem; color: var(--cream-dim); font-weight: 500; }
.field input, .field select{ background: var(--black); border: 1px solid var(--hairline); color: var(--cream); padding: 13px 14px; border-radius: var(--radius); font-family: var(--font-body); font-size: .95rem; width: 100%; }
.field input:focus, .field select:focus{ border-color: var(--gold); }
.field-row{ display:flex; gap: 16px; flex-wrap: wrap; }
.field-row .field{ min-width: 140px; }
.field-error{ color: #ea7868; font-size: .85rem; margin-top: -6px; }
.field-note{ color: var(--gold); font-size: .85rem; margin-top: -6px; }
.stepper{ display: flex; align-items: stretch; border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; background: var(--black); }
.stepper-btn{ width: 44px; flex: none; background: var(--board-elev); border: none; color: var(--cream); font-size: 1.3rem; line-height: 1; cursor: pointer; transition: background .2s ease, color .2s ease; }
.stepper-btn:hover{ background: var(--gold); color: var(--black); }
.stepper input{ flex: 1; text-align: center; border: none; background: transparent; padding: 13px 8px; color: var(--cream); font-size: .95rem; }
.stepper input:focus{ outline: none; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button{ -webkit-appearance: none; margin: 0; }
.chip-group{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip{ background: var(--black); border: 1px solid var(--hairline); color: var(--cream-dim); padding: 9px 14px; border-radius: 999px; font-size: .82rem; cursor: pointer; font-family: var(--font-body); transition: all .2s ease; }
.chip:hover{ border-color: var(--gold); color: var(--cream); }
.chip.is-selected{ background: var(--gold); border-color: var(--gold); color: var(--black); font-weight: 600; }
.ticket-actions{ display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
@media (min-width: 480px){ .ticket-actions{ flex-direction: row; } .ticket-actions .btn{ flex: 1; } }
.booking-confirmation{ display: flex; flex-direction: column; gap: 14px; text-align: center; padding: 8px 0 4px; }
.booking-confirmation[hidden]{ display: none; }
.booking-confirmation p{ color: var(--cream-dim); }
.confirmation-summary{ color: var(--gold); font-weight: 600; font-size: 1.05rem; }
@media (min-width: 940px){ .booking-grid{ grid-template-columns: 1fr 1fr; align-items: center; } }

/* ============ SISTER BRAND ============ */

/* ============ FOOTER ============ */
.site-footer{ background: var(--black); padding: 80px 0 0; border-top: 1px solid var(--hairline); }
.footer-top{ text-align: center; margin-bottom: 60px; }
.footer-logo{ height: 64px; margin: 0 auto; }
.footer-grid{ display: grid; gap: 40px; padding-bottom: 50px; }
.footer-col{ display:flex; flex-direction: column; gap: 12px; }
.footer-col h4{ font-family: var(--font-body); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 600; }
.footer-col a:not(.btn){ color: var(--cream-dim); font-size: .95rem; }
.footer-col a:not(.btn):hover{ color: var(--cream); }
.footer-col--cta{ gap: 14px; }
.footer-bottom{ border-top: 1px solid var(--hairline); padding: 22px 24px; }
.footer-bottom p{ color: var(--muted); font-size: .8rem; text-align: center; }
@media (min-width: 720px){ .footer-grid{ grid-template-columns: 1fr 1fr 1fr; } }

/* ============ LIGHTBOX ============ */
.lightbox{ position: fixed; inset: 0; z-index: 200; background: rgba(6,5,4,.94); display: flex; align-items: center; justify-content: center; padding: 30px; }
.lightbox[hidden]{ display:none; }
.lightbox img{ max-width: 100%; max-height: 88vh; border-radius: var(--radius); }
.lightbox-close{ position: absolute; top: 22px; right: 26px; background: none; border: 1px solid var(--hairline); color: var(--cream); width: 44px; height: 44px; border-radius: 50%; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.lightbox-close:hover{ border-color: var(--gold); color: var(--gold); }

/* ============ FLOATING CONTACT ============ */
.fab-stack{ position: fixed; right: 18px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 12px; transition: opacity .25s ease, transform .25s ease; }
.fab-stack.is-dimmed{ opacity: 0; transform: translateX(12px); pointer-events: none; }
.fab{ width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--black); box-shadow: 0 8px 22px rgba(0,0,0,.45); position: relative; overflow: hidden; background: #2fae63; border: 2px solid rgba(255,255,255,.14); }
.fab img{ width: 100%; height: 100%; object-fit: cover; }
.fab-call::before, .fab-whatsapp::before{ content:''; position:absolute; inset:0; border-radius:50%; box-shadow: 0 0 0 0 #2fae63; opacity:.5; animation: fab-pulse 2.6s ease-out infinite; }
@keyframes fab-pulse{ 0%{ box-shadow: 0 0 0 0 #2fae63; opacity:.45; } 100%{ box-shadow: 0 0 0 16px #2fae63; opacity:0; } }
.fab-tip{ position:absolute; right: 66px; top:50%; transform: translateY(-50%); background: var(--board-elev); color: var(--cream); padding: 6px 12px; border-radius: 6px; font-size: .78rem; white-space: nowrap; opacity:0; pointer-events:none; transition: opacity .2s ease, transform .2s ease; border: 1px solid var(--hairline); }
.fab:hover .fab-tip{ opacity: 1; transform: translateY(-50%) translateX(-4px); }
@media (prefers-reduced-motion: reduce){ .fab-call::before, .fab-whatsapp::before{ animation: none; } }
@media (max-width: 640px){ .fab-tip{ display: none; } .fab-stack{ right: 14px; bottom: 16px; } }

/* Floating order pill */
.order-fab{
  position: fixed; left: 18px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--black); font-weight: 700; font-size: .88rem;
  padding: 15px 22px; border-radius: 999px; box-shadow: 0 8px 22px rgba(0,0,0,.4);
  transition: transform .2s ease, opacity .25s ease;
  text-transform: uppercase; letter-spacing: .03em;
}
.order-fab:hover{ transform: translateY(-2px); }
.order-fab-icon{ font-size: 1.1rem; }
@media (max-width: 640px){
  .order-fab{ left: 50%; transform: translateX(-50%); bottom: 16px; padding: 13px 20px; }
  .order-fab:hover{ transform: translateX(-50%); }
  .order-fab-text{ display: none; }
  .order-fab{ width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
}

/* ============ CLICK PAW EFFECT ============ */
.paw-mark{ position: fixed; z-index: 300; pointer-events: none; width: 26px; height: 26px; transform: translate(-50%, -50%) scale(.4) rotate(var(--r, 0deg)); opacity: .9; animation: paw-pop .7s ease-out forwards; }
@keyframes paw-pop{
  0%{ transform: translate(-50%, -50%) scale(.3) rotate(var(--r, 0deg)); opacity: .95; }
  60%{ transform: translate(-50%, -50%) scale(1) rotate(var(--r, 0deg)); opacity: .7; }
  100%{ transform: translate(-50%, -60%) scale(1.15) rotate(var(--r, 0deg)); opacity: 0; }
}
