/* =========================================================
   Tacos La Costeñita — Stylesheet
   Coastal Reskin V2: canvas cream & truck white dominant,
   espresso brown and olive green for structure, coastal
   aqua/sky carrying the La Costa Chica origin, sunflower for
   warmth, terracotta reserved for Order/Call actions.
   Display: Bree Serif · Body/Nav: Montserrat
   ========================================================= */

:root {
  /* Brand-aligned palette */
  --canvas: #f8f2e6;
  --surface: #fffdf8;
  --espresso: #3f2a1e;
  --olive: #738b34;
  --olive-dark: #4f5c32;
  --sea: #58bbad;
  --sea-dark: #267d78;
  --sky: #b4e6f0;
  --sunflower: #e6ad1a;
  --sun-center: #a96522;
  --terracotta: #b84a34;
  --terracotta-dark: #9c3c29;
  --wood: #998779;
  --sand: #f0dfbc;
  --ink: #33261e;
  --ink-soft: #5d4f43;
  --border: #d9cbb8;
  --olive-wash: #eef1e4;
  --sky-wash: #eaf7f8;

  /* Existing component variables mapped to the aligned system,
     so the rest of this file needs minimal rewriting. */
  --cream: var(--canvas);
  --cream-deep: var(--olive-wash);
  --white: var(--surface);
  --forest: var(--olive-dark);
  --forest-dark: var(--espresso);
  --red: var(--terracotta);
  --red-dark: var(--terracotta-dark);
  --yellow: var(--sunflower);
  --yellow-deep: #c99512;
  --yellow-on-red: var(--canvas); /* Order/Call section highlight text on terracotta */
  --turquoise: var(--sea);

  --font-display: 'Bree Serif', 'Roboto Slab', serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1240px;
  --radius: 14px;
  --header-h: 116px;
  --sticky-bar-h: 64px;

  --shadow-card: 0 8px 20px rgba(63, 42, 30, 0.09);
  --shadow-lift: 0 12px 28px rgba(63, 42, 30, 0.13);
}

@media (min-width: 900px) {
  :root { --header-h: 92px; }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 28px);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(255,255,255,0.55), transparent 42%),
    var(--cream);
  font-size: 16px;
  line-height: 1.55;
  padding-bottom: var(--sticky-bar-h);
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--forest);
  margin: 0 0 0.4em;
  line-height: 1.12;
}

p { margin: 0 0 1em; }

ul { list-style: none; margin: 0; padding: 0; }

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--sea-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  background: var(--forest);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 8px;
  z-index: 1000;
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.95em 1.7em;
  border-radius: 10px;
  min-height: 44px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

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

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

.btn-secondary { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-secondary:hover { background: rgba(63, 42, 30, 0.08); }

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

.btn-outline-red { background: var(--white); color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: rgba(193, 57, 43, 0.08); }

/* =========================================================
   Announcement bar + header
   ========================================================= */

.announcement-bar {
  background: var(--forest-dark);
  color: var(--white);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 8px 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--wood);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
}

.brand-mark {
  flex-shrink: 0;
  display: block;
  width: clamp(58px, 9vw, 82px);
  height: clamp(58px, 9vw, 82px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--wood);
  background: var(--white);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-name {
  font-family: var(--font-display);
  color: var(--espresso);
  font-size: clamp(0.92rem, 3.6vw, 1.35rem);
  line-height: 1.1;
  max-width: 30ch;
}

.main-nav { display: none; flex: 1; min-width: 0; }
.main-nav ul { display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: center; }
.main-nav a {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--forest);
  padding: 14px 2px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.main-nav a:hover { border-color: var(--sea); color: var(--olive-dark); }

.header-cta { display: none; flex-shrink: 0; white-space: nowrap; }
.header-cta .cta-full { display: none; }
.header-cta .cta-short { display: inline; }

@media (min-width: 900px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
}
@media (min-width: 1080px) {
  .header-cta .cta-full { display: inline; }
  .header-cta .cta-short { display: none; }
}

.menu-toggle {
  margin-left: auto;
  flex-shrink: 0;
  background: transparent;
  border: 2px solid var(--forest);
  border-radius: 10px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 22px;
  height: 3px;
  background: var(--forest);
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger::before { position: absolute; top: -7px; }
.hamburger::after { position: absolute; top: 7px; }

.menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.menu-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  background: var(--cream-deep);
  border-top: 2px solid var(--forest);
  padding: 18px 20px 26px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 18px; }
.mobile-menu a {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--forest);
  padding: 12px 6px;
  border-bottom: 1px solid rgba(63,42,30,0.12);
  min-height: 44px;
}
.mobile-menu-cta { width: 100%; }

@media (min-width: 900px) { .mobile-menu { display: none !important; } }

/* =========================================================
   Layout helpers
   ========================================================= */

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 64px 0; }
@media (min-width: 900px) { .section { padding: 96px 0; } }

.section-heading {
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.section-heading-left {
  text-align: left;
  justify-content: flex-start;
}

.text-red { color: var(--red); }
.text-olive { color: var(--forest); }
.text-yellow { color: var(--yellow); }

.brand-eyebrow {
  display: block;
  color: #206863;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.wave-divider {
  width: min(180px, 45vw);
  height: 3px;
  margin: 22px auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--sea), var(--sunflower), var(--sea), transparent);
  opacity: 0.75;
}

/* On the red final-CTA background, use the lightened yellow for AA contrast */
.final-cta-copy .text-yellow { color: var(--yellow-on-red); }

/* Sunburst signature glyph — echoes the rays behind the iguana badge */
.sunburst {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background:
    conic-gradient(from 0deg,
      var(--yellow) 0deg 12deg, transparent 12deg 30deg,
      var(--yellow) 30deg 42deg, transparent 42deg 60deg,
      var(--yellow) 60deg 72deg, transparent 72deg 90deg,
      var(--yellow) 90deg 102deg, transparent 102deg 120deg,
      var(--yellow) 120deg 132deg, transparent 132deg 150deg,
      var(--yellow) 150deg 162deg, transparent 162deg 180deg,
      var(--yellow) 180deg 192deg, transparent 192deg 210deg,
      var(--yellow) 210deg 222deg, transparent 222deg 240deg,
      var(--yellow) 240deg 252deg, transparent 252deg 270deg,
      var(--yellow) 270deg 282deg, transparent 282deg 300deg,
      var(--yellow) 300deg 312deg, transparent 312deg 330deg,
      var(--yellow) 330deg 342deg, transparent 342deg 360deg);
  border-radius: 50%;
}

.icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  background: var(--cream);
  padding: 36px 0 0;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 64px;
  }
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
}
.hero-highlight { color: var(--red); }

.hero-subhead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 3;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

/* Trust strip */
.trust-strip {
  background: var(--yellow);
  border-top: 3px solid var(--forest);
  border-bottom: 3px solid var(--forest);
  padding: 14px 20px;
}
.trust-strip p {
  margin: 0;
  text-align: center;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-strip .dot { color: var(--forest-dark); }
.trust-strip .trust-icon { color: var(--forest-dark); }

/* =========================================================
   Food section
   ========================================================= */

.food-section { background: var(--cream); }

.food-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 640px) {
  .food-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .food-grid { grid-template-columns: repeat(4, 1fr); }
}

.view-full-menu {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.food-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.food-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.food-card-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--olive-wash);
}

.food-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-card--breakfast .food-card-media img { object-position: 50% 66%; }
.food-card--barbacoa .food-card-media img { object-position: 50% 49%; }
.food-card--pastor .food-card-media img { object-position: 50% 64%; }
.food-card--torta .food-card-media img { object-position: 50% 58%; }

.food-card h3 {
  font-size: 1.05rem;
  padding: 16px 18px 4px;
}

.food-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 0 18px 20px;
}

/* =========================================================
   Story section
   ========================================================= */

.story-section { background: var(--olive-wash); position: relative; }

.story-inner {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .story-inner { grid-template-columns: 1fr 1fr; }
}

.story-copy p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 48ch;
}
.story-pull-quote {
  font-family: var(--font-display);
  color: #206863;
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
  max-width: 32ch;
  margin: 0;
}

.story-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* =========================================================
   Location section
   ========================================================= */

.location-section { background: var(--cream); }

.location-intro {
  text-align: center;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: -20px auto 36px;
}

.location-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .location-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
}

.location-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  padding-bottom: 24px;
}

.map-wrap {
  aspect-ratio: 16 / 10;
  background: var(--cream-deep);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-fallback-link {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--forest);
  text-align: right;
  padding: 8px 20px 0;
}
.map-fallback-link:hover { text-decoration: underline; }

.location-details { padding: 20px 24px 0; }

.location-address,
.location-phone {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
.location-address .icon,
.location-phone .icon { color: var(--sea); margin-top: 2px; }

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.location-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 260px;
}
.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =========================================================
   Gallery
   ========================================================= */

.gallery-section { background: var(--sky-wash); }

.gallery-section .section-heading { gap: 12px; }

.gallery-intro {
  text-align: center;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: -20px auto 36px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest);
  background: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}
.instagram-link:hover { background: var(--cream); }
.icon-ig { color: var(--sea); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
}

.gallery-grid li {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 3 / 4;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.gallery-grid li:hover img { transform: scale(1.06); }

/* =========================================================
   Final CTA
   ========================================================= */

.final-cta {
  background: var(--red);
  background-image: radial-gradient(circle at 85% 20%, rgba(255,255,255,0.08), transparent 45%);
  padding: 56px 0;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
@media (min-width: 700px) {
  .final-cta-inner {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
}

.mascot-image {
  width: 130px;
  height: 130px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (min-width: 700px) { .mascot-image { width: 170px; height: 170px; } }

.final-cta-copy h2 {
  color: var(--cream);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.final-cta-copy .btn-primary-dark { margin-top: 8px; }

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 44px 0 20px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 28px;
  align-items: start;
}
@media (min-width: 800px) {
  .footer-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-badge { width: 56px; height: 56px; object-fit: cover; border-radius: 50%; border: 2px solid var(--sunflower); flex-shrink: 0; }
.footer-name { font-family: var(--font-display); font-size: 1.15rem; margin: 0; color: var(--white); }
.footer-brand p:last-child { margin: 0; font-size: 0.85rem; opacity: 0.85; }

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
}
@media (min-width: 800px) { .footer-nav ul { justify-content: center; } }
.footer-nav a {
  font-size: 0.85rem;
  font-weight: 700;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-nav a:hover { color: var(--yellow); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
@media (min-width: 800px) { .footer-contact { align-items: flex-end; } }

.footer-contact a[href^="tel:"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  min-height: 44px;
}
.footer-contact a[href^="tel:"]:hover { color: var(--yellow); }

.footer-social { display: flex; gap: 12px; }
.social-icon-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.social-icon-link:hover { background: var(--sea); }
.social-icon-link:hover .icon { color: var(--espresso); }
.social-icon-link .icon { color: var(--cream); }

.footer-tagline {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--sunflower);
  margin: 32px 0 0;
}

.footer-copyright {
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.7;
  margin: 8px 0 0;
}

/* =========================================================
   Mobile sticky action bar
   ========================================================= */

.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: var(--sticky-bar-h);
  box-shadow: 0 -6px 16px rgba(0,0,0,0.16);
}
@media (min-width: 900px) { .mobile-sticky-bar { display: none; } }

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  min-height: 44px;
}
.sticky-call { background: var(--red); color: var(--white); }
.sticky-directions { background: var(--forest); color: var(--white); }
.sticky-btn .icon { width: 17px; height: 17px; }

/* =========================================================
   Menu page (/menu/)
   ========================================================= */

.menu-page-hero {
  background: var(--cream);
  text-align: center;
  padding: 48px 0 36px;
}

.menu-page-hero .section-inner { max-width: 720px; }

.menu-page-hero h1 {
  font-size: clamp(2.6rem, 8vw, 4rem);
  margin-bottom: 6px;
}

.menu-eyebrow {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--forest);
  margin: 0 0 20px;
}

.menu-intro {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 54ch;
  margin: 0 auto 26px;
}

.menu-page-hero .btn { min-width: 260px; }

/* Jump nav */
.menu-jump {
  background: var(--cream-deep);
  border-top: 2px solid rgba(63, 42, 30, 0.14);
  border-bottom: 2px solid rgba(63, 42, 30, 0.14);
  padding: 14px 0;
}

.menu-jump-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.menu-jump-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding-right: 4px;
}

.menu-jump-inner a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--forest);
  color: var(--forest);
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.menu-jump-inner a:hover { background: var(--forest); color: var(--white); }

/* Menu grid */
.menu-grid-section { background: var(--cream); }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}
@media (min-width: 640px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

.menu-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 26px 26px 28px;
  scroll-margin-top: 24px;
}

.menu-card-category {
  color: var(--forest);
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.menu-card-subcategory {
  color: var(--forest);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-family: var(--font-body);
}

.menu-divider {
  border: none;
  height: 3px;
  background: var(--yellow);
  width: 60px;
  margin: 0 0 18px;
  border-radius: 2px;
}

.menu-choice {
  color: var(--forest);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.menu-desc-es {
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}

.menu-desc-en {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.menu-items li {
  font-size: 1rem;
  color: var(--ink);
}

/* Ready-to-order callout */
.menu-callout {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: 52px 24px;
  border-radius: var(--radius);
  margin-top: 52px;
}
.menu-callout h2 { color: var(--white); margin-bottom: 10px; }
.menu-callout p { color: var(--cream); opacity: 0.92; margin-bottom: 24px; }

.menu-graphic-link-wrap {
  text-align: center;
  margin-top: 30px;
}
.menu-graphic-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.menu-graphic-link:hover { color: var(--olive-dark); }
