/* ============================================================
   SLICE OF SPICE — Art Deco luxury street-food
   Visual DNA pulled from the food menu: gold corner brackets,
   Didone display, thin gold rules with center ornaments.
   ============================================================ */

:root{
  --bg:        #0a0806;
  --bg-2:      #100d09;
  --panel:     #14110b;
  --panel-2:   #1b1710;

  /* gold ramp (tweakable via --gold) */
  --gold:      #c8a95b;
  --gold-lt:   #e7cd8a;
  --gold-br:   #f3e2b0;
  --gold-dp:   #9a7e3f;
  --gold-soft: rgba(200,169,91,.16);
  --gold-line: rgba(200,169,91,.32);
  --gold-faint:rgba(200,169,91,.08);

  --ivory:     #f4eddd;
  --ivory-dim: #cfc6b2;
  --muted:     #948b78;

  --ff-display: "Bodoni Moda", Georgia, serif;
  --ff-serif:   "Cormorant Garamond", Georgia, serif;
  --ff-sans:    "Jost", system-ui, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; overflow-x:hidden; }
body{
  background:var(--bg);
  color:var(--ivory);
  font-family:var(--ff-sans);
  font-weight:300;
  line-height:1.65;
  overflow-x:hidden;
  letter-spacing:.01em;
  -webkit-font-smoothing:antialiased;
}
body.no-scroll{ overflow:hidden; height:100vh; }

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; -webkit-tap-highlight-color:rgba(200,169,91,.18); }
a:hover{ color:var(--gold-lt); }
:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }
.skip-link{ position:fixed; top:-100px; left:1rem; z-index:120; background:var(--gold); color:#1a1305; padding:.8em 1.4em; font-size:.74rem; letter-spacing:.18em; text-transform:uppercase; transition:top .3s var(--ease); }
.skip-link:focus{ top:1rem; color:#1a1305; }
section{ position:relative; }

/* ---------- grain + vignette overlays ---------- */
.grain{
  position:fixed; inset:0; z-index:60; pointer-events:none;
  opacity:.05; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette{
  position:fixed; inset:0; z-index:59; pointer-events:none;
  background:radial-gradient(120% 90% at 50% 35%, transparent 55%, rgba(0,0,0,.55) 100%);
}
body[data-motion="off"] .ember-layer{ display:none; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow{
  font-family:var(--ff-sans);
  font-weight:500;
  font-size:.74rem;
  letter-spacing:.42em;
  text-transform:uppercase;
  color:var(--gold);
  display:inline-flex; align-items:center; gap:.9em;
}
.eyebrow::before, .eyebrow.center::after{
  content:""; width:34px; height:1px; background:var(--gold-line);
}
.eyebrow.center{ justify-content:center; }

.display{
  font-family:var(--ff-display);
  font-weight:700;
  line-height:.98;
  letter-spacing:-.01em;
}
.serif{ font-family:var(--ff-serif); }

.section-title{
  font-family:var(--ff-display);
  font-weight:700;
  font-size:clamp(2.4rem,5.2vw,4.4rem);
  line-height:1.02;
  letter-spacing:-.01em;
}
.lead{
  font-size:clamp(1.02rem,1.5vw,1.22rem);
  color:var(--ivory-dim);
  font-weight:300;
  max-width:54ch;
}

/* ---------- gold ornament divider (from the menu) ---------- */
.ornament{
  display:flex; align-items:center; justify-content:center; gap:0;
  margin:0 auto;
}
.ornament .ln{ height:1px; background:linear-gradient(90deg,transparent,var(--gold-line)); width:min(220px,30vw); }
.ornament .ln.r{ background:linear-gradient(90deg,var(--gold-line),transparent); }
.ornament .dot{
  width:9px;height:9px;border:1px solid var(--gold);transform:rotate(45deg);
  margin:0 14px; position:relative;
}
.ornament .dot::after{ content:""; position:absolute; inset:2px; background:var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  --bd:var(--gold);
  position:relative; display:inline-flex; align-items:center; gap:.7em;
  font-family:var(--ff-sans); font-weight:500;
  font-size:.82rem; letter-spacing:.2em; text-transform:uppercase;
  padding:1.05em 2.1em; cursor:pointer; border:1px solid var(--bd);
  color:var(--ivory); background:transparent; overflow:hidden;
  transition:color .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.btn .lbl{ position:relative; z-index:2; }
.btn::before{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(120deg,var(--gold),var(--gold-lt));
  transform:translateY(101%); transition:transform .5s var(--ease);
}
.btn:hover{ color:#1a1305; border-color:var(--gold-lt); box-shadow:0 0 38px -6px rgba(200,169,91,.55); }
.btn:hover::before{ transform:translateY(0); }
.btn.solid{ background:linear-gradient(120deg,var(--gold),var(--gold-lt)); color:#1a1305; border-color:transparent; }
.btn.solid::before{ background:linear-gradient(120deg,var(--gold-lt),var(--gold-br)); }
.btn .arrow{ position:relative; z-index:2; transition:transform .4s var(--ease); }
.btn:hover .arrow{ transform:translateX(4px); }

/* ============================================================
   ART-DECO CORNER FRAME (the menu's signature brackets)
   ============================================================ */
.deco-frame{ position:relative; }
.deco-frame > .corner{
  position:absolute; width:38px; height:38px; pointer-events:none;
  border-color:var(--gold-line); border-style:solid; border-width:0;
}
.deco-frame > .corner.tl{ top:0;left:0; border-top-width:1px; border-left-width:1px; }
.deco-frame > .corner.tr{ top:0;right:0; border-top-width:1px; border-right-width:1px; }
.deco-frame > .corner.bl{ bottom:0;left:0; border-bottom-width:1px; border-left-width:1px; }
.deco-frame > .corner.br{ bottom:0;right:0; border-bottom-width:1px; border-right-width:1px; }
.deco-frame > .corner::before{
  content:""; position:absolute; width:26px; height:26px;
  border-color:var(--gold-faint); border-style:solid; border-width:0;
}
.deco-frame > .corner.tl::before{ top:6px;left:6px; border-top-width:1px;border-left-width:1px; }
.deco-frame > .corner.tr::before{ top:6px;right:6px; border-top-width:1px;border-right-width:1px; }
.deco-frame > .corner.bl::before{ bottom:6px;left:6px; border-bottom-width:1px;border-left-width:1px; }
.deco-frame > .corner.br::before{ bottom:6px;right:6px; border-bottom-width:1px;border-right-width:1px; }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:1.4rem clamp(1.2rem,4vw,3rem);
  transition:background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
  border-bottom:1px solid transparent;
}
.nav.scrolled{
  background:rgba(10,8,6,.72); backdrop-filter:blur(14px) saturate(1.2);
  border-bottom-color:var(--gold-faint); padding-top:.9rem; padding-bottom:.9rem;
}
.nav-brand{ display:flex; align-items:center; gap:.8rem; }
.nav-brand img{ width:40px; height:40px; filter:drop-shadow(0 0 12px rgba(200,169,91,.35)); }
.nav-brand .wordmark{ font-family:var(--ff-display); font-weight:700; font-size:1.18rem; letter-spacing:.16em; }
.nav-brand .wordmark span{ color:var(--gold); }
.nav-links{ display:flex; align-items:center; gap:2.1rem; }
.nav-links a{
  font-size:.74rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--ivory-dim); font-weight:400; position:relative; padding:.3em 0;
  transition:color .35s var(--ease);
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-2px; height:1px; width:0; background:var(--gold);
  transition:width .4s var(--ease);
}
.nav-links a:hover{ color:var(--gold-lt); }
.nav-links a:hover::after{ width:100%; }
.nav-cta{ display:inline-flex; }
.nav-phone{ font-size:.74rem; letter-spacing:.18em; color:var(--gold); }
.nav-right{ display:flex; align-items:center; gap:1.6rem; }
.nav-cta{ padding:.7em 1.4em; }
.burger{ display:none; flex-direction:column; align-items:center; justify-content:center; gap:5px; cursor:pointer;
  width:46px; height:46px; background:none; border:0; -webkit-tap-highlight-color:transparent; }
.burger span{ width:26px; height:1.5px; background:var(--gold); transition:transform .35s var(--ease), opacity .25s var(--ease); }
.burger.on span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.burger.on span:nth-child(2){ opacity:0; }
.burger.on span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO  (shared)
   ============================================================ */
.hero{
  min-height:100svh; display:flex; align-items:center; justify-content:center;
  text-align:center; padding:7rem 1.5rem 5rem; overflow:hidden; isolation:isolate;
}
.hero-bg{ position:absolute; inset:0; z-index:-2; overflow:hidden; }
.hero-img{
  position:absolute; inset:-8%; z-index:-3;
  background-size:cover; background-position:center;
  filter:blur(8px) brightness(.34) saturate(.85);
  opacity:.5; transform:scale(1.06);
}
.fire-glow{
  position:absolute; left:50%; bottom:-32%; transform:translateX(-50%); z-index:-2;
  width:130%; height:80%; pointer-events:none;
  background:radial-gradient(50% 60% at 50% 100%,
     rgba(230,140,40,.30) 0%, rgba(200,120,40,.16) 26%, rgba(120,60,20,.06) 48%, transparent 70%);
  filter:blur(8px); animation:fireFlicker 5s ease-in-out infinite;
}
@keyframes fireFlicker{
  0%,100%{ opacity:.85; transform:translateX(-50%) scaleY(1); }
  50%{ opacity:1; transform:translateX(-50%) scaleY(1.08); }
}
.ember-layer{ position:absolute; inset:0; z-index:-1; pointer-events:none; }

/* ---- Hero variant A : logo-centric ---- */
.hero-a{ display:none; }
body[data-hero="a"] .hero-a{ display:flex; }
body[data-hero="b"] .hero-b{ display:flex; }
.hero-inner{ display:flex; flex-direction:column; align-items:center; max-width:920px; }
.hero-logo{
  width:clamp(150px,20vw,236px); height:auto; margin-bottom:1.6rem;
  filter:drop-shadow(0 0 46px rgba(200,169,91,.45));
  animation:logoGlow 6s ease-in-out infinite;
}
@keyframes logoGlow{ 0%,100%{ filter:drop-shadow(0 0 36px rgba(200,169,91,.35)); } 50%{ filter:drop-shadow(0 0 60px rgba(200,169,91,.6)); } }
.hero-title{ font-size:clamp(3rem,8.5vw,7rem); margin:.1em 0 .12em; }
.hero-title em{ font-family:var(--ff-serif); font-style:italic; font-weight:500; color:var(--gold); }
.hero-sub{ max-width:48ch; color:var(--ivory-dim); font-size:clamp(1rem,1.6vw,1.22rem); margin-bottom:2.3rem; text-wrap:balance; }
.hero-cta{ display:flex; gap:1rem; flex-wrap:wrap; justify-content:center; }
.hero-tags{ display:flex; gap:1.5rem; flex-wrap:wrap; justify-content:center; margin-top:2.6rem; }
.hero-tags span{ font-size:.7rem; letter-spacing:.28em; text-transform:uppercase; color:var(--muted); display:inline-flex; align-items:center; gap:.7em; }
.hero-tags span::before{ content:""; width:5px;height:5px; background:var(--gold); transform:rotate(45deg); }

/* ---- Hero variant B : editorial split ---- */
.hero-b{ display:none; align-items:center; }
.hero-b .grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:3rem; align-items:center;
  max-width:var(--maxw); width:100%; text-align:left;
}
.hero-b .h-eyebrow{ margin-bottom:1.6rem; }
.hero-b .hero-title{ font-size:clamp(2.8rem,6.8vw,6rem); text-align:left; }
.hero-b .hero-sub{ text-align:left; margin-left:0; }
.hero-b .hero-cta{ justify-content:flex-start; }
.hero-b .mark{ display:flex; align-items:center; gap:1rem; margin-bottom:1.8rem; }
.hero-b .mark img{ width:62px; height:62px; filter:drop-shadow(0 0 22px rgba(200,169,91,.45)); }
.hero-b .mark .ln{ flex:1; height:1px; background:var(--gold-line); }
.hero-showcase{
  position:relative; aspect-ratio:3/4; border-radius:2px;
  display:flex; align-items:flex-end; justify-content:flex-start; padding:1.5rem;
}
.hero-showcase .badge{
  position:absolute; top:-18px; right:18px; z-index:3;
  background:var(--bg); border:1px solid var(--gold-line); color:var(--gold);
  padding:.7em 1.2em; font-size:.66rem; letter-spacing:.26em; text-transform:uppercase;
}

/* ---------- image placeholder (drop real photos later) ---------- */
.ph{
  position:relative; overflow:hidden; background:
    repeating-linear-gradient(135deg, rgba(200,169,91,.055) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--panel-2), var(--bg-2));
  border:1px solid var(--gold-faint);
  display:flex; align-items:center; justify-content:center; color:var(--muted);
}
.ph .ph-tag{
  font-family:var(--ff-sans); font-size:.62rem; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold-dp); border:1px dashed var(--gold-line); padding:.5em .9em;
  background:rgba(10,8,6,.5);
}
.ph::after{ /* subtle gold sheen */
  content:""; position:absolute; inset:0;
  background:radial-gradient(60% 50% at 30% 20%, rgba(200,169,91,.10), transparent 70%);
}

/* ============================================================
   GENERIC SECTION SHELL
   ============================================================ */
.section{ padding:clamp(5rem,11vw,9rem) clamp(1.2rem,5vw,3rem); }
.wrap{ max-width:var(--maxw); margin:0 auto; }
.sec-head{ text-align:center; margin-bottom:clamp(2.6rem,5vw,4.2rem); display:flex; flex-direction:column; align-items:center; gap:1.1rem; }
.sec-head .lead{ text-align:center; }

/* ---------- ABOUT ---------- */
.about{ background:linear-gradient(180deg, var(--bg), var(--bg-2)); }
.about-story{ text-align:center; max-width:760px; margin:0 auto clamp(3rem,6vw,4.5rem); }
.about-story p{ font-family:var(--ff-serif); font-size:clamp(1.5rem,3vw,2.15rem); line-height:1.42; font-weight:400; color:var(--ivory); text-wrap:balance; }
.about-story p .gold{ color:var(--gold); font-style:italic; }
.feature-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; }
.feature{
  padding:2.4rem 1.6rem; text-align:center; background:var(--panel);
  border:1px solid var(--gold-faint); position:relative;
  transition:transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.feature:hover{ transform:translateY(-6px); border-color:var(--gold-line); background:var(--panel-2); }
.feature .ico{
  width:54px;height:54px; margin:0 auto 1.2rem; color:var(--gold);
  display:flex; align-items:center; justify-content:center;
}
.feature:hover .ico{ filter:drop-shadow(0 0 14px rgba(200,169,91,.5)); }
.feature h3{ font-family:var(--ff-display); font-weight:700; font-size:1.15rem; letter-spacing:.02em; margin-bottom:.5rem; }
.feature p{ font-size:.86rem; color:var(--muted); line-height:1.55; }

/* ---------- MENU ---------- */
.menu{ background:var(--bg); }
.menu-frame{ padding:clamp(2rem,4vw,3.6rem) clamp(1.2rem,4vw,3.4rem); }
.menu-cols{ display:grid; grid-template-columns:1fr 1px 1fr; gap:clamp(1.5rem,4vw,3.4rem); }
.menu-divider{ background:linear-gradient(180deg,transparent,var(--gold-line) 12%,var(--gold-line) 88%,transparent); }
.menu-col-head{ font-family:var(--ff-serif); font-weight:500; font-size:clamp(2rem,3.6vw,2.8rem); color:var(--gold); display:flex; align-items:baseline; justify-content:space-between; margin-bottom:1.6rem; }
.menu-col-head .sizes{ display:flex; gap:1.9rem; font-size:.72rem; letter-spacing:.16em; color:var(--muted); font-family:var(--ff-sans); text-transform:uppercase; }
.menu-item{ padding:1.05rem 0; border-top:1px solid var(--gold-faint); display:grid; grid-template-columns:1fr auto; gap:.4rem 1.6rem; align-items:start; transition:background .4s var(--ease); }
.menu-item:hover{ background:linear-gradient(90deg, rgba(200,169,91,.05), transparent); }
.menu-item .mi-name{ font-family:var(--ff-display); font-weight:700; font-size:1.16rem; letter-spacing:.01em; }
.menu-item .mi-name .vg{ font-family:var(--ff-sans); font-size:.56rem; letter-spacing:.2em; color:var(--gold); border:1px solid var(--gold-line); padding:.18em .5em; vertical-align:middle; margin-left:.6em; text-transform:uppercase; }
.menu-item .mi-desc{ font-size:.84rem; color:var(--muted); line-height:1.5; font-style:italic; grid-column:1; max-width:40ch; }
.menu-item .mi-prices{ grid-column:2; grid-row:1 / span 2; display:flex; gap:1.4rem; align-items:flex-start; }
.menu-item .mi-prices .pr{ text-align:center; min-width:42px; }
.menu-item .mi-prices .pr .v{ font-family:var(--ff-display); font-weight:600; font-size:1.02rem; color:var(--ivory); }
.menu-item .mi-prices .pr .s{ display:block; font-size:.56rem; letter-spacing:.14em; color:var(--gold-dp); text-transform:uppercase; margin-top:2px; }
.menu-foot{ text-align:center; margin-top:2.8rem; padding-top:2rem; border-top:1px solid var(--gold-faint); }
.menu-foot .vegan{ font-family:var(--ff-serif); font-style:italic; font-size:1.25rem; color:var(--gold); margin-bottom:.7rem; }
.menu-foot .extras{ font-size:.8rem; letter-spacing:.14em; text-transform:uppercase; color:var(--ivory-dim); display:flex; gap:1.6rem; justify-content:center; flex-wrap:wrap; }
.menu-foot .extras b{ color:var(--gold); font-weight:600; }

/* ---------- FEATURED ---------- */
.featured{ background:linear-gradient(180deg,var(--bg-2),var(--bg)); }
.feat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.feat-card{ position:relative; overflow:hidden; border:1px solid var(--gold-faint); background:var(--panel); transition:transform .55s var(--ease), border-color .55s var(--ease); }
.feat-card:hover{ transform:translateY(-8px); border-color:var(--gold-line); }
.feat-card .feat-img{ aspect-ratio:4/3; }
.feat-card:hover .feat-img::after{ opacity:.7; }
.feat-card .feat-body{ padding:1.5rem 1.6rem 1.8rem; }
.feat-card .feat-body h3{ font-family:var(--ff-display); font-weight:700; font-size:1.4rem; }
.feat-card .feat-body .pz{ font-family:var(--ff-serif); font-style:italic; color:var(--gold); font-size:1rem; margin:.1rem 0 .6rem; }
.feat-card .feat-body p{ font-size:.85rem; color:var(--muted); line-height:1.55; }
.feat-card .glow{ position:absolute; inset:0; opacity:0; transition:opacity .55s var(--ease); pointer-events:none; background:radial-gradient(80% 60% at 50% 0%, rgba(200,169,91,.18), transparent 70%); }
.feat-card:hover .glow{ opacity:1; }

/* ---------- TESTIMONIALS ---------- */
.reviews{ background:var(--bg); }
.review-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.4rem; }
.review{
  padding:2.4rem 2.2rem; background:var(--panel); position:relative;
  border:1px solid var(--gold-faint); transition:border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.review:hover{ border-color:var(--gold-line); box-shadow:0 0 50px -18px rgba(200,169,91,.4); }
.review .quote-mark{ font-family:var(--ff-display); font-size:3.4rem; color:var(--gold); line-height:.4; opacity:.5; }
.review p{ font-family:var(--ff-serif); font-size:1.4rem; line-height:1.4; font-weight:400; margin:1rem 0 1.4rem; color:var(--ivory); }
.review .stars{ color:var(--gold); letter-spacing:.2em; font-size:.9rem; }
.review .who{ font-size:.72rem; letter-spacing:.22em; text-transform:uppercase; color:var(--muted); margin-top:.6rem; }

/* ---------- LOCATION ---------- */
.location{ background:linear-gradient(180deg,var(--bg),var(--bg-2)); }
.loc-grid{ display:grid; grid-template-columns:1fr 1fr; gap:2.6rem; align-items:stretch; }
.loc-map{ position:relative; min-height:420px; border:1px solid var(--gold-faint); overflow:hidden; }
.loc-embed{
  position:absolute; inset:0; width:100%; height:100%; border:0; display:block; z-index:2;
  background:transparent;
  filter:invert(.9) hue-rotate(175deg) saturate(.5) brightness(.94) contrast(.92) sepia(.28);
}
.map-fallback{ position:absolute; inset:0; z-index:1; }
.map-fallback .map-grid{ position:absolute; inset:0; background-image:linear-gradient(var(--gold-faint) 1px, transparent 1px), linear-gradient(90deg, var(--gold-faint) 1px, transparent 1px); background-size:44px 44px; opacity:.6; }
.map-fallback .roads{ position:absolute; inset:0; }
.map-fallback .loc-pin{ position:absolute; top:46%; left:50%; transform:translate(-50%,-50%); }
.loc-badge{
  position:absolute; top:14px; left:14px; z-index:3; pointer-events:none;
  background:rgba(10,8,6,.82); border:1px solid var(--gold-line); color:var(--gold);
  padding:.55em 1em; font-size:.64rem; letter-spacing:.2em; text-transform:uppercase;
  backdrop-filter:blur(4px);
}
.loc-map .map-grid{ position:absolute; inset:0; background-image:linear-gradient(var(--gold-faint) 1px, transparent 1px), linear-gradient(90deg, var(--gold-faint) 1px, transparent 1px); background-size:44px 44px; opacity:.6; }
.loc-map .roads{ position:absolute; inset:0; }
.loc-pin{ position:absolute; top:46%; left:50%; transform:translate(-50%,-50%); }
.loc-pin .dot{ width:18px;height:18px;border-radius:50%; background:var(--gold); box-shadow:0 0 0 6px rgba(200,169,91,.18); position:relative; z-index:2; }
.loc-pin .pulse{ position:absolute; top:50%; left:50%; width:18px;height:18px; transform:translate(-50%,-50%); border-radius:50%; border:1px solid var(--gold); animation:pulse 2.6s ease-out infinite; }
@keyframes pulse{ 0%{ width:18px;height:18px; opacity:.9; } 100%{ width:130px;height:130px; opacity:0; } }
.loc-pin .lbl{ position:absolute; top:-34px; left:50%; transform:translateX(-50%); white-space:nowrap; font-size:.66rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); background:var(--bg); padding:.4em .8em; border:1px solid var(--gold-line); }
.loc-info{ display:flex; flex-direction:column; justify-content:center; gap:1.6rem; }
.loc-info h2{ font-family:var(--ff-display); font-weight:700; font-size:clamp(2rem,4vw,3rem); line-height:1.04; }
.hours-table{ width:100%; border-collapse:collapse; }
.hours-table tr{ border-bottom:1px solid var(--gold-faint); }
.hours-table tr.today{ background:linear-gradient(90deg, rgba(200,169,91,.10), transparent); }
.hours-table td{ padding:.7rem .2rem; font-size:.92rem; }
.hours-table td:first-child{ color:var(--ivory-dim); letter-spacing:.06em; }
.hours-table td:last-child{ text-align:right; color:var(--ivory); font-variant-numeric:tabular-nums; }
.hours-table tr.today td:last-child{ color:var(--gold); }
.hours-table td .now{ font-size:.58rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); border:1px solid var(--gold-line); padding:.1em .5em; margin-left:.6em; }
.closed{ color:var(--muted)!important; }

/* ---------- SOCIAL GRID ---------- */
.social{ background:var(--bg-2); }
.ig-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:.7rem; }
.ig-cell{ aspect-ratio:1; position:relative; overflow:hidden; cursor:pointer; }
.ig-cell .ph{ position:absolute; inset:0; transition:transform .6s var(--ease); }
.ig-cell:hover .ph{ transform:scale(1.06); }
.ig-cell .ig-ov{ position:absolute; inset:0; background:rgba(10,8,6,.55); opacity:0; display:flex; align-items:center; justify-content:center; transition:opacity .4s var(--ease); z-index:2; }
.ig-cell:hover .ig-ov{ opacity:1; }
.ig-cell .ig-ov svg{ width:26px;height:26px; color:var(--gold); }
.social-handle{ text-align:center; margin-top:2.4rem; }
.social-handle a{ font-family:var(--ff-display); font-weight:700; font-size:1.3rem; color:var(--gold); letter-spacing:.04em; }

/* ---------- FINAL CTA ---------- */
.final{ text-align:center; padding:clamp(6rem,14vw,11rem) 1.5rem; overflow:hidden; isolation:isolate; }
.final .fire-glow{ bottom:-40%; opacity:.8; }
.final h2{ font-family:var(--ff-display); font-weight:700; font-size:clamp(3.4rem,12vw,9rem); line-height:.92; letter-spacing:-.01em; }
.final h2 .line2{ color:var(--gold); display:block; }
.final p{ color:var(--ivory-dim); font-size:1.1rem; margin:1.6rem auto 2.4rem; max-width:40ch; }

/* ---------- FOOTER ---------- */
.footer{ background:var(--bg); border-top:1px solid var(--gold-faint); padding:clamp(3.5rem,7vw,5rem) clamp(1.2rem,5vw,3rem) 2.5rem; }
.foot-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:2.4rem; align-items:start; margin-bottom:3rem; }
.foot-brand img{ width:64px; height:64px; margin-bottom:1rem; filter:drop-shadow(0 0 16px rgba(200,169,91,.3)); }
.foot-brand .wordmark{ font-family:var(--ff-display); font-weight:700; font-size:1.4rem; letter-spacing:.14em; }
.foot-brand p{ color:var(--muted); font-size:.86rem; max-width:34ch; margin-top:.7rem; }
.foot-col h4{ font-size:.72rem; letter-spacing:.24em; text-transform:uppercase; color:var(--gold); margin-bottom:1.1rem; }
.foot-col a, .foot-col p{ display:block; color:var(--ivory-dim); font-size:.9rem; margin-bottom:.6rem; transition:color .3s var(--ease); }
.foot-col a:hover{ color:var(--gold-lt); }
.foot-socials{ display:flex; gap:.8rem; margin-top:.4rem; }
.foot-socials a{ width:40px;height:40px; border:1px solid var(--gold-line); display:flex; align-items:center; justify-content:center; color:var(--gold); transition:.4s var(--ease); }
.foot-socials a:hover{ background:var(--gold); color:#1a1305; box-shadow:0 0 24px -4px rgba(200,169,91,.6); }
.foot-socials a svg{ width:17px;height:17px; }
.foot-bottom{ display:flex; align-items:center; justify-content:space-between; padding-top:1.8rem; border-top:1px solid var(--gold-faint); flex-wrap:wrap; gap:1rem; }
.foot-bottom p{ font-size:.74rem; letter-spacing:.1em; color:var(--muted); }
.foot-legal{ display:flex; align-items:center; gap:1.4rem; flex-wrap:wrap; }
.foot-legal a{ font-size:.74rem; letter-spacing:.1em; color:var(--ivory-dim); }
.foot-legal a:hover{ color:var(--gold-lt); }
.foot-legal span{ font-size:.74rem; letter-spacing:.1em; color:var(--muted); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal{ opacity:0; transform:translateY(34px); transition:opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s; } .reveal.d2{ transition-delay:.16s; }
.reveal.d3{ transition-delay:.24s; } .reveal.d4{ transition-delay:.32s; }
body[data-motion="off"] .reveal{ opacity:1; transform:none; transition:none; }

/* ============================================================
   REAL PHOTO INTEGRATIONS
   ============================================================ */
/* hero B showcase */
.showcase-img{ position:absolute; inset:1.1rem; width:calc(100% - 2.2rem); height:calc(100% - 2.2rem); object-fit:cover; object-position:center; filter:brightness(.94) saturate(1.03); }

/* about cinematic band */
.about-band{ position:relative; max-width:1040px; margin:0 auto clamp(3rem,6vw,4.5rem); aspect-ratio:16/9; overflow:hidden; }
.about-band img{ width:100%; height:100%; object-fit:cover; object-position:50% 22%; filter:brightness(.84) saturate(1.02); transition:transform 1.3s var(--ease); }
.about-band:hover img{ transform:scale(1.045); }
.about-band figcaption{ position:absolute; inset:auto 0 0 0; padding:2.4rem 1.8rem 1.3rem; background:linear-gradient(0deg, rgba(8,6,4,.9), transparent); font-size:.74rem; letter-spacing:.18em; text-transform:uppercase; color:var(--ivory-dim); }
.about-band .cap-k{ color:var(--gold); font-weight:500; }

/* featured cards w/ photos */
.feat-grid-2{ grid-template-columns:repeat(2,1fr); }
.feat-card .feat-img{ aspect-ratio:3/2; overflow:hidden; }
.feat-card .feat-img img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .8s var(--ease); }
.feat-card:hover .feat-img img{ transform:scale(1.055); }

/* instagram grid w/ photos */
.ig-cell img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.ig-cell:hover img{ transform:scale(1.07); }
.ig-cell.ig-follow{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.7rem; text-align:center; padding:1rem;
  background:linear-gradient(150deg, var(--panel-2), var(--bg-2)); border:1px solid var(--gold-line); color:var(--gold); transition:.45s var(--ease); }
.ig-cell.ig-follow svg{ width:30px; height:30px; }
.ig-cell.ig-follow span{ font-size:.58rem; letter-spacing:.16em; text-transform:uppercase; color:var(--ivory-dim); line-height:1.6; }
.ig-cell.ig-follow:hover{ background:linear-gradient(150deg, rgba(200,169,91,.16), var(--bg-2)); box-shadow:inset 0 0 40px -10px rgba(200,169,91,.4); }

/* reviews → google */
.review{ display:block; color:inherit; }
.google-badge{ display:inline-flex; align-items:center; gap:.7rem; margin-top:.3rem; padding:.6em 1.25em; border:1px solid var(--gold-line); background:var(--panel); transition:.45s var(--ease); }
.google-badge:hover{ border-color:var(--gold); box-shadow:0 0 30px -8px rgba(200,169,91,.5); }
.google-badge .g-stars{ color:var(--gold); letter-spacing:.1em; font-size:.92rem; }
.google-badge .g-text{ font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color:var(--ivory-dim); }
.google-badge .g-text b{ color:var(--ivory); font-weight:600; }
.reviews-cta{ text-align:center; margin-top:2.8rem; }

/* ============================================================
   MOBILE ACTION BAR  (phones only)
   ============================================================ */
.mobile-bar{ display:none; }

/* ============================================================
   MAP TOUCH SHIELD  (stops the map eating page scroll on phones)
   ============================================================ */
.loc-map.locked .loc-embed{ pointer-events:none; }
.map-unlock{ position:absolute; inset:auto 0 0 0; z-index:4; display:none; align-items:center; justify-content:center; gap:.6em;
  padding:.85em 1em; background:rgba(10,8,6,.86); border-top:1px solid var(--gold-faint);
  font-size:.64rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); }
.loc-map.locked .map-unlock{ display:flex; }

/* ============================================================
   LEGAL / PRIVACY PAGE
   ============================================================ */
.legal{ padding:clamp(7rem,15vw,10rem) clamp(1.2rem,5vw,3rem) clamp(4rem,8vw,6rem); background:linear-gradient(180deg,var(--bg),var(--bg-2)); }
.legal .wrap{ max-width:800px; }
.legal h1{ font-family:var(--ff-display); font-weight:700; font-size:clamp(2.1rem,6.5vw,3.6rem); line-height:1.05; margin:1.1rem 0 .5rem; }
.legal .meta{ font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; color:var(--muted); margin-bottom:2.4rem; }
.legal h2{ font-family:var(--ff-display); font-weight:700; font-size:clamp(1.2rem,2.8vw,1.6rem); margin:2.7rem 0 .7rem; }
.legal p, .legal li{ color:var(--ivory-dim); font-size:1rem; line-height:1.78; }
.legal p{ margin-bottom:1rem; max-width:68ch; }
.legal ul{ margin:0 0 1.3rem 1.15rem; display:flex; flex-direction:column; gap:.55rem; }
.legal a{ color:var(--gold); text-decoration:underline; text-underline-offset:3px; text-decoration-color:var(--gold-line); }
.legal a:hover{ color:var(--gold-lt); }
.legal .rule{ height:1px; background:var(--gold-faint); margin:3rem 0 0; }
.legal .back{ margin-top:2.6rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1000px){
  .nav{ padding:1rem clamp(1rem,4vw,3rem); }
  .nav-links{ display:none; }
  .nav-links.open{
    display:flex; position:absolute; top:100%; left:0; right:0; flex-direction:column;
    background:rgba(10,8,6,.97); backdrop-filter:blur(14px); padding:.6rem 1.4rem 1.4rem; gap:0;
    border-bottom:1px solid var(--gold-line); max-height:calc(100svh - 74px); overflow-y:auto; overscroll-behavior:contain;
  }
  .nav-links.open a{ font-size:.86rem; letter-spacing:.24em; padding:1.05rem .4rem; border-bottom:1px solid var(--gold-faint); }
  .nav-links.open a::after{ display:none; }
  .nav-right{ gap:.6rem; }
  .nav-cta, .nav-phone{ display:none; }
  .burger{ display:flex; }
  .feature-grid{ grid-template-columns:repeat(2,1fr); }
  .feat-grid{ grid-template-columns:1fr; }
  .hero-b .grid{ grid-template-columns:1fr; text-align:center; }
  .hero-b .hero-title,.hero-b .hero-sub{ text-align:center; }
  .hero-b .hero-cta{ justify-content:center; }
  .hero-b .mark{ justify-content:center; }
  .hero-showcase{ max-width:340px; margin:0 auto; }
  .ig-grid{ grid-template-columns:repeat(3,1fr); }
}

@media (max-width:760px){
  .hero{ min-height:auto; padding:8.5rem 1.25rem 4.5rem; }
  .hero-logo{ margin-bottom:1.2rem; }
  .hero-sub{ margin-bottom:2rem; }
  .hero-tags{ gap:.9rem 1.5rem; margin-top:2rem; }
  .section{ padding:clamp(3.6rem,12vw,5.5rem) 1.25rem; }
  .sec-head{ margin-bottom:2.4rem; }
  .about-band{ aspect-ratio:4/3; }
  .about-band figcaption{ padding:2rem 1.1rem 1.1rem; font-size:.66rem; letter-spacing:.14em; }
  .menu-cols{ grid-template-columns:1fr; gap:2.4rem; }
  .menu-divider{ display:none; }
  .menu-frame{ padding:1.6rem 1.15rem 1.8rem; }
  .menu-col-head{ margin-bottom:1.1rem; }
  .menu-foot{ margin-top:2rem; padding-top:1.5rem; }
  .menu-foot .extras{ gap:.6rem 1.2rem; font-size:.72rem; }
  .review{ padding:1.9rem 1.4rem; }
  .review p{ font-size:1.16rem; margin:.8rem 0 1.1rem; }
  .review-grid{ grid-template-columns:1fr; gap:1rem; }
  .loc-grid{ grid-template-columns:1fr; gap:1.8rem; }
  .loc-map{ min-height:290px; order:2; }
  .loc-info{ order:1; gap:1.2rem; }
  .foot-top{ grid-template-columns:1fr; gap:2rem; margin-bottom:2rem; }
  .foot-bottom{ flex-direction:column; align-items:flex-start; gap:.6rem; }
  .feature-grid{ grid-template-columns:1fr 1fr; gap:.7rem; }
  .feature{ padding:1.6rem 1rem; }
  .feature .ico{ width:40px; height:40px; margin-bottom:.8rem; }
  .feature h3{ font-size:1.02rem; }
  .feature p{ font-size:.79rem; }
  .final{ padding:5rem 1.25rem 5.5rem; }
  .final p{ font-size:1rem; margin:1.2rem auto 2rem; }
  .deco-frame > .corner{ width:26px; height:26px; }
  .deco-frame > .corner::before{ display:none; }
  /* sticky call / menu / directions bar */
  .mobile-bar{
    display:grid; grid-template-columns:1fr 1fr 1.25fr; gap:1px;
    position:fixed; left:0; right:0; bottom:0; z-index:58;
    background:var(--gold-line); border-top:1px solid var(--gold-line);
    padding-bottom:env(safe-area-inset-bottom);
  }
  .mobile-bar a{
    display:flex; align-items:center; justify-content:center; gap:.55em; min-height:58px;
    background:rgba(10,8,6,.96); color:var(--ivory);
    font-size:.66rem; letter-spacing:.16em; text-transform:uppercase; font-weight:500;
  }
  .mobile-bar a svg{ width:15px; height:15px; color:var(--gold); flex:none; }
  .mobile-bar a.primary{ background:linear-gradient(120deg,var(--gold),var(--gold-lt)); color:#1a1305; }
  .mobile-bar a.primary svg{ color:#1a1305; }
  .mobile-bar a:active{ filter:brightness(1.2); }
  .footer{ padding-bottom:calc(2rem + 58px + env(safe-area-inset-bottom)); }
  .vignette{ background:radial-gradient(140% 100% at 50% 35%, transparent 60%, rgba(0,0,0,.5) 100%); }
}

@media (max-width:560px){
  .eyebrow{ font-size:.68rem; letter-spacing:.24em; flex-wrap:wrap; justify-content:center; }
  .eyebrow::before, .eyebrow.center::after{ width:20px; }
  .hero-title{ font-size:clamp(2rem,9vw,3rem); }
  .hero-b .hero-title{ font-size:clamp(2rem,9vw,3rem); }
  .hero-sub{ font-size:.98rem; }
  .hero-cta{ flex-direction:column; width:100%; gap:.7rem; }
  .hero-cta .btn{ justify-content:center; width:100%; }
  .btn{ min-height:48px; padding:.9em 1.6em; font-size:.76rem; letter-spacing:.16em; }
  .section-title{ font-size:clamp(2rem,9vw,3rem); }
  .about-story p{ font-size:1.24rem; }
  .menu-col-head{ font-size:1.8rem; }
  .menu-item{ grid-template-columns:1fr; padding:.95rem 0; }
  .menu-item .mi-name{ font-size:1.06rem; }
  .menu-item .mi-desc{ font-size:.83rem; max-width:none; }
  .menu-item .mi-prices{ grid-column:1; grid-row:auto; gap:1.2rem; margin-top:.55rem; }
  .menu-item .mi-prices .pr{ display:flex; align-items:baseline; gap:.4em; min-width:0; text-align:left; }
  .menu-item .mi-prices .pr .s{ display:inline; margin:0; }
  .menu-foot .vegan{ font-size:1.1rem; }
  .hours-table td{ padding:.62rem .1rem; font-size:.86rem; }
  .hours-table td .now{ display:inline-block; margin-left:.4em; }
  .loc-info h2{ font-size:1.7rem; }
  .loc-info .btn{ width:100%; justify-content:center; }
  .final h2{ font-size:clamp(2.6rem,13vw,4.4rem); }
  .final h2 .line2{ font-size:.44em; line-height:1.2; margin-top:.5rem; }
  .ig-grid{ grid-template-columns:repeat(2,1fr); gap:.5rem; }
  .ig-cell.ig-follow{ grid-column:span 2; aspect-ratio:auto; min-height:96px; }
  .social-handle a{ font-size:1.05rem; }
  .foot-brand p, .foot-col a, .foot-col p{ font-size:.86rem; }
  .foot-col a{ padding:.15rem 0; }
  .legal p, .legal li{ font-size:.95rem; }
}

/* touch devices: no hover lift, use press feedback instead */
@media (hover:none){
  .feature:hover, .feat-card:hover{ transform:none; }
  .btn:hover{ color:var(--ivory); box-shadow:none; }
  .btn:hover::before{ transform:translateY(101%); }
  .btn.solid:hover{ color:#1a1305; }
  .btn:active{ border-color:var(--gold-lt); }
  .btn.solid:active{ filter:brightness(1.1); }
  .feat-card:active, .review:active{ border-color:var(--gold-line); }
  .about-band:hover img, .ig-cell:hover img, .feat-card:hover .feat-img img{ transform:none; }
  .ig-cell .ig-ov{ opacity:0; }
}

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms!important; animation-iteration-count:1!important; transition-duration:.001ms!important; }
  .reveal{ opacity:1; transform:none; }
  .ember-layer{ display:none; }
}

@media print{
  .nav,.mobile-bar,.grain,.vignette,.ember-layer,.skip-link,#tweaks-root{ display:none!important; }
}
