/* ==========================================================================
   La Chaparrita de Kent — styles.css
   1. Design tokens
   2. Reset & base
   3. Layout primitives
   4. Typography & section headings
   5. Buttons
   6. Cards
   7. Ornaments & dividers
   8. Utility bar, header & navigation
   9. Hero
   10. Quick actions
   11. Welcome
   12. Menu highlights
   13. Brand personality
   14. Location, hours & map
   15. Order CTA band
   16. Footer
   17. Mobile order bar
   18. Contact page
   19. Motion & reveal
   20. Marketplace landing pages
   21. Delivery area pages
   22. Photography
   23. Menu page
   24. Responsive & print
   ========================================================================== */

/* ------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------ */
:root {
  /* Brand */
  --c-red: #EB1647;
  --c-red-deep: #C8113A;      /* accessible red for solid buttons */
  --c-red-soft: #FDE7EC;
  --c-teal: #0482AA;
  --c-teal-deep: #026685;     /* accessible teal for text on light */
  --c-teal-soft: #E4F3F8;
  --c-gold: #FEC608;
  --c-gold-soft: #FFF3CE;
  --c-blue: #03639B;
  --c-blue-deep: #024F7D;     /* dark bands, footer */
  --c-blue-soft: #E6F0F7;

  /* Neutrals */
  --c-ivory: #FFF8EF;
  --c-cream: #FDF1E0;
  --c-white: #FFFFFF;
  --c-ink: #1C2B3A;
  --c-ink-soft: #46586A;
  --c-tan: #E8D6BC;
  --c-line: #D9E3EC;

  /* Typography */
  --font-display: "Bree Serif", "Georgia", "Times New Roman", serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;

  --fs-eyebrow: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
  --fs-body: clamp(1rem, 0.97rem + 0.16vw, 1.09rem);
  --fs-lead: clamp(1.06rem, 1rem + 0.35vw, 1.25rem);
  --fs-h1: clamp(2.05rem, 1.5rem + 2.6vw, 3.6rem);
  --fs-h2: clamp(1.65rem, 1.35rem + 1.4vw, 2.5rem);
  --fs-h3: clamp(1.15rem, 1.08rem + 0.35vw, 1.4rem);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.75rem;
  --sp-8: 4rem;
  --sp-section: clamp(3rem, 2rem + 5vw, 5.5rem);
  --container: 74rem;
  --measure: 40rem;

  /* Shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --border-ink: 3px solid var(--c-blue);
  --shadow-print: 6px 6px 0 rgba(3, 99, 155, 0.16);
  --shadow-print-sm: 4px 4px 0 rgba(3, 99, 155, 0.14);
  --shadow-soft: 0 10px 30px rgba(3, 99, 155, 0.1);

  --bar-h: 5rem; /* mobile order bar allowance */
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--c-ink);
  background-color: var(--c-ivory);
  /* Subtle painted-paper texture, pure CSS */
  background-image:
    radial-gradient(circle at 12% 18%, rgba(254, 198, 8, 0.09), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(4, 130, 170, 0.08), transparent 40%),
    radial-gradient(circle at 78% 92%, rgba(235, 22, 71, 0.07), transparent 45%),
    repeating-linear-gradient(115deg, rgba(232, 214, 188, 0.16) 0 2px, transparent 2px 7px);
  background-attachment: fixed;
  overflow-x: hidden;
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
}

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

a { color: var(--c-blue); }
a:hover { color: var(--c-red-deep); }

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

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--c-blue-deep);
  color: var(--c-white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  color: var(--c-white);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------------
   3. Layout primitives
   ------------------------------------------------------------------ */
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .container { width: min(100% - 3rem, var(--container)); }
}

.section {
  padding-block: var(--sp-section);
  position: relative;
  /* Keeps decorative corner blooms from creating horizontal scroll. */
  overflow-x: hidden;
  overflow-x: clip;
}
.section--cream { background: var(--c-cream); border-block: 3px solid var(--c-tan); }
.section--sky { background: var(--c-teal-soft); border-block: 3px solid rgba(4, 130, 170, 0.22); }
.section--white { background: var(--c-white); border-block: 3px solid var(--c-line); }

.stack > * + * { margin-top: var(--sp-4); }
.measure { max-width: var(--measure); }
.center { text-align: center; margin-inline: auto; }

.grid { display: grid; gap: var(--sp-5); }
@media (min-width: 40rem) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 52rem) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* ------------------------------------------------------------------
   4. Typography & section headings
   ------------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.14;
  color: var(--c-blue-deep);
  margin: 0 0 var(--sp-3);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 var(--sp-4); max-width: var(--measure); }
p:last-child { margin-bottom: 0; }
.center p { margin-inline: auto; }

.lead { font-size: var(--fs-lead); color: var(--c-ink-soft); }

/* Ribbon-style eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-red);
  padding: 0.4rem 1.1rem;
  border: 2px solid var(--c-blue-deep);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-print-sm);
  margin: 0 0 var(--sp-4);
}
.eyebrow--gold { background: var(--c-gold); color: var(--c-ink); }
.eyebrow--teal { background: var(--c-teal-deep); }

.section-head { margin-bottom: var(--sp-6); }
.section-head--center { text-align: center; }
.section-head--center p { margin-inline: auto; }

.note {
  font-size: 0.92rem;
  color: var(--c-ink-soft);
  max-width: var(--measure);
}

/* ------------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border-radius: var(--r-pill);
  border: 3px solid var(--c-blue-deep);
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease;
  box-shadow: var(--shadow-print-sm);
}
.btn:hover { transform: translate(-1px, -2px); box-shadow: 6px 7px 0 rgba(3, 99, 155, 0.2); }
.btn:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 rgba(3, 99, 155, 0.2); }

.btn--primary { background: var(--c-red-deep); color: var(--c-white); }
.btn--primary:hover { background: #AE0E32; color: var(--c-white); }

.btn--secondary { background: var(--c-white); color: var(--c-blue-deep); }
.btn--secondary:hover { background: var(--c-gold-soft); color: var(--c-blue-deep); }

.btn--gold { background: var(--c-gold); color: var(--c-ink); }
.btn--gold:hover { background: #FFD84A; color: var(--c-ink); }

.btn--ghost {
  background: transparent;
  color: var(--c-blue-deep);
  border-color: var(--c-blue-deep);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--c-blue-soft); color: var(--c-blue-deep); box-shadow: none; transform: none; }

.btn--sm { min-height: 44px; padding: 0.5rem 1.05rem; font-size: 0.95rem; border-width: 2px; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin: 0;
  padding: 0;
  list-style: none;
}
.btn-row--center { justify-content: center; }

.btn .icon { width: 1.15em; height: 1.15em; flex: none; }

/* ------------------------------------------------------------------
   6. Cards
   ------------------------------------------------------------------ */
.card {
  background: var(--c-white);
  border: var(--border-ink);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-print);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.card > * { margin: 0; }
.card h3 { margin: 0; }
.card p { max-width: none; }
.card .btn { align-self: flex-start; margin-top: auto; }

.card__icon {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  border: 3px solid var(--c-blue-deep);
  background: var(--c-gold-soft);
  color: var(--c-blue-deep);
  flex: none;
}
.card__icon svg { width: 1.5rem; height: 1.5rem; }
.card--red .card__icon { background: var(--c-red-soft); }
.card--teal .card__icon { background: var(--c-teal-soft); }

.card__meta {
  font-weight: 800;
  color: var(--c-blue-deep);
  font-style: normal;
}
.card__meta a { color: var(--c-blue-deep); }

/* ------------------------------------------------------------------
   7. Ornaments & dividers
   ------------------------------------------------------------------ */
.ornament { display: block; color: var(--c-red); }
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: var(--sp-6) auto;
  max-width: 26rem;
  color: var(--c-teal);
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--c-tan) 20%, var(--c-tan) 80%, transparent);
}
.divider svg { width: 2.4rem; height: 2.4rem; flex: none; }

/* Decorative corner blooms on tinted sections */
.bloom {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.bloom--tl { top: -1.2rem; left: -1.5rem; width: 8rem; }
.bloom--br { bottom: -1.5rem; right: -1.2rem; width: 9rem; }
.section > .container { position: relative; z-index: 1; }
@media (max-width: 47.99rem) { .bloom { display: none; } }

/* ------------------------------------------------------------------
   8. Utility bar, header & navigation
   ------------------------------------------------------------------ */
.utility-bar {
  background: var(--c-blue-deep);
  color: var(--c-white);
  font-size: 0.9rem;
  padding-block: 0.45rem;
  border-bottom: 3px solid var(--c-gold);
}
.utility-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1.4rem;
  text-align: center;
}
.utility-bar a {
  color: var(--c-white);
  text-decoration-color: rgba(255, 255, 255, 0.55);
  text-underline-offset: 3px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.15rem;
}
.utility-bar a:hover { color: var(--c-gold); }
.utility-bar svg { width: 1rem; height: 1rem; flex: none; }
.utility-bar__place { display: inline-flex; align-items: center; gap: 0.4rem; }

/* Open / closed status pill */
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  line-height: 1.35;
}
.status__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  flex: none;
  border: 2px solid currentColor;
  background: currentColor;
}
.status__icon { width: 1.05rem; height: 1.05rem; flex: none; }
/* SVG elements are not covered by every UA [hidden] rule. */
.status__icon[hidden] { display: none; }
.status--open { color: #9BF0C4; }
.status--closed { color: #FFD1A6; }
.status--open .status__dot { background: #9BF0C4; }
.status--closed .status__dot { background: transparent; }

/* Light-background variant used in hours panels */
.status--panel {
  background: var(--c-white);
  border: 3px solid var(--c-blue-deep);
  border-radius: var(--r-pill);
  padding: 0.55rem 1.1rem;
  box-shadow: var(--shadow-print-sm);
  font-size: 1rem;
}
.status--panel.status--open { color: #0E6B3F; }
.status--panel.status--closed { color: #93421A; }
.status--panel.status--open .status__dot { background: #0E6B3F; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 3px solid var(--c-blue-deep);
  box-shadow: 0 4px 0 rgba(254, 198, 8, 0.85);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  min-height: 4.4rem;
  padding-block: 0.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--c-blue-deep);
  margin-right: auto;
  min-height: 44px;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--r-sm);
  border: 2px solid var(--c-blue-deep);
  background: var(--c-white);
  flex: none;
}
.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.3rem);
  line-height: 1.1;
}
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-red-deep);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.45rem 0.9rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--c-blue-deep);
  background: var(--c-white);
  border: 3px solid var(--c-blue-deep);
  border-radius: var(--r-pill);
  cursor: pointer;
}
.nav-toggle svg { width: 1.2rem; height: 1.2rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
/* :not(.btn) matters — `.site-nav a` outranks `.btn--primary` on specificity,
   and without it the nav link colour overrides the CTA button's own. */
.site-nav a:not(.btn) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-blue-deep);
  text-decoration: none;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
}
.site-nav a:not(.btn):hover { background: var(--c-blue-soft); color: var(--c-blue-deep); }
.site-nav a:not(.btn)[aria-current="page"] {
  border-color: var(--c-red);
  color: var(--c-red-deep);
  background: var(--c-red-soft);
}
.site-nav .btn { text-transform: none; letter-spacing: 0; }
.site-nav .btn:hover { background: #AE0E32; }

/* Mobile navigation */
@media (max-width: 63.99rem) {
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--c-white);
    border-bottom: 3px solid var(--c-blue-deep);
    box-shadow: 0 12px 24px rgba(3, 99, 155, 0.18);
    display: none;
  }
  .site-nav[data-open="true"] { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    padding-block: var(--sp-3);
  }
  .site-nav li { border-bottom: 2px dotted var(--c-line); }
  .site-nav li:last-child { border-bottom: 0; padding-top: var(--sp-3); }
  .site-nav a:not(.btn) { justify-content: center; padding: 0.85rem; font-size: 1rem; }
  .site-nav .btn { width: 100%; }
}
@media (max-width: 63.99rem) {
  .utility-bar a { min-height: 44px; }
}
@media (min-width: 64rem) {
  .nav-toggle { display: none; }
  .site-nav { display: block !important; }
}

/* ------------------------------------------------------------------
   9. Hero
   ------------------------------------------------------------------ */
.hero {
  padding-block: clamp(2.25rem, 1.5rem + 4vw, 4.5rem);
  background:
    radial-gradient(circle at 15% 10%, rgba(254, 198, 8, 0.2), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(4, 130, 170, 0.16), transparent 48%),
    var(--c-ivory);
  border-bottom: 3px solid var(--c-tan);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 56rem) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero h1 { color: var(--c-blue-deep); }
.hero .lead { max-width: 34rem; }
.hero__support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.75rem;
  font-weight: 700;
  color: var(--c-ink-soft);
  margin-top: var(--sp-5);
}
.hero__support a { color: var(--c-blue-deep); font-weight: 800; }
.hero__support .sep { color: var(--c-red); }

/* Folk-art logo frame */
.logo-frame {
  position: relative;
  width: min(100%, 30rem);
  margin-inline: auto;
  padding: clamp(0.9rem, 0.6rem + 1.4vw, 1.5rem);
  background:
    repeating-conic-gradient(from 45deg, rgba(255, 255, 255, 0.9) 0% 25%, rgba(253, 241, 224, 0.9) 0% 50%)
    50% / 22px 22px,
    var(--c-white);
  border: 5px solid var(--c-blue-deep);
  border-radius: var(--r-lg);
  box-shadow: 10px 10px 0 rgba(235, 22, 71, 0.22);
}
.logo-frame::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border: 3px solid var(--c-gold);
  border-radius: 16px;
  pointer-events: none;
}
.logo-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 10px;
  background: var(--c-white);
  position: relative;
  z-index: 1;
}
.logo-frame__bloom {
  position: absolute;
  width: 4.6rem;
  height: 4.6rem;
  z-index: 2;
  pointer-events: none;
}
.logo-frame__bloom--a { top: -2rem; left: -1.8rem; color: var(--c-red); }
.logo-frame__bloom--b { bottom: -2rem; right: -1.8rem; color: var(--c-teal); }
@media (max-width: 30rem) {
  .logo-frame__bloom { width: 3.2rem; height: 3.2rem; }
  .logo-frame__bloom--a { top: -1.1rem; left: -0.9rem; }
  .logo-frame__bloom--b { bottom: -1.1rem; right: -0.9rem; }
}

/* ------------------------------------------------------------------
   10. Quick actions
   ------------------------------------------------------------------ */
.quick-actions { background: var(--c-white); border-bottom: 3px solid var(--c-line); }
.quick-actions .card { background: var(--c-ivory); }

/* ------------------------------------------------------------------
   11. Welcome
   ------------------------------------------------------------------ */
.welcome__body { max-width: 46rem; margin-inline: auto; text-align: center; }
.welcome__body p { margin-inline: auto; }

/* ------------------------------------------------------------------
   12. Menu highlights
   ------------------------------------------------------------------ */
.menu-groups { display: grid; gap: var(--sp-5); }
@media (min-width: 46rem) { .menu-groups { grid-template-columns: repeat(2, 1fr); } }

.menu-group {
  background: var(--c-white);
  border: var(--border-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-print);
  padding: var(--sp-5);
}
.menu-group__title {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--c-white);
  background: var(--c-teal-deep);
  border: 2px solid var(--c-blue-deep);
  border-radius: var(--r-pill);
  padding: 0.3rem 1rem;
  margin: 0 0 var(--sp-4);
  box-shadow: var(--shadow-print-sm);
}
.menu-group:nth-child(2) .menu-group__title { background: var(--c-red); }
.menu-group:nth-child(3) .menu-group__title { background: var(--c-blue-deep); }
.menu-group:nth-child(4) .menu-group__title { background: var(--c-gold); color: var(--c-ink); }

.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list > li + li {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 2px dotted var(--c-tan);
}
.menu-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
}
.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--c-blue-deep);
  margin: 0;
  flex: 1 1 auto;
  min-width: 10rem;
}
.menu-item__price {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--c-red-deep);
  white-space: nowrap;
}
.menu-item__desc {
  margin: 0.25rem 0 0;
  font-size: 0.97rem;
  color: var(--c-ink-soft);
  max-width: none;
}

.menu-actions { margin-top: var(--sp-6); }

/* ------------------------------------------------------------------
   13. Brand personality
   ------------------------------------------------------------------ */
.brand-break { text-align: center; }
.brand-break__inner { max-width: 44rem; margin-inline: auto; }
.brand-break .ornament-row {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.brand-break .ornament-row svg { width: 2.6rem; height: 2.6rem; }

/* ------------------------------------------------------------------
   14. Location, hours & map
   ------------------------------------------------------------------ */
.location__grid { display: grid; gap: var(--sp-6); }
@media (min-width: 58rem) {
  .location__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.info-list { list-style: none; margin: 0 0 var(--sp-5); padding: 0; display: grid; gap: var(--sp-3); }
.info-list li { display: flex; gap: 0.75rem; align-items: flex-start; }
.info-list svg { width: 1.35rem; height: 1.35rem; flex: none; margin-top: 0.25rem; color: var(--c-teal-deep); }
.info-list a {
  font-weight: 800;
  color: var(--c-blue-deep);
  display: inline-block;
  padding-block: 0.6rem;   /* comfortable tap target */
}
.info-list address { font-style: normal; }

/* Hours panel */
.hours-panel {
  background: var(--c-white);
  border: var(--border-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-print);
  padding: var(--sp-5);
}
.hours-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.hours-panel__head h3 { margin: 0; }

.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--r-sm);
  border-bottom: 2px dotted var(--c-tan);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { font-weight: 800; color: var(--c-blue-deep); }
.hours-list .time { font-variant-numeric: tabular-nums; color: var(--c-ink); }
.hours-list li[data-today="true"] {
  background: var(--c-gold-soft);
  border: 2px solid var(--c-gold);
  border-bottom: 2px solid var(--c-gold);
}
.hours-list li[data-today="true"] .day::after {
  content: "Today";
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink);
  background: var(--c-gold);
  border: 1px solid var(--c-blue-deep);
  border-radius: var(--r-pill);
  padding: 0.1rem 0.5rem;
  vertical-align: middle;
}

/* Map */
.map-frame {
  border: var(--border-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-print);
  overflow: hidden;
  background: var(--c-blue-soft);
  aspect-ratio: 4 / 3;
  max-width: 100%;
}
.map-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
@media (min-width: 58rem) { .map-frame { aspect-ratio: 1 / 1; } }

/* ------------------------------------------------------------------
   15. Order CTA band
   ------------------------------------------------------------------ */
.cta-band {
  background:
    radial-gradient(circle at 12% 22%, rgba(235, 22, 71, 0.26), transparent 46%),
    radial-gradient(circle at 88% 78%, rgba(4, 130, 170, 0.3), transparent 48%),
    var(--c-blue-deep);
  color: var(--c-white);
  border-block: 4px solid var(--c-gold);
  text-align: center;
}
.cta-band h2 { color: var(--c-gold); }
.cta-band p { color: var(--c-white); max-width: 38rem; margin-inline: auto; }
.cta-band__ribbon {
  display: inline-block;
  height: 8px;
  width: 8rem;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--c-red) 0 33%, var(--c-white) 33% 66%, var(--c-gold) 66% 100%);
  margin-bottom: var(--sp-4);
}
.cta-band .btn { margin-top: var(--sp-5); border-color: var(--c-white); }

/* ------------------------------------------------------------------
   16. Footer
   ------------------------------------------------------------------ */
.site-footer {
  background: var(--c-blue-deep);
  color: var(--c-ivory);
  border-top: 5px solid var(--c-gold);
  padding-block: var(--sp-7) var(--sp-5);
}
.site-footer a { color: var(--c-ivory); text-underline-offset: 3px; }
.site-footer a:hover { color: var(--c-gold); }
.site-footer h2, .site-footer h3 { color: var(--c-gold); font-size: 1.1rem; margin-bottom: var(--sp-3); }

.footer__grid { display: grid; gap: var(--sp-6); }
@media (min-width: 46rem) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68rem) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer__brand { display: flex; gap: var(--sp-4); align-items: flex-start; }
.footer__brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: var(--r-sm);
  border: 3px solid var(--c-gold);
  background: var(--c-white);
  flex: none;
}
.footer__name { font-family: var(--font-display); font-size: 1.25rem; color: var(--c-gold); margin: 0 0 0.25rem; }
.footer__tagline { margin: 0 0 var(--sp-3); color: var(--c-ivory); font-size: 0.98rem; max-width: 22rem; }
.footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; font-size: 0.98rem; }
.footer__contact a { display: inline-block; padding-block: 0.6rem; }
.footer__contact address { font-style: normal; }

.footer-hours { list-style: none; margin: 0; padding: 0; font-size: 0.95rem; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.2rem 0;
}
.footer-hours .day { font-weight: 700; }
.footer-hours .time { font-variant-numeric: tabular-nums; }
.footer-hours li[data-today="true"] { color: var(--c-gold); font-weight: 800; }

.footer-links { list-style: none; margin: 0 0 var(--sp-5); padding: 0; display: grid; gap: 0.2rem; }
.footer-links a { display: inline-flex; align-items: center; min-height: 44px; font-weight: 700; }

.social-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; }
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.35rem 0.7rem 0.35rem 0.35rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  font-weight: 700;
  text-decoration: none;
}
.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.social-links svg { width: 1.35rem; height: 1.35rem; flex: none; }
/* Kept for screen readers; the icon and label carry it visually. */
.social-links .ext {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.footer__bottom {
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 2px dotted rgba(255, 248, 239, 0.4);
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
}
.footer__bottom p { margin: 0; max-width: none; }

/* ------------------------------------------------------------------
   17. Mobile order bar
   ------------------------------------------------------------------ */
.order-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--c-blue-deep);
  border-top: 3px solid var(--c-gold);
  padding: 0.55rem 1rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  justify-content: center;
}
.order-bar .btn { width: 100%; max-width: 26rem; border-color: var(--c-white); }
@media (min-width: 64rem) {
  .order-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ------------------------------------------------------------------
   18. Contact page
   ------------------------------------------------------------------ */
.page-hero {
  padding-block: clamp(2.25rem, 1.5rem + 3vw, 3.75rem);
  background:
    radial-gradient(circle at 85% 15%, rgba(235, 22, 71, 0.14), transparent 45%),
    var(--c-cream);
  border-bottom: 3px solid var(--c-tan);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero__inner { max-width: 46rem; margin-inline: auto; }
/* Keep the corner bloom fully on the page rather than half-clipped. */
.page-hero .bloom--tl { top: 0.75rem; left: 0.75rem; width: 6rem; }
.page-hero .lead { margin-inline: auto; }
.page-hero .btn-row { margin-top: var(--sp-5); }
.page-hero__rule {
  display: block;
  width: 10rem;
  height: 8px;
  margin: var(--sp-5) auto 0;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--c-red) 0 33%, var(--c-gold) 33% 66%, var(--c-teal) 66% 100%);
}

.contact-hours__grid { display: grid; gap: var(--sp-6); }
@media (min-width: 52rem) {
  .contact-hours__grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}

.map-actions { margin-top: var(--sp-5); }
.map-block { display: grid; gap: var(--sp-5); }
@media (min-width: 58rem) {
  .map-block { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
}

.social-cards { display: grid; gap: var(--sp-5); }
@media (min-width: 46rem) { .social-cards { grid-template-columns: repeat(3, 1fr); } }
.social-card { align-items: flex-start; }
.social-card .card__icon { background: var(--c-white); }

/* ------------------------------------------------------------------
   19. Motion & reveal
   ------------------------------------------------------------------ */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .btn:active { transform: none; }
}

/* ------------------------------------------------------------------
   20. Marketplace landing pages
   ------------------------------------------------------------------ */
.mp-hero {
  padding-block: clamp(2.5rem, 1.75rem + 3.5vw, 4.25rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(254, 198, 8, 0.22), transparent 46%),
    radial-gradient(circle at 8% 88%, rgba(4, 130, 170, 0.14), transparent 44%),
    var(--c-ivory);
  border-bottom: 3px solid var(--c-tan);
  position: relative;
  overflow: hidden;
}
.mp-hero__inner { max-width: 48rem; }
.mp-hero .lead { max-width: 40rem; }
.mp-hero .btn-row { margin-top: var(--sp-5); }

/* Warm thank-you callout */
.gratitude {
  background: var(--c-gold-soft);
  border: 3px solid var(--c-gold);
  border-left-width: 10px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-print-sm);
  padding: var(--sp-5);
  max-width: 46rem;
}
.gratitude h2 { margin-top: 0; }
.gratitude p:last-child { margin-bottom: 0; }

/* Dish highlight list */
.dish-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-3); }
@media (min-width: 40rem) { .dish-list { grid-template-columns: repeat(2, 1fr); } }
.dish-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  background: var(--c-white);
  border: 2px solid var(--c-blue-deep);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-print-sm);
  padding: 0.85rem 1.1rem;
}
.dish-list .dish { font-family: var(--font-display); color: var(--c-blue-deep); }
.dish-list .price { font-weight: 800; color: var(--c-red-deep); white-space: nowrap; }

/* Two-column fee comparison */
.compare-grid { display: grid; gap: var(--sp-5); align-items: start; }
@media (min-width: 52rem) { .compare-grid { grid-template-columns: repeat(2, 1fr); } }

.compare-card {
  background: var(--c-white);
  border: var(--border-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-print);
  padding: var(--sp-5);
  height: 100%;
}
.compare-card h3 { margin-top: 0; }
.compare-card__tag {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: 2px solid var(--c-blue-deep);
  padding: 0.3rem 0.9rem;
  margin-bottom: var(--sp-3);
}
.compare-card--them { border-color: var(--c-red-deep); }
.compare-card--them .compare-card__tag { background: var(--c-red-soft); color: var(--c-red-deep); border-color: var(--c-red-deep); }
.compare-card--us { border-color: var(--c-teal-deep); }
.compare-card--us .compare-card__tag { background: var(--c-teal-soft); color: var(--c-teal-deep); border-color: var(--c-teal-deep); }

/* Fee rows with a proportional bar */
.fee-list { list-style: none; margin: 0 0 var(--sp-4); padding: 0; display: grid; gap: var(--sp-4); }
.fee-list__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 0.75rem;
}
.fee-list__label { font-weight: 800; color: var(--c-blue-deep); }
.fee-list__value { font-weight: 800; color: var(--c-red-deep); font-variant-numeric: tabular-nums; }
.fee-track {
  height: 12px;
  margin-top: 0.45rem;
  border-radius: var(--r-pill);
  background: var(--c-blue-soft);
  border: 2px solid var(--c-blue-deep);
  overflow: hidden;
}
.fee-track span {
  display: block;
  height: 100%;
  width: var(--pct, 0%);
  background: var(--c-red);
}
.compare-card--us .fee-track span { background: var(--c-teal); }
.fee-list__note { margin: 0.4rem 0 0; font-size: 0.9rem; color: var(--c-ink-soft); max-width: none; }

/* Money that stays put: checks rather than bars, so the two sides of the
   comparison read differently at a glance. */
.check-list { list-style: none; margin: 0 0 var(--sp-4); padding: 0; display: grid; gap: var(--sp-3); }
.check-list li { display: flex; gap: 0.75rem; align-items: flex-start; }
.check-list svg {
  width: 1.5rem;
  height: 1.5rem;
  flex: none;
  margin-top: 0.15rem;
  color: var(--c-teal-deep);
}
.check-list strong { color: var(--c-blue-deep); }

.fee-total {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 3px dotted var(--c-tan);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--c-blue-deep);
}
.fee-total strong { color: var(--c-red-deep); }
.compare-card--us .fee-total strong { color: var(--c-teal-deep); }

/* Numbered how-to-order steps */
.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; gap: var(--sp-4); }
@media (min-width: 52rem) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li {
  counter-increment: step;
  background: var(--c-white);
  border: var(--border-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-print-sm);
  padding: var(--sp-5) var(--sp-5) var(--sp-5) 1.25rem;
  position: relative;
}
.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: var(--sp-3);
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--c-ink);
  background: var(--c-gold);
  border: 3px solid var(--c-blue-deep);
  border-radius: var(--r-pill);
}
.steps h3 { margin-bottom: var(--sp-2); }
.steps p { margin-bottom: 0; max-width: none; }

/* Trademark / non-affiliation small print */
.disclaimer {
  background: var(--c-cream);
  border-top: 3px solid var(--c-tan);
  padding-block: var(--sp-5);
}
.disclaimer p {
  font-size: 0.88rem;
  color: var(--c-ink-soft);
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

/* Footer column of marketplace pages */
.footer-apps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.1rem; }
.footer-apps a { display: inline-flex; align-items: center; min-height: 44px; font-weight: 700; font-size: 0.95rem; }

/* ------------------------------------------------------------------
   21. Delivery area pages
   ------------------------------------------------------------------ */

/* Radius callout: the one fact every area page has to state plainly. */
.radius-note {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  background: var(--c-teal-soft);
  border: 3px solid var(--c-teal-deep);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-print-sm);
  padding: var(--sp-5);
  max-width: 48rem;
}
.radius-note svg { width: 2.25rem; height: 2.25rem; flex: none; color: var(--c-teal-deep); }
.radius-note p { margin: 0; max-width: none; }
.radius-note p + p { margin-top: var(--sp-3); }
.radius-note strong { color: var(--c-blue-deep); }

/* Availability badge */
.avail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: 2px solid var(--c-blue-deep);
  padding: 0.35rem 0.9rem;
}
.avail svg { width: 1.05rem; height: 1.05rem; flex: none; }
.avail--in { background: #D8F3E4; color: #0E6B3F; border-color: #0E6B3F; }
.avail--partial { background: var(--c-gold-soft); color: #7A5300; border-color: #7A5300; }
.avail--pickup { background: var(--c-blue-soft); color: var(--c-blue-deep); }

/* Area index cards */
.area-group + .area-group { margin-top: var(--sp-7); }
.area-group__head { margin-bottom: var(--sp-4); }
.area-group__head h3 { margin-bottom: var(--sp-2); }

.area-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 40rem) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .area-grid { grid-template-columns: repeat(3, 1fr); } }

.area-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  background: var(--c-white);
  border: var(--border-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-print-sm);
  padding: var(--sp-5);
}
.area-card h4 {
  font-size: 1.25rem;
  margin: 0;
}
.area-card h4 a { color: var(--c-blue-deep); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.area-card h4 a:hover { color: var(--c-red-deep); }
.area-card p { margin: 0; max-width: none; font-size: 0.97rem; color: var(--c-ink-soft); }
.area-card__dist {
  font-weight: 800;
  color: var(--c-blue-deep);
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
}
.area-card .avail { align-self: flex-start; }

/* Sibling links at the foot of a city page */
.area-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.area-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 1.1rem;
  font-weight: 800;
  color: var(--c-blue-deep);
  background: var(--c-white);
  border: 2px solid var(--c-blue-deep);
  border-radius: var(--r-pill);
  text-decoration: none;
}
.area-links a:hover { background: var(--c-gold-soft); color: var(--c-blue-deep); }

/* Breadcrumb */
.crumbs { background: var(--c-white); border-bottom: 2px solid var(--c-line); }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; font-size: 0.9rem; }
.crumbs li { display: flex; align-items: center; gap: 0.4rem; }
.crumbs li + li::before { content: "/"; color: var(--c-tan); font-weight: 800; }
/* Padding rather than a taller bar, so the targets clear the minimum
   without the breadcrumb dominating the top of the page. */
.crumbs a,
.crumbs [aria-current="page"] {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 0.15rem;
  font-weight: 700;
}
.crumbs [aria-current="page"] { color: var(--c-ink-soft); }

/* ------------------------------------------------------------------
   22. Photography
   ------------------------------------------------------------------ */

/* Shared framed-photo treatment, matching the card borders elsewhere. */
.photo {
  margin: 0;
  background: var(--c-white);
  border: var(--border-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-print);
  overflow: hidden;
}
.photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--c-cream);
}
.photo figcaption {
  padding: 0.75rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-blue-deep);
  background: var(--c-gold-soft);
  border-top: 3px solid var(--c-blue-deep);
}

/* Gallery grid. Tiles share one aspect ratio so the rows line up. */
.gallery {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 40rem) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 62rem) { .gallery { grid-template-columns: repeat(4, 1fr); } }

.gallery .photo { box-shadow: var(--shadow-print-sm); border-width: 2px; }
.gallery .photo img { aspect-ratio: 4 / 5; }

/* Alternating tilt gives the grid a hand-pinned, scrapbook feel. */
.gallery > li:nth-child(odd) .photo { transform: rotate(-0.7deg); }
.gallery > li:nth-child(even) .photo { transform: rotate(0.7deg); }
.gallery .photo { transition: transform 0.18s ease; }
.gallery .photo:hover { transform: rotate(0deg) scale(1.015); }

/* Feature photo: the truck itself, beside body copy. */
.feature-photo { max-width: 34rem; }
.feature-photo img { aspect-ratio: 3 / 4; }
@media (min-width: 58rem) {
  .feature-shot { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); align-items: center; }
}

/* Single inline photo on a landing page, beside or above its copy. */
.page-photo { max-width: 26rem; }
.page-photo img { aspect-ratio: 4 / 5; }
@media (min-width: 52rem) {
  .with-photo { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--sp-6); align-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery > li:nth-child(odd) .photo,
  .gallery > li:nth-child(even) .photo,
  .gallery .photo:hover { transform: none; }
}

/* ------------------------------------------------------------------
   23. Menu page
   ------------------------------------------------------------------ */

/* --header-h is measured by main.js so the category bar sits directly under
   the sticky site header. The fallback keeps it correct without JavaScript. */
:root { --header-h: 4.5rem; }

.cat-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 80;
  background: var(--c-white);
  border-block: 3px solid var(--c-blue-deep);
  box-shadow: 0 4px 0 rgba(254, 198, 8, 0.85);
}
.cat-nav__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  padding-block: 0.6rem;
  /* Bleed the scroll area to the container edges on small screens. */
  scroll-padding-inline: 1rem;
}
.cat-nav__label {
  flex: none;
  margin: 0;
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}
@media (max-width: 47.99rem) { .cat-nav__label { display: none; } }

.cat-nav ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cat-nav li { flex: none; }
.cat-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.4rem 0.95rem;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  color: var(--c-blue-deep);
  text-decoration: none;
  background: var(--c-ivory);
  border: 2px solid var(--c-blue-deep);
  border-radius: var(--r-pill);
}
.cat-nav a:hover { background: var(--c-gold-soft); color: var(--c-blue-deep); }
.cat-nav a[aria-current="true"] {
  background: var(--c-red-deep);
  border-color: var(--c-blue-deep);
  color: var(--c-white);
}

/* Anchors must clear both sticky bars when jumped to. */
.menu-section { scroll-margin-top: calc(var(--header-h) + 5rem); }

.menu-section + .menu-section { margin-top: var(--sp-8); }
.menu-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-5);
  border-bottom: 4px solid var(--c-tan);
}
.menu-section__head h2 { margin: 0; }
.menu-section__count {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  font-variant-numeric: tabular-nums;
}
.menu-section__desc { margin: 0.35rem 0 0; flex-basis: 100%; color: var(--c-ink-soft); }

/* Item list */
.menu-items { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-4); }
@media (min-width: 54rem) { .menu-items { grid-template-columns: repeat(2, 1fr); } }

.menu-entry {
  background: var(--c-white);
  border: var(--border-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-print-sm);
  padding: var(--sp-5);
  height: 100%;
}
.menu-entry__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1rem;
  margin-bottom: 0.5rem;
}
.menu-entry__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-blue-deep);
  margin: 0;
  flex: 1 1 auto;
  min-width: 9rem;
}
.menu-entry__price {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--c-red-deep);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.menu-entry__desc { margin: 0; max-width: none; }
.menu-entry__es {
  margin: 0.4rem 0 0;
  max-width: none;
  font-size: 0.94rem;
  font-style: italic;
  color: var(--c-ink-soft);
}

.menu-entry__opts { margin: var(--sp-4) 0 0; padding: 0; font-size: 0.92rem; }
.menu-entry__opts > div + div { margin-top: 0.5rem; }
.menu-entry__opts dt {
  font-weight: 800;
  color: var(--c-teal-deep);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.72rem;
  margin-bottom: 0.2rem;
}
.menu-entry__opts dd { margin: 0; color: var(--c-ink-soft); }
.menu-entry__opts .upcharge { color: var(--c-red-deep); font-weight: 700; }

/* Glossary */
.glossary { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-3); }
@media (min-width: 40rem) { .glossary { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .glossary { grid-template-columns: repeat(3, 1fr); } }
.glossary li {
  background: var(--c-white);
  border: 2px solid var(--c-blue-deep);
  border-radius: var(--r-md);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-print-sm);
}
.glossary dfn { font-style: normal; font-weight: 800; color: var(--c-blue-deep); }
.glossary span { color: var(--c-ink-soft); }

/* ------------------------------------------------------------------
   24. Responsive & print
   ------------------------------------------------------------------ */
@media (max-width: 22.5rem) {
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .card .btn { align-self: stretch; }
}

@media print {
  .site-header, .order-bar, .utility-bar, .map-frame, .skip-link { display: none !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  body { background: #fff; padding-bottom: 0; }
  .card, .menu-group, .hours-panel { box-shadow: none; }
}
