:root {
  --orange: #f7712e;
  --dark: #292529;
  --text: #222;
  --muted: #666;
  --light: #f7f7f7;
  --white: #fff;

  --max-width: 1180px;
  --radius: 8px;
  --shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  --font-heading: Georgia, "Times New Roman", Times, serif;
  --font-body:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
}

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: var(--white);
  padding: 10px 16px;
  z-index: 1000;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: bold;
  font-family: var(--font-body);
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  letter-spacing: 0.03em;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: #d95f22;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--white);
  color: var(--dark);
}

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(41, 37, 41, 0.95);
  color: var(--white);
  box-shadow: var(--shadow);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo img {
  height: 64px;
  width: auto;
}

.site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.15;
}

.site-logo .logo-text strong {
  display: block;
  color: var(--orange);
  font-size: 1.3rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

.main-nav a {
  font-weight: bold;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--orange);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(480px, 70vh, 650px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-image:
    linear-gradient(rgba(20, 15, 15, 0.62), rgba(20, 15, 15, 0.62)),
    url("../assets/images/hero-mexican-food.jpg");
  background-size: cover;
  background-position: center;
  padding: 48px 16px;
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 0.3em;
}

.hero p.lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin-bottom: 1.5em;
}

.hero .hours {
  margin-top: 2em;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.hero .hours p {
  margin: 0.2em 0;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
}

/* ---------- Section basics ---------- */
section {
  padding-block: clamp(40px, 6vw, 72px);
}

.section-title {
  text-align: center;
  color: var(--orange);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.2em;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 2em;
}

.bg-light {
  background: var(--light);
}

.bg-dark {
  background: var(--dark);
  color: var(--white);
}

.bg-orange {
  background: var(--orange);
  color: var(--white);
}

.bg-orange .section-title {
  color: var(--white);
}

.bg-orange .section-subtitle {
  color: #fff8f2;
}

/* ---------- About / intro ---------- */
.about {
  text-align: center;
}

.about p {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

/* ---------- Locations ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.location-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.location-card .location-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.location-card .location-body {
  padding: 20px 22px 24px;
  text-align: center;
}

.location-card h3 {
  color: var(--orange);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.location-card address {
  font-style: normal;
  color: var(--muted);
  margin-bottom: 14px;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 4px;
  margin-bottom: 16px;
  transition: background-color 0.2s ease;
}

.call-btn:hover,
.call-btn:focus-visible {
  background: #d95f22;
}

.location-map {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
  display: block;
}

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

.menu-categories {
  column-count: 1;
  column-gap: 56px;
}

@media (min-width: 800px) {
  .menu-categories {
    column-count: 2;
  }
}

.menu-category {
  margin-bottom: 2.5em;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.menu-category--wide {
  column-span: all;
}

.menu-category--wide > h2 {
  text-align: center;
}

.text-center {
  text-align: center;
}

.fw-normal {
  font-weight: normal;
}

.fw-bold {
  font-weight: bold;
}

.mt-lg {
  margin-top: 1.5em;
}

.menu-category--wide .wide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 40px;
}

@media (min-width: 700px) {
  .menu-category--wide .wide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .menu-category--wide .wide-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-category h2 {
  color: var(--orange);
  font-size: 1.6rem;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 0.3em;
  margin-bottom: 0.4em;
}

.menu-category .category-note {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1em;
  font-size: 0.95rem;
}

.menu-item {
  margin-bottom: 1.1em;
}

.menu-item-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-weight: bold;
  font-size: 1.02rem;
}

.menu-item-row .item-name {
  position: relative;
  flex: 1;
}

.menu-item-row .item-price {
  color: var(--orange);
  white-space: nowrap;
  font-weight: bold;
}

.menu-item .item-desc {
  color: var(--muted);
  font-style: italic;
  font-size: 0.92rem;
  margin: 0.2em 0 0;
}

.menu-item .item-options {
  font-size: 0.95rem;
  margin: 0.3em 0 0;
}

.menu-item .item-options .item-price {
  color: var(--orange);
  font-weight: bold;
}

.menu-photo {
  width: 100%;
  /* max-width: 320px; */
  border-radius: var(--radius);
  margin: 0 auto 1.2em;
  box-shadow: var(--shadow);
}

.menu-list-block {
  margin-bottom: 1.1em;
  font-weight: bold;
}

.menu-list-block .item-price {
  color: var(--orange);
}

.menu-fineprint {
  text-align: center;
  color: #b23c22;
  font-size: 0.85rem;
  max-width: 900px;
  margin: 2em auto 0;
}

.menu-note-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2em;
  font-weight: bold;
}

/* ---------- Photo divider ---------- */
.photo-divider {
  height: clamp(180px, 28vw, 320px);
  background-size: cover;
  background-position: center;
  position: relative;
  margin-block: clamp(24px, 4vw, 48px);
  border-radius: var(--radius);
  overflow: hidden;
}

.photo-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.photo-divider .divider-caption {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.divider-fajitas {
  background-image: url("../assets/images/fajitas.jpg");
}
.divider-enchiladas {
  background-image: url("../assets/enchiladas.jpg");
}
.divider-tacos {
  background-image: url("../assets/images/tacos.jpg");
}
.divider-burritos {
  background-image: url("../assets/images/burritos.jpg");
}

/* ---------- Bar section ---------- */
.bar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

.bar-card {
  text-align: center;
}

.bar-card img {
  border-radius: var(--radius);
  margin-bottom: 1em;
  box-shadow: var(--shadow);
}

.bar-card h3 {
  color: var(--orange);
  font-size: 1.3rem;
}

.bar-card .item-price {
  color: var(--orange);
  font-weight: bold;
}

/* ---------- Reviews ---------- */
.reviews {
  text-align: center;
}

.reviews .stars {
  font-size: 1.5rem;
  margin-bottom: 2em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.review-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding-block: 32px;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo img {
  height: 56px;
}

.footer-copy {
  font-size: 0.9rem;
  color: #cfc9cd;
  text-align: center;
}

.footer-copy a {
  color: var(--orange);
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--orange);
}

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 400;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .main-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px clamp(16px, 4vw, 32px) 24px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.25s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 10px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .site-footer .container {
    flex-direction: column;
    text-align: center;
  }
}
