/* ==========================================================================
   PONSCAKESWAP ($PCAKE) — 1950s breakfast diner turned DeFi kitchen
   Vanilla CSS. Light, warm, cozy. Flat specificity (single classes).
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --cream: #FFF6E9;          /* page background */
  --panel: #FFFDF7;          /* warm white panels */
  --maple: #B96A00;          /* maple syrup — primary accent */
  --gold: #D98E04;           /* golden syrup — primary accent */
  --pancake: #8A5A2B;        /* pancake brown */
  --cherry: #D7263D;         /* cherry red — small pops */
  --cherry-deep: #A81B2E;    /* cherry button base shadow */
  --choc: #3B2A1A;           /* chocolate text */
  --choc-60: rgba(59, 42, 26, 0.6);
  --choc-75: rgba(59, 42, 26, 0.78);
  --line: rgba(59, 42, 26, 0.16);
  --tint: #FBEDD5;           /* warm griddle-section tint */
  --footer-bg: #241708;      /* deep chocolate footer */

  --font-display: 'Alfa Slab One', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;

  --ticker-h: 38px;
  --nav-h: 72px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-card: 0 10px 30px rgba(138, 90, 43, 0.12), 0 2px 6px rgba(138, 90, 43, 0.08);
  --shadow-card-hover: 0 16px 40px rgba(138, 90, 43, 0.18), 0 4px 10px rgba(138, 90, 43, 0.1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ticker-h) + var(--nav-h) + 16px);
}

body {
  margin: 0;
  padding-top: var(--ticker-h);
  background: var(--cream);
  color: var(--choc);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, video { max-width: 100%; display: block; }
a { color: var(--maple); text-decoration: none; }
button { font: inherit; cursor: pointer; }
code { font-family: var(--font-mono); }

:focus-visible {
  outline: 3px solid var(--cherry);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { width: min(1120px, 92%); margin-inline: auto; }
.section { padding: 96px 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--choc);
  color: var(--cream);
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus { top: var(--ticker-h); }

/* ---------- Shared type ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cherry);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.15;
  margin-top: 12px;
  color: var(--choc);
  text-shadow: 2px 2px 0 rgba(217, 142, 4, 0.45);
}

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-text { max-width: 520px; color: var(--choc-75); font-size: 17px; }

/* Gingham — red & white tablecloth pattern, used sparingly */
.gingham-strip,
.menu-card-gingham,
.footer-band {
  background-color: #FFFDF7;
  background-image:
    repeating-linear-gradient(0deg, rgba(215, 38, 61, 0.5) 0 8px, transparent 8px 16px),
    repeating-linear-gradient(90deg, rgba(215, 38, 61, 0.5) 0 8px, transparent 8px 16px);
}

.gingham-strip {
  display: block;
  width: 110px;
  height: 10px;
  margin-top: 18px;
  border-radius: 999px;
  border: 1px solid rgba(59, 42, 26, 0.12);
}

/* Syrup drip section divider — gold bar with scalloped drips */
.syrup-drip {
  height: 38px;
  background-image:
    linear-gradient(var(--gold) 0 10px, transparent 10px),
    radial-gradient(circle 15px at 20px 4px, var(--gold) 98%, transparent),
    radial-gradient(circle 10px at 56px 2px, var(--gold) 98%, transparent),
    radial-gradient(ellipse 6px 16px at 38px 8px, var(--gold) 98%, transparent);
  background-size: auto, 72px 38px, 72px 38px, 144px 38px;
  background-repeat: repeat-x;
}
.syrup-drip.on-tint { background-color: var(--tint); }

/* ---------- 1. Ticker tape ---------- */
.ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--ticker-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gold);
  border-bottom: 2px solid rgba(59, 42, 26, 0.25);
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-scroll var(--ticker-dur, 42s) linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-seq { display: inline-flex; align-items: center; }

.ticker-item {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--choc);
}

.ticker-sep {
  margin: 0 22px;
  font-size: 9px;
  color: var(--choc);
  opacity: 0.75;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 2. Navbar ---------- */
.navbar {
  position: sticky;
  top: var(--ticker-h);
  z-index: 90;
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(138, 90, 43, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--nav-h);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--choc);
  text-shadow: 1.5px 1.5px 0 rgba(217, 142, 4, 0.5);
  white-space: nowrap;
}

/* Brand emblem — pancake-bunny logo beside the wordmark */
.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(59, 42, 26, 0.18);
}
.wordmark-footer .brand-logo { width: 32px; height: 32px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--choc-75);
  padding: 6px 2px;
  position: relative;
}
.nav-links a:hover { color: var(--maple); }
.nav-links a.active { color: var(--maple); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}
.nav-links a.nav-cta::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: none;
  border: 2px solid var(--line);
  border-radius: 12px;
}
.hamburger span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: var(--choc);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.btn-sm { padding: 10px 20px; font-size: 14px; }

.btn-cherry {
  background: var(--cherry);
  color: #fff;
  box-shadow: 0 5px 0 var(--cherry-deep);
}
.btn-cherry:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--cherry-deep); }
.btn-cherry:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--cherry-deep); }

.btn-outline {
  background: transparent;
  color: var(--choc);
  border: 2.5px solid var(--choc);
  box-shadow: none;
}
.btn-outline:hover { background: var(--choc); color: var(--cream); transform: translateY(-2px); }

.btn-ghost {
  background: none;
  color: var(--maple);
  padding-inline: 12px;
}
.btn-ghost:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- 3. Hero ---------- */
.hero { padding-top: 72px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  line-height: 1.06;
  text-transform: uppercase;
  margin-top: 16px;
  color: var(--choc);
  text-shadow: 3px 3px 0 rgba(217, 142, 4, 0.5);
}

.hero-sub {
  margin-top: 20px;
  max-width: 480px;
  font-size: 18px;
  color: var(--choc-75);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* CA pill */
.ca-pill {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  padding: 7px 7px 7px 16px;
  background: var(--cream);
  border: 1.5px solid rgba(138, 90, 43, 0.4);
  border-radius: 999px;
  box-shadow: inset 0 2px 4px rgba(138, 90, 43, 0.08);
}

.ca-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cherry);
}

.ca-text {
  font-size: 13px;
  color: var(--choc);
  max-width: 30ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-ca {
  flex-shrink: 0;
  padding: 9px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--choc);
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.copy-ca:hover { transform: translateY(-1px); background: var(--pancake); }
.copy-ca.copied { background: var(--gold); color: var(--choc); }

.ca-pill-block { margin-top: 16px; display: flex; }

/* Official CA pill — cherry ring + soft pulse so it can't be missed */
.ca-pill-official {
  border: 2px solid var(--cherry);
  box-shadow: 0 0 0 4px rgba(215, 38, 61, 0.14), inset 0 2px 4px rgba(138, 90, 43, 0.08);
}
.ca-pill-official .ca-label { white-space: nowrap; }

@media (prefers-reduced-motion: no-preference) {
  .ca-pill-official { animation: ca-pulse 2.6s ease-in-out infinite; }
}

@keyframes ca-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(215, 38, 61, 0.14), inset 0 2px 4px rgba(138, 90, 43, 0.08); }
  50%      { box-shadow: 0 0 0 8px rgba(215, 38, 61, 0.05), inset 0 2px 4px rgba(138, 90, 43, 0.08); }
}

/* ---------- Official links / anti-scam bar ---------- */
.official-bar { padding: 56px 0 8px; }

.official-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 36px;
  background: var(--panel);
  border: 2px solid var(--cherry);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(215, 38, 61, 0.1), var(--shadow-card);
}

.official-copy { flex: 1 1 380px; }

.official-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin-top: 10px;
  color: var(--choc);
  text-shadow: 2px 2px 0 rgba(217, 142, 4, 0.4);
}

.official-text {
  margin-top: 10px;
  max-width: 52ch;
  font-size: 15px;
  color: var(--choc-75);
}

.official-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.official-actions .ca-pill { margin-top: 0; }

/* X (Twitter) icon */
.x-icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.nav-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 2px solid var(--line);
  border-radius: 12px;
  color: var(--choc);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.nav-x:hover { background: var(--choc); color: var(--cream); }

/* Hero visual column */
.hero-visual { display: flex; flex-direction: column; gap: 24px; }

/* ---------- Pancake flip scene ---------- */
.griddle-scene {
  position: relative;
  height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pan { position: relative; width: 250px; height: 46px; }

.pan-shadow {
  position: absolute;
  left: 50%; bottom: -8px;
  width: 260px; height: 22px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(59, 42, 26, 0.18), transparent 70%);
  border-radius: 50%;
}

.pan-surface {
  position: absolute;
  left: 0; bottom: 6px;
  width: 250px; height: 40px;
  background: #37302A;
  border-radius: 50%;
  box-shadow: inset 0 -7px 0 rgba(0, 0, 0, 0.3), inset 0 5px 8px rgba(255, 255, 255, 0.07);
}
.pan-surface::after {
  content: "";
  position: absolute;
  left: 14px; top: 7px;
  right: 14px; bottom: 12px;
  background: #4A4038;
  border-radius: 50%;
}

.pan-handle {
  position: absolute;
  right: -86px; bottom: 20px;
  width: 96px; height: 13px;
  background: linear-gradient(180deg, #5A4633, #3E3022);
  border-radius: 999px;
  transform: rotate(-4deg);
}

.pancake {
  position: absolute;
  left: 50%; bottom: 36px;
  width: 148px; height: 42px;
  margin-left: -74px;
  z-index: 2;
  background: radial-gradient(ellipse at 50% 30%, #F2BE5C 0%, #E3A23A 55%, #C97F22 100%);
  border-radius: 50%;
  box-shadow:
    inset 0 -8px 0 rgba(138, 90, 43, 0.55),
    0 3px 6px rgba(59, 42, 26, 0.25);
  animation: pancake-sizzle 2.4s ease-in-out infinite;
}

.butter {
  position: absolute;
  top: -9px; left: 50%;
  width: 30px; height: 20px;
  margin-left: -15px;
  background: #FFDE7A;
  border-radius: 5px;
  box-shadow: inset 0 -5px 0 #E8B93B;
  transform: skewX(-6deg);
}

.pancake.is-flipping {
  animation: pancake-flip 1.6s cubic-bezier(0.42, 0.02, 0.36, 1) 1;
}

@keyframes pancake-sizzle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

@keyframes pancake-flip {
  0%   { transform: translateY(0) rotate(0deg); }
  10%  { transform: translateY(5px) scale(1.06, 0.8) rotate(0deg); }
  22%  { transform: translateY(-42px) scale(0.98, 1.04) rotate(50deg); }
  50%  { transform: translateY(-135px) rotate(195deg); }
  78%  { transform: translateY(-14px) rotate(345deg); }
  86%  { transform: translateY(3px) scale(1.1, 0.78) rotate(360deg); }
  93%  { transform: translateY(-6px) scale(0.97, 1.04) rotate(360deg); }
  100% { transform: translateY(0) scale(1, 1) rotate(360deg); }
}

/* Steam wisps */
.steam {
  position: absolute;
  bottom: 90px;
  width: 7px; height: 34px;
  border-radius: 999px;
  background: rgba(59, 42, 26, 0.14);
  filter: blur(3px);
  animation: steam-rise 3.2s ease-in-out infinite;
}
.steam.s1 { left: calc(50% - 46px); animation-delay: 0s; }
.steam.s2 { left: calc(50% - 4px);  animation-delay: 1.1s; }
.steam.s3 { left: calc(50% + 38px); animation-delay: 2.2s; }

@keyframes steam-rise {
  0%   { transform: translateY(0) scaleY(0.6); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translateY(-56px) scaleY(1.25); opacity: 0; }
}

/* Static fallback (reduced motion) */
.griddle-scene.static .pancake,
.griddle-scene.static .steam { animation: none; }
.griddle-scene.static .steam { opacity: 0.4; }

/* ---------- Hero media (img now; same class works for the future video) ---------- */
.hero-media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-card);
}

/* ---------- 4. Trust bar ---------- */
.trust-bar {
  padding: 26px 0;
  background: var(--panel);
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  text-align: center;
}
.trust-bar p {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(59, 42, 26, 0.48);
}
.trust-bar strong {
  font-weight: 800;
  color: var(--choc);
}

/* ---------- 5. The Menu ---------- */
.menu-card {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  background: var(--panel);
  border: 1.5px solid rgba(59, 42, 26, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* laminated sheen */
.menu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.55) 0%, transparent 26%, transparent 78%, rgba(255, 255, 255, 0.3) 100%);
  border-radius: inherit;
}

.menu-card-gingham {
  height: 16px;
  border-bottom: 1.5px solid rgba(59, 42, 26, 0.2);
}

.menu-card-inner { padding: 40px 48px 48px; }

.menu-card-head {
  text-align: center;
  padding-bottom: 26px;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(59, 42, 26, 0.14);
}

.menu-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--choc);
  text-shadow: 2px 2px 0 rgba(217, 142, 4, 0.4);
}

.menu-card-sub {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--choc-60);
}

.menu-item + .menu-item { margin-top: 28px; }

.menu-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.dish {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--choc);
}

.leader {
  flex: 1;
  min-width: 30px;
  border-bottom: 3px dotted rgba(59, 42, 26, 0.35);
  transform: translateY(-5px);
}

.price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--maple);
  white-space: nowrap;
}

.menu-desc {
  margin-top: 7px;
  font-size: 15px;
  color: var(--choc-75);
  max-width: 56ch;
}

/* ---------- 6. The Griddle (order-ticket terminal) ---------- */
.section-tint { background: var(--tint); }

.griddle-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.griddle-copy { position: sticky; top: calc(var(--ticker-h) + var(--nav-h) + 32px); }
.griddle-copy .section-head { margin-bottom: 24px; }

.ticket {
  position: relative;
  background: #FFFBF0;
  border: 1.5px solid rgba(59, 42, 26, 0.22);
  border-radius: 6px 6px 14px 14px;
  box-shadow: var(--shadow-card);
}

/* perforated feed edge: punched holes reveal the section tint */
.ticket-perf {
  height: 14px;
  background-image: radial-gradient(circle 4.5px at 11px 0px, var(--tint) 98%, transparent);
  background-size: 26px 14px;
  background-repeat: repeat-x;
  border-bottom: 1.5px dashed rgba(59, 42, 26, 0.25);
}

.ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1.5px dashed rgba(59, 42, 26, 0.25);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--choc-60);
}

.ticket-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cherry);
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cherry);
  animation: live-blink 1.4s ease-in-out infinite;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}

.ticket-body {
  margin: 0;
  padding: 22px 24px 26px;
  min-height: 460px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.65;
  color: var(--choc);
  tab-size: 4;
}

.ticket-body code { display: block; white-space: pre; }

.ticket-body .tl { display: block; min-height: 1.65em; }
.ticket-body .t-comment { color: rgba(138, 90, 43, 0.75); font-style: italic; }
.ticket-body .t-cursor {
  display: inline-block;
  width: 8px; height: 1.1em;
  margin-left: 1px;
  vertical-align: text-bottom;
  background: var(--maple);
  animation: cursor-blink 0.9s step-end infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* paper-feed on loop */
.ticket-body.feeding code {
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.7s ease-in, opacity 0.7s ease-in;
}

.ticket-tear {
  height: 12px;
  background-image: linear-gradient(-45deg, #FFFBF0 6px, transparent 0), linear-gradient(45deg, #FFFBF0 6px, transparent 0);
  background-position: left bottom;
  background-size: 14px 12px;
  background-repeat: repeat-x;
  margin-bottom: -12px;
  filter: drop-shadow(0 4px 3px rgba(138, 90, 43, 0.12));
}

/* ---------- 7. The Kitchen (roadmap) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  counter-reset: step;
}

.step-card {
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1;
  color: var(--gold);
  text-shadow: 2px 2px 0 rgba(59, 42, 26, 0.18);
}

.step-title {
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 21px;
  text-transform: uppercase;
  color: var(--choc);
}

.step-desc { margin-top: 10px; font-size: 15px; color: var(--choc-75); }

/* ---------- 8. Regulars ---------- */
.regulars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.regular-card {
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.regular-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(138, 90, 43, 0.14);
}

.regular-name {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  color: var(--maple);
}

.regular-quote { margin-top: 10px; }
.regular-quote p { font-size: 15px; color: var(--choc-75); }

/* ---------- 9. Order Now ---------- */
.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: start;
}

.order-card {
  position: relative;
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
}

.order-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cherry);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  box-shadow: 0 4px 0 var(--cherry-deep);
}

.order-step-title {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--choc);
}

.order-desc { margin-top: 10px; margin-bottom: 18px; font-size: 15px; color: var(--choc-75); }

.order-card .ca-pill { margin-top: 14px; }
.order-card .ca-text { max-width: 16ch; }

/* ---------- 10. FAQ ---------- */
.section-faq { padding-bottom: 120px; }

.faq-list { max-width: 760px; }

.faq-item {
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-item + .faq-item { margin-top: 14px; }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--choc);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer { padding: 0 22px 20px; }
.faq-answer p { font-size: 15px; color: var(--choc-75); }
.faq-answer strong { color: var(--choc); font-weight: 800; }

/* ---------- 11. Footer ---------- */
.footer-band {
  height: 30px;
  border-top: 2px solid rgba(59, 42, 26, 0.25);
  background-size: 24px 24px, 24px 24px;
  background-image:
    repeating-linear-gradient(0deg, rgba(215, 38, 61, 0.55) 0 12px, transparent 12px 24px),
    repeating-linear-gradient(90deg, rgba(215, 38, 61, 0.55) 0 12px, transparent 12px 24px);
}

.footer-main {
  background: var(--footer-bg);
  color: #F4E6CF;
  padding: 56px 0 44px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark-footer { color: #F4E6CF; text-shadow: 2px 2px 0 rgba(217, 142, 4, 0.4); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
}
.footer-links a:hover { text-decoration: underline; text-underline-offset: 4px; }

.footer-ca-item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.footer-ca-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
}

.footer-ca {
  font-size: 12px;
  color: rgba(244, 230, 207, 0.6);
  word-break: break-all;
}

.footer-disclaimer {
  margin-top: 32px;
  max-width: 860px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(244, 230, 207, 0.62);
}

.footer-copyright {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(244, 230, 207, 0.45);
}

/* ---------- Scroll reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .js .reveal[data-delay="1"] { transition-delay: 0.08s; }
  .js .reveal[data-delay="2"] { transition-delay: 0.16s; }
  .js .reveal[data-delay="3"] { transition-delay: 0.24s; }
  .js .reveal.visible { opacity: 1; transform: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .ticker { overflow-x: auto; }
  .pancake, .steam, .live-dot, .t-cursor { animation: none !important; }
  .steam { opacity: 0.4; }
  .btn, .step-card, .copy-ca { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .griddle-grid { grid-template-columns: 1fr; gap: 40px; }
  .griddle-copy { position: static; }
  .ticket-body { min-height: 0; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero-visual { order: 2; }
  .griddle-scene { height: 240px; }
  .pan-handle { right: -60px; width: 70px; }
}

@media (max-width: 860px) {
  .hamburger { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--panel);
    border-bottom: 1.5px solid var(--line);
    box-shadow: 0 18px 30px rgba(59, 42, 26, 0.15);
    padding: 10px 4vw 18px;
  }
  .nav-links.open { display: flex; }

  .nav-links a {
    display: block;
    padding: 14px 6px;
    font-size: 17px;
    border-bottom: 1px dashed var(--line);
  }
  .nav-links a.active::after { display: none; }

  .nav-cta-item { margin-top: 16px; }
  .nav-cta-item .nav-cta {
    display: inline-flex;
    border-bottom: 0;
    justify-content: center;
  }

  .nav-x-item { margin-top: 16px; }
  .nav-links .nav-x {
    display: inline-flex;
    width: 46px;
    border-bottom: 0;
    padding: 12px;
  }
}

@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 36px; }

  .hero-title { font-size: clamp(2rem, 9.5vw, 2.6rem); }
  .hero-sub { font-size: 16px; }
  .hero-actions .btn { flex: 1 1 auto; }

  .ca-pill { width: 100%; }
  .ca-text { flex: 1; max-width: none; }

  .menu-card-inner { padding: 28px 22px 34px; }
  .menu-card-title { font-size: 21px; }
  .dish { font-size: 16px; }
  .price { font-size: 12.5px; }

  .ticket-body { font-size: 11.5px; padding: 18px 16px 22px; }
  .ticket-head { font-size: 10px; }

  .griddle-scene { height: 210px; transform: scale(0.85); transform-origin: bottom center; }

  .footer-top { flex-direction: column; align-items: flex-start; }
}
