/* ========================================================
   West Diner — design system
   ======================================================== */

:root{
  --orange: #EE5A1E;
  --orange-light: #FF7A3D;
  --orange-dark: #C8430E;
  --photo-bg: #E64801;
  --dark: #1A1611;
  --dark2: #221C15;
  --dark3: #2C241B;
  --cream: #FBF3E7;
  --paper: #F2E3C9;
  --ink: #221D17;
  --white: #FFFFFF;
  --muted: #8A8177;
  --muted-light: rgba(255,255,255,.62);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px -20px rgba(20,15,8,.35);
  --shadow-sm: 0 10px 24px -12px rgba(20,15,8,.3);
  --ff-display: 'Anton', sans-serif;
  --ff-body: 'Poppins', sans-serif;
  --ff-script: 'Caveat', cursive;
  --ff-marker: 'Permanent Marker', cursive;
  --ff-logo: 'Big Shoulders Stencil Text', sans-serif;
  --ff-logo-script: 'Pacifico', cursive;
  --header-h: 76px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--header-h); overflow-x: hidden; width: 100%; }
body{
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4{ margin: 0; font-family: var(--ff-display); font-weight: 400; letter-spacing: .01em; }
p{ margin: 0; }
svg{ width: 1em; height: 1em; }
.container{ width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.skip-link{
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--orange); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-body); font-weight: 700; font-size: .95rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg{ width: 18px; height: 18px; }
.btn:disabled{ opacity: .45; cursor: not-allowed; transform: none !important; }
.btn-primary{ background: var(--orange); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline{ border-color: var(--ink); color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-outline-light{ border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover{ background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn-outline-dark{ border-color: var(--ink); color: var(--ink); }
.btn-sm{ padding: 9px 16px; font-size: .82rem; }
.btn-block{ width: 100%; justify-content: center; }

/* ---------- header / nav ---------- */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(26,22,17,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s ease;
}
.nav-inner{ height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand{ position: relative; display: flex; align-items: center; line-height: 1; }
.brand-mark{ height: 58px; width: auto; display: block; }
.nav-links{ display: flex; gap: 34px; }
.nav-link{
  color: rgba(255,255,255,.72); font-weight: 600; font-size: .95rem;
  position: relative; padding: 6px 0; transition: color .2s ease;
}
.nav-link::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-link:hover, .nav-link.active{ color: #fff; }
.nav-link:hover::after, .nav-link.active::after{ transform: scaleX(1); }
.nav-right{ display: flex; align-items: center; gap: 16px; }
.nav-phone{
  display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.75);
  font-weight: 600; font-size: .9rem;
}
.nav-phone:hover{ color: #fff; }
.hamburger{
  display: none; width: 40px; height: 40px; border: none; background: transparent;
  cursor: pointer; position: relative;
}
.hamburger span, .hamburger::before, .hamburger::after{
  content: ""; position: absolute; left: 8px; right: 8px; height: 2px; background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger::before{ top: 13px; }
.hamburger span{ top: 19px; }
.hamburger::after{ top: 25px; }
.hamburger[aria-expanded="true"]::before{ transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"]::after{ transform: translateY(-6px) rotate(-45deg); }
.hamburger[aria-expanded="true"] span{ opacity: 0; }

.mobile-drawer{
  position: fixed; top: var(--header-h); right: -100%; width: min(320px, 86vw); bottom: 0; z-index: 99;
  background: var(--dark2); padding: 28px 26px; display: flex; flex-direction: column; gap: 4px;
  box-shadow: -20px 0 40px rgba(0,0,0,.3); transition: right .3s ease; overflow-y: auto;
}
.mobile-drawer.open{ right: 0; }
.mobile-drawer a{
  color: rgba(255,255,255,.85); font-weight: 700; font-size: 1.1rem; padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawer-meta{ display: flex; flex-direction: column; gap: 8px; margin: 18px 0; font-size: .88rem; color: rgba(255,255,255,.6); }
.drawer-meta a{ color: var(--orange-light); font-weight: 600; border: none; padding: 0; }

/* ---------- reveal animation ---------- */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-stagger .reveal:nth-child(1){ transition-delay: .04s; }
.reveal-stagger .reveal:nth-child(2){ transition-delay: .1s; }
.reveal-stagger .reveal:nth-child(3){ transition-delay: .16s; }
.reveal-stagger .reveal:nth-child(4){ transition-delay: .22s; }

/* ---------- hero ---------- */
.hero{
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: calc(var(--header-h) + 40px) 24px 100px;
  background: radial-gradient(circle at 18% 20%, #2c2015 0%, var(--dark) 55%), var(--dark);
  overflow: hidden; text-align: center; color: #fff;
}
.hero-texture{
  position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: radial-gradient(rgba(238,90,30,.35) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 72%);
}
.hero-inner{ position: relative; max-width: 780px; }
.hero-eyebrow{
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: .82rem;
  color: var(--orange-light); margin-bottom: 18px;
}
.hero-title{ display: flex; justify-content: center; margin-bottom: 22px; }
.brand-mark-hero{ height: clamp(130px, 22vw, 240px); width: auto; display: block; }
.hero-tagline{
  font-family: var(--ff-display); font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  letter-spacing: .03em; margin-bottom: 18px;
}
.hero-tagline .accent{ color: var(--orange-light); }
.hero-tagline .tag-letter{ color: var(--orange-light); font-weight: 700; }
.hero-sub{
  font-size: 1.08rem; color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 34px;
  line-height: 1.6;
}
.hero-ctas{ display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }
.hero-foot{
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  font-size: .88rem; color: rgba(255,255,255,.65);
}
.hero-foot .item{ display: flex; align-items: center; gap: 8px; }
.hero-foot svg{ color: var(--orange-light); }
.hero-foot a.item:hover{ color: #fff; }
.hero-scroll{
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5);
}
.hero-scroll .line{ width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: scrollpulse 1.8s ease-in-out infinite; }
@keyframes scrollpulse{ 0%,100%{ opacity: .3; } 50%{ opacity: 1; } }

/* ---------- decorative doodles & dividers ---------- */
.hero-doodles{ position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.hero-doodles .doodle{ position: absolute; color: var(--orange-light); opacity: .3; }
.doodle-chili{ top: 16%; left: 7%; width: 46px; height: 46px; transform: rotate(-12deg); }
.doodle-spark-1{ top: 22%; right: 10%; width: 30px; height: 30px; opacity: .45; }
.doodle-flame{ bottom: 18%; left: 10%; width: 40px; height: 40px; transform: rotate(8deg); opacity: .22; }
.doodle-spark-2{ bottom: 30%; right: 14%; width: 22px; height: 22px; opacity: .35; }
.doodle-hat{ top: 10%; right: 6%; width: 52px; height: 40px; transform: rotate(8deg); opacity: .25; }
.doodle-horseshoe{ bottom: 12%; right: 8%; width: 40px; height: 32px; transform: rotate(-6deg); opacity: .22; }
.tagline-scribble{ display: block; width: 200px; height: 20px; margin: -6px auto 20px; color: var(--orange); opacity: .55; }

/* generic section-level Western/street-art accents — sized with clamp() so they
   shrink smoothly instead of disappearing on tablet/phone */
.side-art{
  position: absolute; top: 50%; width: clamp(30px, 7vw, 64px); height: clamp(30px, 7vw, 64px);
  color: var(--orange); opacity: .12; pointer-events: none; z-index: 0;
  transform: translateY(-50%) rotate(-6deg);
}
.side-art-left{ left: clamp(4px, 2.5vw, 46px); }
.side-art-right{ right: clamp(4px, 2.5vw, 46px); transform: translateY(-50%) rotate(7deg); }
.on-dark .side-art{ color: var(--orange-light); opacity: .16; }
.footer-doodle{ top: 90px; transform: rotate(-8deg); opacity: .1; }
.footer-doodle.side-art-right{ transform: rotate(8deg); }

/* global aged-poster grain, ties the photos/kraft-paper look to the whole page */
.grain-overlay{
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.brand-spark{
  position: absolute; top: -6px; right: -14px; width: 12px; height: 12px;
  color: var(--orange-light); opacity: .8; pointer-events: none;
}

.section-wave{
  position: absolute; left: 0; right: 0; bottom: -1px; height: clamp(28px, 6vw, 60px);
  line-height: 0; pointer-events: none; z-index: 3;
}
.section-wave svg{ width: 100%; height: 100%; display: block; }

/* ---------- section basics ---------- */
.section{ position: relative; padding: 96px 0; }
.section.on-dark{ background: var(--dark); color: #fff; }
.section-head{ margin-bottom: 52px; max-width: 640px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow{
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: .8rem;
  color: var(--orange); margin-bottom: 12px;
}
.on-dark .section-eyebrow{ color: var(--orange-light); }
.section-title{ font-size: clamp(2rem, 4.4vw, 2.9rem); line-height: 1.05; margin-bottom: 16px; }
.section-title .accent{ color: var(--orange); }
.on-dark .section-title .accent{ color: var(--orange-light); }
.section-title .accent.scribbled{ position: relative; display: inline-block; padding: 0 .06em; }
.scribble-mark{
  position: absolute; left: -14%; top: -28%; width: 128%; height: 160%;
  color: var(--orange); opacity: .55; z-index: -1; pointer-events: none;
}
.section-sub{ font-size: 1.05rem; line-height: 1.65; color: var(--muted); }
.on-dark .section-sub{ color: var(--muted-light); }

/* ---------- placeholder photo block ---------- */
.ph-img{
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(238,90,30,.14) 0 14px, rgba(238,90,30,.06) 14px 28px),
    linear-gradient(160deg, #3a2f22, #211b14);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(238,90,30,.25);
}
.ph-icon{ width: 44px; height: 44px; color: rgba(255,255,255,.25); }
.ph-img.has-real-photo{ background: var(--photo-bg); }
.ph-img.has-real-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-img.has-real-photo::after{ content: none; }
.ph-img::after{
  content: attr(data-caption); position: absolute; left: 14px; right: 14px; bottom: 12px;
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.55);
  background: rgba(0,0,0,.35); padding: 6px 10px; border-radius: 999px; text-align: center;
  backdrop-filter: blur(4px);
}
.ph-badge{
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--orange); color: #fff; font-size: .72rem; font-weight: 700;
  padding: 6px 12px; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase;
}
.ph-badge-outline{
  background: transparent; border: 1.5px dashed #fff; font-family: var(--ff-marker);
  text-transform: none; letter-spacing: .01em; transform: rotate(-4deg); font-size: .78rem;
}
.fav-card .ph-img{
  position: relative;
}
.fav-card .ph-img::before{
  content: ""; position: absolute; top: -8px; right: 16px; width: 56px; height: 20px; z-index: 3;
  background: repeating-linear-gradient(-45deg, rgba(238,90,30,.6) 0 5px, rgba(238,90,30,.32) 5px 10px);
  transform: rotate(3deg); border-radius: 2px; box-shadow: 0 3px 8px rgba(0,0,0,.25);
}
.fav-card:nth-child(even) .ph-img::before{ right: auto; left: 16px; transform: rotate(-3deg); }
.fav-card .ph-icon{ width: 60px; height: 60px; color: rgba(255,255,255,.4); }

.ph-story{ flex-direction: column; gap: 10px; }
.ph-icon-lg{ width: 64px; height: 64px; color: rgba(255,255,255,.32); }
.ph-icon-pencil{
  position: absolute; bottom: 40px; right: 18%; width: 30px; height: 30px;
  color: var(--orange); opacity: .8; transform: rotate(-8deg);
}

/* ---------- favorites ---------- */
.fav-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.fav-card{ background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.fav-body{ padding: 20px 20px 24px; }
.fav-top{ display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.fav-name{ font-size: 1.15rem; }
.fav-name::before{ content: "\2726"; display: inline-block; margin-right: 6px; font-size: .62em; color: var(--orange-dark); vertical-align: 2px; }
.fav-price{ font-family: var(--ff-body); font-weight: 700; font-size: .92rem; color: var(--orange-dark); white-space: nowrap; }
.fav-desc{ font-size: .92rem; line-height: 1.55; color: var(--muted); margin-bottom: 16px; }
.fav-cta{ display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .85rem; color: var(--orange-dark); }
.fav-cta svg{ width: 14px; height: 14px; transition: transform .2s ease; }
.fav-cta:hover svg{ transform: translateX(4px); }

/* ---------- menu ---------- */
.menu-section{ background: var(--dark); overflow-x: hidden; }
.menu-graffiti{
  position: absolute; top: 0; left: 0; width: 100%; z-index: 0; pointer-events: none;
  font-family: var(--ff-display); font-size: clamp(5rem, 18vw, 11rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 2.5px rgba(238,90,30,.3); letter-spacing: .02em;
  text-align: center; transform: rotate(-5deg); white-space: nowrap;
}
.menu-catnav{
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 52px;
}
.menu-catnav a{
  padding: 9px 17px; border-radius: 999px; border: 1.5px dashed rgba(255,255,255,.22);
  color: rgba(255,255,255,.75); font-size: .86rem; font-weight: 600; transition: all .2s ease;
}
.menu-catnav a:hover{ border-color: var(--orange); border-style: solid; color: #fff; background: rgba(238,90,30,.12); transform: rotate(-1deg); }

.menu-customize{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 980px; margin: 0 auto 60px;
}
.customize-card{
  position: relative; background: var(--dark2); border: 1.5px dashed rgba(238,90,30,.32);
  border-radius: var(--radius); padding: 26px 24px 22px; overflow: hidden;
}
.customize-card::before{
  content: ""; position: absolute; top: -8px; left: 20px; width: 44px; height: 16px;
  background: repeating-linear-gradient(-45deg, rgba(238,90,30,.5) 0 5px, rgba(238,90,30,.28) 5px 10px);
  transform: rotate(-4deg); border-radius: 2px; opacity: .8;
}
.customize-card:nth-child(2)::before{ left: auto; right: 20px; transform: rotate(4deg); }
.customize-icon{
  position: absolute; top: 18px; right: 18px; width: 26px; height: 26px;
  color: var(--orange-light); opacity: .5; transform: rotate(-6deg);
}
.customize-card h4{
  font-family: var(--ff-body); font-weight: 700; font-size: .92rem; text-transform: uppercase;
  letter-spacing: .05em; color: var(--orange-light); margin-bottom: 12px; padding-right: 30px;
}
.customize-card p{ font-size: .88rem; line-height: 1.55; color: var(--muted-light); }
.customize-card ul{ display: flex; flex-direction: column; gap: 8px; }
.customize-card li{
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  font-size: .88rem; color: rgba(255,255,255,.8);
}
.customize-card li span:last-child{ font-weight: 700; color: #fff; white-space: nowrap; }

.menu-cat{
  position: relative; max-width: 780px; margin: 0 auto 64px; scroll-margin-top: calc(var(--header-h) + 20px);
  background: var(--dark2); border: 1.5px dashed rgba(238,90,30,.35); border-radius: 20px;
  padding: 46px clamp(24px, 5vw, 56px) 40px; overflow: hidden;
}
.menu-cat::before{
  content: ""; position: absolute; top: -10px; left: 40px; width: 74px; height: 26px;
  background: repeating-linear-gradient(-45deg, rgba(238,90,30,.55) 0 6px, rgba(238,90,30,.3) 6px 12px);
  transform: rotate(-4deg); border-radius: 2px; box-shadow: 0 4px 10px rgba(0,0,0,.3); opacity: .85;
}
.menu-cat:nth-of-type(odd)::before{ left: auto; right: 40px; transform: rotate(4deg); }
.menu-cat-watermark{
  position: absolute; right: 6px; bottom: 6px; z-index: 0; pointer-events: none;
  font-family: var(--ff-display); font-size: clamp(2.6rem, 9vw, 4.4rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.08); letter-spacing: .02em;
  text-transform: uppercase; white-space: nowrap;
}
.menu-cat-note{ position: relative; z-index: 1; margin-top: -14px; margin-bottom: 24px; }

.menu-side-doodle{
  position: absolute; top: 50%; width: 62px; height: 62px; color: var(--orange-light);
  opacity: .5; transform: translateY(-50%) rotate(-8deg); pointer-events: none; z-index: 0;
}
.menu-side-doodle.side-left{ left: -104px; }
.menu-side-doodle.side-right{ right: -104px; transform: translateY(-50%) rotate(8deg); }

/* below the gutter breakpoint there's no room outside the card — tuck the
   same doodle inside the card's corner instead of hiding it, so tablet/phone
   keep the same art the desktop gutters show */
@media (max-width: 1140px){
  .menu-side-doodle{
    top: auto; bottom: 18px; width: clamp(34px, 10vw, 48px); height: clamp(34px, 10vw, 48px);
    opacity: .22; transform: rotate(-10deg);
  }
  .menu-side-doodle.side-left{ left: 18px; }
  .menu-side-doodle.side-right{ right: 18px; left: auto; transform: rotate(10deg); }
}

.menu-cat-head{ position: relative; z-index: 1; text-align: center; margin-bottom: 30px; }
.menu-cat-marker{ display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 10px; }
.mk-line{
  flex: 1; max-width: 68px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(238,90,30,.55));
}
.menu-cat-marker .mk-line:last-child{ background: linear-gradient(90deg, rgba(238,90,30,.55), transparent); }
.mk-icon{
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px dashed rgba(238,90,30,.6); display: flex; align-items: center; justify-content: center;
  color: var(--orange-light); transform: rotate(-3deg);
  background: radial-gradient(circle, rgba(238,90,30,.1), transparent 70%);
}
.mk-icon svg{ width: 28px; height: 28px; }
.menu-cat-title{
  font-size: 1.7rem; color: #fff; letter-spacing: .02em;
}

.menu-items{ position: relative; z-index: 1; display: flex; flex-direction: column; gap: 26px; }
.menu-item.has-photo{ display: flex; gap: 18px; }
.menu-item-photo{
  width: 128px; height: 96px; border-radius: 12px; object-fit: cover; flex-shrink: 0;
  border: 1.5px solid rgba(238,90,30,.3); box-shadow: var(--shadow-sm);
}
.menu-item-body{ flex: 1; min-width: 0; }
.menu-item-top{ display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.menu-item-top h4{ font-family: var(--ff-body); font-weight: 700; font-size: 1.05rem; color: #fff; }
.menu-item-top h4::before{ content: "\2726"; display: inline-block; margin-right: 7px; font-size: .68em; color: var(--orange-light); vertical-align: 2px; }
.menu-item-line{ flex: 1; min-width: 20px; border-bottom: 1px dashed rgba(255,255,255,.2); }
.menu-price{ font-weight: 700; color: var(--orange-light); font-size: .92rem; white-space: nowrap; }
.menu-tag{
  background: var(--orange); color: #fff; font-size: .68rem; font-weight: 700;
  padding: 3px 9px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em;
}
.menu-tag.stamp{
  font-family: var(--ff-marker); background: transparent; color: var(--orange-light);
  border: 1.5px dashed var(--orange-light); border-radius: 999px; padding: 3px 12px 4px;
  text-transform: none; letter-spacing: .02em; font-size: .78rem; transform: rotate(-4deg);
  white-space: nowrap;
}
.menu-item p{ color: var(--muted-light); font-size: .94rem; line-height: 1.6; }
.menu-note{ color: var(--muted-light); font-size: .92rem; font-style: italic; position: relative; z-index: 1; }
.menu-note a{ color: var(--orange-light); font-weight: 600; font-style: normal; }
.menu-cta{ display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

/* ---------- about ---------- */
.about-solo{ max-width: 680px; margin: 0 auto; text-align: center; }
.about-solo .section-sub{ text-align: left; }
.about-solo .section-sub + .section-sub{ margin-top: 16px; }
.about-punch{
  font-family: var(--ff-display); font-size: 1.6rem; line-height: 1.25; color: var(--ink);
  margin-top: 26px; text-align: center;
}

/* ---------- reviews ---------- */
.reviews-top{
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--dark2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  padding: 26px 30px; margin-bottom: 40px;
}
.review-score{ position: relative; display: flex; align-items: center; gap: 16px; }
.review-spark{ position: absolute; top: -14px; left: -18px; width: 22px; height: 22px; color: var(--orange-light); opacity: .7; }
.review-score .num{ font-family: var(--ff-display); font-size: 2.6rem; color: var(--orange-light); }
.review-stars{ display: flex; gap: 3px; color: var(--orange-light); }
.review-stars svg{ width: 15px; height: 15px; }
.review-score-meta{ font-size: .82rem; color: var(--muted-light); margin-top: 4px; }

.review-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 44px; }
.review-card{
  background: var(--dark2); border: 1.5px dashed rgba(238,90,30,.32); border-radius: var(--radius);
  padding: 30px 26px 26px; position: relative; overflow: hidden;
}
.review-card::before{
  content: ""; position: absolute; top: -8px; left: 22px; width: 42px; height: 16px;
  background: repeating-linear-gradient(-45deg, rgba(238,90,30,.55) 0 5px, rgba(238,90,30,.3) 5px 10px);
  transform: rotate(-4deg); border-radius: 2px; opacity: .8;
}
.review-card:nth-child(even)::before{ left: auto; right: 22px; transform: rotate(4deg); }
.quote-mark-doodle{ width: 36px; height: 30px; color: var(--orange-light); opacity: .7; }
.review-card p{ color: rgba(255,255,255,.75); font-size: .94rem; line-height: 1.6; margin: 14px 0 18px; }
.review-card .who{ font-weight: 700; font-size: .88rem; }
.placeholder-tag{
  display: inline-block; margin-top: 4px; font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--orange-light); opacity: .75;
}

.follow-bar{
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)); border-radius: var(--radius);
  padding: 26px 30px;
}
.follow-handle{ display: flex; align-items: center; gap: 16px; }
.ig-icon{
  width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.ig-icon svg{ width: 22px; height: 22px; }
.follow-handle h3{ font-family: var(--ff-body); font-weight: 700; font-size: 1.05rem; color: #fff; }
.follow-handle p{ font-size: .88rem; color: rgba(255,255,255,.85); margin-top: 2px; }
.follow-bar .btn-outline-light{ border-color: rgba(255,255,255,.7); }
.follow-bar .btn-outline-light:hover{ background: #fff; color: var(--orange-dark); }

/* ---------- location ---------- */
.location{ background: var(--paper); }
.location-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.location-info{
  position: relative; display: flex; flex-direction: column; gap: 20px;
  background: #fff; border: 1.5px dashed rgba(238,90,30,.4); border-radius: var(--radius);
  padding: 32px 30px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.location-info::before{
  content: ""; position: absolute; top: -8px; left: 26px; width: 50px; height: 18px;
  background: repeating-linear-gradient(-45deg, rgba(238,90,30,.55) 0 5px, rgba(238,90,30,.3) 5px 10px);
  transform: rotate(-4deg); border-radius: 2px; box-shadow: 0 3px 8px rgba(0,0,0,.15);
}
.loc-row{ display: flex; align-items: flex-start; gap: 14px; }
.loc-row svg{ width: 20px; height: 20px; color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.loc-row strong{ display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 3px; }
.loc-row span, .loc-row a{ font-weight: 600; font-size: 1rem; }
.loc-row a:hover{ color: var(--orange-dark); }
.location-ctas{ display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }
.location-map{
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  min-height: 320px; border: 1.5px dashed rgba(238,90,30,.4);
}
.map-frame{ width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---------- footer ---------- */
.site-footer{ position: relative; background: var(--dark); color: rgba(255,255,255,.7); padding: 64px 0 26px; overflow: hidden; }
.footer-grid{ display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p{ margin: 14px 0 18px; font-size: .92rem; line-height: 1.6; }
.footer-social{ display: flex; gap: 12px; }
.footer-social a{
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; transition: all .2s ease;
}
.footer-social a:hover{ background: var(--orange); border-color: var(--orange); }
.footer-col h4{ font-family: var(--ff-body); font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: 16px; }
.footer-col ul{ display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover{ color: #fff; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px;
  font-size: .82rem; color: rgba(255,255,255,.45);
}

/* ---------- add-to-cart buttons on menu items ---------- */
.add-cart-btn{
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--orange); color: #fff; transition: transform .15s ease, background .15s ease;
}
.add-cart-btn svg{ width: 14px; height: 14px; }
.add-cart-btn:hover{ background: var(--orange-dark); transform: scale(1.1); }
.add-cart-btn.just-added{ animation: cartPop .35s ease; }
@keyframes cartPop{ 0%{ transform: scale(1); } 40%{ transform: scale(1.35); } 100%{ transform: scale(1); } }

.add-cart-btn.has-combo{ box-shadow: 0 0 0 3px rgba(255,122,61,.3); }
.add-cart-btn.has-combo svg{ transition: transform .2s ease; }
.add-cart-btn.has-combo.open{ background: var(--orange-dark); box-shadow: 0 0 0 3px rgba(255,122,61,.55); }
.add-cart-btn.has-combo.open svg{ transform: rotate(135deg); }

.variant-add-btn.has-combo{ box-shadow: 0 0 0 3px rgba(255,122,61,.2); }
.variant-add-btn.has-combo svg{ transition: transform .2s ease; }
.variant-add-btn.has-combo.open{ background: rgba(238,90,30,.18); box-shadow: 0 0 0 3px rgba(255,122,61,.4); }
.variant-add-btn.has-combo.open svg{ transform: rotate(135deg); }
.flavor-panel .variant-add-btn{ border-style: dashed; }
.choice-panel .variant-add-btn{ border-style: dashed; }
.combo-subpanel-container{ display: flex; flex-wrap: wrap; gap: 8px; flex-basis: 100%; }
.combo-subpanel-container:not(:empty){ margin-top: 10px; padding-top: 10px; border-top: 1px dashed rgba(255,255,255,.12); }
.choice-or{
  display: flex; align-items: center; font-family: var(--ff-marker);
  color: var(--muted-light); font-size: .8rem; opacity: .75; text-transform: lowercase;
}

.combo-panel{
  display: none; flex-wrap: wrap; gap: 8px; margin-top: 10px; padding-top: 10px;
  border-top: 1px dashed rgba(255,255,255,.12); position: relative; z-index: 1;
}
.combo-panel.open{ display: flex; }

@media (min-width: 768px){
  .combo-panel{ gap: 6px; margin-top: 8px; padding-top: 8px; }
  .combo-panel .variant-add-btn{ padding: 4px 10px 4px 6px; font-size: .72rem; }
  .combo-panel .variant-add-btn svg{ width: 12px; height: 12px; padding: 2px; }
}

.menu-item-actions{
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; position: relative; z-index: 1;
}
.variant-add-btn{
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px 6px 8px;
  border-radius: 999px; border: 1.5px solid var(--orange); background: transparent;
  color: var(--orange-light); font-family: var(--ff-body); font-weight: 700; font-size: .82rem;
  cursor: pointer; transition: all .15s ease;
}
.variant-add-btn svg{ width: 14px; height: 14px; background: var(--orange); border-radius: 50%; padding: 3px; box-sizing: content-box; color: #fff; }
.variant-add-btn:hover{ background: rgba(238,90,30,.15); }

/* ---------- cart floating button ---------- */
.cart-fab{
  position: fixed; right: 20px; bottom: 20px; z-index: 95;
  display: flex; align-items: center; gap: 10px; padding: 12px 18px 12px 14px;
  border: none; border-radius: 999px; background: var(--orange); color: #fff;
  box-shadow: var(--shadow); cursor: pointer; font-family: var(--ff-body);
  transition: transform .18s ease, background .18s ease;
}
.cart-fab:hover{ background: var(--orange-dark); transform: translateY(-2px); }
.cart-fab.just-added{ animation: cartPop .32s ease; }

.fly-to-cart{
  position: fixed; z-index: 200; border-radius: 50%; background: var(--orange);
  pointer-events: none; box-shadow: 0 2px 10px rgba(0,0,0,.35);
  transition: transform 1s cubic-bezier(.3,.75,.35,1), opacity 1s ease .3s;
}
.cart-fab svg{ width: 22px; height: 22px; flex-shrink: 0; }
.cart-fab-info{ display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.cart-fab-count{ font-size: .68rem; font-weight: 600; opacity: .9; text-transform: uppercase; letter-spacing: .04em; }
.cart-fab-total{ font-size: 1rem; font-weight: 800; }
.cart-fab.is-empty{ opacity: .55; }

/* ---------- cart drawer ---------- */
.cart-backdrop{
  position: fixed; inset: 0; background: rgba(10,8,5,.55); z-index: 149;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.cart-backdrop.open{ opacity: 1; pointer-events: auto; }
.cart-drawer{
  position: fixed; top: 0; right: -100%; bottom: 0; width: min(420px, 92vw); z-index: 150;
  background: var(--dark2); display: flex; flex-direction: column;
  box-shadow: -20px 0 50px rgba(0,0,0,.4); transition: right .3s ease;
}
.cart-drawer.open{ right: 0; }
.cart-drawer-head{
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 22px 22px 18px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.cart-drawer-head h3{
  display: flex; align-items: center; gap: 10px; font-family: var(--ff-body); font-weight: 700;
  font-size: 1.1rem; color: #fff;
}
.cart-drawer-head h3 svg{ width: 20px; height: 20px; color: var(--orange-light); }
.cart-close{
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  background: transparent; color: rgba(255,255,255,.8); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .15s ease;
}
.cart-close:hover{ background: rgba(255,255,255,.1); color: #fff; }
.cart-close svg{ width: 16px; height: 16px; }

.cart-items{ flex: 1; overflow-y: auto; padding: 16px 22px; }
.cart-empty{ color: var(--muted-light); font-size: .92rem; text-align: center; padding: 40px 10px; }
.cart-empty-icon{ display: block; width: 56px; height: 56px; margin: 0 auto 14px; color: var(--orange-light); opacity: .5; }

.cart-item{
  padding: 16px 0; border-bottom: 1px dashed rgba(255,255,255,.12);
  display: flex; flex-direction: column; gap: 10px;
}
.cart-item:last-child{ border-bottom: none; }
.cart-item-row{ display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.cart-item-info{ flex: 1; min-width: 0; }
.cart-item-right{ display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.cart-item-name{ font-weight: 700; color: #fff; font-size: .95rem; }
.cart-item-variant{ font-size: .78rem; color: var(--orange-light); font-weight: 600; margin-top: 2px; }
.cart-item-price{ font-weight: 700; color: var(--orange-light); font-size: .92rem; white-space: nowrap; }
.cart-item-remove{
  width: 26px; height: 26px; border-radius: 50%; border: none; background: transparent;
  color: rgba(255,255,255,.4); cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .15s ease;
}
.cart-item-remove:hover{ color: #ff6b5c; background: rgba(255,90,60,.12); }
.cart-item-remove svg{ width: 15px; height: 15px; }

.cart-item-controls{ display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.qty-stepper{ display: flex; align-items: center; gap: 10px; }
.qty-btn{
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  background: transparent; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .15s ease;
}
.qty-btn:hover{ background: var(--orange); border-color: var(--orange); }
.qty-btn svg{ width: 12px; height: 12px; }
.qty-value{ font-weight: 700; color: #fff; min-width: 16px; text-align: center; font-size: .92rem; }

.cart-item-note{
  width: 100%; background: rgba(255,255,255,.06); border: 1px dashed rgba(255,255,255,.2);
  border-radius: 8px; padding: 8px 10px; color: #fff; font-family: var(--ff-body); font-size: .82rem;
}
.cart-item-note::placeholder{ color: rgba(255,255,255,.35); }
.cart-item-note:focus{ outline: none; border-color: var(--orange); background: rgba(255,255,255,.09); }

.cart-footer{ padding: 18px 22px 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 12px; }
.cart-total-row{
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--ff-display); font-size: 1.3rem; color: #fff;
}
.cart-total-row span:last-child{ color: var(--orange-light); }
.cart-clear{
  background: none; border: none; color: rgba(255,255,255,.5); font-size: .82rem;
  text-decoration: underline; cursor: pointer; padding: 4px;
}
.cart-clear:hover{ color: #fff; }

/* ---------- checkout popup ---------- */
.checkout-backdrop{
  position: fixed; inset: 0; background: rgba(10,8,5,.6); z-index: 159;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.checkout-backdrop.open{ opacity: 1; pointer-events: auto; }
.checkout-modal{
  position: fixed; top: 50%; left: 50%; width: min(420px, 90vw); z-index: 160;
  background: var(--dark2); border: 1.5px dashed rgba(238,90,30,.4); border-radius: var(--radius);
  padding: 26px 26px 28px; box-shadow: var(--shadow);
  transform: translate(-50%, -46%) scale(.96); opacity: 0; pointer-events: none;
  transition: transform .25s ease, opacity .25s ease; max-height: 88vh; overflow-y: auto;
}
.checkout-modal.open{ transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }
.checkout-head{ display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.checkout-head h3{ font-family: var(--ff-body); font-weight: 700; font-size: 1.05rem; color: #fff; }

.checkout-type-options{ display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.checkout-type-btn{
  flex: 1; min-width: 100px; padding: 12px 10px; border-radius: 10px;
  border: 1.5px dashed rgba(255,255,255,.25); background: transparent; color: rgba(255,255,255,.8);
  font-family: var(--ff-body); font-weight: 700; font-size: .88rem; cursor: pointer; transition: all .15s ease;
}
.checkout-type-btn:hover{ border-color: var(--orange-light); color: #fff; }
.checkout-type-btn.selected{ background: var(--orange); border-color: var(--orange); border-style: solid; color: #fff; }

.checkout-fields{ display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px; }
.checkout-label{ display: flex; flex-direction: column; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--muted-light); }
.checkout-label-optional{ font-weight: 400; font-size: .76rem; color: rgba(255,255,255,.4); }
.checkout-label[hidden]{ display: none; }
.checkout-input{
  background: rgba(255,255,255,.06); border: 1px dashed rgba(255,255,255,.22); border-radius: 8px;
  padding: 11px 12px; color: #fff; font-family: var(--ff-body); font-size: .92rem;
}
.checkout-input::placeholder{ color: rgba(255,255,255,.35); }
.checkout-input:focus{ outline: none; border-color: var(--orange); background: rgba(255,255,255,.09); }
.checkout-map-wrap{ margin: 4px 0 14px; }
.checkout-map-wrap[hidden]{ display: none; }
.checkout-map-hint{ color: var(--muted-light); font-size: .8rem; line-height: 1.5; margin-bottom: 8px; }
.checkout-map{
  width: 100%; height: 220px; border-radius: 10px; overflow: hidden;
  border: 1px dashed rgba(255,255,255,.22); background: rgba(255,255,255,.06);
}
.checkout-map-status{ font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.45); margin-top: 8px; }
.checkout-map-status.is-pinned{ color: var(--orange-light); }
.checkout-error{ color: #ff8a6f; font-size: .82rem; font-weight: 600; margin: 6px 0 14px; }
#checkoutConfirm{ margin-top: 6px; }
.checkout-skip-btn{
  display: block; width: 100%; margin-top: 12px; background: none; border: none;
  color: rgba(255,255,255,.5); font-family: var(--ff-body); font-size: .82rem;
  text-decoration: underline; cursor: pointer; padding: 4px; text-align: center;
}
.checkout-skip-btn:hover{ color: #fff; }
.skip-confirm-text{ color: var(--muted-light); font-size: .9rem; line-height: 1.55; margin-bottom: 22px; }
.skip-confirm-actions{ display: flex; gap: 12px; }
.skip-confirm-actions .btn{ flex: 1; justify-content: center; }
#skipGoBack{ background: rgba(255,255,255,.94); border-color: rgba(255,255,255,.94); color: var(--ink); font-weight: 700; }
#skipGoBack:hover{ background: #fff; border-color: #fff; }

@media (max-width: 620px){
  .cart-fab{ right: 14px; bottom: 16px; padding: 10px 16px 10px 12px; }
  .cart-fab-total{ font-size: .92rem; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .nav-links{ display: none; }
  .nav-phone{ display: none; }
  .hamburger{ display: block; }
  .fav-grid{ grid-template-columns: repeat(2, 1fr); }
  .menu-customize{ grid-template-columns: 1fr; }
  .review-grid{ grid-template-columns: 1fr; }
  .location-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  .fav-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .hero-foot{ flex-direction: column; gap: 12px; }
  .section{ padding: 64px 0; }
  .reviews-top{ flex-direction: column; align-items: flex-start; }
  .follow-bar{ flex-direction: column; align-items: flex-start; }
  .menu-cat{ padding: 40px 20px 32px; border-radius: 16px; }
  .menu-cat-watermark{ font-size: 2.2rem; opacity: .6; }
  .mk-line{ max-width: 34px; }
  .doodle-chili{ width: 32px; height: 32px; }
  .doodle-flame{ width: 28px; height: 28px; }
  .doodle-hat{ width: 38px; height: 30px; }
  .doodle-horseshoe{ width: 30px; height: 24px; }
  .doodle-spark-1{ width: 20px; height: 20px; }
  .doodle-spark-2{ width: 16px; height: 16px; }
  .menu-item.has-photo{ flex-direction: column; gap: 12px; }
  .menu-item-photo{ width: 100%; height: auto; aspect-ratio: 4/3; }
  .combo-panel{ gap: 6px; }
  .combo-panel .variant-add-btn{ padding: 4px 9px 4px 5px; font-size: .68rem; gap: 4px; }
  .combo-panel .variant-add-btn svg{ width: 10px; height: 10px; padding: 2px; }
}
