/* ==========================================================================
   Chilton Diner — house style "2a"
   Cream & ketchup red. Pacifico wordmark, Alfa Slab headings, Karla body,
   Caveat for the handwritten asides.
   ========================================================================== */

:root {
  /* Colour */
  --cream:        #FBF6EB;
  --panel:        #FFFDF8;
  --red:          #A93B2A;
  --red-dark:     #8A2E20;
  --red-shadow:   #7E2418;
  --mustard:      #D9A23B;
  --ink:          #29211A;

  /* Lines & rules */
  --line:         #E7DCC5;
  --line-strong:  #E0D2B4;
  --line-soft:    #F0E7D4;
  --line-hours:   #EADFC8;
  --dots:         #D8C7A4;

  /* Text */
  --body:         #5A4C3D;
  --muted:        #7A6A55;
  --muted-2:      #8A7C68;
  --muted-3:      #A08B6C;

  /* On dark ink */
  --on-ink:       #E4D8C2;
  --on-ink-muted: #A89880;
  --ink-line:     #40352B;
  --ink-dots:     #57493C;
  --ink-dash:     #6B5C49;

  /* On red */
  --on-red:       #F3D9CE;
  --on-red-warm:  #F0C4A9;
  --on-red-gold:  #F7D9A6;
  --red-line:     #C4674F;
  --red-dots:     #D08A72;
  --red-outline:  #E9BFA6;

  /* Type */
  --f-script: 'Pacifico', cursive;
  --f-slab:   'Alfa Slab One', Georgia, 'Times New Roman', serif;
  --f-hand:   'Caveat', 'Segoe Script', cursive;
  --f-body:   'Karla', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1180px;
}

/* --------------------------------------------------------------- base --- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  font: 400 16px/1.6 var(--f-body);
  color: var(--ink);
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

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

h1, h2, h3 { margin: 0; font-weight: 400; }

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 0 0 7px 0;
  font: 700 13px/1 var(--f-body);
  letter-spacing: 1.2px;
}
.skip-link:focus {
  left: 0;
  color: var(--cream);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ------------------------------------------------------------ buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  font: 700 14px/1 var(--f-body);
  letter-spacing: 1.2px;
  white-space: nowrap;
  transition: background-color .15s ease, color .15s ease;
}

.btn--red {
  background: var(--red);
  color: var(--cream);
  padding: 16px 26px;
  box-shadow: 0 2px 0 var(--red-shadow);
}
.btn--red:hover { background: var(--red-dark); color: var(--cream); }

.btn--outline {
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 14px 24px;
}
.btn--outline:hover { background: var(--ink); color: var(--cream); }

.btn--ink {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  font-size: 13px;
}
.btn--ink:hover { background: var(--red); color: var(--cream); }

.btn--outline-sm {
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 12px 20px;
  font-size: 13px;
}
.btn--outline-sm:hover { background: var(--ink); color: var(--cream); }

.btn--cream {
  background: var(--cream);
  color: var(--red);
  padding: 16px 26px;
}
.btn--cream:hover { background: var(--mustard); color: var(--ink); }

.btn--outline-light {
  border: 2px solid var(--red-outline);
  color: var(--cream);
  padding: 14px 24px;
}
.btn--outline-light:hover { background: var(--red-dark); color: var(--cream); }

/* ------------------------------------------------------- top bar / nav --- */

.topbar {
  background: var(--ink);
  color: var(--on-ink);
  padding: 9px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
  align-items: center;
  justify-content: center;
  font: 500 12px/1.4 var(--f-body);
  letter-spacing: .6px;
  text-align: center;
}
.topbar__sep { color: var(--ink-dash); }
.topbar__status { color: var(--mustard); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 235, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px 26px;
}

.brand { display: block; line-height: 1; }
.brand__name {
  display: block;
  font: 400 28px/1.35 var(--f-script);
  color: var(--red);
}
.brand__sub {
  display: block;
  font: 500 9px/1 var(--f-body);
  letter-spacing: 3px;
  color: var(--muted-3);
  padding-left: 3px;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__link {
  font: 700 13px/1 var(--f-body);
  letter-spacing: 1.2px;
  color: var(--ink);
  text-transform: uppercase;
}
.nav__link:hover { color: var(--red); }
.nav__link.is-current {
  color: var(--red);
  border-bottom: 2px solid var(--mustard);
  padding-bottom: 2px;
}

.btn-phone {
  background: var(--red);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 6px;
  font: 700 13px/1 var(--f-body);
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 1px 0 var(--red-shadow);
  transition: background-color .15s ease;
}
.btn-phone:hover { background: var(--red-dark); color: var(--cream); }

/* On pages with no nav (404), the phone button does the pushing itself. */
.site-header__inner > .brand + .btn-phone { margin-left: auto; }

@media (max-width: 760px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px 14px;
    padding: 12px 20px;
  }
  .brand    { grid-column: 1; grid-row: 1; }
  .btn-phone{ grid-column: 2; grid-row: 1; justify-self: end; }
  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-left: 0;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid var(--line);
    padding-top: 11px;
  }
}
@media (max-width: 420px) {
  .brand__name { font-size: 23px; }
  .brand__sub  { letter-spacing: 2px; }
  .btn-phone   { padding: 11px 14px; font-size: 12px; }
  .nav         { gap: 14px; }
  .nav__link   { font-size: 12px; letter-spacing: 1px; }
}

/* --------------------------------------------------------- shared bits --- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 500 10px/1 var(--f-body);
  letter-spacing: 3.5px;
  color: var(--red);
}
.eyebrow::before,
.eyebrow.is-centred::after {
  content: "";
  width: 30px;
  border-bottom: 1px solid var(--mustard);
  flex: none;
}
.eyebrow.is-centred { justify-content: center; }

.section-head { text-align: center; margin-bottom: clamp(30px, 4vw, 46px); }
.section-title {
  font: 400 clamp(26px, 3.2vw, 36px)/1.15 var(--f-slab);
  color: var(--ink);
}
.section-title--sm { font-size: clamp(24px, 3vw, 32px); }
.section-title .star { color: var(--mustard); }
.section-script {
  font: 400 clamp(20px, 2.2vw, 25px)/1.3 var(--f-hand);
  color: var(--muted-2);
  margin-top: 6px;
}

/* Dotted leader between a name and its price */
.dots {
  flex: 1;
  min-width: 32px;
  border-bottom: 2px dotted var(--dots);
}

/* Photo frames. To use a real photo, drop an <img> inside the frame —
   see README.md. The caption span is the stand-in until then. */
.photo {
  background: repeating-linear-gradient(135deg, #F1E7D2 0 11px, #EBDFC6 11px 22px);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
}
.photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  grid-area: 1 / 1;
}
/* A frame holding a real photo loses the placeholder inset. */
.photo:has(img) { padding: 0; }
.photo--4x3  { aspect-ratio: 4 / 3; }
.photo--3x2  { aspect-ratio: 3 / 2; }
.photo--16x9 { aspect-ratio: 16 / 9; }
.photo--hero { aspect-ratio: 4 / 3.4; padding: 24px; }
.photo__note {
  font: 11px/1.7 ui-monospace, Menlo, monospace;
  letter-spacing: 1px;
  color: var(--muted-3);
}

/* Stand-in for a dish we've no photo of yet — the ink/mustard monogram
   lockup from the style pack, so the slot reads as deliberate. */
.photo--brand {
  background: var(--ink);
  border-color: var(--ink);
}
.photo__mark {
  font: 400 clamp(38px, 5vw, 52px)/1 var(--f-script);
  color: var(--mustard);
}

/* ----------------------------------------------------------------- hero --- */

.hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) 24px clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero .eyebrow { margin-bottom: 20px; }
.hero__title {
  margin: 0 0 14px;
  font: 400 clamp(34px, 4.6vw, 56px)/1.1 var(--f-slab);
  color: var(--ink);
  letter-spacing: -.5px;
}
.hero__script {
  margin: 0 0 8px;
  font: 400 clamp(22px, 2.4vw, 28px)/1.25 var(--f-hand);
  color: var(--red);
}
.hero__lead {
  margin: 0 0 28px;
  max-width: 46ch;
  font: 400 clamp(16px, 1.5vw, 17.5px)/1.65 var(--f-body);
  color: var(--body);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}
.rating-pill {
  background: var(--mustard);
  color: var(--ink);
  padding: 8px 13px;
  border-radius: 99px;
  font: 700 12px/1 var(--f-body);
  letter-spacing: .5px;
}
.proof-caps {
  font: 500 13px/1 var(--f-body);
  letter-spacing: 1.4px;
  color: var(--muted);
}

.hero__media { position: relative; }
.hero__sticker {
  position: absolute;
  bottom: -18px;
  left: -14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 18px;
  box-shadow: 0 6px 18px rgba(41, 33, 26, .09);
  transform: rotate(-2.5deg);
  font: 400 21px/1.2 var(--f-hand);
  color: var(--ink);
}
@media (max-width: 420px) {
  .hero__sticker { left: 0; bottom: -14px; padding: 10px 14px; font-size: 19px; }
}

/* -------------------------------------------------------------- strips --- */

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.strip__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.strip__cell {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}
.strip__cell:last-child { border-right: none; }
.strip__title {
  font: 400 19px/1.2 var(--f-slab);
  color: var(--red);
  margin-bottom: 7px;
}
.strip__text { font: 400 14.5px/1.6 var(--f-body); color: var(--body); }

@media (max-width: 767px) {
  .strip__cell {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 24px 4px;
  }
  .strip__cell:last-child { border-bottom: none; }
}

/* --------------------------------------------------------- favourites --- */

.section-pad {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) 24px;
}
.scroll-anchor { scroll-margin-top: 130px; }

.fav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.6vw, 30px);
}
.fav-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.fav-card .photo {
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.fav-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.fav-card__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.fav-card__name {
  font: 400 21px/1.15 var(--f-slab);
  color: var(--ink);
}
.fav-card__price {
  font: 400 21px/1 var(--f-slab);
  color: var(--red);
}
.fav-card__desc {
  margin: 0;
  font: 400 14.5px/1.6 var(--f-body);
  color: var(--body);
}
/* If a card ever has no image area, the badge sits in the flow instead of
   landing on top of the price. */
.fav-card:not(:has(.photo)) .flag {
  position: static;
  align-self: flex-start;
  margin: 18px 0 -6px 18px;
}
.flag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--red);
  color: var(--cream);
  padding: 7px 12px;
  border-radius: 99px;
  font: 700 10.5px/1 var(--f-body);
  letter-spacing: 1.2px;
}
.centred-action { text-align: center; margin-top: clamp(28px, 3.5vw, 40px); }

/* ------------------------------------------------------------ cta band --- */

.cta-band { background: var(--red); color: var(--cream); }
.cta-band__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 60px) 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}
.cta-band__title {
  font: 400 clamp(30px, 3.6vw, 42px)/1.35 var(--f-script);
  color: var(--cream);
}
.cta-band__text {
  margin: 6px 0 0;
  max-width: 42ch;
  font: 400 16px/1.65 var(--f-body);
  color: var(--on-red);
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
@media (max-width: 700px) {
  .cta-band__actions { justify-content: flex-start; }
}

/* ------------------------------------------------------------- reasons --- */

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.reason {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
}
.reason__label {
  font: 500 10px/1 var(--f-body);
  letter-spacing: 2.4px;
  color: var(--red);
  margin-bottom: 10px;
}
.reason__text { font: 400 15px/1.6 var(--f-body); color: var(--body); }

/* ------------------------------------------------------ hours / find us --- */

.find {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.find__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 78px) 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}
.block-title {
  font: 400 clamp(24px, 3vw, 32px)/1.15 var(--f-slab);
  color: var(--ink);
  margin-bottom: 20px;
}

.hours { max-width: 420px; }
.hours__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-hours);
}
.hours__row:last-child { border-bottom: none; }
.hours__day   { font: 700 15px/1 var(--f-body); color: var(--ink); }
.hours__time  { font: 400 17px/1 var(--f-slab); color: var(--red); }
/* Sunday is greyed back, but still has to clear AA against the panel. */
.hours__row--closed .hours__day  { color: var(--muted); font-weight: 700; }
.hours__row--closed .dots        { border-bottom-color: #E2D6BC; }
.hours__row--closed .hours__time {
  font: 500 13px/1 var(--f-body);
  letter-spacing: 1.6px;
  color: var(--muted);
}

.loyalty-strip {
  margin-top: 26px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.loyalty-strip__lead {
  font: 400 23px/1.2 var(--f-hand);
  color: var(--red);
}
.loyalty-strip__text { font: 400 15px/1.5 var(--f-body); color: var(--body); }

.address {
  font-style: normal;
  font: 400 17px/1.7 var(--f-body);
  color: var(--ink);
  margin-bottom: 6px;
}
.find__note {
  margin: 0 0 20px;
  font: 400 14.5px/1.6 var(--f-body);
  color: var(--muted);
}
.find__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.map {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #F1E7D2 0 11px, #EBDFC6 11px 22px);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* -------------------------------------------------------------- footer --- */

.site-footer { background: var(--ink); color: var(--on-ink); }
.site-footer__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(44px, 5vw, 64px) 24px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 34px;
}
.footer-brand {
  font: 400 30px/1.35 var(--f-script);
  color: var(--mustard);
}
.footer-brand__sub {
  font: 400 20px/1.4 var(--f-hand);
  color: var(--on-ink-muted);
  margin-bottom: 14px;
}
.footer-blurb {
  margin: 0;
  max-width: 32ch;
  font: 400 14px/1.65 var(--f-body);
  color: var(--on-ink-muted);
}
/* --muted-2 reads fine on cream but is too dim on the ink footer,
   so the footer uses the slightly lighter --muted-3 for its small text. */
.footer-label {
  font: 500 10px/1 var(--f-body);
  letter-spacing: 2.4px;
  color: var(--muted-3);
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font: 400 15px/1.4 var(--f-body);
}
.footer-links a { color: var(--on-ink); }
.footer-links a:hover { color: var(--mustard); }
.footer-address {
  font: 400 15px/1.75 var(--f-body);
  color: var(--on-ink);
  font-style: normal;
}
.footer-phone {
  display: inline-block;
  margin-top: 12px;
  font: 400 22px/1 var(--f-slab);
  color: var(--mustard);
}
.footer-phone:hover { color: var(--cream); }
.footer-hours {
  font: 400 13px/1.6 var(--f-body);
  color: var(--on-ink-muted);
  margin-top: 12px;
}
.footer-bottom { border-top: 1px solid var(--ink-line); }
.footer-bottom__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  font: 400 12.5px/1.5 var(--f-body);
  color: var(--muted-3);
}
.footer-sign {
  font: 400 17px/1 var(--f-hand);
  color: var(--on-ink-muted);
}

/* ==========================================================================
   Menu page
   ========================================================================== */

.menu-hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(38px, 5vw, 64px) 24px clamp(26px, 3vw, 36px);
  text-align: center;
}
.menu-hero .eyebrow { margin-bottom: 16px; }
.menu-hero__title {
  margin: 0 0 8px;
  font: 400 clamp(38px, 5.4vw, 64px)/1.1 var(--f-slab);
  color: var(--ink);
}
.menu-hero__script {
  margin: 0 auto;
  max-width: 52ch;
  font: 400 clamp(21px, 2.3vw, 26px)/1.35 var(--f-hand);
  color: var(--muted-2);
}

.chips {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px clamp(20px, 3vw, 32px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}
.chip {
  border: 1px solid var(--line-strong);
  background: var(--panel);
  color: var(--body);
  padding: 9px 15px;
  border-radius: 99px;
  font: 700 11.5px/1 var(--f-body);
  letter-spacing: 1px;
  transition: background-color .15s ease, color .15s ease;
}
.chip:hover { background: var(--ink); color: var(--cream); }

.menu-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) 24px clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(28px, 3.4vw, 44px);
  align-items: start;
}

.menu-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(24px, 3vw, 32px);
  scroll-margin-top: 150px;
}
.menu-card__title {
  font: 400 clamp(24px, 2.8vw, 30px)/1.15 var(--f-slab);
  color: var(--ink);
}
.menu-card__script {
  font: 400 21px/1.4 var(--f-hand);
  color: var(--red);
  margin-bottom: 18px;
}
.menu-card__aside {
  font: 400 19px/1.4 var(--f-hand);
  color: var(--muted-2);
  margin-top: 14px;
}

/* One-line item with a dotted leader */
.line-list { display: flex; flex-direction: column; }
.line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.line:last-child { border-bottom: none; }
.line__name  { font: 400 15.5px/1.3 var(--f-body); }
.line__price { font: 400 16px/1 var(--f-slab); color: var(--red); }

/* Item with a description underneath */
.item { padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); margin-bottom: 18px; }
.item:last-child { padding-bottom: 0; border-bottom: none; margin-bottom: 0; }
.item__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 5px;
}
.item__name  { font: 700 17px/1.3 var(--f-body); }
.item__price { font: 400 19px/1 var(--f-slab); color: var(--red); }
.item__desc {
  margin: 0;
  font: 400 14.5px/1.6 var(--f-body);
  color: var(--body);
}

.note {
  background: var(--cream);
  border: 1px dashed var(--dots);
  border-radius: 7px;
  padding: 11px 14px;
  font: 400 14px/1.4 var(--f-body);
  color: var(--body);
}
.note--spaced { margin-top: 14px; }

/* Red card variant — Hot Plates */
.menu-card--red {
  background: var(--red);
  border-color: var(--red);
  color: var(--cream);
}
.menu-card--red .menu-card__title  { color: var(--cream); }
.menu-card--red .menu-card__script { color: var(--on-red-warm); }
.menu-card--red .menu-card__aside  { color: var(--on-red-warm); font-size: 20px; margin-top: 22px; }
.menu-card--red .item              { border-bottom-color: var(--red-line); }
.menu-card--red .item__price       { color: var(--on-red-gold); }
.menu-card--red .item__desc        { color: var(--on-red); }
.menu-card--red .dots              { border-bottom-color: var(--red-dots); }

/* Ink card variant — The Kettle's On */
.menu-card--ink {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--on-ink);
}
.menu-card--ink .menu-card__title  { color: var(--cream); }
.menu-card--ink .menu-card__script { color: var(--mustard); }
.menu-card--ink .line              { border-bottom-color: var(--ink-line); }
.menu-card--ink .line__price       { color: var(--mustard); }
.menu-card--ink .dots              { border-bottom-color: var(--ink-dots); }

.loyalty-box {
  margin-top: 18px;
  border: 1px dashed var(--ink-dash);
  border-radius: 7px;
  padding: 14px 16px;
}
.loyalty-box__label {
  font: 500 10px/1 var(--f-body);
  letter-spacing: 2.4px;
  color: var(--mustard);
  margin-bottom: 8px;
}
.loyalty-box__text {
  font: 400 14.5px/1.6 var(--f-body);
  color: #C4B69E;
}

/* ==========================================================================
   404
   ========================================================================== */

.oops {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(60px, 10vw, 120px) 24px;
  text-align: center;
}
.oops__title {
  font: 400 clamp(34px, 5vw, 52px)/1.15 var(--f-slab);
  color: var(--ink);
  margin-bottom: 10px;
}
.oops__script {
  font: 400 clamp(22px, 3vw, 28px)/1.3 var(--f-hand);
  color: var(--red);
  margin-bottom: 22px;
}
.oops__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ==========================================================================
   Print — so the menu can be run off on the office printer
   ========================================================================== */

@media print {
  .topbar, .site-header, .chips, .cta-band, .site-footer,
  .skip-link, .photo, .map { display: none !important; }

  body { background: #fff; font-size: 11pt; }

  .menu-grid {
    display: block;
    columns: 2;
    column-gap: 22px;
    padding: 0;
  }
  .menu-card {
    break-inside: avoid;
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #999;
    margin-bottom: 14px;
    padding: 14px;
  }
  .menu-card--red .menu-card__title,
  .menu-card--ink .menu-card__title { color: #000 !important; }
  .menu-card--red .item__desc,
  .loyalty-box__text { color: #333 !important; }
  .menu-card--red .item__price,
  .menu-card--ink .line__price,
  .menu-card--red .menu-card__script,
  .menu-card--ink .menu-card__script { color: #000 !important; }
  .menu-hero { padding: 0 0 14px; }
  a { color: #000; }
}
