/* Breakfast Brothers — modern retro diner, executed premium.
   Palette derived from the rooms: cherry plates, mustard chairs, navy booths, biscuit cream. */

/* Lobster — the logo face. Self-hosted, subset to Latin-1 + punctuation.
   Pablo Impallari, SIL Open Font License 1.1 (see assets/fonts/OFL.txt). */
@font-face {
  font-family: "Lobster";
  src: url("../fonts/lobster-1.4.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Cabinet Grotesk — self-hosted from Fontshare (ITF Free Font License,
   see assets/fonts/CABINET-GROTESK-LICENSE.txt). No third-party origins
   in the font chain. */
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("../fonts/cabinet-grotesk-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("../fonts/cabinet-grotesk-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("../fonts/cabinet-grotesk-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("../fonts/cabinet-grotesk-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("../fonts/cabinet-grotesk-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: oklch(0.97 0.012 85);
  --cream-2: oklch(0.94 0.02 80);
  --cherry: oklch(0.52 0.19 29);
  --cherry-deep: oklch(0.4 0.155 29);
  --navy: oklch(0.28 0.04 260);
  --navy-deep: oklch(0.22 0.035 260);
  --ink: oklch(0.24 0.02 40);
  --mustard: oklch(0.8 0.13 85);
  --wood: oklch(0.62 0.08 60);
  --wood-line: oklch(0.85 0.035 70);
  --font-body: "Cabinet Grotesk", "Avenir Next", "Helvetica Neue", sans-serif;
  --font-display: "Lobster", "Cabinet Grotesk", "Avenir Next", cursive;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-lift: 0 18px 40px -18px oklch(0.3 0.06 35 / 0.35);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

.page { overflow-x: clip; width: 100%; max-width: 100%; }

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 0.6rem 1rem; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

h1, h2, h3 { line-height: 1.04; letter-spacing: -0.015em; text-wrap: balance; }

/* Lobster is rationed to the emotional beats — the hero, "Built by brothers.",
   and "Hungry yet?" — so the script stays a signature, not wallpaper. It is a
   connected script drawn at 400 only, with a 1.0/-0.25 em ascent/descent — so
   it needs its own weight, tracking and leading rather than the grotesk's
   tight negative defaults. Workhorse section heads run Cabinet 900. */
.hero-h1,
.story-copy h2,
.big-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.14;
  -webkit-font-smoothing: antialiased;
}
.section-head h2,
.catering-copy h2 { font-weight: 900; }

:focus-visible { outline: 3px solid var(--cherry); outline-offset: 3px; border-radius: 4px; }
.big-cta :focus-visible, .footer :focus-visible, .story :focus-visible,
.reviews :focus-visible, .menu-columns :focus-visible { outline-color: var(--cream); }

.sr-status {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.nw { white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  padding: 0.78rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  transition: transform 160ms var(--ease-out), background-color 200ms ease, color 200ms ease, border-color 200ms ease;
  cursor: pointer; white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-lg { padding: 1rem 2rem; font-size: 1.08rem; }
.btn-cherry { background: var(--cherry); color: var(--cream); }
.btn-cherry:hover { background: var(--cherry-deep); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--navy); }
.btn-cream { background: var(--cream); color: var(--cherry-deep); }
.btn-cream:hover { background: var(--cream-2); }
.btn-outline-cream { border-color: var(--cream); color: var(--cream); }
.btn-outline-cream:hover { background: var(--cream); color: var(--cherry-deep); }

/* ---------- Checkerboard motif ---------- */
.checker-strip {
  height: 28px;
  background:
    conic-gradient(var(--cherry) 90deg, var(--cream) 90deg 180deg, var(--cherry) 180deg 270deg, var(--cream) 270deg)
    0 0 / 28px 28px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background-color 250ms ease, box-shadow 250ms ease;
}
.nav.is-solid {
  background: oklch(0.97 0.012 85 / 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--wood-line);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0.55rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-brand img { width: 92px; height: auto; }
.nav-links { display: none; gap: 2rem; }
.nav-links a {
  text-decoration: none; font-weight: 700; font-size: 1rem; color: var(--ink);
  padding: 0.35rem 0.1rem; border-bottom: 2px solid transparent;
  transition: border-color 200ms ease;
}
.nav-links a:hover { border-bottom-color: var(--cherry); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 6px; padding: 12px 10px;
  min-width: 46px; min-height: 46px; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: transform 200ms var(--ease-out), opacity 200ms ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 0.4rem;
  background: var(--cream); border-top: 1px solid var(--wood-line);
  padding: 1rem 1.25rem 1.4rem;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { text-decoration: none; font-weight: 700; font-size: 1.2rem; padding: 0.65rem 0.2rem; }
.mobile-menu .btn { margin-top: 0.5rem; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-brand img { width: 112px; }
}

/* ---------- Hero: editorial split.
   Mobile order is head → PHOTO → sub/CTAs, so the food is unmissable in the
   first viewport — frame one of any phone scroll. Desktop keeps copy left,
   media right. ---------- */
.hero { padding: 5.6rem 0 0; background: var(--cream); }
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem 3rem;
  display: grid; gap: 1.4rem;
  grid-template-areas: "head" "media" "rest";
}
.hero-head { grid-area: head; }
.hero-media { grid-area: media; }
.hero-rest { grid-area: rest; }
.hero-kicker {
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 0.82rem; color: var(--cherry-deep); margin-bottom: 0.9rem;
}
.hero-h1 {
  font-size: clamp(2.9rem, 8.8vw, 5.9rem);
  color: var(--ink);
  line-height: 1.06;
  display: flex; flex-direction: column;
}
.hero-h1 em { font-style: normal; color: var(--cherry); }
/* Each line is its own reveal mask, so the mask has to clear Lobster's swashes.
   The font draws ink well outside the glyph box: 'f' and 'j' reach 0.21em left of
   the origin, 'L' and 'T' throw a tail 0.28em past the advance, and descenders run
   to 0.25em. Padding widens the mask on every side; the negative margins cancel it
   back out so the stacked rhythm and left edge stay put. */
.hero-line {
  display: block; overflow: hidden;
  padding: 0.08em 0.3em 0.2em 0.26em;
  margin-left: -0.26em;
  margin-bottom: -0.2em;
}
.hero-line:last-child { margin-bottom: 0; }
.hero-sub {
  font-size: 1.14rem; max-width: 44ch; color: oklch(0.38 0.02 40);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.4rem; }
.hero-hours { margin-top: 1.2rem; font-weight: 700; color: var(--cherry-deep); font-size: 0.95rem; letter-spacing: 0.04em; }

.hero-media { position: relative; margin-bottom: 2rem; }
.hero-photo {
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 3.4;
  background: var(--cream-2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-disc {
  position: absolute; right: -6%; bottom: -9%;
  width: clamp(120px, 24%, 190px); aspect-ratio: 1;
  border-radius: 50%; overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-lift);
  background: var(--cherry);
}
/* Zoomed past the tile-c crop so the disc reads as its own waffle detail,
   not a literal repeat of the plates-grid photo. */
.hero-disc img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.55); transform-origin: 62% 38%; }

@media (min-width: 980px) {
  .hero { padding-top: 8.5rem; }
  .hero-inner {
    grid-template-columns: 1.05fr 1fr;
    grid-template-areas: "head media" "rest media";
    align-items: center;
    column-gap: 4.5rem; row-gap: 0;
    padding-bottom: 5.5rem;
  }
  .hero-head { align-self: end; }
  .hero-rest { align-self: start; }
  .hero-media { align-self: center; margin-bottom: 0; }
  .hero-h1 { font-size: clamp(3.4rem, 4.9vw, 5.4rem); }
  .hero-sub { margin-top: 1.4rem; }
  .hero-ctas { margin-top: 2rem; }
  .hero-kicker { margin-bottom: 1.1rem; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--cherry); color: var(--cream);
  overflow: hidden; padding: 0.9rem 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 2.2rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.98rem;
  white-space: nowrap;
}
.marquee-track i { font-style: normal; font-size: 0.55rem; opacity: 0.75; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Section head ---------- */
.section-head { max-width: 1200px; margin: 0 auto 3rem; padding: 0 1.25rem; }
.section-head h2 { font-size: clamp(2.25rem, 5.7vw, 3.6rem); }
.section-head p { margin-top: 0.8rem; font-size: 1.08rem; color: oklch(0.42 0.02 40); max-width: 58ch; }

/* ---------- Signature plates: gapless dense grid ---------- */
.plates { padding: 5.5rem 0 4rem; }
.plate-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: 44vw;
}
.plate-tile {
  position: relative; border-radius: 16px; overflow: hidden;
  text-decoration: none; display: block;
  background: var(--cream-2);
}
.plate-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .plate-tile img { will-change: transform; }
  .plate-tile:hover img { transform: scale(1.05); }
}
.plate-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 5.5rem 0.85rem 1rem;
  color: var(--cream);
  background: linear-gradient(to top, oklch(0.2 0.03 35 / 0.92) 0 62%, oklch(0.2 0.03 35 / 0) 100%);
  font-size: 1rem;
}
.plate-label strong { font-weight: 800; line-height: 1.15; }
.plate-price {
  position: absolute; right: 1rem; bottom: 0.85rem;
  font-variant-numeric: tabular-nums; font-weight: 800; color: var(--mustard);
  font-size: 1rem;
}
.pn-short { display: none; }

/* Mobile: 2-col dense; feature + long-name tiles span both columns, names run
   one line, and the price rides as a mustard chip so the scrim never swallows
   the food. */
.tile-a { grid-column: span 2; }
@media (max-width: 899px) {
  .tile-d, .tile-g { grid-column: span 2; }
  .pn-full { display: none; }
  .pn-short { display: inline; }
  .plate-label {
    padding: 1.1rem 0.85rem 0.7rem;
    font-size: 0.94rem;
    background: linear-gradient(to top, oklch(0.2 0.03 35 / 0.9) 0 45%, oklch(0.2 0.03 35 / 0) 100%);
  }
  .plate-label strong { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .plate-price {
    top: 0.6rem; right: 0.6rem; bottom: auto;
    background: var(--mustard); color: var(--ink);
    padding: 0.18rem 0.6rem; border-radius: 999px;
    font-size: 0.84rem;
  }
}
@media (min-width: 900px) {
  .plate-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; }
  /* 4 cols x 3 rows = 12 cells: A(2x2)=4, B=1, C=1, D(2x1)=2, E=1, F=1, G(2x1)=2. Zero voids. */
  .tile-a { grid-column: span 2; grid-row: span 2; }
  .tile-d { grid-column: span 2; }
  .tile-g { grid-column: span 2; }
}

/* ---------- Pull quote ---------- */
.pull-quote {
  max-width: 900px; margin: 0 auto; padding: 5rem 1.25rem 1rem;
  text-align: center;
}
.pull-quote p {
  font-size: clamp(1.7rem, 4.4vw, 2.9rem); font-weight: 900; line-height: 1.18;
  color: var(--ink); letter-spacing: -0.015em; text-wrap: balance;
}
.pull-quote cite {
  display: block; margin-top: 1.1rem; font-style: normal;
  color: var(--cherry-deep); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ---------- Early bird band ---------- */
.earlybird {
  background: var(--mustard);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.2rem;
  padding: 1.6rem 1.25rem; text-align: center;
}
.earlybird p { font-size: 1.12rem; color: var(--ink); max-width: 60ch; }
.earlybird strong { font-weight: 900; }

/* ---------- Menu: the letter-board. A navy board object with cream type and
   mustard prices, so the menu reads as a diner letter-board instead of a
   price list on cream. ---------- */
.menu { padding: 6rem 0 4.5rem; background: var(--cream); }
.menu-board { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.menu-columns {
  background: var(--navy);
  border-radius: 22px;
  box-shadow: var(--shadow-lift);
  padding: 2.2rem 1.5rem;
  display: grid; gap: 2rem;
  color: var(--cream);
}
.menu-col h3 {
  font-size: 1.32rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--mustard);
  border-bottom: 3px solid oklch(0.42 0.05 260); padding-bottom: 0.5rem; margin-bottom: 1rem;
}
.menu-col h3 + .menu-list { margin-bottom: 1.8rem; }
.menu-col .menu-list:last-child { margin-bottom: 0; }
.menu-list { list-style: none; }
.menu-list li {
  display: flex; align-items: baseline; align-items: last baseline; gap: 0.5rem;
  padding: 0.42rem 0; font-size: 1.04rem;
}
.menu-list li span { flex-shrink: 1; }
.menu-list li small { display: block; color: oklch(0.76 0.02 80); font-size: 0.86rem; }
.menu-list li::before { content: ""; order: 2; flex: 1; border-bottom: 2px dotted oklch(0.46 0.045 260); transform: translateY(-4px); min-width: 1.5rem; }
.menu-list li b { order: 3; font-variant-numeric: tabular-nums; font-weight: 800; color: var(--mustard); }
.menu-cta { max-width: 1200px; margin: 3rem auto 0; padding: 0 1.25rem; display: flex; flex-direction: column; align-items: flex-start; gap: 0.8rem; }
.menu-cta p { color: oklch(0.5 0.02 40); font-size: 0.92rem; }

/* Mobile shows the headline items per category; the full board lives on
   online ordering (that line is the section's own CTA). */
@media (max-width: 899px) {
  .menu-list li.m-hide { display: none; }
}
@media (min-width: 900px) {
  .menu-columns { grid-template-columns: repeat(3, 1fr); gap: 3.5rem; padding: 3rem 2.5rem; }
  .menu-col h3 + .menu-list { margin-bottom: 2.4rem; }
  .menu-list li { padding: 0.5rem 0; }
}

/* ---------- Story + scrub text ---------- */
.story { background: var(--navy); color: var(--cream); padding: 6.5rem 0; }
.story-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  display: grid; gap: 3rem; align-items: center;
}
.story-photo {
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 3; background: var(--navy-deep);
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-copy h2 { font-size: clamp(2.25rem, 5.3vw, 3.4rem); margin-bottom: 1.6rem; }
.scrub-text {
  font-size: clamp(1.18rem, 2.1vw, 1.5rem); font-weight: 500; line-height: 1.6;
  max-width: 58ch;
}
.scrub-text .w { opacity: 0.55; }
.story-mission {
  margin-top: 1.6rem; color: var(--mustard); font-weight: 700; font-size: 1.08rem; max-width: 52ch;
}
@media (min-width: 980px) {
  .story-grid { grid-template-columns: 0.92fr 1.08fr; gap: 4.5rem; }
}

/* ---------- Locations: three diner order tickets. Checker rule up top, big
   stub number, dashed tear line above the actions — three distinct tickets,
   no recycled food photos. ---------- */
.locations { padding: 6.5rem 0; background: var(--cream-2); }
.loc-row {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  display: flex; flex-direction: column; gap: 1.4rem;
}
.loc-panel {
  position: relative;
  background: var(--cream); border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 30px -18px oklch(0.3 0.06 35 / 0.3);
  display: flex; flex-direction: column;
  transition: box-shadow 300ms ease, transform 300ms var(--ease-out);
}
.loc-check {
  height: 12px;
  background:
    conic-gradient(var(--cherry) 90deg, var(--cream) 90deg 180deg, var(--cherry) 180deg 270deg, var(--cream) 270deg)
    0 0 / 12px 12px;
}
.loc-num {
  position: absolute; top: 1.5rem; right: 1.3rem;
  font-size: 2.7rem; font-weight: 900; line-height: 1;
  color: var(--wood-line); letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  user-select: none;
}
.loc-body { padding: 1.6rem 1.4rem 1.7rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.loc-body h3 { font-size: 1.5rem; font-weight: 900; padding-right: 4.2rem; }
.loc-addr { color: oklch(0.42 0.02 40); }
.loc-hours { color: oklch(0.42 0.02 40); font-weight: 700; font-variant-numeric: tabular-nums; }
.loc-waitlist { margin-top: 0.9rem; font-weight: 500; }
.loc-waitlist a { color: var(--cherry-deep); font-weight: 700; }
.loc-phone { font-weight: 800; color: var(--cherry-deep); text-decoration: none; font-size: 1.06rem; display: inline-block; padding: 0.6rem 0; }
.loc-phone:hover { text-decoration: underline; }
.loc-actions {
  display: flex; gap: 0.7rem; margin-top: auto; padding-top: 1.1rem; flex-wrap: wrap;
  border-top: 2px dashed var(--wood-line);
}

@media (min-width: 980px) {
  .loc-row { flex-direction: row; }
  .loc-panel { flex: 1 1 0; }
  .loc-panel:hover, .loc-panel:focus-within { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
}

/* ---------- Catering ---------- */
.catering { padding: 7rem 0; }
.catering-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  display: grid; gap: 3rem; align-items: center;
}
.catering-copy h2 { font-size: clamp(2.25rem, 5.3vw, 3.5rem); }
.catering-copy p { margin-top: 1.1rem; font-size: 1.1rem; color: oklch(0.4 0.02 40); max-width: 54ch; }
.catering-truck { font-weight: 800; color: var(--ink); }
.catering-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.catering-photo {
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lift);
  aspect-ratio: 3 / 2; background: var(--cream-2);
}
.catering-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 980px) {
  .catering-grid { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
}

/* ---------- Merch ---------- */
.merch { padding: 5rem 0 6.5rem; background: var(--cream-2); }
.merch-row {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  list-style: none;
  display: grid; gap: 1rem;
}
.merch-row a {
  display: flex; align-items: baseline; gap: 1rem;
  text-decoration: none;
  background: var(--cream);
  border: 2px solid var(--ink); border-radius: 14px;
  padding: 1.1rem 1.3rem;
  transition: background-color 200ms ease, transform 160ms var(--ease-out);
}
.merch-row a:active { transform: scale(0.98); }
.merch-row a:hover { background: var(--mustard); }
.merch-row strong { font-weight: 800; font-size: 1.06rem; }
.merch-row span { color: oklch(0.5 0.02 40); font-size: 0.9rem; }
.merch-row b { margin-left: auto; font-variant-numeric: tabular-nums; font-weight: 800; color: var(--cherry-deep); }
/* Mobile: name with size stacked beneath, price pinned right — no mid-phrase
   wraps in the ticket rows. */
@media (max-width: 899px) {
  .merch-row a {
    display: grid; grid-template-columns: 1fr auto;
    row-gap: 0.1rem; align-items: start;
  }
  .merch-row strong { grid-row: 1; grid-column: 1; }
  .merch-row b { grid-row: 1; grid-column: 2; margin-left: 1rem; }
  .merch-row span { grid-row: 2; grid-column: 1; white-space: nowrap; }
}
@media (min-width: 900px) {
  .merch-row { grid-template-columns: repeat(2, 1fr); }
  .merch-row li:last-child { grid-column: span 2; }
}

/* ---------- Reviews: the navy booth. Desktop keeps the carousel; mobile is a
   scroll-first quote wall — every review visible, nothing behind a tap. ---------- */
.reviews { background: var(--navy); color: var(--cream); padding: 6.5rem 0; }
.reviews .section-head h2 { color: var(--cream); }
.reviews .section-head p { color: oklch(0.82 0.02 80); }
.review-stage {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  position: relative; min-height: 15rem; display: grid;
}
.review-card {
  grid-area: 1 / 1;
  max-width: 820px;
  opacity: 0; transform: translateY(10px); visibility: hidden;
  transition: opacity 350ms ease, transform 350ms var(--ease-out), visibility 0s 350ms;
  pointer-events: none;
}
.review-card.is-active { opacity: 1; transform: none; visibility: visible; transition-delay: 0s; pointer-events: auto; }
.review-card p {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem); font-weight: 700; line-height: 1.42;
}
.review-card cite {
  display: block; margin-top: 1.2rem; font-style: normal;
  color: var(--mustard); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.review-nav { max-width: 1200px; margin: 1.8rem auto 0; padding: 0 1.25rem; display: flex; gap: 0.9rem; align-items: center; position: relative; }
.review-count { font-weight: 800; font-variant-numeric: tabular-nums; color: oklch(0.78 0.02 80); }
.review-btn {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--cream); background: transparent; color: var(--cream);
  font-size: 1.25rem; cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, transform 160ms var(--ease-out);
}
.review-btn:active { transform: scale(0.94); }
.review-btn:hover { background: var(--cream); color: var(--navy); }

@media (max-width: 899px) {
  .review-stage { display: block; min-height: 0; }
  .review-card {
    position: static;
    opacity: 1; transform: none; visibility: visible; pointer-events: auto;
    margin-bottom: 2.6rem;
  }
  .review-card:last-child { margin-bottom: 0; }
  .review-nav { display: none; }
}

/* ---------- Big CTA ---------- */
.big-cta {
  background: var(--cherry); color: var(--cream);
  text-align: center; padding: 7rem 1.25rem;
}
.big-cta h2 { font-size: clamp(2.75rem, 7.4vw, 4.9rem); }
.big-cta p { margin-top: 0.9rem; font-size: 1.15rem; opacity: 0.92; }
.big-cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.3rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: oklch(0.88 0.015 80); padding: 4.5rem 0 2rem; }
.footer-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  display: grid; gap: 2.8rem;
}
.footer-brand img { width: 130px; height: auto; }
.footer-brand p { margin-top: 1rem; line-height: 1.6; }
.footer-social { list-style: none; display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 1.2rem; }
.footer-social a { color: var(--mustard); font-weight: 700; text-decoration: none; display: inline-block; padding: 0.35rem 0; }
.footer-social a:hover { text-decoration: underline; }
.footer-col h3 {
  font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--mustard); margin-bottom: 0.9rem;
}
.footer-col h3:not(:first-child) { margin-top: 1.8rem; }
.footer-col p { margin-bottom: 0.85rem; line-height: 1.5; }
.footer-col a { color: inherit; text-decoration: none; display: inline-block; padding: 0.3rem 0; }
.footer-col a:hover { text-decoration: underline; color: var(--cream); }
.footer-fine {
  max-width: 1200px; margin: 3.5rem auto 0; padding: 1.5rem 1.25rem 0;
  border-top: 1px solid oklch(0.35 0.03 260);
  font-size: 0.85rem; color: oklch(0.62 0.02 260);
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 4rem; }
}
@media (max-width: 899px) {
  .footer { padding-bottom: 7.5rem; }
}

/* ---------- Call location sheet ---------- */
.call-sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--cream); border-top: 1px solid var(--wood-line);
  border-radius: 16px 16px 0 0;
  padding: 1.1rem 1rem calc(4.9rem + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 0.6rem;
  box-shadow: 0 -10px 30px oklch(0.3 0.06 35 / 0.2);
}
.call-sheet[hidden] { display: none; }
.call-sheet p { font-weight: 800; padding-left: 0.2rem; }
@media (min-width: 900px) { .call-sheet { display: none; } }

/* ---------- Mobile sticky order bar ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 0.7rem; padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: oklch(0.97 0.012 85 / 0.96);
  border-top: 1px solid var(--wood-line);
  transform: translateY(110%);
  transition: transform 300ms var(--ease-out);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar .btn { flex: 1; }
.sticky-bar .btn-ghost { flex: 0 0 auto; padding-inline: 1.6rem; }
@media (min-width: 900px) { .sticky-bar { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .plate-tile img, .loc-panel, .review-card { transition-duration: 1ms; }
}
