  :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);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    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 ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  nav ul a {
    color: #e8ffe0;
    text-decoration: none;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s;
  }

  nav ul a:hover { color: var(--gold); }

  /* ── ORDER DROPDOWN ── */
  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown-btn {
    background: var(--red);
    color: #fff;
    font-family: 'Libre Baskerville', serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    padding: .5rem 1.1rem;
    border-radius: 4px;
    transition: background .2s;
  }

  .nav-dropdown:hover .nav-dropdown-btn { background: var(--red-dark); }

  .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    transform: translateY(-4px);
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 200;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown-inner {
    background: var(--green-dark);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    min-width: 180px;
  }

  .nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .75rem 1.2rem;
    color: #e8ffe0;
    text-decoration: none;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: background .15s, color .15s;
    white-space: nowrap;
  }

  .nav-dropdown-item:hover {
    background: rgba(255,255,255,.1);
    color: var(--gold);
  }

  .nav-dropdown-item + .nav-dropdown-item {
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .nav-dropdown-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background:
      linear-gradient(to bottom, rgba(10,40,15,.72) 0%, rgba(10,40,15,.45) 60%, rgba(10,40,15,.85) 100%),
      url('Tacos.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 1.5rem 3rem;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(255,255,255,.015) 3px,
      rgba(255,255,255,.015) 4px
    );
    pointer-events: none;
  }

  .hero-eyebrow {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: .5rem;
    opacity: 0;
    animation: fadeUp .8s .2s forwards;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 4px 32px rgba(0,0,0,.7);
    opacity: 0;
    animation: fadeUp .8s .4s forwards;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--green-light);
  }

  .hero-sub {
    font-size: 1.1rem;
    color: #d4f5d4;
    margin-top: 1.2rem;
    max-width: 520px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp .8s .6s forwards;
  }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp .8s .8s forwards;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 4px;
    font-family: 'Libre Baskerville', serif;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .15s;
  }

  .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }

  .btn-green {
    background: var(--green);
    color: #fff;
  }

  .btn-red {
    background: var(--red);
    color: #fff;
  }

  .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.6);
  }

  .btn-outline:hover { border-color: #fff; }

  /* ── REVIEW BUTTONS ── */
  .review-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    border: none;
    font-family: 'Lato', sans-serif;
  }
  .review-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.4); }

  .google-review-btn {
    background: #1a73e8;
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.3;
    padding: .55rem 1.1rem .55rem .55rem;
    order: -1;
  }
  .g-circle {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .yelp-review-btn {
    background: #c41200;
    color: #fff;
    flex-direction: column;
    text-align: center;
    font-size: .82rem;
    line-height: 1.35;
    padding: .5rem 1.1rem;
    gap: .15rem;
    order: 1;
  }
  .yelp-stars { font-size: 1rem; letter-spacing: .1em; color: #fff; }
  .yelp-logo-text { font-size: 1.1rem; font-weight: 900; letter-spacing: -.02em; font-style: italic; }
  .yelp-burst { font-style: normal; font-size: .75rem; vertical-align: super; }

  .hero-find-us { order: 0; }

  /* ── REVIEWS CAROUSEL ── */
  .reviews-section {
    background: #111;
    color: #fff;
    padding: 5rem 1.5rem;
    text-align: center;
  }
  .reviews-section .section-label { color: #d4920a; }
  .reviews-section .section-title { color: #fff; }
  .reviews-section .divider { background: #d4920a; margin: 1.2rem auto; width: 60px; height: 3px; border-radius: 2px; }
  .reviews-carousel {
    position: relative;
    max-width: 760px;
    margin: 2.5rem auto 0;
    overflow: hidden;
  }
  .reviews-track {
    display: flex;
    transition: transform .5s ease;
  }
  .review-slide {
    min-width: 100%;
    padding: 0 .5rem;
  }
  .review-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 2.2rem 2rem;
    text-align: left;
  }
  .review-stars { font-size: 1.4rem; margin-bottom: .75rem; color: #f5c842; }
  .review-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,.85);
    font-style: italic;
    margin-bottom: 1.2rem;
  }
  .review-scores {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 1rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 1.2rem;
  }
  .review-scores span { color: #f5c842; }
  .review-author { font-weight: 700; font-size: .95rem; letter-spacing: .04em; }
  .review-author a {
    color: #4285f4;
    text-decoration: none;
    transition: color .15s;
  }
  .review-author a:hover { color: #7baff8; text-decoration: underline; }
  .review-source { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: .2rem; }
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: .6rem;
    margin-top: 1.5rem;
  }
  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    border: none;
    cursor: pointer;
    transition: background .3s;
    padding: 0;
  }
  .carousel-dot.active { background: #d4920a; }

  .scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.5);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    opacity: 0;
    animation: fadeUp .8s 1.2s forwards;
  }

  .scroll-hint::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
    animation: scrollLine 1.5s infinite;
  }

  /* ── SECTION SHARED ── */
  section { padding: 6rem 1.5rem; }

  .section-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: var(--green);
    margin-bottom: .3rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-dark);
  }

  .section-title .accent { color: var(--red); }

  .divider {
    width: 60px;
    height: 4px;
    background: var(--green);
    margin: 1.2rem 0 2rem;
    border-radius: 2px;
  }

  /* ── ABOUT ── */
  .about {
    background: #fff;
  }

  .about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-image-wrap {
    position: relative;
  }

  .about-image-wrap img {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 16px 48px rgba(0,0,0,.18);
  }

  .about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 120px;
    height: 120px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    border: 4px solid var(--gold);
  }

  .about-badge strong { font-size: 1.8rem; line-height: 1; }
  .about-badge span { font-size: .65rem; text-transform: uppercase; letter-spacing: .06em; margin-top: .2rem; }

  .about-content p {
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: .95rem;
  }

  .about-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
  }

  .highlight {
    text-align: center;
    flex: 1;
  }

  .highlight-icon { font-size: 2rem; margin-bottom: .3rem; }
  .highlight strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-dark); }
  .highlight span { font-size: .8rem; color: #888; }

  /* ── MENU ── */
  .menu-section {
    background: var(--cream);
  }

  .menu-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .menu-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
  }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem;
  }

  a.menu-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }

  .menu-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    transition: transform .2s, box-shadow .2s;
    position: relative;
  }

  .menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.14);
  }

  .menu-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }

  .menu-card-body {
    padding: 1.3rem 1.5rem 1.5rem;
  }

  .menu-card-tag {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--green);
    font-weight: 700;
    margin-bottom: .3rem;
  }

  .menu-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: .5rem;
    color: var(--text-dark);
  }

  .menu-card p {
    font-size: .85rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .menu-card-footer {
    display: none;
  }

  .price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-dark);
  }

  /* ── ORDER ── */
  .order-section {
    background: var(--green-dark);
    color: #fff;
    text-align: center;
    padding: 6rem 1.5rem;
  }

  .order-section .section-label { color: var(--gold); }
  .order-section .section-title { color: #fff; }
  .order-section .divider { background: var(--gold); margin-left: auto; margin-right: auto; }
  .order-section > p { color: #b8d9b0; max-width: 540px; margin: 0 auto 3rem; font-size: .95rem; line-height: 1.7; }

  .delivery-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
  }

  .delivery-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    flex: 1;
    min-width: 240px;
    max-width: 300px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: background .2s, transform .2s;
  }

  .delivery-card:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }

  .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .8rem;
  }

  .ubereats-logo { color: #06C167; }
  .doordash-logo { color: #FF3008; }

  .delivery-card p {
    font-size: .85rem;
    color: #b8d9b0;
    line-height: 1.6;
  }

  /* ── INFO ── */
  .info-section {
    background: #fff;
    padding: 6rem 1.5rem;
  }

  .info-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 1.2rem;
  }

  .hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
  }

  .hours-table td {
    padding: .5rem 0;
    border-bottom: 1px solid #f0ede4;
    color: var(--text-mid);
  }

  .hours-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--green-dark);
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    margin-bottom: 1rem;
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .contact-icon { font-size: 1.1rem; flex-shrink: 0; }

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

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
  }

  .footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s;
  }

  .footer-links a:hover { color: #fff; }

  /* ── LANGUAGE TOGGLE ── */
  .lang-toggle {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    background: var(--green-dark);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 30px;
    padding: .55rem 1.2rem;
    font-family: 'Libre Baskerville', serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,.35);
    transition: background .2s, color .2s, transform .15s;
    display: flex;
    align-items: center;
    gap: .5rem;
  }

  .lang-toggle:hover {
    background: var(--gold);
    color: var(--green-dark);
    transform: translateY(-2px);
  }

  /* ── 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; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

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

  /* ── HAMBURGER ── */
  .nav-right { display: flex; align-items: center; gap: .8rem; }

  .nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.4rem;
    cursor: pointer;
    padding: .2rem .4rem;
    flex-shrink: 0;
  }

  .nav-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--green-dark);
    flex-direction: column;
    z-index: 99;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }

  .nav-mobile-menu.open { display: flex; }

  .nav-mobile-menu a {
    color: var(--gold);
    text-decoration: none;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .15s;
  }

  .nav-mobile-menu a:last-child { border-bottom: none; }
  .nav-mobile-menu a:hover { background: rgba(255,255,255,.06); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav ul { display: none; }
    .nav-hamburger { display: flex; }
  }

  @media (max-width: 768px) {
    section { padding: 3.5rem 1rem; }
    .about-inner { grid-template-columns: 1fr; gap: 2rem; }
    .about-badge { right: .5rem; bottom: -1rem; width: 90px; height: 90px; }
    .about-badge strong { font-size: 1.4rem; }
    .about-badge span { font-size: .55rem; }
    .about-content p { font-size: .88rem; }
    .info-inner { grid-template-columns: 1fr; gap: 2rem; }
    .about-highlights { flex-wrap: wrap; gap: 1rem; }
    .highlight { min-width: 80px; }
    .menu-header { flex-direction: column; align-items: flex-start; }
    .menu-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .menu-card-img { height: 130px; }
    .menu-card-body { padding: .8rem; }
    .menu-card h3 { font-size: .95rem; margin-bottom: .3rem; }
    .menu-card p { font-size: .78rem; margin-bottom: .6rem; }
    .menu-card-tag { font-size: .6rem; }
    .price { font-size: 1rem; }
    .delivery-cards { gap: .8rem; }
    .delivery-card { padding: 1.5rem; min-width: 0; }
    .delivery-card p { font-size: .75rem; }
    .order-section { padding: 3rem 1rem; }
    .footer-links { gap: 1.2rem; }
    .section-title { font-size: clamp(1.5rem, 5vw, 2.5rem); }
  }

  @media (max-width: 480px) {
    nav { padding: 0 1rem; }
    .hero-sub { font-size: .9rem; }
    .hero-ctas { gap: .7rem; }
    .btn { padding: .7rem 1.4rem; font-size: .85rem; }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-card-img { height: 180px; }
    .delivery-cards { flex-direction: column; align-items: center; }
    .delivery-card { width: 100%; max-width: 100%; }
    .hours-table td { font-size: .82rem; }
    .section-label { font-size: 1.1rem; }
    .lang-toggle { bottom: 1rem; right: 1rem; font-size: .75rem; padding: .45rem .9rem; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: .8rem; }
    footer { font-size: .78rem; padding: 1.5rem 1rem; }
    .hero-find-us { order: -1; flex-basis: 100%; justify-content: center; }
    .google-review-btn { order: 0; }
    .yelp-review-btn { order: 1; }
    .reviews-section { padding: 3rem 1rem; }
    .review-card { padding: 1.4rem 1.1rem; }
    .review-text { font-size: .88rem; }
    .review-scores { font-size: .72rem; letter-spacing: .02em; gap: .3rem .7rem; }
  }
