/* ============================================================
   El Torito Deli — main.css
   Palette: brand red · deep forest green · warm cream · gold
   Type: Josefin Slab (display) · Lato (body)
   Brand red from logo — vivid #CC1C1C, distinct from terracotta.
   ============================================================ */

:root {
  --bg:          #F9F4EC;   /* warm cream — page base */
  --bg-alt:      #FFFFFF;   /* white — cards, alternating sections */
  --text:        #1C2B1F;   /* deep forest green-black */
  --text-dim:    #556B5A;   /* muted green-brown — secondary copy */
  --green:       #1E3D2A;   /* deep forest green — hero bg, Guatemala section */
  --green-mid:   #2D5C3E;   /* mid green — hover states on dark bg */
  --terra:       #CC1C1C;   /* brand red — from logo, CTAs on light bg, prices, labels */
  --terra-dark:  #A61618;   /* darker brand red — button hover */
  --gold:        #C8901C;   /* warm gold — stars, badges, CTAs on dark bg */
  --gold-dark:   #A87416;
  --border:      rgba(28, 43, 31, 0.1);

  --ff-display: 'Josefin Slab', Georgia, serif;
  --ff-body:    'Lato', -apple-system, 'Segoe UI', sans-serif;

  --max-w: 1080px;
  --r:     8px;

  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 3.5rem;
  --sp-xl: 5.5rem;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a { color: var(--terra); text-decoration: none; }

h1, h2, h3 {
  font-family: var(--ff-display);
  line-height: 1.15;
  color: var(--text);
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--sp-sm);
  padding-right: var(--sp-sm);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   SHARED TYPE HELPERS
   ============================================================ */

.section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--terra);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  color: var(--text);
  margin-bottom: var(--sp-xs);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 52ch;
}

.section-intro { margin-bottom: var(--sp-lg); }

/* Inverted type helpers for use on dark green sections */
.section-label-light {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-heading-light {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  color: var(--bg);
  margin-bottom: var(--sp-sm);
  line-height: 1.15;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  line-height: 1;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

/* Terracotta — primary on light bg */
.btn-terra {
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
}
.btn-terra:hover { background: var(--terra-dark); border-color: var(--terra-dark); color: #fff; }

/* Ghost — outline on light bg */
.btn-ghost {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(28, 43, 31, 0.06); }

/* Outline — thinner for secondary header CTA */
.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
  border-width: 1.5px;
}
.btn-outline:hover { border-color: var(--text-dim); background: rgba(28, 43, 31, 0.04); }

/* Gold — primary CTA on dark green bg */
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }

/* Ghost light — outline on dark green bg */
.btn-ghost-light {
  background: transparent;
  border-color: rgba(249, 244, 236, 0.4);
  color: var(--bg);
}
.btn-ghost-light:hover {
  border-color: var(--bg);
  background: rgba(249, 244, 236, 0.08);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 244, 236, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.85rem var(--sp-sm);
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}

.site-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.site-nav {
  display: none;
  gap: 1.75rem;
  align-items: center;
}

.site-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.03em;
  transition: color 0.15s;
}

.site-nav a:hover { color: var(--text); }

@media (min-width: 640px) { .site-nav { display: flex; } }

/* Mobile hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* Header CTAs — Call is hidden on mobile to keep header tight */
.header-ctas {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}

.header-call { display: none; }

@media (min-width: 640px) {
  .header-call { display: inline-flex; }
}

/* Mobile nav dropdown */
@media (max-width: 639px) {
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: var(--sp-xs) var(--sp-sm);
    gap: 0;
    box-shadow: 0 4px 16px rgba(28, 43, 31, 0.1);
  }
  .site-nav.is-open a {
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }
  .site-nav.is-open a:last-child { border-bottom: none; }
}

/* ============================================================
   HERO
   Deep forest green background — leads with Guatemalan angle.
   Text left, food photo right on desktop.
   Photo stacks first on mobile.
   ============================================================ */

.hero {
  background: var(--green);
  padding: var(--sp-xl) 0 var(--sp-lg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}

@media (max-width: 720px) {
  .hero { padding: var(--sp-md) 0 var(--sp-lg); }
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-md); }
  .hero-photo { order: -1; }
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(249, 244, 236, 0.6);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  color: var(--bg);
  margin-bottom: var(--sp-sm);
  max-width: 16ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(249, 244, 236, 0.8);
  max-width: 46ch;
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
}

@media (max-width: 400px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
}

.hero-photo {
  background: var(--green-mid);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(249, 244, 236, 0.08);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ============================================================
   HOURS STRIP
   Two-column format: Dine-In | Delivery — both matter here.
   6am badge is the lead visual hook.
   ============================================================ */

.hours-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-md) 0;
}

.hours-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-md);
}

.hours-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--green);
  color: var(--bg);
  border-radius: var(--r);
  padding: 0.6rem 1.1rem;
  text-align: center;
  gap: 0;
}

.hours-badge-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.hours-badge-time {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bg);
  line-height: 1.1;
}

.hours-badge-sub {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(249, 244, 236, 0.6);
}

.hours-divider {
  width: 1px;
  height: 3rem;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 580px) { .hours-divider { display: none; } }

.hours-block-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hours-type-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terra);
  margin-bottom: 0.25rem;
}

.hours-rows {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hours-row {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}

.hours-days {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-dim);
  min-width: 5.5rem;
}

.hours-time {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

/* ============================================================
   TRUST BAR
   ============================================================ */

.trust-bar {
  background: var(--text);
  padding: 0.6rem 0;
  overflow: hidden;
}

.trust-bar p {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 244, 236, 0.75);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 var(--sp-sm);
}

/* ============================================================
   FEATURED DISHES
   3-up grid telling the dual-identity story.
   ============================================================ */

.dishes-section {
  padding: var(--sp-xl) 0;
  background: var(--bg);
}

.dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-sm);
}

@media (min-width: 600px) {
  .dishes-grid { grid-template-columns: repeat(3, 1fr); }
}

.dish-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.dish-img {
  aspect-ratio: 1 / 1;
  background: #E8EFE4;
  overflow: hidden;
  position: relative;
}

.dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.dish-body { padding: var(--sp-sm) var(--sp-sm) var(--sp-md); }

.dish-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terra);
  margin-bottom: 0.3rem;
}

.dish-card.sig .dish-tag { color: var(--gold); }

.dish-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.dish-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.dish-badge {
  display: inline-block;
  margin-top: 0.65rem;
  background: #ECF2E8;
  color: #2D5C3E;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
}

.dishes-footer { text-align: center; margin-top: var(--sp-md); }

/* ============================================================
   STORY TEASER
   Text left, photo right — alternates the hero split pattern.
   ============================================================ */

.story-section {
  padding: var(--sp-xl) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}

@media (max-width: 720px) {
  .story-inner { grid-template-columns: 1fr; }
  .story-photo { order: -1; }
}

.story-text .section-heading {
  margin-top: var(--sp-xs);
  margin-bottom: var(--sp-sm);
}

.story-body {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

.story-photo {
  background: #E8EFE4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.story-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.story-photo--landscape img {
  aspect-ratio: 4 / 3;
  object-position: center 70%;
}

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews-section {
  padding: var(--sp-xl) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.reviews-section .section-label { color: var(--gold); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-sm);
}

@media (min-width: 600px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
}

.review-stars {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.review-quote {
  font-size: 0.925rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  flex: 1;
}

.review-attr {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 700;
}

/* ============================================================
   GUATEMALAN ANGLE CALLOUT
   Deep forest green bg — cultural differentiator section.
   "Where else in Stamford?" is the hook.
   ============================================================ */

.guatemala-section {
  padding: var(--sp-xl) 0;
  background: var(--green);
}

.guatemala-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-lg);
  align-items: start;
}

@media (max-width: 860px) {
  .guatemala-inner { grid-template-columns: 1fr; }
}

.guatemala-text .section-heading-light { margin-bottom: var(--sp-sm); }

.guatemala-body {
  font-size: 0.95rem;
  color: rgba(249, 244, 236, 0.8);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
  max-width: 48ch;
}

.guatemala-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-sm);
}

@media (max-width: 500px) {
  .guatemala-items { grid-template-columns: 1fr 1fr; }
}

.guate-item {
  background: rgba(249, 244, 236, 0.06);
  border: 1px solid rgba(249, 244, 236, 0.1);
  border-radius: var(--r);
  padding: var(--sp-sm);
}

.guate-category {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.guate-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.guate-list li {
  font-size: 0.875rem;
  color: rgba(249, 244, 236, 0.85);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.45;
}

.guate-list li::before {
  content: '·';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   VISIT SECTION
   Teaser — full details on Find Us page.
   ============================================================ */

.visit-section {
  padding: var(--sp-xl) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
}

@media (max-width: 720px) {
  .visit-inner { grid-template-columns: 1fr; }
}

.visit-text .section-heading { margin-bottom: var(--sp-sm); }

.visit-body {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: var(--sp-md);
  max-width: 44ch;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}

.visit-detail dt {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}

.visit-detail dd {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.6;
}

.visit-detail dd a { color: var(--terra); }
.visit-detail dd a:hover { text-decoration: underline; }

.map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: #E8EFE4;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--green);
  color: rgba(249, 244, 236, 0.75);
  padding: var(--sp-lg) 0 var(--sp-md);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--sp-md);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid rgba(249, 244, 236, 0.1);
}

@media (max-width: 700px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .footer-cols { grid-template-columns: 1fr; }
}

.footer-brand { grid-column: 1 / -1; }

@media (min-width: 701px) {
  .footer-brand { grid-column: 1; }
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 0.4rem;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(249, 244, 236, 0.55);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(249, 244, 236, 0.45);
  margin-bottom: 0.7rem;
  font-family: var(--ff-body);
}

.footer-col a,
.footer-col p {
  font-size: 0.875rem;
  color: rgba(249, 244, 236, 0.75);
  line-height: 1.8;
  display: block;
}

.footer-col a:hover { color: var(--bg); }

.footer-hours-note {
  font-size: 0.78rem;
  opacity: 0.6;
  margin-top: 0.3rem;
  display: block;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: var(--sp-sm);
  font-size: 0.75rem;
  color: rgba(249, 244, 236, 0.35);
}

.footer-bottom a { color: rgba(249, 244, 236, 0.45); }
.footer-bottom a:hover { color: var(--bg); }

/* ============================================================
   INNER PAGE HERO
   Shared across Menu, Story, Find Us, Order pages.
   Light bg version — matches site base rather than home hero.
   ============================================================ */

.page-hero {
  padding: var(--sp-xl) 0 var(--sp-lg);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: var(--sp-xs);
}

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 52ch;
  line-height: 1.75;
  margin-top: var(--sp-xs);
}

/* ============================================================
   MENU CATEGORY NAV
   Sticky horizontal anchor-link strip for jumping sections.
   ============================================================ */

.menu-cat-nav {
  background: var(--bg-alt);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 76px;
  z-index: 90;
}

/* Desktop: wrapping pill links */
.menu-cat-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0.3rem var(--sp-sm) 0.1rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.menu-cat-nav a {
  display: block;
  padding: 0.45rem 0.7rem;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  white-space: nowrap;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}

.menu-cat-nav a:hover { color: var(--terra); background: rgba(204,28,28,0.07); }
.menu-cat-nav a.is-active { color: var(--terra); background: rgba(204,28,28,0.11); }

/* Mobile: native select replaces link grid */
.menu-cat-select-wrap { display: none; }

@media (max-width: 779px) {
  .menu-cat-nav-inner { display: none; }
  .menu-cat-select-wrap {
    display: block;
    padding: 0.65rem var(--sp-sm);
  }
  .menu-cat-select {
    width: 100%;
    padding: 0.7rem 2.5rem 0.7rem 1rem;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    background-color: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23CC1C1C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
  }
  .menu-cat-select:focus {
    outline: none;
    border-color: var(--terra);
    box-shadow: 0 0 0 3px rgba(204,28,28,0.15);
  }
}

/* Scroll offset: clears sticky header + nav on jump */
.menu-category-section { scroll-margin-top: 165px; }

@media (max-width: 779px) {
  .menu-category-section { scroll-margin-top: 140px; }
}

/* ============================================================
   MENU PAGE
   ============================================================ */

.menu-body { padding: var(--sp-lg) 0; }

.menu-intro-callout {
  background: #ECF2E8;
  border: 2px solid rgba(46, 92, 62, 0.25);
  border-radius: var(--r);
  padding: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.menu-intro-callout-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.menu-intro-callout p {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 65ch;
  line-height: 1.75;
}

.menu-order-cta {
  display: flex;
  gap: var(--sp-sm);
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--sp-sm);
}

.menu-category-section {
  padding: var(--sp-lg) 0;
  border-top: 1px solid var(--border);
}

.menu-category-header {
  margin-bottom: var(--sp-md);
}

.menu-category-header h2 {
  font-size: 1.5rem;
}

.menu-category-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 0.25rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--sp-lg);
}

@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-sm);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.menu-item-info { flex: 1; }

.menu-item-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: block;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
  line-height: 1.5;
}

.menu-item-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--terra);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.menu-sub-heading {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--text-dim);
  margin-top: var(--sp-sm);
  margin-bottom: var(--sp-sm);
}

.menu-sub-heading + .menu-sub-heading { margin-top: var(--sp-md); }

.section-intro-spaced { margin-top: var(--sp-lg); margin-bottom: var(--sp-sm); }

.prices-note-body { margin-top: 0.5rem; }

.menu-order-cta-spaced { margin-top: var(--sp-sm); }

.menu-prices-note {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--sp-md);
  margin-top: var(--sp-lg);
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ============================================================
   FIND US PAGE — FULL HOURS GRID
   ============================================================ */

.hours-full-section {
  padding: var(--sp-lg) 0;
}

.hours-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}

.hours-day-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--sp-sm);
  text-align: center;
}

.hours-day-card.open { border-color: rgba(46, 92, 62, 0.3); }
.hours-day-card.closed { opacity: 0.4; }

.hours-day-name {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
  display: block;
}

.hours-day-time {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: block;
}

/* ============================================================
   STORY PAGE — additional styles
   (narrative sections reuse .story-section/.story-inner/.story-text/.story-body/.story-photo)
   ============================================================ */

.story-callout {
  background: var(--green);
  border-radius: var(--r);
  padding: var(--sp-md) var(--sp-lg);
  margin: var(--sp-md) 0 0;
}

.story-callout-quote {
  font-size: 1.05rem;
  color: rgba(249, 244, 236, 0.85);
  line-height: 1.8;
  font-style: italic;
}

.story-callout-attr {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 0.65rem;
}

/* ============================================================
   FIND US PAGE
   ============================================================ */

.find-section {
  padding: var(--sp-xl) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.find-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-lg);
  align-items: start;
}

@media (max-width: 860px) {
  .find-inner { grid-template-columns: 1fr; }
}

.find-text .section-heading { margin-bottom: var(--sp-sm); }

.find-detail {
  margin-bottom: var(--sp-sm);
}

.find-detail dt {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}

.find-detail dd {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}

.find-detail dd a { color: var(--terra); }
.find-detail dd a:hover { text-decoration: underline; }

.find-note {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.75;
  padding: var(--sp-sm);
  background: var(--bg);
  border-radius: var(--r);
  border: 1px solid var(--border);
  margin-bottom: var(--sp-md);
}

.find-map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: #E8EFE4;
  position: sticky;
  top: 90px;
}

.find-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   ORDER PAGE
   ============================================================ */

.order-cta-block {
  text-align: center;
  padding: var(--sp-xl) var(--sp-md);
  background: var(--green);
  border-radius: 12px;
  margin-bottom: var(--sp-lg);
}

.order-cta-block h2 {
  color: var(--bg);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--sp-sm);
}

.order-cta-block p {
  color: rgba(249, 244, 236, 0.75);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 44ch;
  margin: 0 auto var(--sp-md);
}

.order-cta-btns {
  display: flex;
  justify-content: center;
  gap: var(--sp-xs);
  flex-wrap: wrap;
}

.order-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}

@media (max-width: 600px) {
  .order-methods { grid-template-columns: 1fr; }
}

.inquiry-method {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--sp-md);
}

.inquiry-method .section-label { margin-bottom: 0.4rem; }

.inquiry-method h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.inquiry-method p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: var(--sp-sm);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
