:root {
  --terracotta: #c1440e;
  --terracotta-dark: #9a3409;
  --agave-green: #37613f;
  --agave-green-dark: #234029;
  --gold: #e8a13d;
  --cream: #fdf6ec;
  --cream-dark: #f4e8d4;
  --ink: #2a1f18;
  --ink-soft: #5a4a3d;
  --order-red: #e0341f;
  --order-red-dark: #b8250f;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 14px;
  --shadow-md: 0 8px 24px rgba(42, 31, 24, 0.15);
  --shadow-lg: 0 16px 48px rgba(42, 31, 24, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); margin: 0 0 0.5em; line-height: 1.15; }
p { margin: 0 0 1em; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn-order {
  display: inline-block;
  background: var(--order-red);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 999px;
  padding: 12px 26px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(224, 52, 31, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover, .btn-order:focus-visible {
  background: var(--order-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(224, 52, 31, 0.5);
}
.btn-order--lg {
  font-size: 1.1rem;
  padding: 16px 38px;
}
.btn-ghost {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-ghost:hover { background: #fff; color: var(--ink); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.1;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--terracotta-dark);
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--terracotta-dark); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-media, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 18, 10, 0.55) 0%, rgba(28, 18, 10, 0.55) 40%, rgba(28,18,10,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 18px;
}
.hero-tagline {
  font-size: 1.15rem;
  color: #f2e8da;
  margin-bottom: 28px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #f2e8da;
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

/* ---------- Section basics ---------- */
section { padding: 84px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--terracotta-dark);
  margin-bottom: 10px;
}
.section-sub { color: var(--ink-soft); max-width: 560px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }

/* ---------- About ---------- */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-media-secondary {
  position: absolute;
  bottom: -36px;
  right: -36px;
  width: 55%;
  border: 6px solid #fff;
}
.about-copy h2 { color: var(--agave-green-dark); }

/* ---------- Menu ---------- */
.menu { background: var(--cream-dark); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.menu-category {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-md);
}
.menu-category h3 {
  color: var(--terracotta-dark);
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: 12px;
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px dashed #e6d8c2;
}
.menu-category li:last-child { border-bottom: none; }
.item-name { font-weight: 800; }
.item-desc { color: var(--ink-soft); font-size: 0.9rem; }
.menu-note {
  text-align: center;
  margin-top: 32px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Gallery ---------- */
.gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ---------- Reviews ---------- */
.reviews { background: var(--agave-green-dark); color: #fdf6ec; }
.reviews h2, .reviews .section-eyebrow { color: #fdf6ec; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 0;
}
.review-card .stars { color: var(--gold); margin-bottom: 10px; }
.review-card p { font-size: 1.02rem; color: #f2e8da; }
.review-card cite { font-weight: 700; color: var(--gold); }

/* ---------- Visit ---------- */
.visit { background: var(--cream-dark); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.visit-info h2 { color: var(--agave-green-dark); }
.visit-info address {
  font-style: normal;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.phone-link {
  display: inline-block;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--terracotta-dark);
  text-decoration: none;
  margin-bottom: 24px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 10px 18px;
  border-bottom: 1px solid var(--cream-dark);
  font-weight: 600;
}
.hours-table th { color: var(--ink-soft); font-weight: 700; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.visit-map {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #e8dcc9;
  padding: 56px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-brand { display: block; color: var(--gold); margin-bottom: 8px; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a { text-decoration: none; color: #e8dcc9; }
.footer-links a:hover { color: var(--gold); }
.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-cta .phone-link { color: var(--gold); margin-bottom: 0; }
.footer-note {
  text-align: center;
  color: #a7998a;
  font-size: 0.85rem;
  margin: 40px 0 0;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 6, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 460px;
  width: 100%;
  padding: 40px 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.modal h2 {
  color: var(--terracotta-dark);
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.modal p { color: var(--ink-soft); margin-bottom: 26px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
}
.modal-close:hover { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .about-media-secondary { display: none; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .navbar-inner .btn-order { padding: 10px 18px; font-size: 0.85rem; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 160px; }
  section { padding: 60px 0; }
  .hero-cta { flex-direction: column; align-items: center; }
}
