/* ---------- Base ---------- */
:root {
  --color-bg: #fbf6ee;
  --color-ink: #2a1e14;
  --color-ink-soft: #5a4636;
  --color-cream: #fff8ec;
  --color-stone: #efe3cf;
  --color-agave: #1f5c4f;
  --color-agave-dark: #133e35;
  --color-terracotta: #b5501f;
  --color-order: #e0402a;
  --color-order-dark: #b52c19;
  --color-order-text: #fff8ec;
  --shadow-soft: 0 12px 28px rgba(42, 30, 20, 0.14);
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

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

a { color: var(--color-terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

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

.section { padding: 88px 0; }
.section-eyebrow {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--color-terracotta);
  margin-bottom: 0.5em;
}
.section h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); color: var(--color-agave-dark); }
.section-lede { max-width: 640px; color: var(--color-ink-soft); }

/* ---------- Order Button (most striking element) ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-order {
  background: var(--color-order);
  color: var(--color-order-text);
  border-radius: var(--radius-pill);
  padding: 16px 34px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(224, 64, 42, 0.4);
}
.btn-order:hover,
.btn-order:focus-visible {
  background: var(--color-order-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(224, 64, 42, 0.5);
  text-decoration: none;
}

.btn-order--nav {
  padding: 11px 24px;
  font-size: 0.95rem;
}

.btn-order--hero {
  padding: 18px 40px;
  font-size: 1.15rem;
}

.btn-ghost {
  background: transparent;
  color: var(--color-cream);
  border: 2px solid var(--color-cream);
  border-radius: var(--radius-pill);
  padding: 16px 32px;
  font-size: 1.05rem;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 248, 236, 0.15);
  text-decoration: none;
}

.visit .btn-ghost,
.modal .btn-ghost {
  color: var(--color-agave-dark);
  border-color: var(--color-agave-dark);
}
.visit .btn-ghost:hover,
.modal .btn-ghost:hover {
  background: rgba(31, 92, 79, 0.08);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--color-cream);
  border-bottom: 1px solid rgba(42, 30, 20, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-agave-dark);
  margin-right: auto;
}
.brand:hover { text-decoration: none; }
.brand em { color: var(--color-terracotta); font-style: normal; }
.brand-mark { font-size: 1.5rem; }

.site-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: var(--color-ink);
  font-weight: 700;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--color-terracotta); text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--color-ink);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  background: var(--color-cream);
  border-top: 1px solid rgba(42, 30, 20, 0.08);
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-nav a {
  color: var(--color-ink);
  font-weight: 700;
}
.mobile-nav a:hover { color: var(--color-terracotta); text-decoration: none; }

.mobile-nav.is-open { display: block; }

/* ---------- Hero ---------- */
.hero {
  background-size: cover;
  background-position: center;
  color: var(--color-cream);
  padding: 140px 0 100px;
}
.hero-inner { max-width: 720px; }
.hero-eyebrow {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.9;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  opacity: 0.95;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 36px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.badge {
  background: rgba(255, 248, 236, 0.15);
  border: 1px solid rgba(255, 248, 236, 0.4);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-copy p { color: var(--color-ink-soft); }
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ---------- Menu ---------- */
.menu { background: var(--color-stone); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
  margin-top: 40px;
}
.menu-category h3 {
  color: var(--color-agave-dark);
  font-size: 1.4rem;
  border-bottom: 3px solid var(--color-terracotta);
  padding-bottom: 8px;
  margin-bottom: 6px;
}
.menu-category-note {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  font-style: italic;
  margin-bottom: 14px;
}
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(42, 30, 20, 0.15);
}
.item-name { font-weight: 700; }
.item-name em { font-weight: 400; font-style: normal; color: var(--color-ink-soft); display: block; font-size: 0.85rem; }
.item-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-terracotta);
  white-space: nowrap;
}
.menu-cta { text-align: center; margin-top: 48px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}
.gallery-item--wide { grid-column: span 3; aspect-ratio: 16 / 7; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ---------- Reviews ---------- */
.reviews { background: var(--color-agave-dark); color: var(--color-cream); }
.reviews .section-eyebrow { color: #e8b98a; }
.reviews h2 { color: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: rgba(255, 248, 236, 0.07);
  border: 1px solid rgba(255, 248, 236, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
}
.review-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.5;
}
.review-card footer {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e8b98a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stars { color: #f2c14e; letter-spacing: 2px; }

/* ---------- Visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.visit-info address {
  font-style: normal;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.visit-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-terracotta);
  margin-bottom: 24px;
}
.hours-table {
  width: 100%;
  max-width: 380px;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid rgba(42, 30, 20, 0.12);
  font-weight: 400;
}
.hours-table th { font-weight: 700; color: var(--color-agave-dark); }
.visit-map {
  min-height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-ink);
  color: var(--color-stone);
  padding: 56px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 248, 236, 0.12);
}
.footer-brand .brand-text { font-family: var(--font-display); font-size: 1.3rem; color: #fff; }
.footer-brand em { color: #e8b98a; font-style: normal; }
.footer-brand p { margin: 6px 0; color: var(--color-stone); }
.footer-brand a { color: var(--color-stone); }
.footer-hours h3 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.footer-hours p { margin: 4px 0; }
.footer-cta { display: flex; align-items: flex-start; justify-content: flex-end; }
.footer-legal {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 248, 236, 0.5);
  margin: 24px 0 0;
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 40px 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  text-align: center;
}
.modal h2 {
  color: var(--color-agave-dark);
  font-size: 1.6rem;
}
.modal-phone {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 20px 0 28px;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-ink-soft);
}
.modal-close:hover { color: var(--color-terracotta); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cta { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .btn-order--nav { display: none; }
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 72px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
}
