  :root {
    --green: #1a7a2e;
    --green-light: #2ca84a;
    --green-dark: #0f4d1c;
    --red: #c0272d;
    --red-dark: #8b1a1e;
    --cream: #fdf6e3;
    --gold: #f5c842;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Libre Baskerville', Georgia, serif;
    background: var(--cream);
    color: var(--text-dark);
  }

  /* NAV */
  nav {
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 64px;
    box-shadow: 0 2px 16px rgba(0,0,0,.4);
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(.7rem, 2.5vw, 1.3rem);
    color: var(--gold);
    letter-spacing: .05em;
  }

  .nav-logo span { color: #fff; font-weight: 400; }

  .nav-back {
    color: #e8ffe0;
    text-decoration: none;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: .4rem;
  }

  .nav-back:hover { color: var(--gold); }

  /* HEADER BANNER */
  .menu-banner {
    background: var(--green-dark);
    color: #fff;
    text-align: center;
    padding: 3rem 1.5rem 2.5rem;
    border-bottom: 4px solid var(--gold);
  }

  .menu-banner .eyebrow {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: .4rem;
  }

  .menu-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
  }

  .menu-banner .tagline {
    margin-top: .6rem;
    font-size: .85rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: .85;
  }

  .menu-banner .hours {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1.4rem;
    flex-wrap: wrap;
  }

  .menu-banner .hours div {
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #b8d9b0;
  }

  .menu-banner .hours strong {
    display: block;
    color: #fff;
    font-size: .95rem;
    margin-top: .2rem;
  }

  /* MAIN LAYOUT */
  .menu-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }

  /* SECTION CARDS */
  .menu-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    overflow: hidden;
  }

  .menu-section.wide {
    grid-column: span 2;
  }

  .menu-section.full {
    grid-column: span 3;
  }

  .section-header {
    background: var(--green-dark);
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .7rem 1.3rem;
    border-bottom: 2px solid var(--gold);
  }

  .section-header.red { background: var(--red-dark); }
  .section-header.gold-bg { background: #8a6a00; }

  .section-body {
    padding: 1.2rem 1.3rem;
  }

  .menu-note {
    font-size: .78rem;
    color: #888;
    font-style: italic;
    margin-bottom: .9rem;
    line-height: 1.5;
  }

  /* MENU ROWS */
  .menu-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: .5rem;
    padding: .45rem 0;
    border-bottom: 1px dashed #e8e8e8;
  }

  .menu-row:last-child { border-bottom: none; }

  .menu-row .item-name {
    font-size: .88rem;
    color: var(--text-dark);
    flex: 1;
  }

  .menu-row .item-price {
    font-family: 'Playfair Display', serif;
    font-size: .95rem;
    color: var(--green-dark);
    font-weight: 700;
    white-space: nowrap;
  }

  /* TACOS SECTION — full width with meat grid */
  .taco-intro {
    font-size: .82rem;
    color: var(--red);
    font-style: italic;
    margin-bottom: .8rem;
  }

  .taco-meats {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .6rem;
    margin-bottom: 1rem;
  }

  .taco-meat-tag {
    background: var(--cream);
    border: 1px solid #d4c89a;
    border-radius: 20px;
    font-size: .75rem;
    padding: .25rem .75rem;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: .04em;
  }

  .taco-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--green-dark);
    color: #fff;
    border-radius: 6px;
    padding: .6rem 1rem;
    margin-top: .4rem;
  }

  .taco-price-row span { font-size: .82rem; letter-spacing: .04em; }
  .taco-price-row strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
  }

  /* COMBO NOTE */
  .combo-note {
    font-size: .74rem;
    color: #999;
    font-style: italic;
    margin-top: .2rem;
  }

  .item-name-wrap { flex: 1; }

  /* WEEKEND SPECIALS */
  .weekend-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1rem;
    color: var(--red);
    margin-bottom: .6rem;
  }

  /* FOOTER */
  .menu-footer {
    background: var(--green-dark);
    color: #b8d9b0;
    text-align: center;
    padding: 2rem 1.5rem;
    font-size: .82rem;
    letter-spacing: .04em;
  }

  .menu-footer a {
    color: var(--gold);
    text-decoration: none;
  }

  .menu-footer strong {
    display: block;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: .4rem;
  }

  /* ── FOCUS / ADA ── */
  :focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
  }

  .skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--green-dark);
    color: var(--gold);
    padding: .6rem 1.2rem;
    border-radius: 0 0 6px 6px;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    transition: top .2s;
  }

  .skip-link:focus { top: 0; }

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

  /* PHOTO STRIP */
  .photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 220px;
  }

  .photo-strip-item {
    position: relative;
    overflow: hidden;
  }

  .photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
  }

  .photo-strip-item:hover img { transform: scale(1.05); }

  /* TACOS WITH PHOTO */
  .taco-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .taco-photo {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 0 10px;
  }

  .taco-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* PHOTO LABEL OVERLAY */
  .photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .45rem .8rem;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .04em;
    pointer-events: none;
  }

  /* DESSERT PHOTO ROW */
  .dessert-photo {
    position: relative;
    grid-column: span 1;
    overflow: hidden;
    border-radius: 10px;
    max-height: 340px;
  }

  .dessert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .menu-page { grid-template-columns: 1fr 1fr; gap: 1.2rem; padding: 2rem 1rem 3rem; }
    .menu-section.full { grid-column: span 2; }
    .menu-section.wide { grid-column: span 2; }
    .photo-strip { grid-template-columns: repeat(2, 1fr); height: 160px; }
    .taco-split { grid-template-columns: 1fr; }
    .taco-photo { display: none; }
    .dessert-photo { display: none; }
    .menu-banner { padding: 2rem 1rem 1.5rem; }
    .menu-banner h1 { font-size: clamp(1.6rem, 5vw, 2.5rem); }
  }

  @media (max-width: 580px) {
    .menu-page { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem .8rem 3rem; }
    .menu-section.full,
    .menu-section.wide { grid-column: span 1; }
    .photo-strip { grid-template-columns: repeat(2, 1fr); height: 120px; }
    .menu-banner .hours { flex-direction: column; gap: .8rem; align-items: center; }
    .menu-banner .eyebrow { font-size: 1.1rem; }
    .section-header { font-size: .85rem; padding: .6rem 1rem; }
    .section-body { padding: .9rem 1rem; }
    .menu-note { font-size: .72rem; }
    .item-name { font-size: .82rem; }
    .item-price { font-size: .88rem; }
    .combo-note { font-size: .68rem; }
    .taco-intro { font-size: .78rem; }
    .taco-meat-tag { font-size: .68rem; padding: .2rem .55rem; }
    .taco-price-row { padding: .5rem .8rem; }
    .menu-footer { font-size: .75rem; padding: 1.5rem 1rem; }
    .menu-footer strong { font-size: 1.1rem; }
    .nav-back { font-size: .72rem; }
  }

  @media (max-width: 400px) {
    .photo-strip { grid-template-columns: 1fr; height: 160px; }
    nav { padding: 0 1rem; }
    .menu-banner h1 { font-size: 1.5rem; }
    .menu-banner .tagline { font-size: .72rem; letter-spacing: .1em; }
  }
