/* ============================================================
   LAKE EFFECT DINER — lakeeffectdiner.com redesign
   One stylesheet, hand-written. A 1952 Mountain View dining car
   in Buffalo, NY. Palette pulled straight off the neon sign:
   magenta neon / sky blue / taxicab yellow / chrome / midnight.
   Type: Yellowtail (script) + Fugaz One (sign letters) + Jost.
   ============================================================ */

:root {
  /* night — the neon hours */
  --night: #0b0e22;
  --night-2: #12173a;
  --night-3: #1a2150;
  --night-line: rgba(120, 150, 255, 0.16);

  /* day — the counter hours */
  --cream: #fdf7ea;
  --cream-2: #f5ecd7;
  --paper: #fffdf4;
  --ink: #1f2752;          /* menu-board navy */
  --ink-soft: #55598a;

  /* neon + enamel */
  --pink: #ff3d9e;
  --pink-hi: #ff77c0;
  --pink-deep: #cf1e7c;
  --blue: #2fa7e6;
  --blue-deep: #156fa8;
  --cyan: #52d3ff;
  --yellow: #ffd23f;
  --yellow-deep: #eda600;
  --mint: #57d9a8;
  --red: #e23d50;

  --chrome-a: #f4f6f8;
  --chrome-b: #b9c2cc;
  --chrome-c: #78838f;

  --script: "Yellowtail", "Brush Script MT", cursive;
  --display: "Fugaz One", "Arial Black", sans-serif;
  --sans: "Jost", "Futura", "Century Gothic", sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 14px;
  --shadow: 0 22px 55px rgba(15, 12, 45, 0.35);
  --shadow-soft: 0 12px 34px rgba(31, 39, 82, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* scroll-behavior is scoped to :focus-within rather than set globally on html.
   Globally it makes EVERY programmatic scroll animate, including ones the
   browser performs while restoring position — which fights momentum scrolling
   on iOS. Anchor links still glide because activating one focuses the target. */
html:focus-within { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  /* clip, not hidden: overflow-x:hidden makes the body a scroll container,
     which on iOS Safari degrades momentum scrolling and interacts badly with
     position:fixed children (the header and the Steer bar). clip suppresses
     any stray horizontal overflow without creating a scroll container. */
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
}

/* height:auto pairs with the width/height attributes now on every <img>: the
   attributes reserve the correct space before the file arrives (no reflow as
   lazy images load mid-scroll), and height:auto keeps them proportional.
   Rules that need a different height (.fav-card figure img, .filmstrip img)
   are more specific and still win. */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

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

::selection { background: var(--pink); color: #fff; }

/* ── shared texture: boomerang laminate (like the counter tops) ── */
.laminate {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg fill='none' stroke='%231f2752' stroke-opacity='0.055' stroke-width='2'%3E%3Cpath d='M30 60q22-30 44 0t-14 34z'/%3E%3Cpath d='M170 30q30-18 40 12t-30 22z'/%3E%3Cpath d='M60 190q10-34 42-22t-6 40z'/%3E%3Cpath d='M190 160q34-8 32 24t-38 8z'/%3E%3Ccircle cx='120' cy='120' r='3'/%3E%3Ccircle cx='236' cy='96' r='3'/%3E%3Ccircle cx='24' cy='140' r='3'/%3E%3Ccircle cx='150' cy='236' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

/* ── checkerboard strips (straight off the printed menu) ── */
.checker {
  height: 34px;
  background:
    repeating-conic-gradient(var(--blue) 0% 25%, #fff 0% 50%)
    0 0 / 34px 34px;
}
.checker--pink {
  background:
    repeating-conic-gradient(var(--pink-deep) 0% 25%, #fff 0% 50%)
    0 0 / 34px 34px;
}
.checker--thin { height: 18px; background-size: 18px 18px; }

/* ── chrome banding (stainless corrugation) ── */
.chrome-band {
  height: 14px;
  background: repeating-linear-gradient(
    180deg,
    var(--chrome-a) 0 3px,
    var(--chrome-b) 3px 6px,
    var(--chrome-c) 6px 8px,
    var(--chrome-b) 8px 11px,
    var(--chrome-a) 11px 14px
  );
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* ── neon text helpers ── */
.neon-pink {
  color: #ffe3f3;
  text-shadow:
    0 0 6px rgba(255, 119, 192, 0.9),
    0 0 18px rgba(255, 61, 158, 0.85),
    0 0 42px rgba(255, 61, 158, 0.6),
    0 0 80px rgba(255, 61, 158, 0.35);
}
.neon-blue {
  color: #e8f9ff;
  text-shadow:
    0 0 6px rgba(82, 211, 255, 0.9),
    0 0 18px rgba(47, 167, 230, 0.85),
    0 0 42px rgba(47, 167, 230, 0.55),
    0 0 80px rgba(47, 167, 230, 0.3);
}
.neon-yellow {
  color: #fff6d8;
  text-shadow:
    0 0 6px rgba(255, 210, 63, 0.9),
    0 0 18px rgba(255, 210, 63, 0.75),
    0 0 44px rgba(237, 166, 0, 0.5);
}

/* subtle tube flicker on load */
@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  3% { opacity: 0.6; }
  5% { opacity: 1; }
  8% { opacity: 0.75; }
  10% { opacity: 1; }
}
.flicker { animation: neonFlicker 3.2s linear 1 both; }

/* starburst sparkles */
.spark {
  position: absolute;
  width: 22px; height: 22px;
  pointer-events: none;
  opacity: 0.85;
  animation: twinkle 2.8s ease-in-out infinite;
}
.spark svg { width: 100%; height: 100%; }
.spark--slow { animation-duration: 4.4s; animation-delay: 1.2s; }
@keyframes twinkle {
  0%, 100% { transform: scale(0.55) rotate(0deg); opacity: 0.35; }
  50% { transform: scale(1.1) rotate(18deg); opacity: 1; }
}

/* section headers */
.kicker {
  font-family: var(--script);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.1;
  display: block;
  margin-bottom: 4px;
}
.kicker--pink { color: var(--pink-deep); }
.kicker--blue { color: var(--blue-deep); }
.kicker--yellow { color: var(--yellow); }

h1, h2, h3 { line-height: 1.08; }
.display {
  font-family: var(--display);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.lede { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); max-width: 62ch; }

/* ── buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 15.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--pink {
  background: linear-gradient(180deg, var(--pink-hi), var(--pink) 45%, var(--pink-deep));
  color: #fff;
  box-shadow: 0 10px 26px rgba(207, 30, 124, 0.45), 0 0 24px rgba(255, 61, 158, 0.35);
}
.btn--pink:hover { box-shadow: 0 14px 34px rgba(207, 30, 124, 0.55), 0 0 40px rgba(255, 61, 158, 0.5); }

.btn--yellow {
  background: linear-gradient(180deg, #ffe27a, var(--yellow) 45%, var(--yellow-deep));
  color: #4a3200;
  box-shadow: 0 10px 26px rgba(237, 166, 0, 0.4);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

.btn--ink {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}
.btn--ink:hover { background: var(--night-3); }

.btn--outline-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline-ink:hover { background: var(--ink); color: var(--cream); }

/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  /* No backdrop-filter: .scrolled is already 97% opaque, so the blur was
     invisible exactly when scrolling happens — while still forcing a
     full-width GPU re-blur every frame. Same reasoning as .steer-bar. */
  background: linear-gradient(180deg, rgba(11, 14, 34, 0.96), rgba(11, 14, 34, 0.88));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}
.site-header.scrolled {
  background: rgb(9, 11, 28);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}
.site-header::after {
  content: "";
  display: block;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--pink) 0 60px,
    var(--cyan) 60px 120px,
    var(--yellow) 120px 180px
  );
  opacity: 0.9;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}
.brand img { height: 52px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-script {
  font-family: var(--script);
  font-size: 27px;
  color: var(--pink-hi);
  text-shadow: 0 0 12px rgba(255, 61, 158, 0.65);
}
.brand-diner {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 5px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav { display: flex; gap: 6px; }
.main-nav a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s, text-shadow 0.2s;
}
.main-nav a:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(82, 211, 255, 0.9);
}
.main-nav a.active {
  color: var(--yellow);
  text-shadow: 0 0 14px rgba(255, 210, 63, 0.7);
}

.header-call {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  color: #2a1200;
  background: linear-gradient(180deg, #ffe27a, var(--yellow) 45%, var(--yellow-deep));
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(237, 166, 0, 0.4);
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.header-call:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(237, 166, 0, 0.55); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  width: 46px; height: 42px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -7px; left: 0; right: 0; }
.nav-toggle span::after { top: 7px; left: 0; right: 0; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav sheet */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: linear-gradient(160deg, var(--night) 0%, var(--night-2) 60%, #251243 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--display);
  font-size: clamp(30px, 8vw, 44px);
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  transition: color 0.2s, text-shadow 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--pink-hi);
  text-shadow: 0 0 24px rgba(255, 61, 158, 0.8);
}
.mobile-nav .mobile-call {
  margin-top: 18px;
  font-size: 20px;
  background: linear-gradient(180deg, #ffe27a, var(--yellow) 45%, var(--yellow-deep));
  color: #2a1200;
  border-radius: 999px;
  padding: 14px 30px;
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 860px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  padding-top: 120px;
}
/* Hero art is set here rather than inline so it can be swapped by viewport.
   The 2000px file is a ~13MB decode on a phone for a ~390px-wide slot, and that
   decode lands right as the page becomes interactive — the first thing you feel
   when you start scrolling. Small screens get an 1100px copy instead. */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 38%;
  background-image: url("/assets/img/hero-night-mobile.jpg");
}
@media (min-width: 901px) {
  .hero-bg { background-image: url("/assets/img/hero-night.jpg"); }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 14, 34, 0.55) 0%, rgba(11, 14, 34, 0.15) 38%, rgba(11, 14, 34, 0.82) 78%, var(--night) 100%);
}
.hero-inner {
  width: 100%;
  padding-bottom: clamp(56px, 9vh, 96px);
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255, 119, 192, 0.75);
  border-radius: 999px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(20, 8, 30, 0.55);
  box-shadow: 0 0 22px rgba(255, 61, 158, 0.35), inset 0 0 18px rgba(255, 61, 158, 0.12);
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink-hi);
  box-shadow: 0 0 10px var(--pink);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot { 50% { transform: scale(1.5); opacity: 0.7; } }
.hero-badge [data-promo-rotator] { transition: opacity 0.35s; }

.hero h1 { margin-bottom: 16px; }
.hero-script {
  display: block;
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 52px);
  margin-bottom: 2px;
}
.hero-display {
  display: block;
  font-family: var(--display);
  font-size: clamp(42px, 7.4vw, 92px);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-sub {
  max-width: 56ch;
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-est {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(56px, 9vh, 96px);
  text-align: center;
  transform: rotate(6deg);
  font-family: var(--display);
  color: var(--yellow);
  border: 2px dashed rgba(255, 210, 63, 0.65);
  border-radius: 50%;
  width: 118px; height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(20, 15, 5, 0.35);
}
.hero-est b { font-size: 26px; letter-spacing: 2px; }

/* ════════════════════════════════════════════
   TICKER (chrome marquee strip)
   ════════════════════════════════════════════ */
.ticker {
  background: repeating-linear-gradient(
    180deg,
    #eef1f4 0 4px, #c3ccd6 4px 8px, #8d99a6 8px 10px, #c3ccd6 10px 14px, #eef1f4 14px 18px,
    #c3ccd6 18px 22px, #8d99a6 22px 24px, #c3ccd6 24px 28px, #eef1f4 28px 32px
  );
  border-top: 3px solid #56616d;
  border-bottom: 3px solid #56616d;
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tick 38s linear infinite;
}
.ticker-track span {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1c2733;
  white-space: nowrap;
  padding: 0 18px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.65);
}
.ticker-track .tick-star { color: var(--pink-deep); }
@keyframes tick { to { transform: translateX(-50%); } }

/* ════════════════════════════════════════════
   GENERIC SECTION SPACING
   ════════════════════════════════════════════ */
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 56px); position: relative; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 52px); }

/* ════════════════════════════════════════════
   INTRO (cream, mascot)
   ════════════════════════════════════════════ */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}
.intro-figure { position: relative; text-align: center; }
.intro-figure img {
  width: min(100%, 300px);
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(31, 39, 82, 0.25));
  animation: floaty 5.5s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: translateY(-10px) rotate(1.5deg); } }

.intro-copy p + p { margin-top: 16px; }
.intro-copy .lede { margin-bottom: 18px; color: var(--ink); }
.intro-copy a {
  color: var(--pink-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.intro-copy a:hover { color: var(--pink); }

.stat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.stat-chip {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--ink);
  padding: 12px 18px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.stat-chip:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.stat-chip .ico { font-size: 18px; line-height: 1; }

/* ════════════════════════════════════════════
   SHAKE BAR (the star of the show)
   ════════════════════════════════════════════ */
.shakes {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(255, 61, 158, 0.28), transparent 60%),
    radial-gradient(900px 480px at 0% 110%, rgba(47, 167, 230, 0.25), transparent 55%),
    linear-gradient(165deg, #1c0f33 0%, #2a1045 45%, #12173a 100%);
  color: #fff;
  overflow: hidden;
}
.shakes .section-head h2 { color: #fff; }
.shakes .lede { color: rgba(255, 255, 255, 0.82); }

.shake-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.shake-photo {
  position: relative;
  transform: rotate(-2.5deg);
  background: #fff;
  padding: 14px 14px 58px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.shake-photo img { border-radius: 3px; }
.shake-photo figcaption {
  position: absolute;
  bottom: 16px; left: 0; right: 0;
  text-align: center;
  font-family: var(--script);
  font-size: 24px;
  color: var(--ink);
}
.shake-photo .price-burst {
  position: absolute;
  top: -26px; right: -26px;
  width: 108px; height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--display);
  color: #fff;
  background: var(--pink);
  clip-path: polygon(50% 0%, 61% 12%, 76% 6%, 79% 22%, 95% 22%, 90% 37%, 100% 45%, 89% 55%, 96% 69%, 80% 71%, 79% 87%, 64% 82%, 55% 96%, 45% 84%, 30% 92%, 27% 76%, 11% 77%, 16% 62%, 2% 55%, 13% 45%, 4% 32%, 20% 29%, 20% 13%, 36% 17%);
  transform: rotate(10deg);
  font-size: 13px;
  line-height: 1.15;
  filter: drop-shadow(0 8px 16px rgba(207, 30, 124, 0.5));
}
.shake-photo .price-burst b { font-size: 21px; }

.flavor-board {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 20px 50px rgba(0,0,0,0.35);
}
.flavor-board-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.flavor-board-head h3 {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.flavor-board-head .count {
  font-family: var(--script);
  font-size: 24px;
  color: var(--pink-hi);
  text-shadow: 0 0 14px rgba(255, 61, 158, 0.6);
}
.flavor-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.flavor-list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 9px 17px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.4px;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
  cursor: default;
}
.flavor-list li:hover {
  transform: translateY(-3px) rotate(-1deg);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.flavor-list .fdot {
  width: 11px; height: 11px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}

.shake-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.shake-note {
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 15px;
}
.shake-note b {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}

.wednesday-banner {
  margin-top: clamp(36px, 5vw, 54px);
  text-align: center;
  border: 2px solid rgba(255, 119, 192, 0.6);
  border-radius: 22px;
  padding: clamp(26px, 4vw, 40px);
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(255, 61, 158, 0.22), transparent 70%),
    rgba(15, 6, 28, 0.45);
  box-shadow: 0 0 44px rgba(255, 61, 158, 0.22), inset 0 0 30px rgba(255, 61, 158, 0.08);
  position: relative;
}
.wednesday-banner .kicker { margin-bottom: 8px; }
.wednesday-banner h3 {
  font-family: var(--display);
  font-size: clamp(26px, 4.4vw, 44px);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.wednesday-banner p { color: rgba(255, 255, 255, 0.85); max-width: 52ch; margin: 0 auto 20px; }

/* ════════════════════════════════════════════
   TRIPLE-D (night navy)
   ════════════════════════════════════════════ */
.ddd {
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(255, 210, 63, 0.12), transparent 55%),
    var(--night);
  color: #fff;
}
.ddd-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}
.ddd-star {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 148px; height: 148px;
  background: var(--yellow);
  color: #3c2800;
  clip-path: polygon(50% 0%, 59% 13%, 73% 5%, 76% 20%, 92% 18%, 88% 33%, 100% 40%, 89% 50%, 100% 60%, 88% 67%, 92% 82%, 76% 80%, 73% 95%, 59% 87%, 50% 100%, 41% 87%, 27% 95%, 24% 80%, 8% 82%, 12% 67%, 0% 60%, 11% 50%, 0% 40%, 12% 33%, 8% 18%, 24% 20%, 27% 5%, 41% 13%);
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  transform: rotate(-8deg);
  margin-bottom: 24px;
  filter: drop-shadow(0 10px 22px rgba(237, 166, 0, 0.35));
}
.ddd-star b { font-size: 24px; }
.ddd h2 { font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 16px; }
.ddd p { color: rgba(255, 255, 255, 0.85); margin-bottom: 14px; max-width: 58ch; }

.ddd-picks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ddd-picks a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  width: 100%;
}
.ddd-picks li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--night-line);
  border-left: 4px solid var(--yellow);
  border-radius: 12px;
  padding: 14px 18px;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.ddd-picks li:hover { transform: translateX(6px); background: rgba(255, 255, 255, 0.09); }
.ddd-picks b {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: block;
}
.ddd-picks span { font-size: 14.5px; color: rgba(255, 255, 255, 0.7); }
.ddd-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* ════════════════════════════════════════════
   WALL OF FAME (Jeopardy, Tina Fey, the regulars)
   ════════════════════════════════════════════ */
.fame { background: var(--cream-2); overflow: hidden; }
.fame-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

/* the Jeopardy clue card — flips on hover/focus/tap */
.clue-flip {
  display: block;
  perspective: 1200px;
  text-decoration: none;
  transform: rotate(-1.6deg);
  transition: transform 0.3s var(--ease);
}
.clue-flip:hover { transform: rotate(0deg) scale(1.02); }
.clue-inner {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(6, 12, 133, 0.35);
}
.clue-flip:hover .clue-inner,
.clue-flip:focus-visible .clue-inner,
.clue-flip.flipped .clue-inner { transform: rotateY(180deg); }
.clue-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 6px;
  border: 6px solid #0a0a1a;
  background:
    radial-gradient(120% 90% at 50% 10%, #2331d9 0%, #060ce9 45%, #040994 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(18px, 2.6vw, 30px);
  gap: 10px;
}
.clue-face--back { transform: rotateY(180deg); }
.clue-cat {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  color: #ffcc4d;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #000;
}
.clue-text {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.35;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.55);
}
.clue-hint {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.clue-face--back .clue-text { color: #ffcc4d; }

/* framed / polaroid tiles on the wall */
.fame-polaroid {
  background: #fff;
  padding: 12px 12px 48px;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(31, 39, 82, 0.25);
  transform: rotate(1.8deg);
  position: relative;
  transition: transform 0.3s var(--ease);
}
.fame-polaroid:hover { transform: rotate(0deg) scale(1.03); z-index: 2; }
.fame-polaroid img { border-radius: 2px; width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.fame-polaroid figcaption {
  position: absolute;
  bottom: 11px; left: 0; right: 0;
  text-align: center;
  font-family: var(--script);
  font-size: clamp(19px, 2vw, 24px);
  color: #333a6b;
}
.fame-polaroid .tape {
  position: absolute;
  top: -12px; left: 50%;
  width: 110px; height: 26px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(255, 226, 122, 0.65);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.fame-polaroid--tilt-l { transform: rotate(-2.2deg); }
.fame-polaroid--tilt-l:hover { transform: rotate(0deg) scale(1.03); }

@media (max-width: 900px) {
  .fame-wall { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ════════════════════════════════════════════
   FAVORITES (cream cards)
   ════════════════════════════════════════════ */
.fav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 30px);
}
.fav-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(31, 39, 82, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fav-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(31, 39, 82, 0.18); }
.fav-card figure { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.fav-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.fav-card:hover figure img { transform: scale(1.05); }
.fav-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.fav-body h3 { font-family: var(--display); font-size: 19px; letter-spacing: 0.5px; text-transform: uppercase; }
.fav-body p { font-size: 15.5px; color: var(--ink-soft); flex: 1; }
.fav-tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--pink-deep);
}
.fav-card--cta {
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(400px 220px at 50% 0%, rgba(255, 61, 158, 0.14), transparent 70%),
    var(--ink);
  color: #fff;
  padding: 40px 28px;
  gap: 14px;
}
.fav-card--cta .kicker { color: var(--pink-hi); }
.fav-card--cta h3 { font-family: var(--display); font-size: 24px; text-transform: uppercase; }
.fav-card--cta p { color: rgba(255,255,255,0.75); font-size: 15.5px; }

/* ════════════════════════════════════════════
   STORY (sepia, polaroids, timeline)
   ════════════════════════════════════════════ */
.story { background: var(--cream-2); overflow: hidden; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}
.story-copy p + p { margin-top: 15px; }
.story-copy p { color: #3c4270; }
.story-copy .lede { color: var(--ink); }

.timeline {
  list-style: none;
  margin-top: 26px;
  border-left: 3px dashed rgba(31, 39, 82, 0.3);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.timeline li { position: relative; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -33px; top: 7px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--cream-2);
  box-shadow: 0 0 0 2px var(--pink);
}
.timeline b {
  font-family: var(--display);
  letter-spacing: 1px;
  font-size: 15px;
  color: var(--pink-deep);
  margin-right: 8px;
}

.polaroid-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 26px);
}
.polaroid {
  background: #fff;
  padding: 10px 10px 40px;
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(31, 39, 82, 0.22);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), z-index 0s;
}
.polaroid img { border-radius: 2px; filter: sepia(0.14) contrast(1.02); }
.polaroid figcaption {
  position: absolute;
  bottom: 9px; left: 0; right: 0;
  text-align: center;
  font-family: var(--script);
  font-size: 19px;
  color: #333a6b;
}
.polaroid:nth-child(1) { transform: rotate(-2.4deg); }
.polaroid:nth-child(2) { transform: rotate(1.8deg) translateY(14px); }
.polaroid:nth-child(3) { transform: rotate(2.2deg); }
.polaroid:nth-child(4) { transform: rotate(-1.6deg) translateY(10px); }
.polaroid:hover { transform: rotate(0) scale(1.04); z-index: 3; box-shadow: 0 24px 50px rgba(31, 39, 82, 0.3); }

/* film-strip band of extra story photos */
.filmstrip {
  margin-top: clamp(44px, 6vw, 70px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: var(--night);
  padding: 26px 18px;
  border-radius: 16px;
  position: relative;
  box-shadow: var(--shadow);
}
.filmstrip::before,
.filmstrip::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 10px;
  background-image: radial-gradient(circle, transparent 2.6px, var(--night) 2.7px),
    linear-gradient(#fff0 0 0);
  background-size: 22px 10px;
  background-color: #fff;
  opacity: 0.85;
}
.filmstrip::before { top: 8px; }
.filmstrip::after { bottom: 8px; }
.filmstrip img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  filter: grayscale(0.2) sepia(0.12);
  transition: transform 0.3s var(--ease), filter 0.3s;
}
.filmstrip img:hover { transform: scale(1.04); filter: none; }

/* ════════════════════════════════════════════
   VISIT (night, hours + map)
   ════════════════════════════════════════════ */
.visit {
  background:
    radial-gradient(1000px 460px at 100% 0%, rgba(47, 167, 230, 0.16), transparent 60%),
    var(--night);
  color: #fff;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: stretch;
}
/* Two stacked photos beside the hours card. On desktop .visit-grid stretches
   this to a definite height, so 1fr rows + height:100% resolve fine. Below
   1020px the grid is one column and this height becomes auto — see the
   breakpoint override, which stops the images overflowing the section. */
.visit-photos {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 0;
}
.visit-photos img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hours-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--night-line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hours-card h2 { font-size: clamp(28px, 3.6vw, 40px); }

.open-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: 1.5px solid rgba(87, 217, 168, 0.6);
  color: var(--mint);
  background: rgba(87, 217, 168, 0.08);
}
.open-pill .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
  animation: pulseDot 1.8s infinite;
}
.open-pill.closed { color: #ff9db4; border-color: rgba(255, 157, 180, 0.55); background: rgba(255, 157, 180, 0.07); }

.hours-rows { display: flex; flex-direction: column; }
.hours-rows > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 2px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
  font-size: 16.5px;
}
.hours-rows > div:last-child { border-bottom: none; }
.hours-rows .day { font-weight: 600; letter-spacing: 0.6px; }
.hours-rows .closed-txt { color: #ff9db4; font-weight: 600; }

.visit-address { color: rgba(255, 255, 255, 0.85); font-size: 16.5px; }
.visit-address b { display: block; font-family: var(--display); letter-spacing: 0.8px; font-size: 17px; text-transform: uppercase; margin-bottom: 4px; color: var(--cyan); text-shadow: 0 0 14px rgba(82, 211, 255, 0.5); }
.visit-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.site-footer {
  background: #080a1c;
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(50px, 7vw, 80px) 0 34px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  margin-bottom: 44px;
}
.footer-brand .brand-script { font-size: 34px; }
.footer-brand .brand-diner { font-size: 17px; letter-spacing: 7px; }
.footer-brand p { margin-top: 14px; font-size: 15.5px; max-width: 40ch; }
.footer-tag {
  margin-top: 18px;
  font-family: var(--script);
  font-size: 27px;
}
.site-footer h4 {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.site-footer address { font-style: normal; line-height: 1.9; font-size: 15.5px; }
.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; transition: color 0.2s, text-shadow 0.2s; }
.site-footer a:hover { color: var(--pink-hi); text-shadow: 0 0 12px rgba(255, 61, 158, 0.6); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: 15.5px; }

.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.social-row a:hover {
  border-color: var(--pink-hi);
  box-shadow: 0 0 18px rgba(255, 61, 158, 0.5);
  transform: translateY(-2px);
}
.social-row svg { width: 20px; height: 20px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
}

/* ════════════════════════════════════════════
   SUBPAGE HERO (mini)
   ════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 170px 0 74px;
  background:
    radial-gradient(900px 380px at 80% 0%, rgba(255, 61, 158, 0.18), transparent 60%),
    radial-gradient(700px 320px at 5% 100%, rgba(47, 167, 230, 0.16), transparent 55%),
    var(--night);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero .kicker { margin-bottom: 2px; }
.page-hero h1 { font-size: clamp(38px, 6.4vw, 72px); }
.page-hero p { max-width: 62ch; margin: 14px auto 0; color: rgba(255, 255, 255, 0.85); font-size: clamp(16.5px, 1.9vw, 19px); }

/* ════════════════════════════════════════════
   MENU PAGE
   ════════════════════════════════════════════ */
.menu-nav {
  position: sticky;
  top: 80px;
  z-index: 40;
  background: rgb(253, 247, 234);
  border-bottom: 2px solid rgba(31, 39, 82, 0.12);
  padding: 12px 0;
}
.menu-nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-nav-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* lives inside the flex row next to the pinned printed-menu pill */
  flex: 1 1 auto;
  min-width: 0;
}
.menu-nav-track::-webkit-scrollbar { display: none; }
.menu-nav-track a {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border: 1.5px solid rgba(31, 39, 82, 0.35);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.menu-nav-track a:hover,
.menu-nav-track a.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* printed-menu pill, pinned right of the scrolling track (mirrors steer716) */
.menu-nav-pdf {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, var(--pink), var(--pink-deep));
  padding: 9px 17px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(207, 30, 124, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.menu-nav-pdf:hover { transform: translateY(-1px); box-shadow: 0 7px 18px rgba(207, 30, 124, 0.5); }
.menu-nav-pdf .short { display: none; }
@media (max-width: 700px) {
  .menu-nav-inner { gap: 9px; }
  .menu-nav-pdf { font-size: 11.5px; letter-spacing: 0.8px; padding: 8px 12px; }
  .menu-nav-pdf .full { display: none; }
  .menu-nav-pdf .short { display: inline; }
}

.menu-section { padding: clamp(44px, 6vw, 72px) 0 clamp(20px, 3vw, 36px); scroll-margin-top: 150px; }
.menu-section-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.menu-section-head h2 { font-family: var(--display); font-size: clamp(26px, 3.6vw, 38px); text-transform: uppercase; }
.menu-section-head .script-side { font-family: var(--script); font-size: clamp(22px, 2.8vw, 30px); color: var(--pink-deep); }
.menu-section-note { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 26px; max-width: 70ch; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px clamp(30px, 5vw, 70px);
}
.menu-item { padding: 13px 0; border-bottom: 1px dashed rgba(31, 39, 82, 0.2); break-inside: avoid; }
.menu-item-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.menu-item-line h3 {
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.menu-item-line .dots {
  flex: 1;
  border-bottom: 2px dotted rgba(31, 39, 82, 0.35);
  transform: translateY(-4px);
  min-width: 20px;
}
.menu-item-line .price {
  font-family: var(--display);
  font-size: 16px;
  color: var(--pink-deep);
  white-space: nowrap;
}
.menu-item p { font-size: 15px; color: var(--ink-soft); margin-top: 3px; }
.menu-item .add-note { color: var(--blue-deep); font-style: italic; font-size: 14.5px; margin-top: 3px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 9px;
  transform: translateY(-2px);
  white-space: nowrap;
}
.badge--ddd { background: var(--yellow); color: #4a3200; }
.badge--vegan { background: rgba(87, 217, 168, 0.18); color: #157a52; border: 1px solid rgba(21, 122, 82, 0.4); }
.badge--veg { background: rgba(87, 217, 168, 0.12); color: #157a52; border: 1px dashed rgba(21, 122, 82, 0.4); }

/* shake section on the menu page — pink panel */
.menu-shakes {
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(255, 61, 158, 0.25), transparent 60%),
    linear-gradient(165deg, #23103d 0%, #2a1045 55%, #12173a 100%);
  color: #fff;
  border-radius: 24px;
  padding: clamp(30px, 5vw, 56px);
  margin: clamp(30px, 5vw, 50px) 0;
  scroll-margin-top: 150px;
}
.menu-shakes .menu-section-head h2 { color: #fff; }
.menu-shakes .menu-section-note { color: rgba(255, 255, 255, 0.78); }
.menu-shakes .menu-item { border-bottom-color: rgba(255, 255, 255, 0.18); }
.menu-shakes .menu-item p { color: rgba(255, 255, 255, 0.72); }
.menu-shakes .menu-item-line .price { color: var(--pink-hi); }
.menu-shakes .menu-item-line .dots { border-bottom-color: rgba(255, 255, 255, 0.3); }
.menu-shakes .add-note { color: var(--cyan); }

.menu-footnote {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 26px 0 60px;
  color: var(--ink-soft);
  font-size: 15px;
}

/* ════════════════════════════════════════════
   CONTACT / JOBS / STORE shared cards
   ════════════════════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(18px, 3vw, 28px);
}
.info-card {
  background: var(--paper);
  border: 1px solid rgba(31, 39, 82, 0.1);
  border-radius: var(--radius);
  padding: clamp(26px, 3.5vw, 38px);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.info-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(31, 39, 82, 0.16); }
.info-card .ico-round {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 18px;
  background: linear-gradient(160deg, rgba(255, 61, 158, 0.14), rgba(47, 167, 230, 0.14));
  border: 1.5px solid rgba(31, 39, 82, 0.15);
}
.info-card h3 { font-family: var(--display); font-size: 19px; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 8px; }
.info-card p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 14px; }
.info-card .big-link {
  font-family: var(--display);
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--pink-deep);
  text-decoration: none;
  border-bottom: 3px solid rgba(207, 30, 124, 0.25);
  transition: border-color 0.2s;
  overflow-wrap: anywhere;
}
.info-card .big-link:hover { border-color: var(--pink-deep); }

.positions { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0 6px; }
.position-chip {
  font-family: var(--display);
  font-size: 14.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 10px 20px;
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.position-chip:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); background: #fff; }

/* embedded directions map (contact) — mirrors steer716's map-frame */
.map-frame {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
  line-height: 0;
}
.map-frame iframe {
  width: 100%;
  height: 440px;
  border: 0;
}
@media (max-width: 640px) {
  .map-frame iframe { height: 340px; }
}

/* pantry (store) cards */
.pantry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(18px, 3vw, 28px);
}
.pantry-card {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 30px 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pantry-card:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--ink); }
.pantry-card .pantry-emoji { font-size: 42px; line-height: 1; margin-bottom: 16px; }
.pantry-card .pantry-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--ink);
  margin-bottom: 16px;
}
.pantry-card h3 { font-family: var(--display); font-size: 20px; text-transform: uppercase; margin-bottom: 6px; }
.pantry-card p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 16px; }
.pantry-price {
  font-family: var(--display);
  font-size: 24px;
  color: var(--pink-deep);
}
.pantry-price small { font-size: 14px; color: var(--ink-soft); font-family: var(--sans); font-weight: 600; letter-spacing: 0.4px; }

/* ── reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track, .spark, .intro-figure img, .flicker,
  .steer-bar .sb-win, .steer-bar .sb-btn::after { animation: none !important; }
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1020px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-call { display: none; }
  .ddd-grid, .story-grid, .visit-grid, .shake-grid { grid-template-columns: 1fr; }
  /* Single column ⇒ .visit-photos has an auto height, which makes the images'
     height:100% circular. Chrome fudges it; iOS Safari overflows the images
     into the next section. Size them by aspect-ratio instead — deterministic
     in every engine. */
  .visit-photos { grid-template-rows: auto auto; }
  .visit-photos img { height: auto; min-height: 0; aspect-ratio: 16 / 10; }
  .shake-photo { max-width: 440px; margin: 0 auto; }
  .fav-grid { grid-template-columns: 1fr 1fr; }
  .filmstrip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-figure img { width: min(60%, 230px); }
  .fav-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .shake-notes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-est { display: none; }
  .polaroid-stack { grid-template-columns: 1fr 1fr; }
  .menu-nav { top: 76px; }
  .shake-photo .price-burst { top: -20px; right: -6px; width: 92px; height: 92px; font-size: 11px; }
  .shake-photo .price-burst b { font-size: 17px; }
}

/* ---------- sister restaurant: The Steer ----------
   Same owners, same block (3165 vs 3151 Main). The diner closes at 3pm and is
   dark Tuesdays; The Steer opens at 4pm and is dark Sun/Mon. Between them,
   somebody is open every day — that's the story worth telling. */

/* Layer 1 — footer strip, every page */
.sister-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0 0 32px;
  padding: 18px 22px;
  border: 1px solid var(--night-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.35s var(--ease), background 0.35s;
}
.sister-strip:hover { border-color: rgba(255, 210, 63, 0.5); background: rgba(255, 255, 255, 0.07); }
.sister-strip .s-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--yellow);
}
.sister-strip .s-name { font-family: var(--display); font-size: 19px; color: var(--cream); }
.sister-strip .s-note { color: rgba(253, 247, 234, 0.75); font-size: 15px; }
.sister-strip .s-go {
  margin-left: auto; color: var(--cyan); font-family: var(--sans); font-weight: 600;
  font-size: 13.5px; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap;
}

/* Layer 2 — homepage band.
   Explicit background (not just the inherited body cream): this section follows
   the dark Visit band, and an opaque backdrop guarantees nothing from above can
   ever show through behind the copy. */
.sister-band { background: var(--cream); }
.sister-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.sister-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sister-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.sister-copy h2 { margin-bottom: 14px; }
.sister-hours { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.sister-hours span {
  padding: 7px 13px 6px;
  border: 1px solid rgba(31, 39, 82, 0.22);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .sister-grid { grid-template-columns: 1fr; }
  .sister-strip .s-go { margin-left: 0; }
}

/* ---------- sticky bottom bar → The Steer landing page ----------
   Mirrors the bar on steer716.com. Whole bar is one link; it routes to
   /the-steer (same domain, not jarring), which then hands off to the
   giveaway entry form on The Steer. */
.steer-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px clamp(14px, 4vw, 44px);
  /* No backdrop-filter here on purpose: the fill is ~96% opaque so the blur
     was invisible, but it forced the whole bar to re-composite on every hover
     transition and glow frame — which read as a flash.
     Flat background-color (not a gradient): gradients can't interpolate in a
     transition, so they snap — which would be a new flash on hover. */
  background-color: #0b0e22;
  border-top: 2px solid var(--yellow);
  text-decoration: none;
  transition: background-color 0.3s var(--ease);
}
.steer-bar:hover { background-color: #141a3d; }
.steer-bar .sb-note {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
  min-width: 0;
}
.steer-bar .sb-win {
  font-family: var(--script);
  font-size: 24px;
  line-height: 1;
  color: var(--pink-hi);
  text-shadow: 0 0 14px rgba(255, 61, 158, 0.55);
  white-space: nowrap;
  animation: sbWinGlow 3.2s ease-in-out infinite;
}
/* Neon tube breathing on the pink script. Crucially this animates COLOR as well
   as text-shadow: a real tube's core runs near-white when it's driven hard and
   settles to saturated pink when it isn't. Animating only the shadow left the
   letters at a constant #ff77c0, so the glow was invisible at a glance.
   Deliberately out of sync with the button (3.2s vs 4.6s) so the bar breathes
   instead of blinking on a beat. */
/* Kept to two shadow layers with a modest max radius. Each blurred shadow is a
   Gaussian pass over its whole radius, repainted every frame — and this element
   is position:fixed, so it repaints during the entire scroll. The old peak had
   four layers out to 84px, which is ~4x the pixel area of this one for a glow
   nobody could distinguish. */
@keyframes sbWinGlow {
  0%, 100% {
    color: #ff4fa8;
    text-shadow: 0 0 8px rgba(255, 61, 158, 0.55), 0 0 18px rgba(255, 61, 158, 0.3);
  }
  50% {
    color: #ffd2ec;
    text-shadow: 0 0 9px rgba(255, 190, 227, 0.95), 0 0 26px rgba(255, 77, 170, 0.75);
  }
}
.steer-bar .sb-sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 247, 234, 0.78);
  white-space: nowrap;
}
.steer-bar .sb-btn {
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #2a1200;
  background: linear-gradient(180deg, #ffe27a, var(--yellow) 45%, var(--yellow-deep));
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(237, 166, 0, 0.4);
  white-space: nowrap;
  position: relative;
  transition: box-shadow 0.3s var(--ease);
}
/* Softer and slower than the script — the button should feel warm, not blinky.
   The halo lives on a pseudo-element and only its OPACITY animates, which the
   compositor handles without repainting the bar. Animating box-shadow directly
   repaints every frame and snapped on hover. */
.steer-bar .sb-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 22px rgba(255, 210, 63, 0.75);
  opacity: 0;
  pointer-events: none;
  animation: sbBtnGlow 4.6s ease-in-out infinite;
}
@keyframes sbBtnGlow {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.58; }
}
/* Hover adds a steady glow underneath; the soft pulse keeps running on top,
   so nothing jumps when the cursor arrives or leaves. */
.steer-bar:hover .sb-btn {
  box-shadow: 0 8px 22px rgba(237, 166, 0, 0.5), 0 0 26px rgba(255, 210, 63, 0.45);
}
/* keep the footer clear of the fixed bar */
body:has(.steer-bar) .site-footer { padding-bottom: 96px; }

@media (max-width: 700px) {
  .steer-bar { padding: 9px 12px; gap: 10px; }
  .steer-bar .sb-note { flex-direction: column; gap: 1px; min-width: 0; overflow: hidden; }
  .steer-bar .sb-win { font-size: 18px; overflow: hidden; text-overflow: ellipsis; }
  /* the sub line can't wrap and ran under the button — the script line
     carries the message on its own at this width */
  .steer-bar .sb-sub { display: none; }
  .steer-bar .sb-btn { font-size: 12px; padding: 10px 13px; letter-spacing: 0.2px; }
}
@media (max-width: 380px) {
  .steer-bar .sb-win { font-size: 16px; }
  .steer-bar .sb-btn { font-size: 11px; padding: 9px 11px; }
}

/* sister-restaurant block inside the Visit card (fills the stretch gap) */
.visit-steer {
  display: block;
  margin-top: 26px;
  padding: 20px 22px;
  border: 1px solid rgba(120, 150, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  transition: border-color 0.3s var(--ease), background 0.3s, transform 0.3s var(--ease);
}
.visit-steer:hover {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.visit-steer .vs-kicker {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.visit-steer .vs-name {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 10px;
}
.visit-steer .vs-copy {
  display: block;
  color: rgba(253, 247, 234, 0.78);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.visit-steer .vs-win {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-hi);
}

/* ---------- /the-steer landing page ---------- */
.steer-star {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius);
  background: linear-gradient(140deg, var(--night-2), var(--night-3));
  border: 2px solid var(--yellow);
  box-shadow: var(--shadow);
}
.steer-star-copy h2 { color: var(--cream); margin-bottom: 12px; }
.steer-star-copy p { color: rgba(253, 247, 234, 0.82); margin-bottom: 22px; }
.steer-star-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); display: block; }

.steer-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 26px);
}
.steer-point {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(31, 39, 82, 0.14);
  box-shadow: var(--shadow-soft);
}
.steer-point h3 { font-family: var(--display); font-size: 19px; color: var(--ink); margin-bottom: 8px; }
.steer-point p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }

.steer-hours-card {
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius);
  background: var(--night-2);
  border: 1px solid var(--night-line);
  box-shadow: var(--shadow);
}
.steer-hours-card h2 { color: var(--cream); margin-bottom: 22px; }
.steer-hours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin-bottom: 20px;
}
.steer-hours-grid h4 {
  font-family: var(--display); font-size: 16px; color: var(--yellow);
  margin-bottom: 8px; letter-spacing: 0.4px;
}
.steer-hours-grid p { color: rgba(253, 247, 234, 0.82); font-size: 15.5px; line-height: 1.6; }
.steer-hours-grid .addr { color: var(--cyan); font-size: 14px; margin-top: 6px; }
.steer-hours-note {
  color: rgba(253, 247, 234, 0.7);
  font-style: italic;
  margin-bottom: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--night-line);
}
@media (max-width: 820px) {
  .steer-star, .steer-points, .steer-hours-grid { grid-template-columns: 1fr; }
}
