:root {
  --red: #f11222;
  --red-dark: #bd0815;
  --green: #16b951;
  --green-dark: #087f35;
  --cream: #fff8e9;
  --ink: #171815;
  --muted: #686a63;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 84px;
  padding: 14px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(21, 22, 20, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
  font-family: "Anton", Impact, sans-serif;
  line-height: .9;
  letter-spacing: .01em;
  white-space: nowrap;
  filter: drop-shadow(0 4px 0 rgba(0,0,0,.45));
}
.brand-tacos {
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3.6rem);
  text-shadow:
    0 2px 0 #8d0510,
    0 4px 0 #65040b,
    0 7px 12px rgba(0,0,0,.6);
}
.brand-sabrositos {
  color: var(--green);
  font-size: clamp(1.25rem, 2.55vw, 2.3rem);
  text-shadow:
    0 2px 0 #075c28,
    0 4px 0 #043c1b,
    0 7px 12px rgba(0,0,0,.6);
}

.nav-links { display: flex; align-items: center; gap: 28px; color: white; font-weight: 700; }
.nav-links a:not(.nav-cta) { opacity: .82; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--red);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 0 var(--red-dark);
}
.menu-toggle { display: none; }

.hero {
  min-height: calc(100vh - 84px);
  position: relative;
  display: grid;
  align-items: center;
  padding: 80px clamp(24px, 7vw, 110px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9,10,9,.92) 0%, rgba(9,10,9,.74) 48%, rgba(9,10,9,.24) 100%),
    url("storefront.jpg") center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
}
.hero-content { position: relative; z-index: 2; max-width: 760px; color: white; }
.eyebrow {
  margin: 0 0 14px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffeab0;
}
.eyebrow.dark { color: var(--green-dark); }
.hero h1 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: .87;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-shadow: 0 8px 0 rgba(0,0,0,.32);
}
.hero h1 span { color: var(--red); }
.hero-copy {
  max-width: 640px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,.82);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: white; box-shadow: 0 7px 0 var(--red-dark); }
.button-secondary { border: 2px solid rgba(255,255,255,.72); color: white; background: rgba(0,0,0,.18); }
.button-light { background: white; color: var(--green-dark); }

.hours-card {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: white;
  background: rgba(14,15,14,.86);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}
.hours-card strong, .hours-card span { display: block; }
.hours-card span { font-size: .82rem; color: rgba(255,255,255,.7); }
.status-dot { width: 12px; height: 12px; border-radius: 50%; background: #39dc70; box-shadow: 0 0 0 5px rgba(57,220,112,.16); }

.section { padding: 100px clamp(24px, 7vw, 110px); }
.section-heading { max-width: 650px; margin-bottom: 42px; }
.section h2, .split-section h2, .visit-section h2 {
  margin: 0 0 14px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: .95;
  text-transform: uppercase;
}
.section-heading > p:last-child, .split-copy > p { color: var(--muted); line-height: 1.75; }
.menu-jump { display: flex; flex-wrap: wrap; gap: 10px; margin: -16px 0 38px; }
.menu-tab { padding: 11px 16px; border: 2px solid var(--green-dark); border-radius: 999px; color: var(--green-dark); background: transparent; cursor: pointer; font: 800 .82rem "Montserrat", system-ui, sans-serif; transition: color .2s ease, background-color .2s ease, transform .2s ease; }
.menu-tab:hover, .menu-tab:focus-visible { color: white; background: var(--green-dark); transform: translateY(-2px); outline: none; }
.menu-tab[aria-selected="true"] { color: white; background: var(--red); border-color: var(--red); box-shadow: 0 4px 0 var(--red-dark); }
.menu-group { display: none; margin: 0 0 64px; scroll-margin-top: 110px; }
.menu-group.is-active { display: block; animation: menu-page-in .42s cubic-bezier(.2, .75, .3, 1) both; }
@keyframes menu-page-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.menu-group-title { margin: 0 0 20px; padding-bottom: 12px; border-bottom: 4px solid var(--red); font-family: "Anton", Impact, sans-serif; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1; text-transform: uppercase; }
@media (prefers-reduced-motion: reduce) { .menu-group.is-active { animation: none; } .menu-tab { transition: none; } }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 8px 18px; padding: 21px; background: white; border: 1px solid rgba(0,0,0,.07); border-radius: 12px; box-shadow: 0 7px 18px rgba(44,34,15,.06); }
.menu-item h4 { margin: 0; font-size: 1rem; line-height: 1.4; }
.menu-item p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.6; }
.menu-price { align-self: start; color: var(--red-dark); font-weight: 800; white-space: nowrap; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.food-card {
  padding: 30px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(44,34,15,.08);
  border: 1px solid rgba(0,0,0,.05);
}
.food-card.featured { background: var(--green-dark); color: white; transform: translateY(-12px); }
.food-card.featured p { color: rgba(255,255,255,.76); }
.food-icon { font-size: 2.2rem; }
.food-card h3 { margin: 18px 0 8px; font-size: 1.25rem; }
.food-card p { margin: 0; line-height: 1.7; color: var(--muted); }

.gallery-section { padding: 90px clamp(24px, 7vw, 110px); background: #f5ecd9; }
.gallery-section .section-heading { margin-bottom: 30px; }
.carousel { max-width: 520px; margin: 0 auto; }
.carousel-viewport { overflow: hidden; border-radius: 18px; box-shadow: var(--shadow); background: var(--ink); }
.carousel-track { display: flex; transition: transform .55s cubic-bezier(.2, .75, .3, 1); }
.carousel-slide { flex: 0 0 100%; aspect-ratio: 1; margin: 0; }
.carousel-slide img { display: block; width: 100%; height: 100%; object-fit: contain; }
.carousel-controls { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; margin-top: 20px; }
.carousel-button { width: 44px; height: 44px; border: 0; border-radius: 50%; color: white; background: var(--green-dark); cursor: pointer; font-size: 1.45rem; line-height: 1; transition: background-color .2s ease, transform .2s ease; }
.carousel-button:hover, .carousel-button:focus-visible { background: var(--red); transform: translateY(-2px); outline: none; }
.carousel-dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 7px; }
.carousel-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: #b4ad9d; cursor: pointer; transition: transform .2s ease, background-color .2s ease; }
.carousel-dot[aria-current="true"] { background: var(--red); transform: scale(1.35); }
@media (prefers-reduced-motion: reduce) { .carousel-track { transition: none; } }

.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; background: white; }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(24px, 7vw, 110px); }
.split-image { min-height: 480px; background: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.08)), url("storefront.jpg") center/cover; }
.text-link { margin-top: 16px; font-weight: 800; color: var(--red); }

.visit-section {
  padding: 90px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 60px;
  color: white;
  background: var(--green-dark);
}
.visit-details { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: end; }
.visit-details p { margin: 0; line-height: 1.7; color: rgba(255,255,255,.82); }
.visit-details .button { grid-column: span 2; }

footer {
  padding: 34px clamp(24px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.65);
  background: #11120f;
}
.brand-footer .brand-tacos { font-size: 2rem; }
.brand-footer .brand-sabrositos { font-size: 1.25rem; }

@media (max-width: 880px) {
  .menu-toggle {
    display: block;
    color: white;
    background: transparent;
    border: 0;
    font-size: 1.7rem;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    padding: 22px;
    flex-direction: column;
    background: #151614;
  }
  .nav-links.open { display: flex; }
  .cards, .menu-grid, .split-section, .visit-section { grid-template-columns: 1fr; }
  .food-card.featured { transform: none; }
  .split-image { order: -1; }
  .hours-card { left: 24px; right: auto; }
  .visit-details { grid-template-columns: 1fr; }
  .visit-details .button { grid-column: auto; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .site-header { min-height: 72px; }
  .brand { gap: .3rem; }
  .brand-tacos { font-size: 1.75rem; }
  .brand-sabrositos { font-size: 1.03rem; }
  .hero { min-height: calc(100vh - 72px); padding-top: 64px; padding-bottom: 150px; background-position: 58% center; }
  .hero h1 { font-size: clamp(3.7rem, 18vw, 5.4rem); }
  .hours-card { right: 20px; left: 20px; }
}
