/* ==========================================================================
   Steve's Pizza West — site.css
   Retro American pizzeria. Tomato red, sunburst yellow, cream paper,
   halftone dots, red/white checkerboard. Two type families only.
   ========================================================================== */

:root {
  /* Brand kit (exact hexes from client brief, do not alter) */
  --red: #D53D25;
  --red-bright: #E8332B;
  --red-dark: #A32C1A;
  /* Small/normal-size red text needs more contrast against cream than
     red-bright provides (measured ~3.85:1, fails WCAG AA 4.5:1). Use
     red-text (same hue family, darker) for prices, eyebrows, and any
     other small bold red text on light backgrounds. red-bright stays
     fine for icons (3:1 UI-component threshold) and large headline text. */
  --red-text: #A32C1A;
  --yellow: #FFD54F;
  --yellow-dark: #8a5a00;
  --cream: #FBF3E4;
  --cream-deep: #F1E8C9;
  --ink: #241A14;
  --off-black: #17212E;
  --white: #FFFFFF;

  /* Derived */
  --ink-soft: #4a3a30;
  --line: rgba(36, 26, 20, 0.14);
  --line-on-dark: rgba(255, 255, 255, 0.16);
  --shadow-red: 0 10px 24px rgba(213, 61, 37, 0.28);
  --shadow-ink: 0 12px 30px rgba(23, 33, 46, 0.18);

  /* Type */
  --font-display: "Shrikhand", "Arial Black", sans-serif;
  --font-body: "Work Sans", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --container: 1220px;
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 76px;

  /* Motion (overridden to 0 under reduced motion) */
  --dur: 0.55s;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  color-scheme: light;
}

/* ---- Text-size scaling (accessibility widget) ---- */
html.text-lg { font-size: 108%; }
html.text-xl { font-size: 118%; }

/* ---- High contrast mode (accessibility widget) ---- */
html.high-contrast {
  --cream: #FFFFFF;
  --cream-deep: #FFFFFF;
  --ink: #000000;
  --line: rgba(0, 0, 0, 0.55);
  --red: #B8271A;
  --red-bright: #B8271A;
  --red-dark: #7d1a10;
  --red-text: #7d1a10;
  --yellow: #FFC400;
}
html.high-contrast img { filter: saturate(1.15) contrast(1.05); }

/* ---- Reduced motion (accessibility widget + OS preference) ---- */
html.reduce-motion *,
html.reduce-motion *::before,
html.reduce-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}
@media (prefers-reduced-motion: reduce) {
  html:not(.motion-override) .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
svg { display: block; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 400; line-height: 1.08; }
p { margin: 0; }
button { font-family: inherit; }

/* ---- Focus states (real, visible) ---- */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--red-bright);
  outline-offset: 3px;
  border-radius: 4px;
}
html.high-contrast :focus-visible { outline-color: var(--ink); }

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 1rem;
}

/* ---- Layout helpers ---- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 640px) {
  .container { padding-inline: 2rem; }
}

.section {
  padding-block: clamp(3rem, 6vw, 5.5rem);
  position: relative;
}
.section--tight { padding-block: clamp(2rem, 4vw, 3.25rem); }
.section--dark {
  background: var(--off-black);
  color: var(--cream);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--cream-deep { background: var(--cream-deep); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-text);
  margin-bottom: 0.85rem;
}
.section--dark .eyebrow { color: var(--yellow); }

.section-head {
  max-width: 62ch;
  margin-bottom: 2.25rem;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--red);
}
.section--dark .section-head h2 { color: var(--white); }
.section-head p {
  margin-top: 0.9rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 52ch;
}
.section--dark .section-head p { color: rgba(251, 243, 228, 0.82); }

/* ---- Halftone + checkerboard motifs (real, sparing) ---- */
.halftone-bg {
  background-image: radial-gradient(var(--ink) 1.1px, transparent 1.1px);
  background-size: 13px 13px;
}
.halftone-bg--red {
  background-image: radial-gradient(var(--red) 1.1px, transparent 1.1px);
}
.checker-strip {
  height: 18px;
  width: 100%;
  background-image:
    conic-gradient(var(--red) 90deg, transparent 90deg 180deg, var(--red) 180deg 270deg, transparent 270deg);
  background-size: 18px 18px;
}
.checker-strip--cream {
  background-image:
    conic-gradient(var(--cream) 90deg, transparent 90deg 180deg, var(--cream) 180deg 270deg, transparent 270deg);
}

/* ---- Starburst badge ---- */
.starburst {
  --n: 12;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 158px;
  height: 158px;
  color: var(--ink);
  background: var(--yellow);
  clip-path: polygon(
    50% 0%, 58% 20%, 76% 8%, 76% 29%, 96% 24%, 88% 43%, 100% 50%,
    88% 57%, 96% 76%, 76% 71%, 76% 92%, 58% 80%, 50% 100%, 42% 80%,
    24% 92%, 24% 71%, 4% 76%, 12% 57%, 0% 50%, 12% 43%, 4% 24%,
    24% 29%, 24% 8%, 42% 20%
  );
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  line-height: 1.2;
  /* The star's inner vertices sit at 24% and 76%, so only the middle ~52% of the
     box is safe for text. Pad in to that inner disc or the clip-path eats letters. */
  padding: 0 2.3rem;
  flex-shrink: 0;
}
.starburst span { display: block; }
.starburst .starburst__big { font-size: 1.2rem; }

/* ---- Buttons (every .btn sets an explicit background, no exceptions) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color 0.18s var(--ease);
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover { background: var(--red-dark); }

.btn--secondary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--secondary:hover { background: var(--white); color: var(--ink); }

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

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

.btn--yellow {
  background: var(--yellow);
  color: var(--ink);
}
.btn--yellow:hover { background: #ffc721; }

.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.92rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  height: var(--header-h);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  text-decoration: none;
  font-family: var(--font-display);
  color: var(--red-text);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  text-shadow: 1.5px 1.5px 0 var(--red-dark), 3px 3px 0 rgba(23,33,46,0.18);
  line-height: 1;
  flex-shrink: 0;
}
.wordmark span.small {
  font-size: 0.55em;
  color: var(--ink);
  text-shadow: none;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav {
  display: none;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  padding-block: 0.4rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  border-color: var(--red-bright);
  color: var(--red-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.header-phone svg { flex-shrink: 0; color: var(--red-bright); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Below 480px, the wordmark plus a header CTA plus the hamburger no longer
   fit on one line (especially once the display font loads and widens the
   wordmark). Drop the header CTA here, the mobile nav drawer has its own
   full-width Order Online button. */
@media (max-width: 479px) {
  .header-actions .btn { display: none; }
}

@media (min-width: 960px) {
  .main-nav { display: block; }
  .header-phone { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--cream);
  z-index: 490;
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.3rem; }
.mobile-nav nav a {
  display: block;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  padding: 0.8rem 0.2rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav nav a[aria-current="page"] { color: var(--red-bright); }
.mobile-nav .mobile-nav__phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.1rem;
}
.mobile-nav .btn { margin-top: 1.25rem; }

@media (min-width: 960px) {
  .mobile-nav { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-block: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.hero__copy { position: relative; z-index: 2; }
.hero__badge {
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  z-index: 3;
}
@media (max-width: 899px) {
  .hero__badge { display: none; }
}

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.15rem);
  color: var(--red);
  max-width: 23ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--red-bright);
}
.hero__subtext {
  margin-top: 1.15rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero__trust li { display: flex; align-items: center; gap: 0.45rem; }
.hero__trust svg { color: var(--red-bright); flex-shrink: 0; }

.hero__art {
  position: relative;
}
.hero__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-ink);
  aspect-ratio: 4 / 5;
  isolation: isolate;
}
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.hero__dots {
  position: absolute;
  width: 120px;
  height: 120px;
  bottom: -28px;
  left: -28px;
  z-index: 0;
  border-radius: 50%;
}
@media (max-width: 899px) {
  .hero__dots { display: none; }
}

/* ---- Quick info strip ---- */
.info-strip {
  background: var(--red);
  color: var(--white);
}
.info-strip .container {
  display: grid;
  gap: 1rem;
  padding-block: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .info-strip .container {
    grid-template-columns: repeat(3, 1fr);
    padding-block: 1rem;
  }
}
.info-strip__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.98rem;
}
.info-strip__item svg { flex-shrink: 0; }
.info-strip__item strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; }

/* ==========================================================================
   Bento / feature grids
   ========================================================================== */
.bento {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 1fr; }
}

.bento__cell {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}
.bento__cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.bento__cell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(23,20,16,0.88) 0%, rgba(23,20,16,0.32) 55%, rgba(23,20,16,0) 100%);
}
.bento__cell img { z-index: 1; }
.bento__cell .bento__text {
  position: relative;
  z-index: 3;
  padding: 1.5rem;
  color: var(--white);
}
.bento__text h3 { font-size: 1.3rem; color: var(--yellow); }
.bento__text p { margin-top: 0.4rem; font-size: 0.95rem; color: rgba(255,255,255,0.9); max-width: 30ch; }

.bento__cell--text {
  background: var(--ink);
  color: var(--cream);
  padding: 1.75rem;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.bento__cell--text h3 { color: var(--yellow); font-size: 1.3rem; }
.bento__cell--text p { margin-top: 0.6rem; color: rgba(251,243,228,0.85); font-size: 0.95rem; }
.bento__cell--text .btn { margin-top: 1rem; }

@media (min-width: 860px) {
  .bento__cell--a { grid-column: span 4; grid-row: span 2; min-height: 340px; }
  .bento__cell--b { grid-column: span 2; }
  .bento__cell--c { grid-column: span 2; }
  /* a spans 4 cols x 2 rows, b and c fill the right column. d must span the full
     6 so row 3 closes out, otherwise columns 3 to 6 sit empty next to it. */
  .bento__cell--d { grid-column: 1 / -1; }
}

/* Made-in-house split */
.house-made {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .house-made { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.house-made__list {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.75rem;
}
@media (min-width: 560px) {
  .house-made__list { grid-template-columns: 1fr 1fr; }
}
.house-made__item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.house-made__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.house-made__item h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.house-made__item p { margin-top: 0.25rem; font-size: 0.93rem; color: var(--ink-soft); }

.house-made__collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.9rem;
}
.house-made__collage .tall {
  grid-row: span 2;
  aspect-ratio: 3/4.4;
  border-radius: var(--radius);
  overflow: hidden;
}
.house-made__collage .short {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.house-made__collage img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Menu preview cards
   ========================================================================== */
.menu-preview {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .menu-preview { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .menu-preview { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; }
}
.item-card--feature { border-color: var(--red); border-width: 2px; }

.item-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.item-card__photo {
  aspect-ratio: 5/4;
  overflow: hidden;
}
/* All six preview cards share one ratio so titles and prices align across the row. */
.item-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.item-card__body {
  padding: 1.1rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.item-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}
.item-card__row h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.08rem; }
.item-card__price {
  font-weight: 700;
  color: var(--red-text);
  white-space: nowrap;
  font-size: 1.02rem;
}
.item-card__body p { font-size: 0.9rem; color: var(--ink-soft); }

/* ==========================================================================
   Gallery scroll strip (user-controlled, not auto-scrolling)
   ========================================================================== */
.gallery-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin: 0 -1.5rem;
  padding-inline: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--cream-deep);
}
.gallery-strip::-webkit-scrollbar { height: 8px; }
.gallery-strip::-webkit-scrollbar-track { background: var(--cream-deep); border-radius: 8px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--red); border-radius: 8px; }
.gallery-strip__item {
  flex: 0 0 auto;
  width: clamp(180px, 32vw, 260px);
  aspect-ratio: 3/4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  scroll-snap-align: start;
}
.gallery-strip__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.gallery-strip__item:hover img { transform: scale(1.05); }

/* ==========================================================================
   Location / hours block + consent-gated map
   ========================================================================== */
.location-block {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .location-block { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.hours-table tr { border-bottom: 1px solid var(--line); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.65rem 0; font-size: 0.98rem; }
.hours-table td:first-child { font-weight: 700; }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }
.hours-table tr.is-today td { color: var(--red-text); font-weight: 700; }
.hours-table tr.is-closed td:last-child { color: var(--red-text); font-weight: 700; }

.map-shell {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-deep);
  border: 1px solid var(--line);
}
.map-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  padding: 1.5rem;
  background:
    radial-gradient(var(--ink) 1.1px, transparent 1.1px) 0 0 / 14px 14px,
    var(--cream-deep);
}
.map-placeholder svg { color: var(--red-bright); }
/* The dot texture sits directly behind this copy, so the text needs its own solid
   panel. Without it the halftone reads through the letterforms and kills legibility. */
.map-placeholder p {
  max-width: 34ch;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  padding: 0.7rem 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.map-shell.is-loaded .map-placeholder { display: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--off-black);
  color: rgba(251, 243, 228, 0.86);
  padding-block: 3.5rem 1.75rem;
}
.footer-grid {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}
.footer-grid h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.9rem;
}
.footer-grid ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-grid a { text-decoration: none; color: inherit; }
.footer-grid a:hover { color: var(--white); }
.footer-wordmark {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
}
.footer-grid p { font-size: 0.92rem; margin-top: 0.75rem; max-width: 32ch; }
.footer-bottom {
  border-top: 1px solid var(--line-on-dark);
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(251, 243, 228, 0.6);
}

/* ==========================================================================
   Scroll reveal (fade-up) — hide + reveal rules matched on specificity
   ========================================================================== */
html.js .fade-up {
  opacity: 0;
  transform: translateY(28px);
}
html.js .fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-hero {
  background: var(--red);
  color: var(--white);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 14px;
  background-image: conic-gradient(var(--cream) 90deg, transparent 90deg 180deg, var(--cream) 180deg 270deg, transparent 270deg);
  background-size: 14px 14px;
}
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); max-width: 18ch; }
.page-hero p { margin-top: 0.9rem; font-size: 1.1rem; max-width: 55ch; color: rgba(255,255,255,0.92); }
.page-hero .eyebrow { color: var(--yellow); }

/* ==========================================================================
   Menu page
   ========================================================================== */
.menu-toolbar {
  position: sticky;
  top: var(--header-h);
  z-index: 400;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.menu-toolbar .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.75rem;
}
.menu-toolbar__scroll {
  overflow-x: auto;
  flex: 1;
  scrollbar-width: none;
}
.menu-toolbar__scroll::-webkit-scrollbar { display: none; }
.menu-toolbar__nav {
  display: flex;
  gap: 0.5rem;
  width: max-content;
}
.menu-toolbar__nav a {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  white-space: nowrap;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.menu-toolbar__nav a:hover { border-color: var(--red-text); color: var(--red-text); }
.menu-toolbar__nav a.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.menu-toolbar .btn { flex-shrink: 0; }

.menu-category {
  scroll-margin-top: calc(var(--header-h) + 66px);
  padding-block: 2.75rem;
  border-bottom: 1px solid var(--line);
}
.menu-category:last-of-type { border-bottom: none; }
.menu-category__head {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}
.menu-category__head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--red);
}
.menu-subhead {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-text);
  margin: 1.5rem 0 0.25rem;
}
.menu-subhead:first-of-type { margin-top: 0; }
.menu-note {
  font-size: 0.94rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 1.1rem;
  max-width: 65ch;
}
.menu-list {
  display: grid;
  gap: 0.1rem;
}
@media (min-width: 860px) {
  .menu-list { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
}
.menu-list--single { grid-template-columns: 1fr !important; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.7rem;
}
.menu-item__text { display: flex; flex-direction: column; gap: 0.18rem; max-width: 34ch; }
.menu-item__name { font-weight: 700; font-size: 1rem; }
.menu-item__desc { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.4; }
.menu-item__price {
  font-weight: 700;
  color: var(--red-text);
  white-space: nowrap;
  font-size: 0.98rem;
}

.menu-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

.menu-footnote {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-top: 1rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.4rem;
}

/* ==========================================================================
   Catering tables
   ========================================================================== */
.tray-tables {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .tray-tables { grid-template-columns: 1fr 1fr; }
}
.tray-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.tray-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  padding-bottom: 0.9rem;
  border-bottom: 3px solid var(--yellow);
  margin-bottom: 0.4rem;
}
.tray-card .menu-item { padding-block: 0.55rem; }

/* ==========================================================================
   Generic content sections (about / visit copy blocks)
   ========================================================================== */
.prose { max-width: 68ch; }
.prose p + p { margin-top: 1.1rem; }
.prose h2 { color: var(--red); font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1rem; }

.split {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.25rem; }
  .split--reverse { direction: rtl; }
  .split--reverse > * { direction: ltr; }
}
.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3.4;
  box-shadow: var(--shadow-ink);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.callout-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
}
.callout-card h3 { color: var(--yellow); font-size: 1.4rem; }
.callout-card p { margin-top: 0.6rem; color: rgba(251,243,228,0.86); }
.callout-card .btn { margin-top: 1.25rem; }

.info-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .info-cards { grid-template-columns: repeat(3, 1fr); }
}
.info-cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.info-cards svg { color: var(--red-bright); margin-bottom: 0.75rem; }
.info-cards h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; }
.info-cards p { margin-top: 0.4rem; font-size: 0.92rem; color: var(--ink-soft); }

/* Mural / testimonial placeholder note */
.placeholder-note {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */
.consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  max-width: 620px;
  margin-inline: auto;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 18px 44px rgba(0,0,0,0.32);
  display: none;
}
.consent-banner.is-visible { display: block; }
.consent-banner p { font-size: 0.92rem; color: rgba(251,243,228,0.9); }
.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* ==========================================================================
   Accessibility widget
   ========================================================================== */
.a11y-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 850;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}
.a11y-toggle svg { width: 24px; height: 24px; }

.a11y-panel {
  position: fixed;
  right: 1rem;
  left: 1rem;
  bottom: 4.75rem;
  z-index: 860;
  max-width: 320px;
  margin-left: auto;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  padding: 1.25rem;
  display: none;
}
.a11y-panel.is-open { display: block; }
.a11y-panel h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}
.a11y-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.6rem;
  border-top: 1px solid var(--line);
}
.a11y-row:first-of-type { border-top: none; }
.a11y-row label { font-size: 0.92rem; font-weight: 600; }

.segmented {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.segmented button {
  background: var(--cream);
  border: none;
  color: var(--ink);
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}
.segmented button.is-active { background: var(--red); color: var(--white); }

.switch {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 26px;
  flex-shrink: 0;
}
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch__track {
  position: absolute;
  inset: 0;
  background: var(--line);
  border-radius: 999px;
  transition: background-color 0.2s var(--ease);
  pointer-events: none;
}
.switch__track::before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: transform 0.2s var(--ease);
}
.switch input:checked ~ .switch__track { background: var(--red); }
.switch input:checked ~ .switch__track::before { transform: translateX(18px); }
.switch input:focus-visible ~ .switch__track { outline: 3px solid var(--red-bright); outline-offset: 2px; }

.a11y-reset {
  margin-top: 1rem;
  width: 100%;
  background: var(--cream-deep);
  border: none;
  border-radius: 999px;
  padding: 0.6rem;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--ink);
}
.a11y-reset:hover { background: var(--line); }

/* ==========================================================================
   Utility
   ========================================================================== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.mt-lg { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.text-center { text-align: center; }
