/* ====================================================
   WONDERFUL CHOICE — Groovy retro (yellow + cyan)
   Palette sampled from reference:
     - Sun yellow background
     - Cyan organic squiggles
     - Tomato red/orange wavy lines + stars
     - Cream stars + accents
     - Charcoal text
   Type: Poppins display + body, Lobster (italic-cursive accent)
   ==================================================== */

/* Crawlable SEO seed (see scripts/seed-pages.mjs + build-seo.mjs): raw HTML
   inside #root that React replaces on mount. Hidden so it never flashes
   while Babel compiles — crawlers read raw HTML (no CSS), Google renders
   the real React page, and a <noscript> style in each page's head reveals
   it for JS-disabled visitors. */
#root > article { display: none; }

:root {
  /* core palette */
  --yellow:      #FBD22E;     /* sun bg */
  --yellow-soft: #FFE066;
  --yellow-deep: #E8BD12;
  --cyan:        #3FBDC9;     /* squiggle shapes */
  --cyan-soft:   #62D0DA;
  --cyan-deep:   #2A8A93;
  --red:         #E94926;     /* squiggle accents + buttons */
  --red-deep:    #C03A1E;
  --red-soft:    #F36B4A;
  --orange:      #F0731F;     /* secondary warm */
  --cream:       #F4E5C5;     /* photo border + stars */
  --cream-warm:  #ECD9A8;
  --paper:       #FAF1D6;
  --ink:         #1A1A1A;
  --ink-soft:    #2D2C28;
  --neon-pink:   #FF5D73;    /* the one sanctioned neon glow tone */
  --green:       #009B01;    /* "fresh" pop — decorative use (3:1 on cream) */
  --green-deep:  #077A07;    /* text-safe green (AA on cream/paper) */

  /* legacy aliases — keep so old rules don't error during transition */
  --teal: var(--cyan);
  --teal-deep: var(--cyan-deep);
  --teal-mid: var(--cyan-soft);
  --mint: var(--cyan-soft);
  --mint-soft: var(--cyan-soft);
  --mint-dark: var(--cyan-deep);
  --coral: var(--red);
  --coral-soft: var(--red-soft);
  --coral-deep: var(--red-deep);
  --sky: var(--cyan-soft);
  --sky-soft: var(--cyan-soft);
  --peach: var(--cream);
  --peach-deep: var(--cream-warm);
  --pink-wall: var(--yellow);
  --pink-light: var(--cream);
  --pink-deep: var(--red);
  --pink-counter: var(--cyan);
  --red-stool: var(--red);
  --chrome: var(--cream);
  --chrome-mid: var(--cream-warm);
  --chrome-dark: var(--ink);

  --font-display: "Poppins", "Helvetica Neue", sans-serif;
  --font-body:    "Poppins", "Helvetica Neue", sans-serif;
  --font-italic:  "Fraunces", "Playfair Display", "Lobster", serif;
  --font-script:  "Lobster", cursive;

  --section-pad-y: clamp(120px, 14vh, 180px);
  --section-pad-x: clamp(28px, 6vw, 96px);
  --gutter:        clamp(24px, 4vw, 64px);

  --radius-card: 18px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

::selection { background: var(--red); color: var(--cream); }

/* ==================== Typography ==================== */
.t-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 0.95;
  text-transform: uppercase;
}
.t-italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
}
.t-label {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
}
.t-body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
}

/* ==================== Buttons ==================== */
.btn-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 2px solid var(--cyan-deep);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn-pill:hover { background: var(--cyan); color: var(--ink); }
.btn-pill.btn-red {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
}
.btn-pill.btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-pill.btn-cyan {
  background: var(--cyan);
  color: var(--ink);
  border-color: var(--cyan);
}
.btn-pill.btn-cyan:hover { background: var(--cyan-deep); color: var(--cream); border-color: var(--cyan-deep); }

/* ==================== Loader ==================== */
.loader {
  position: fixed; inset: 0; z-index: 10001;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.loader-mark {
  position: relative;
  width: min(420px, 64vw);
}
.loader-mark .ring {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  border: 4px solid var(--red);
}
.loader-mark .ring.r2 { inset: -18%; border-color: var(--cyan); }
.loader-mark .ring.r3 { inset: -26%; border-color: var(--ink); border-style: dashed; }
.loader-mark .logo {
  position: relative;
  z-index: 2;
  width: 100%;
  transform-origin: 50% 50%;
  will-change: transform;
}
.loader-wipe {
  position: absolute; inset: 0; z-index: 4;
  background: var(--red);
  transform: translateY(100%);
}

/* hidden-initial states */
.is-prep .nav-wrap,
.is-prep .hero-content > *,
.is-prep .hero-photo,
.is-prep .hero-deco > *,
.is-prep .hero-shape { opacity: 0; }

/* ==================== Top Nav ==================== */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 36px;
  gap: 24px;
  pointer-events: none;
}
.nav-wrap > * { pointer-events: auto; }
.nav-logo {
  display: inline-flex; align-items: center;
  text-decoration: none;
  line-height: 0;
}
.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(2px 3px 0 rgba(26, 26, 26, 0.25));
}
.nav-list {
  display: flex; align-items: center; gap: 30px;
}
.nav-list a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 4px;
  transition: color 0.18s ease;
}
.nav-list a + a {
  border-left: 1px solid rgba(26,26,26,0.35);
  padding-left: 30px;
  margin-left: 0;
}
.nav-list a:hover { color: var(--red); }
.nav-list a.is-active { color: var(--red); }
.nav-list a.is-active::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 0;
  height: 3px; background: var(--red); border-radius: 2px;
}
.nav-list a + a.is-active::after { left: 30px; }

.nav-menu-btn {
  width: 46px; height: 46px;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  box-shadow: 3px 3px 0 rgba(26, 26, 26, 0.2);
  display: none; /* desktop uses the inline nav-list; shown on mobile */
}
.nav-menu-btn svg { width: 24px; height: 24px; }
.nav-menu-btn:hover { background: var(--ink); color: var(--yellow); }

/* ---- mobile menu sheet ---- */
.nav-mobile {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(26, 26, 26, 0.5);
  display: flex; flex-direction: column;
  padding: 96px 28px max(28px, env(safe-area-inset-bottom));
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  /* the sheet may be taller than a short viewport — let the overlay scroll */
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav-mobile.is-open { opacity: 1; visibility: visible; }
.nav-mobile-list {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 8px 10px 0 var(--red);
  padding: 12px;
  display: flex; flex-direction: column;
  /* margin:auto centers when there's room but, unlike justify-content:center,
     keeps the top reachable (scrollable) when the sheet overflows */
  margin: auto 0;
  flex: none;
  transform: translateY(-12px);
  transition: transform 0.28s cubic-bezier(.2, 1.4, .4, 1);
}
.nav-mobile.is-open .nav-mobile-list { transform: translateY(0); }
.nav-mobile-list a {
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  padding: 16px 18px; min-height: 56px;
  display: flex; align-items: center;
  border-radius: 12px;
  border-bottom: 2px dotted rgba(26, 26, 26, 0.18);
}
.nav-mobile-list a:last-child { border-bottom: 0; }
.nav-mobile-list a:hover,
.nav-mobile-list a:focus-visible { background: var(--yellow); }
.nav-mobile-list a.is-active { color: var(--red); }
.nav-mobile-foot {
  text-align: center; margin-top: 18px; color: var(--cream); opacity: 0.85;
}

@media (max-width: 820px) {
  .nav-list { display: none; }
  .nav-menu-btn { display: grid; }
  .nav-logo img { height: 44px; }
}
@media (min-width: 821px) {
  .nav-mobile { display: none; }
}

/* ====================================================
   HERO — yellow stage with cyan squiggles
   ==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--yellow);
  isolation: isolate;
}

/* Background shapes — organic cyan blobs + squiggles */
.hero-shapes {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-shape {
  position: absolute;
  will-change: transform;
}
/* big cyan tongue dripping from top */
.shape-cyan-top {
  top: -8%;
  left: 24%;
  width: 60%;
  height: 70%;
}
.shape-cyan-top svg { width: 100%; height: 100%; display: block; }

/* cyan blob bottom-right */
.shape-cyan-br {
  bottom: -10%;
  right: -6%;
  width: 36%;
  height: 50%;
}
.shape-cyan-br svg { width: 100%; height: 100%; display: block; }

/* red wavy squiggles */
.shape-squiggle-tr {
  top: 18%;
  right: 6%;
  width: 130px;
  color: var(--red);
}
.shape-squiggle-mr {
  top: 50%;
  right: 4%;
  width: 130px;
  color: var(--red);
}
.shape-squiggle-bl {
  bottom: 22%;
  right: 32%;
  width: 130px;
  color: var(--red);
}
.shape-squiggle-bl-small {
  bottom: 4%;
  right: 28%;
  width: 80px;
  color: var(--red);
  opacity: 0.75;
}
.shape-squiggle svg { width: 100%; height: auto; display: block; }

/* stars scattered across the canvas */
.hero-stars { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.hero-stars > * { position: absolute; }
.star-1 { top: 14%; right: 14%; width: 32px; color: var(--cyan); }
.star-2 { top: 32%; right: 22%; width: 26px; color: var(--cyan); }
.star-3 { top: 56%; right: 12%; width: 22px; color: var(--cyan); }
.star-4 { bottom: 14%; right: 36%; width: 28px; color: var(--cyan); }
.star-5 { bottom: 28%; right: 6%;  width: 20px; color: var(--cyan); }
.star-6 { bottom: 5%;  right: 8%;  width: 26px; color: var(--cyan); }

/* ==================== HERO PHOTO arch on the left ==================== */
.hero-photo {
  position: absolute;
  left: 3%;
  top: 12%;
  bottom: 6%;
  width: 42%;
  z-index: 5;
}
.hero-photo .ring-outer,
.hero-photo .ring-mid,
.hero-photo .ring-inner {
  position: absolute;
  border-radius: 999px 999px 36px 36px;
  border: 14px solid;
}
.hero-photo .ring-outer {
  inset: 0;
  border-color: var(--red);
  background: transparent;
}
.hero-photo .ring-mid {
  inset: 14px;
  border-color: var(--cream);
}
.hero-photo .ring-inner {
  inset: 28px;
  border-color: var(--cyan-deep);
  overflow: hidden;
  /* 50s-ad sunburst behind the cut-out — rays radiate from the coffee cup */
  background:
    radial-gradient(circle at 32% 56%, var(--paper) 0 14%, rgba(250, 241, 214, 0) 50%),
    repeating-conic-gradient(from -6deg at 32% 56%, var(--yellow) 0 7.5deg, var(--cream) 7.5deg 15deg);
}
.hero-photo .ring-inner img {
  position: absolute;
  bottom: 0; left: 50%;
  height: 97%;
  width: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: contrast(1.04) saturate(1.06) drop-shadow(14px 10px 0 rgba(26, 26, 26, 0.16));
}

/* Big cream/orange burst star — top-left corner of photo */
.photo-burst-bl {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 110px; height: 110px;
  z-index: 6;
  color: var(--cream);
  filter: drop-shadow(0 4px 0 rgba(26,26,26,0.18));
}
.photo-burst-bl svg { width: 100%; height: 100%; display: block; }

/* ==================== HERO CONTENT ==================== */
.hero-content {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%); /* desktop: vertically center the headline + CTAs */
  width: 50%;
  max-width: 640px;
  z-index: 5;
  padding-right: 3vw;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.hero-h1 {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  color: var(--cream);
  font-size: clamp(48px, 6.6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 4px 5px 0 var(--ink);
}
.hero-h1 .l1 { display: block; }
.hero-h1 .l2 { display: block; }
.hero-h1 .dot { color: var(--red); }
.hero-sub {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  margin: 30px 0 38px;
  max-width: 44ch;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 960px) {
  .hero-content {
    position: relative;
    top: auto; right: auto;
    transform: none; /* stacked layout — no vertical centering on mobile/tablet */
    width: 92%;
    max-width: none;
    margin: 16vh auto 60px;
    padding: 0 5%;
  }
  .hero-photo {
    position: relative;
    left: auto; top: auto; bottom: auto;
    /* keep the arch portrait at every window shape — a vh-based height
       turned it into a squat dome on short/wide screens and beheaded
       the cutout at the waist */
    width: min(86%, 500px);
    height: auto;
    aspect-ratio: 5 / 7;
    margin: 0 auto 60px;
  }
  .shape-cyan-top { width: 120%; left: -10%; height: 50%; }
  .shape-squiggle-tr, .shape-squiggle-mr { display: none; }
}

/* ====================================================
   SECTION SCAFFOLD
   ==================================================== */
.section {
  position: relative;
  padding: var(--section-pad-y) var(--section-pad-x);
  max-width: 1480px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  position: relative;
  padding: 10px 18px 11px;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 9px;
  box-shadow: 4px 5px 0 rgba(26, 26, 26, 0.18);
  color: var(--ink);
}
/* the little leading mark becomes a route chevron */
.section-eyebrow .ln {
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 9px solid var(--red);
  background: transparent;
}
.section-eyebrow .t-label { color: var(--ink); position: relative; z-index: 2; white-space: nowrap; }
/* marquee bulbs along the top + bottom edge of the sign tag */
.section-eyebrow::before,
.section-eyebrow::after {
  content: ""; position: absolute; left: 10px; right: 10px; height: 4px;
  background: radial-gradient(circle, var(--bulb, #F4C84B) 1.7px, var(--ink) 1.7px 2.5px, transparent 2.8px) repeat-x left center;
  background-size: 13px 4px;
  pointer-events: none;
  opacity: 0.95;
}
.section-eyebrow::before { top: 3px; }
.section-eyebrow::after  { bottom: 3px; }
.section-eyebrow.light { color: var(--ink); }
.section-eyebrow.light .ln { border-right-color: var(--red); }

.h2 {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: 0.96;
  margin: 0;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.h2 .alt { color: var(--red); }
.h2 .alt2 { color: var(--cyan-deep); }

.sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 28px 0 0;
  max-width: 50ch;
}
.sub.light { color: var(--cream); opacity: 0.92; }

/* ====================================================
   ABOUT — cyan section
   ==================================================== */
.about {
  background: var(--cyan);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.about .section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--gutter);
  align-items: start;
}
.about-text { padding-right: 4vw; }
.about-text .h2 { color: var(--ink); }
.about-text .h2 .alt { color: var(--red); }
.about-text .section-eyebrow { color: var(--red); }
.about-text .section-eyebrow .ln { background: var(--red); }
.about-text .sub + .sub { margin-top: 16px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}
.stat {
  padding: 26px 22px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
}
.stat.s2 { background: var(--red); color: var(--cream); }
.stat.s3 { background: var(--cream); color: var(--ink); }
.stat.s4 { background: var(--ink); color: var(--yellow); }
.stat .num {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
}
.stat .lbl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: 0.85;
}

/* right rail — a snapshot from the shop wall with a ticket stack under it */
.about-side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 8px 12px 0 4px; /* room for the tilts and the ribbon */
}
.about-postcard {
  position: relative;
  margin: 0;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 12px 12px 12px;
  box-shadow: 10px 12px 0 rgba(26, 26, 26, 0.22);
  transform: rotate(2deg);
}
.about-postcard img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 18%;
  border: 2px solid var(--ink);
  border-radius: 8px;
}
.about-postcard figcaption {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: var(--ink);
  padding: 10px 4px 2px;
}
.about-postcard-banner {
  position: absolute;
  top: -18px;
  right: -16px;
  transform: rotate(6deg);
  filter: drop-shadow(3px 4px 0 rgba(26, 26, 26, 0.25));
}

.about-tickets {
  display: grid;
  gap: 16px;
}
.about-card {
  border-radius: 16px;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.55;
  border: 2px solid var(--ink);
  box-shadow: 6px 7px 0 rgba(26, 26, 26, 0.18);
}
.about-card .ttl {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-size: 11px;
  display: flex; align-items: center; gap: 6px;
}
.about-card.c1 { transform: rotate(-1.5deg); background: var(--yellow); color: var(--ink); }
.about-card.c1 .ttl { color: var(--red); }
.about-card.c2 { transform: rotate(1.2deg); background: var(--red); color: var(--cream); }
.about-card.c2 .ttl { color: var(--yellow); }
.about-card.c3 { transform: rotate(-1deg); background: var(--cream); color: var(--ink); }
.about-card.c3 .ttl { color: var(--red); }

.about-deco { position: absolute; inset: 0; pointer-events: none; }
.about-deco .squig {
  position: absolute; color: var(--red);
}
.about-deco .squig.s1 { top: 12%; right: 38%; width: 100px; }
.about-deco .squig.s2 { bottom: 14%; right: 8%; width: 90px; }
.about-deco .star-1 { position: absolute; top: 18%; left: 4%; width: 24px; color: var(--cream); }
.about-deco .star-2 { position: absolute; bottom: 18%; right: 42%; width: 22px; color: var(--cream); }

@media (max-width: 900px) {
  .about .section { grid-template-columns: 1fr; }
  .about-side { max-width: 480px; margin: 36px auto 0; }
}

/* ====================================================
   LINEUP — diner menu card on yellow background
   ==================================================== */
.lineup {
  background: var(--yellow);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.lineup-deco { position: absolute; inset: 0; pointer-events: none; }
.lineup-deco .blob {
  position: absolute;
  top: -8%; right: -10%;
  width: 50%; height: 60%;
  color: var(--cyan);
}
.lineup-deco .blob svg { width: 100%; height: 100%; }
.lineup-deco .squig-1 { position: absolute; top: 18%; left: 6%; width: 120px; color: var(--red); }
.lineup-deco .squig-2 { position: absolute; bottom: 14%; left: 38%; width: 110px; color: var(--red); }
.lineup-deco .star-1 { position: absolute; top: 24%; right: 12%; width: 24px; color: var(--cream); }
.lineup-deco .star-2 { position: absolute; bottom: 20%; right: 6%; width: 28px; color: var(--cream); }

.lineup .section {
  position: relative;
  z-index: 2;
}

/* ---------- the menu CARD ---------- */
/* checkerboard frame around the whole menu */
.menu-frame {
  position: relative;
  max-width: 1240px;
  margin: 56px auto 0;
  padding: 24px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background-color: var(--paper);
  box-shadow: 12px 16px 0 rgba(26, 26, 26, 0.2);
}
/* checker ring as a border-image with repeat:round — the browser fits a
   WHOLE number of squares along each edge (scaling them a hair), so every
   side shows exactly two full rows regardless of the frame's fluid size */
.menu-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 24px solid transparent;
  border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72'%3E%3Cdefs%3E%3Cpattern id='c' width='24' height='24' patternUnits='userSpaceOnUse'%3E%3Crect width='24' height='24' fill='%23FAF1D6'/%3E%3Crect width='12' height='12' fill='%231A1A1A'/%3E%3Crect x='12' y='12' width='12' height='12' fill='%231A1A1A'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='72' height='72' fill='url(%23c)'/%3E%3C/svg%3E") 24 round;
  pointer-events: none;
}

.menu-card {
  position: relative;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 6px;
  padding: 96px clamp(28px, 5vw, 80px) 56px; /* extra top room for the awning */
  /* faint paper texture */
  background-image:
    radial-gradient(rgba(26,26,26,0.04) 1px, transparent 1.2px),
    radial-gradient(rgba(26,26,26,0.03) 1px, transparent 1.2px);
  background-size: 14px 14px, 22px 22px;
  background-position: 0 0, 7px 7px;
}

/* floating photo card shown while hovering a text menu item */
.menu-peek {
  position: fixed;
  top: 0; left: 0;
  width: 185px;
  z-index: 95;
  pointer-events: none;
  opacity: 0;
  scale: 0.92;
  transition: opacity 0.18s ease, scale 0.22s cubic-bezier(.2, 1.4, .4, 1);
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 999px 999px 14px 14px;
  padding: 8px;
  box-shadow: 8px 10px 0 rgba(26, 26, 26, 0.25);
}
.menu-peek.is-on { opacity: 1; scale: 1; }
.menu-peek img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 999px 999px 8px 8px;
}
@media (max-width: 900px), (hover: none) {
  .menu-peek { display: none; }
}

/* MENU banner */
.menu-banner {
  display: flex; align-items: center; justify-content: center;
  gap: 22px;
  margin-bottom: 4px;
}
.menu-banner .dingbat {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  color: var(--red);
  font-size: clamp(28px, 3vw, 44px);
}
.menu-banner-title {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(72px, 9vw, 144px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-shadow: 5px 5px 0 var(--red);
}
.menu-sub {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 50px;
}

/* "Daily Specials" stamp */
.menu-stamp {
  position: absolute;
  top: 88px; /* below the awning band, reads as a sticker slapped under it */
  right: -28px;
  width: 150px;
  height: 150px;
  z-index: 4;
}
.menu-stamp-inner {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  text-align: center;
  /* kelly green — reads like a grocer's FRESH stamp */
  background: var(--green);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 50%;
  padding: 12px;
  box-shadow: 4px 4px 0 var(--ink);
  position: relative;
}
.menu-stamp-inner::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px dashed var(--ink);
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
}
.menu-stamp-inner .t-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--cream);
  opacity: 0.85;
  display: block;
}
.menu-stamp-inner .big {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  display: block;
  margin: 4px 0;
}

/* section dividers */
.menu-section-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 44px 0 28px;
}
.menu-section-head .rule {
  flex: 1;
  height: 2px;
  background: var(--ink);
  opacity: 0.65;
}
.menu-section-head .rule + .menu-section-title { margin-left: -4px; }
.menu-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.menu-section-head .curl {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: var(--green-deep);
  white-space: nowrap;
}

/* the list */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.menu-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  align-items: start;
  padding: 8px 4px 18px;
  border-bottom: 2px dotted rgba(26, 26, 26, 0.22);
  transition: background 0.18s ease;
  border-radius: 4px;
  margin: 0 -8px;
  padding-left: 12px; padding-right: 12px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.menu-row:hover {
  background: rgba(233, 73, 38, 0.07);
}
.menu-row:last-child { border-bottom: 0; }

.menu-thumb {
  width: 84px; height: 84px;
  border-radius: 999px 999px 8px 8px;
  border: 2px solid var(--ink);
  overflow: hidden;
  background: var(--cyan);
  flex: 0 0 auto;
}
.menu-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: contrast(1.04) saturate(1.05);
}

.menu-body { min-width: 0; }
.menu-row-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
  flex-wrap: nowrap;
}
.menu-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  flex: 0 0 auto;
  padding-top: 6px;
}
.menu-name {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--ink);
  line-height: 1;
  flex: 0 0 auto;
  letter-spacing: -0.005em;
}
.menu-dots {
  flex: 1;
  height: 0;
  border-bottom: 2.5px dotted rgba(26,26,26,0.4);
  align-self: end;
  margin-bottom: 8px;
  min-width: 18px;
}
.menu-price {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--red);
  line-height: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.menu-price .curr {
  font-size: 0.6em;
  opacity: 0.85;
  margin-right: 2px;
}
.menu-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.65;
  margin-bottom: 6px;
}
.menu-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 64ch;
}

.menu-foot {
  text-align: center;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}
.menu-foot .t-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink);
  opacity: 0.7;
}

/* ---------- full catalog: numbered category + two-column lines ---------- */
.menu-cat-no {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--red);
  letter-spacing: 0.02em;
  flex: 0 0 auto;
  white-space: nowrap;
}
.menu-section-head .menu-cat-no + .menu-section-title { margin-left: -2px; }

.menu-cat-list {
  column-count: 2;
  column-gap: 56px;
  margin-top: 2px;
}
.menu-item {
  display: flex;
  align-items: baseline;
  break-inside: avoid;
  padding: 7px 0;
  line-height: 1.25;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.mi-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  flex: 0 1 auto;
}
.menu-item:hover .mi-name { color: var(--red); }
.mi-dots {
  flex: 1 1 12px;
  align-self: flex-end;
  height: 0;
  min-width: 14px;
  margin: 0 7px 5px;
  border-bottom: 2px dotted rgba(26, 26, 26, 0.32);
}
.mi-note {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  white-space: nowrap;
}

/* ---------- finishing & extras feature bar ---------- */
.menu-finish {
  margin-top: 50px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--yellow);
  padding: 26px 30px 30px;
  box-shadow: 7px 7px 0 var(--red);
}
.menu-finish-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.menu-finish-head .menu-section-title { margin: 0; }
.menu-finish-head .curl {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  opacity: 0.7;
}
.menu-finish-lead {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 62ch;
}
/* ---- The Special Craft — finishing-technique photo board ---- */
.craft-lead {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.85;
  margin: -6px auto 24px;
  max-width: 58ch;
  text-align: center;
}
.craft-lead-link {
  font-weight: 700;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.craft-lead-link:hover { color: var(--ink); }
.craft-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px 14px;
  margin: 0 0 46px;
}
.craft-tile { position: relative; margin: 0; text-align: center; outline: none; }
.craft-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  box-shadow: 4px 5px 0 rgba(26, 26, 26, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.craft-tile:nth-child(odd) img { transform: rotate(-1.2deg); }
.craft-tile:nth-child(even) img { transform: rotate(1.2deg); }
.craft-tile:hover img,
.craft-tile:focus-visible img {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 6px 9px 0 rgba(26, 26, 26, 0.2);
}
.craft-tile:focus-visible img { outline: 3px solid var(--red); outline-offset: 3px; }

/* hover / focus tip: which cups this finish goes on — a torn order-ticket
   floating above the tile. Desktop-only so it can't overflow small screens. */
.craft-pop { display: none; }
@media (hover: hover) and (pointer: fine) {
  .craft-pop {
    display: block;
    position: absolute;
    left: 50%;
    bottom: calc(100% - 8px);
    width: 190px;
    padding: 11px 14px 12px;
    background: var(--paper);
    border: 2.5px solid var(--ink);
    border-radius: 12px;
    box-shadow: 5px 6px 0 rgba(26, 26, 26, 0.22);
    z-index: 6;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, 6px) scale(0.96);
    transform-origin: 50% 100%;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }
  /* downward pointer into the tile */
  .craft-pop::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 12px; height: 12px;
    background: var(--paper);
    border-right: 2.5px solid var(--ink);
    border-bottom: 2.5px solid var(--ink);
    transform: translate(-50%, -7px) rotate(45deg);
  }
  .craft-pop-label {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 4px;
  }
  .craft-pop-text {
    display: block;
    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--ink);
  }
  .craft-tile:hover .craft-pop,
  .craft-tile:focus-visible .craft-pop {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  /* lift the active tile so its tip floats above the neighbours */
  .craft-tile:hover,
  .craft-tile:focus-visible { z-index: 7; }
}
@media (prefers-reduced-motion: reduce) {
  .craft-pop { transition: opacity 0.16s ease; transform: translate(-50%, 0) scale(1); }
}
.craft-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 10px;
}
.craft-note {
  display: block;
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--red);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .craft-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .menu-frame { padding: 14px; border-radius: 10px; box-shadow: 6px 8px 0 rgba(26, 26, 26, 0.2); }
  .menu-frame::before { border-width: 14px; }
  .menu-card { padding: 78px 22px 36px; }
  .menu-stamp { width: 110px; height: 110px; top: 22px; right: -10px; }
  .menu-banner { gap: 12px; }
  .menu-section-head .curl { display: none; }
  .menu-row { grid-template-columns: 64px 1fr; gap: 14px; }
  .menu-thumb { width: 64px; height: 64px; }
  .menu-row-head { flex-wrap: wrap; }
  .menu-dots { display: none; }
  .menu-cat-list { column-count: 1; column-gap: 0; }
  .menu-finish { padding: 22px 20px 24px; box-shadow: 5px 5px 0 var(--red); }
}

/* ====================================================
   PROCESS — cream w/ groovy accents
   ==================================================== */

.about-how { grid-column: 1 / -1; margin-top: 72px; }
.how-sub {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(19px, 2.2vw, 24px);
  color: var(--ink);
  margin: 10px 0 0;
}

/* one warm placemat panel instead of four competing slabs */
.placemat {
  position: relative;
  margin-top: 34px;
  background:
    radial-gradient(rgba(26, 26, 26, 0.05) 1px, transparent 1.4px) 0 0 / 16px 16px,
    var(--paper);
  border: 3px solid var(--ink);
  border-radius: 26px;
  box-shadow: 12px 14px 0 rgba(26, 26, 26, 0.22);
  padding: 54px 44px 46px;
}
/* placemats always have that printed inner keyline */
.placemat::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px dashed rgba(26, 26, 26, 0.28);
  border-radius: 16px;
  pointer-events: none;
}

/* dotted travel route winding behind the arches */
.placemat .route {
  position: absolute;
  top: 34px;
  left: 40px;
  right: 40px;
  height: 230px;
  width: calc(100% - 80px);
  pointer-events: none;
}
.placemat .route path {
  stroke: rgba(26, 26, 26, 0.4);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1 14;
}

.stops {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.stop { text-align: center; }
.stop-arch {
  position: relative;
  height: 216px;
  width: min(176px, 88%);
  margin: 0 auto 20px;
  border-radius: 999px 999px 14px 14px;
  border: 3px solid var(--ink);
  overflow: hidden;
  background: var(--cream);
  box-shadow: 8px 9px 0 rgba(26, 26, 26, 0.2);
}
.stop-arch img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: contrast(1.03);
}
/* mile-marker number badge pinned to the arch */
.stop-badge {
  position: absolute;
  right: 6px;
  top: 12px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--yellow);
  border: 3px solid var(--cream);
  outline: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  font-size: 19px;
  transform: rotate(8deg);
}
/* gentle alternating tilt keeps the pasted-on collage feel */
.stop.p1 .stop-arch { transform: rotate(-3deg); }
.stop.p2 .stop-arch { transform: rotate(2deg); }
.stop.p3 .stop-arch { transform: rotate(-2deg); }
.stop.p4 .stop-arch { transform: rotate(3deg); }

.stop-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 8px;
}
.stop-name::after {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin: 8px auto 0;
  background: var(--red);
  border-radius: 2px;
}
.stop-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.8;
  margin: 0 auto;
  max-width: 30ch;
}

@media (max-width: 980px) {
  .placemat { padding: 44px 30px 38px; }
  .placemat .route { display: none; }
  .stops { grid-template-columns: 1fr 1fr; row-gap: 44px; }
}
@media (max-width: 540px) {
  .placemat { padding: 38px 22px 34px; }
  .stops { grid-template-columns: 1fr; row-gap: 40px; }
}

/* ====================================================
   GALLERY — cyan w/ arched photos
   ==================================================== */

/* ====================================================
   FOOTER — red bg w/ cyan + yellow accents
   ==================================================== */
.footer-cta {
  background: var(--red);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  /* the waving girl's width — her reserved lane below scales with it */
  --wave-w: clamp(130px, 17vw, 230px);
}

/* the waving girl — static cutout, animated wave/sway. She lives in a
   reserved right-hand lane (see .foot-inner padding) so the headline,
   copy, and form can never slide underneath her at any window size. */
.wave-girl {
  position: absolute;
  top: 20%;
  right: -30px;
  width: var(--wave-w);
  height: auto;
  z-index: 3;
  pointer-events: none;
  /* gentle lean toward the copy — kept shallow so the tilt doesn't
     swing her head out of the reserved lane */
  transform: rotate(-14deg);
  transform-origin: 60% 90%;
}
.wave-girl img {
  display: block;
  width: 100%;
  height: auto;
  /* the wave gesture itself — gentle body sway centered near the feet,
     so the raised hand at the top sweeps the widest arc and reads as
     a wave. */
  transform-origin: 55% 92%;
  animation: wave-sway 1.4s ease-in-out infinite alternate;
}
@keyframes wave-sway {
  from { transform: rotate(-7deg); }
  to   { transform: rotate(7deg); }
}
@media (max-width: 640px) {
  /* no room to share with the form — she sits this size out */
  .wave-girl { display: none; }
}
.foot-deco { position: absolute; inset: 0; pointer-events: none; }
.foot-deco .blob {
  position: absolute;
  bottom: -10%; right: -10%;
  width: 50%; height: 70%;
  color: var(--yellow);
}
.foot-deco .blob svg { width: 100%; height: 100%; }
.foot-deco .squig-1 { position: absolute; top: 12%; left: 4%; width: 120px; color: var(--cream); }
.foot-deco .squig-2 { position: absolute; bottom: 24%; left: 36%; width: 100px; color: var(--cream); }
.foot-deco .star-1 { position: absolute; top: 22%; right: 12%; width: 30px; color: var(--cream); }
.foot-deco .star-2 { position: absolute; bottom: 16%; right: 36%; width: 26px; color: var(--cream); }
.foot-deco .star-3 { position: absolute; top: 18%; left: 38%; width: 22px; color: var(--cream); }

.foot-inner {
  position: relative; z-index: 2;
  padding: var(--section-pad-y) var(--section-pad-x) 48px;
  /* reserve the waving girl's lane: her box plus the sweep of her
     tilt + wave animation, so copy and form never sit under her */
  padding-right: calc(var(--wave-w) * 1.75);
  max-width: 1480px; margin: 0 auto;
}
@media (max-width: 640px) {
  .foot-inner { padding-right: var(--section-pad-x); }
}
/* no max-width — the headline's two-line break is hard-coded, and the
   wave-girl lane on .foot-inner already keeps it clear of the figure */
.foot-head { margin-bottom: 56px; position: relative; z-index: 4; }
.foot-headline {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(48px, 7.5vw, 128px);
  line-height: 0.96;
  margin: 0;
  color: var(--cream);
  letter-spacing: -0.005em;
  text-shadow: 4px 5px 0 var(--ink);
}
.foot-headline em {
  font-style: italic;
  color: var(--yellow);
}
.foot-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
  max-width: 50ch;
  color: var(--cream);
  opacity: 0.94;
  margin: 28px 0 0;
}
.foot-form {
  display: flex; gap: 14px;
  max-width: 620px;
  margin: 40px 0 80px;
  flex-wrap: wrap;
}
.foot-form input {
  flex: 1; min-width: 220px;
  border: 2px solid var(--cream);
  background: rgba(244, 229, 197, 0.1);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 18px 22px;
  border-radius: 999px;
  outline: none;
}
.foot-form input::placeholder { color: rgba(244, 229, 197, 0.55); }
.foot-form input:focus { background: rgba(244, 229, 197, 0.18); border-color: var(--yellow); }

.foot-sub a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.foot-sub a:hover { color: var(--cream); }

/* after the email goes in, the form becomes the brochure counter */
.foot-unlocked { flex-direction: column; align-items: flex-start; gap: 18px; }
.foot-thanks {
  font-family: var(--font-italic); font-style: italic; font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--yellow);
  margin: 0;
}
.foot-brochure { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-pill.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-pill.btn-ghost:hover { background: var(--cream); color: var(--ink); }

.foot-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  border-top: 1px solid rgba(244, 229, 197, 0.25);
  border-bottom: 1px solid rgba(244, 229, 197, 0.25);
  padding: 40px 0;
  margin-bottom: 36px;
}
.foot-col .t-label { color: var(--cream); opacity: 0.6; font-size: 10px; margin-bottom: 10px; }
.foot-col .val {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  color: var(--yellow);
  line-height: 1.25;
}
.foot-bottom {
  display: flex; justify-content: center; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.foot-bottom .info { font-size: 11px; opacity: 0.7; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); }

@media (max-width: 820px) {
  .foot-meta { grid-template-columns: 1fr; gap: 20px; padding: 28px 0; }
}

/* ====================================================
   ROADSTER — kept on left edge
   ==================================================== */
.roadster {
  position: fixed;
  top: 0;
  left: -78px;
  width: 200px;
  z-index: 90;
  pointer-events: none;
  display: none;
  filter: drop-shadow(8px 6px 0 rgba(26, 26, 26, 0.25));
  will-change: transform;
}
.roadster.is-ready { display: block; }
.roadster img { display: block; width: 100%; height: auto; }
@media (max-width: 900px) {
  .roadster { display: none !important; }
}

/* ====================================================
   ENTRY SWIPE
   ==================================================== */
.entry-swipe {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none;
  transform: translateX(-100%);
  background: var(--red);
}

/* ====================================================
   DINER SIGNAGE — marquee bulbs, route shields, ribbons
   ==================================================== */
:root { --bulb: #F4C84B; }

/* ---- marquee bulb sign ---- */
.dsign {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 16px 26px;
  box-shadow: 5px 6px 0 rgba(26, 26, 26, 0.22);
}
.dsign.is-pill { border-radius: 999px; padding: 14px 30px; }
.dsign.tone-teal { background: var(--cyan); }
.dsign.tone-red  { background: var(--red); }
.dsign-face {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 19px;
  line-height: 1.05;
  color: var(--ink);
  text-align: center;
}
.dsign.tone-red .dsign-face { color: var(--cream); }
.dsign-bulbs {
  position: absolute; inset: 7px;
  border-radius: inherit;
  pointer-events: none; z-index: 1;
  background:
    radial-gradient(circle, var(--bulb) 2.4px, var(--ink) 2.4px 3.3px, transparent 3.6px) repeat-x,
    radial-gradient(circle, var(--bulb) 2.4px, var(--ink) 2.4px 3.3px, transparent 3.6px) repeat-x,
    radial-gradient(circle, var(--bulb) 2.4px, var(--ink) 2.4px 3.3px, transparent 3.6px) repeat-y,
    radial-gradient(circle, var(--bulb) 2.4px, var(--ink) 2.4px 3.3px, transparent 3.6px) repeat-y;
  background-position: left 0 top 0, left 0 bottom 0, left 0 top 0, right 0 top 0;
  background-size: 17px 8px, 17px 8px, 8px 17px, 8px 17px;
  animation: bulbGlow 2.6s ease-in-out infinite, bulbChase 0.9s steps(3) infinite;
}
@keyframes bulbGlow { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.22); } }
/* march the bulbs one pitch (17px) around the sign — opposite directions circulate */
@keyframes bulbChase {
  to { background-position: left 17px top 0, left -17px bottom 0, left 0 top 17px, right 0 top -17px; }
}

/* vertical marquee — tall thin sign, text reads bottom-to-top */
.dsign.is-vert {
  flex-direction: column;
  padding: 26px 16px;
  border-radius: 10px;
}
.dsign.is-vert .dsign-face {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.26em;
  font-size: 22px;
}

/* ---- route shield ---- */
.rshield {
  position: relative;
  width: 96px; height: 108px;
  display: inline-block;
  filter: drop-shadow(4px 5px 0 rgba(26, 26, 26, 0.22));
}
.rshield::before, .rshield::after {
  content: ""; position: absolute; left: 0; top: 0; right: 0; bottom: 0;
  -webkit-clip-path: polygon(50% 0, 100% 12%, 100% 60%, 50% 100%, 0 60%, 0 12%);
  clip-path: polygon(50% 0, 100% 12%, 100% 60%, 50% 100%, 0 60%, 0 12%);
}
.rshield::before { background: var(--ink); }
.rshield::after { inset: 4px; background: var(--cream); }
.rshield.tone-red::after { background: var(--red); }
.rshield-top, .rshield-big {
  position: relative; z-index: 2;
  display: block; text-align: center;
  font-family: var(--font-display); font-weight: 800;
  color: var(--ink);
}
.rshield-top {
  margin-top: 22px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
}
.rshield.tone-red .rshield-top { color: var(--cream); opacity: 0.9; }
.rshield-big {
  margin-top: 3px;
  font-family: var(--font-italic); font-style: italic; font-weight: 800;
  font-size: 30px; line-height: 1;
}
.rshield.tone-red .rshield-big { color: var(--cream); }

/* ---- notched ribbon banner ---- */
.rbanner {
  display: inline-block;
  position: relative;
  background: var(--red);
  padding: 9px 30px;
  -webkit-clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 14px 100%, 0 50%);
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 14px 100%, 0 50%);
  filter: drop-shadow(3px 4px 0 rgba(26, 26, 26, 0.28));
}
.rbanner.tone-teal { background: var(--cyan); }
.rbanner.tone-amber { background: var(--orange); }
.rbanner-face {
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 13px; color: var(--cream);
}
.rbanner.tone-teal .rbanner-face { color: var(--ink); }

/* ---- menu "Daily Specials" stamp → marquee bulb ring ---- */
.menu-stamp::before, .menu-stamp::after {
  content: ""; position: absolute; border-radius: 50%;
  pointer-events: none;
}
.menu-stamp::before { inset: -13px; border: 9px dotted var(--ink); }
.menu-stamp::after  { inset: -12px; border: 7px dotted var(--bulb);
  animation: bulbGlow 2.6s ease-in-out infinite; }

/* ---- hero floating open sign ---- */
.hero-opensign {
  position: absolute;
  top: clamp(96px, 13vw, 150px); right: clamp(18px, 5vw, 70px);
  z-index: 6;
  transform: rotate(-5deg);
}
.hero-opensign .dsign-face { font-size: 15px; letter-spacing: 0.12em; white-space: nowrap; }

/* ---- menu vertical "eat here" sign ---- */
.menu-eat-sign {
  position: absolute;
  left: clamp(-4px, 1.5vw, 30px);
  top: 230px;
  z-index: 2;
  transform: rotate(-3deg);
}
@media (max-width: 1360px) { .menu-eat-sign { display: none; } }

/* ---- footer signage row ---- */
.foot-signs {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  margin: 8px 0 40px;
}
.foot-signs .dsign-face { font-size: 22px; }

@media (max-width: 720px) {
  .hero-opensign { top: 78px; right: 12px; transform: rotate(-5deg) scale(0.82); }
  .foot-signs { gap: 16px; }
  .foot-signs .dsign-face { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .dsign-bulbs, .menu-stamp::after { animation: none; }
}

/* ====================================================
   CONTACT — dedicated B2B inquiry page
   ==================================================== */
.contact {
  background: var(--yellow);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.contact .section { position: relative; z-index: 2; }
.ct-deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.ct-deco .blob { position: absolute; top: -8%; right: -10%; width: 46%; opacity: 0.9; }
.ct-deco .ct-squig-1 { position: absolute; left: 4%; bottom: 12%; width: 120px; opacity: 0.6; }
.ct-deco .ct-star-2 { position: absolute; bottom: 18%; right: 8%; width: 26px; }
/* headline flourish — rides inline after "shop." so it never covers copy */
.ct-star-inline {
  display: inline-block;
  width: 0.4em;
  height: auto;
  vertical-align: middle;
  margin-left: 0.12em;
}

.ct-head { max-width: 60ch; }

.ct-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: var(--gutter);
  align-items: start;
}

/* ---- info rail ---- */
.ct-rail { display: flex; flex-direction: column; gap: 16px; }
.ct-method {
  display: flex; align-items: center; gap: 16px;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 5px 6px 0 rgba(26, 26, 26, 0.2);
  text-decoration: none; color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.18s ease;
}
.ct-method:hover { transform: translate(-2px, -1px); box-shadow: 7px 8px 0 var(--red); }
.ct-ico {
  flex: 0 0 auto; width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--cyan); color: var(--ink);
  border: 2.5px solid var(--ink); border-radius: 11px;
}
.ct-ico svg { width: 24px; height: 24px; }
.ct-method-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ct-method-val { font-family: var(--font-display); font-weight: 700; font-size: 16px; line-height: 1.2; }

.ct-next {
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 5px 6px 0 rgba(26, 26, 26, 0.14);
}
.ct-next .t-label { display: block; margin-bottom: 12px; }
.ct-next ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ct-next li { font-family: var(--font-body); font-size: 14px; line-height: 1.45; color: var(--ink-soft); }
.ct-next li b { color: var(--red); font-family: var(--font-display); margin-right: 8px; }

/* ---- order-desk snapshot — the human who reads your request ---- */
.ct-photo {
  margin: 8px 0 0;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 10px 10px 12px;
  box-shadow: 6px 8px 0 rgba(26, 26, 26, 0.2);
  transform: rotate(-2deg);
}
.ct-photo img {
  display: block;
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 8px;
}
.ct-photo figcaption {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: var(--ink);
  padding: 9px 4px 1px;
}

/* ---- the form card ---- */
.ct-formcard {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 40px);
  box-shadow: 10px 12px 0 rgba(26, 26, 26, 0.22);
}
.ct-summary {
  background: rgba(233, 73, 38, 0.1);
  border: 2px solid var(--red);
  border-radius: 10px;
  padding: 12px 16px; margin-bottom: 22px;
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
}
.cf-group { border: 0; padding: 0; margin: 0 0 28px; }
.cf-group:last-of-type { margin-bottom: 18px; }
.cf-group legend {
  display: block; width: 100%; padding: 0 0 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2.5px solid var(--ink);
  margin-bottom: 18px;
}
.cf-row { display: flex; gap: 16px; flex-wrap: wrap; }
.cf-field { display: flex; flex-direction: column; margin-bottom: 16px; flex: 1 1 100%; }
.cf-field.cf-half { flex: 1 1 calc(50% - 8px); min-width: 180px; }
.cf-field label, .cf-grouplabel {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.02em; color: var(--ink);
  margin-bottom: 7px;
}
.cf-req { color: var(--red); }

.ct-formcard input,
.ct-formcard select,
.ct-formcard textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 12px 14px; min-height: 48px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none; appearance: none;
}
.ct-formcard textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.ct-formcard select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%231A1A1A' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.ct-formcard input::placeholder,
.ct-formcard textarea::placeholder { color: rgba(26, 26, 26, 0.4); }
.ct-formcard input:focus,
.ct-formcard select:focus,
.ct-formcard textarea:focus {
  outline: none;
  border-color: var(--cyan-deep);
  box-shadow: 0 0 0 3px rgba(63, 189, 201, 0.35);
}
.ct-formcard .is-error { border-color: var(--red); }
.ct-formcard .is-error:focus { box-shadow: 0 0 0 3px rgba(233, 73, 38, 0.3); }
.cf-help { margin: 6px 0 0; font-family: var(--font-body); font-size: 12.5px; color: var(--ink-soft); }
.cf-err { margin: 6px 0 0; font-family: var(--font-body); font-weight: 600; font-size: 12.5px; color: var(--red); }
.cf-err::before { content: "★ "; }

/* ---- product chips (multi-select) ---- */
.cf-chips { display: flex; flex-wrap: wrap; gap: 9px; outline: none; }
.cf-chips:focus-visible { outline: 3px solid var(--cyan-deep); outline-offset: 4px; border-radius: 8px; }
.cf-chip {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--ink); background: var(--cream);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 9px 16px; min-height: 40px; cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease, color 0.15s ease;
}
.cf-chip:hover { transform: translateY(-1px); }
.cf-chip.is-on { background: var(--cyan); color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }

/* ---- radio pills ---- */
.cf-radios { display: flex; flex-wrap: wrap; gap: 9px; }
.cf-radio {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--ink);
  background: var(--cream); border: 2px solid var(--ink); border-radius: 999px;
  padding: 8px 16px; min-height: 40px; cursor: pointer;
  transition: background 0.15s ease;
}
.cf-radio input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.cf-radio.is-on { background: var(--red); color: var(--cream); border-color: var(--red); }
.cf-radio:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(63, 189, 201, 0.4); }

/* ---- send-failure notice — shown above the actions, answers preserved ---- */
.cf-sendfail {
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(233, 73, 38, 0.1);
  border: 2px solid var(--red);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}
.cf-sendfail strong { color: var(--red); }
.cf-sendfail-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 700;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cf-sendfail-link:hover { color: var(--ink); }

/* ---- actions ---- */
.cf-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 24px; }
.cf-submit { font-size: 15px; padding: 16px 34px; }
.cf-submit:disabled { opacity: 0.6; cursor: progress; }
.cf-fineprint { font-family: var(--font-body); font-size: 12.5px; color: var(--ink-soft); margin: 0; }

/* ---- success state ---- */
.ct-success { position: relative; max-width: 60ch; padding: 20px 0; }
.ct-success-burst { width: 120px; margin-bottom: 8px; }
.ct-success .btn-pill { margin-top: 28px; }

/* ---- responsive ---- */
@media (max-width: 980px) {
  .ct-grid { grid-template-columns: 1fr; }
  .ct-formcard { order: -1; }   /* lead with the form on small screens */
}
@media (max-width: 560px) {
  .cf-field.cf-half { flex: 1 1 100%; }
  .cf-actions { gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .ct-method { transition: none; }
}

/* ====================================================
   50s DINER DRESSING — checker seams, neon cove, script
   signs, awning, tin signs
   ==================================================== */

/* checkered floor-line trim at section seams (photos 1/3/4/5) */
.footer-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  pointer-events: none;
  z-index: 2;
  background-color: var(--cream);
  background-image:
    linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%),
    linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
  border-bottom: 3px solid var(--ink);
}

/* red neon script greeting in the hero (photos 1 + 2) */
.hero-eyebrow.hero-neon-script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 48px);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--red);
  width: max-content;
  transform: rotate(-3deg);
  transform-origin: left bottom;
  text-shadow:
    0 0 1px #fff,
    0 0 8px var(--neon-pink),
    0 0 20px var(--neon-pink),
    0 0 36px rgba(255, 93, 115, 0.45),
    2px 3px 0 var(--ink);
}
.neon-dud { animation: neonDud 7s infinite; }
@keyframes neonDud {
  0%, 91%, 100% { opacity: 1; }
  92%, 94% { opacity: 0.3; text-shadow: none; }
}

/* scalloped service awning over the menu card */
.awning {
  position: absolute;
  top: -3px; left: -3px; right: -3px;
  height: 56px;
  z-index: 2;
  background: repeating-linear-gradient(90deg, var(--red) 0 44px, var(--paper) 44px 88px);
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}
.awning::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -21px;
  height: 22px;
  /* scallop lobes phase-locked to the 88px stripe period */
  background:
    radial-gradient(circle 22px at 22px 0, var(--red) 0 18px, var(--ink) 18px 21px, transparent 21px) repeat-x 0 0 / 88px 22px,
    radial-gradient(circle 22px at 22px 0, var(--paper) 0 18px, var(--ink) 18px 21px, transparent 21px) repeat-x 44px 0 / 88px 22px;
}

/* cream script counter lettering in the footer (photo 5) */
.foot-serving {
  font-family: var(--font-script);
  font-size: clamp(22px, 2.6vw, 36px);
  color: var(--cream);
  width: max-content;
  transform: rotate(-2.5deg);
  margin-bottom: 10px;
  text-shadow: 2px 3px 0 rgba(26, 26, 26, 0.45);
}

/* tin-sign memorabilia overlapping the About pinboard (photo 4) */

/* ---- living sky: photo scrolls right→left on a seamless loop ---- */
.hero-sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
/* vertical bleed so the pointer parallax never exposes an edge */
.sky-par { position: absolute; inset: -4% 0; will-change: transform; }
/* two tiles — the second mirrored — so the wrap point meets its own
   reflection and the loop has no visible seam. Tiles take the IMAGE's aspect
   ratio (set as --sky-ar from its real dimensions) so wide panoramas scroll
   through in full instead of being center-cropped. */
.sky-strip {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: max-content;
  height: 100%;
  display: flex;
  animation: skyScroll 210s linear infinite;
  will-change: transform;
}
.sky-tile {
  flex: none;
  height: 100%;
  aspect-ratio: var(--sky-ar, 2.2);
  background-size: cover;
  background-position: center;
}
.sky-tile.is-flip { transform: scaleX(-1); }
@keyframes skyScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
/* yellow "roadside" horizon band at the bottom — grounds the collage and
   hands the brand color back before the menu section */
.sky-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(251, 210, 46, 0) 0%,
    rgba(251, 210, 46, 0) 76%,
    rgba(251, 210, 46, 0.35) 85%,
    var(--yellow) 92%);
}
@media (prefers-reduced-motion: reduce) {
  .sky-strip { animation: none !important; }
}

@media (max-width: 720px) {
  .footer-cta::before {
    height: 20px;
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
  }
  .hero-eyebrow.hero-neon-script { font-size: 26px; }
  .awning { height: 44px; }
}

/* ====================================================
   BLOG — static editorial pages (generated by build-blog.mjs)
   ==================================================== */
body.blog-page { background: var(--cream); color: var(--ink); }
.blog-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 150px var(--section-pad-x) 90px;
}
.blog-head { margin-bottom: 48px; }
.blog-head .h2 { color: var(--ink); }
.blog-head .h2 .alt { color: var(--red); }
.blog-head .sub { max-width: 54ch; }
.blog-grid { display: grid; gap: 22px; }
.blog-card {
  display: block;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 26px clamp(20px, 3vw, 34px);
  text-decoration: none;
  color: var(--ink);
  box-shadow: 8px 10px 0 rgba(26, 26, 26, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover { transform: translate(-2px, -3px); box-shadow: 11px 14px 0 rgba(26, 26, 26, 0.2); }
/* hub cards go horizontal — the photo keeps its full 3:2 composition */
.blog-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 26px;
  align-items: center;
}
.blog-card-img {
  display: block;
  grid-column: 1;
  grid-row: 1 / span 4;
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
}
.blog-card > *:not(.blog-card-img) { grid-column: 2; }
@media (max-width: 640px) {
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-img { grid-row: auto; margin-bottom: 16px; }
  .blog-card > *:not(.blog-card-img) { grid-column: 1; }
}

/* post hero — the whole image, postcard-style, never cropped */
.blog-hero { margin: 0 0 28px; text-align: center; }
.blog-hero img {
  display: block;
  width: min(100%, 720px);
  height: auto;
  margin: 0 auto;
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: 8px 10px 0 rgba(26, 26, 26, 0.16);
}
/* the one legacy square image shouldn't tower over the article */
.blog-hero img[width="1200"] { width: min(100%, 480px); }
.blog-card h2 {
  font-family: var(--font-italic); font-style: italic; font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  margin: 10px 0 10px;
}
.blog-card p { font-family: var(--font-body); font-size: 15px; line-height: 1.65; margin: 0 0 14px; opacity: 0.85; }
.blog-more { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; color: var(--red); }
.blog-eyebrow { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.blog-tag {
  font-family: var(--font-display); font-weight: 800;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-deep);
}
.blog-meta { font-family: var(--font-body); font-size: 12.5px; opacity: 0.65; }
.blog-post {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 10px 12px 0 rgba(26, 26, 26, 0.18);
}
.blog-post h1 {
  font-family: var(--font-italic); font-style: italic; font-weight: 800;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.08;
  margin: 12px 0 26px;
}
.blog-body { font-family: var(--font-body); font-size: 16.5px; line-height: 1.8; }
.blog-body h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(19px, 2vw, 23px);
  margin: 34px 0 10px;
}
.blog-body p { margin: 0 0 16px; }
.blog-body ul, .blog-body ol { margin: 0 0 16px; padding-left: 24px; }
.blog-body li { margin-bottom: 8px; }
.blog-body strong { font-weight: 700; }
.blog-cta {
  margin-top: 40px;
  padding: 26px;
  border: 2px dashed rgba(26, 26, 26, 0.45);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.blog-cta-line {
  font-family: var(--font-italic); font-style: italic; font-weight: 700;
  font-size: 20px; margin: 0;
}
.blog-back { margin: 26px 0 0; font-family: var(--font-display); font-weight: 700; }
.blog-back a { color: var(--ink); text-decoration: none; }
.blog-back a:hover { color: var(--red); }
.blog-foot {
  text-align: center;
  padding: 26px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.6;
}

/* ====================================================
   REDUCED MOTION — honor the OS setting site-wide
   ==================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto !important; }
  /* keep decorative looping elements still */
  .wave-girl img, .roadster { animation: none !important; }
  /* GSAP-paused entrances must never leave content invisible under RM */
  .is-prep .nav-wrap, .is-prep .hero-content > *, .is-prep .hero-photo,
  .is-prep .hero-deco > *, .is-prep .hero-shape { opacity: 1 !important; visibility: visible !important; }
}

/* ====================================================
   ACCESSIBILITY — skip link, focus ring, caret on inputs
   ==================================================== */
.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 10000;
  background: var(--ink); color: var(--cream);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  padding: 12px 18px; border-radius: 10px; text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 16px; outline: 3px solid var(--yellow); }

/* Visible keyboard focus everywhere */
:focus-visible {
  outline: 3px solid var(--cyan-deep);
  outline-offset: 2px;
}

/* ====================================================
   BAGEL FAT ONE — brand chunky display font (local TTF)
   ==================================================== */
@font-face {
  font-family: "Bagel Fat One";
  src: url("../fonts/BagelFatOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Hero headline — chunky vintage display with a 3D extruded shadow */
.hero-h1 {
  font-family: "Bagel Fat One", "Bowlby One", "Lilita One", var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(34px, 4.7vw, 70px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-shadow:
    1px 1px 0 var(--ink), 2px 2px 0 var(--ink), 3px 3px 0 var(--ink),
    4px 4px 0 var(--ink), 5px 5px 0 var(--ink), 6px 6px 0 var(--ink),
    7px 7px 0 var(--ink), 8px 9px 14px rgba(26, 26, 26, 0.35);
}
