/* ---------- Variables ---------- */
:root {
  --color-bg: #fffaf3;
  --color-bg-alt: #fdf1e3;
  --color-text: #2b1e17;
  --color-text-soft: #5a4a3f;
  --color-primary: #d6321e;      /* chili red - order button */
  --color-primary-dark: #a8250f;
  --color-accent: #2f6b3f;       /* palm green */
  --color-accent-soft: #e9f2e6;
  --color-gold: #e0a13a;
  --color-border: #efe1cf;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-soft: 0 12px 30px -12px rgba(43, 30, 23, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary-dark); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 .5em; line-height: 1.15; color: var(--color-text); }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- Order Button (brand CTA) ---------- */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px -6px rgba(214, 50, 30, 0.55);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-order:hover, .btn-order:focus-visible {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -6px rgba(168, 37, 15, 0.6);
}
.btn-order--hero { font-size: 1.15rem; padding: 18px 40px; }
.btn-order--modal { margin-top: 8px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border-radius: var(--radius-pill);
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  background: transparent;
}
.btn-secondary:hover { background: rgba(255,255,255,.15); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-text);
  margin-right: auto;
}
.logo em { color: var(--color-primary); font-style: normal; }
.logo-icon { font-size: 1.4rem; }
.main-nav {
  display: flex;
  gap: 28px;
  margin-right: 24px;
}
.main-nav a {
  color: var(--color-text-soft);
  font-weight: 600;
  font-size: .95rem;
}
.main-nav a:hover { color: var(--color-primary); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--color-border);
}
.mobile-nav a {
  padding: 10px 0;
  color: var(--color-text-soft);
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav .btn-order { margin-top: 14px; width: 100%; }
.mobile-nav.is-open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
}
.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: .85rem;
  color: var(--color-gold);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  margin-bottom: 18px;
}
.hero-tagline {
  font-size: 1.15rem;
  color: #f2e9de;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  color: #f2e9de;
  font-size: .95rem;
}
.stars { color: var(--color-gold); letter-spacing: 2px; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  font-size: .8rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.section-intro { color: var(--color-text-soft); max-width: 560px; margin: 0 auto 40px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* About */
.about { background: var(--color-bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 20px;
}
.menu-category {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.menu-category h3 {
  color: var(--color-primary-dark);
  font-size: 1.3rem;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-border);
  font-weight: 600;
}
.menu-list li:last-of-type { border-bottom: none; }
.menu-list .price { color: var(--color-accent); font-weight: 800; white-space: nowrap; }
.menu-note {
  font-weight: 500 !important;
  color: var(--color-text-soft);
  font-size: .85rem;
  font-style: italic;
  padding-top: 12px !important;
  justify-content: flex-start !important;
}
.menu-disclaimer {
  text-align: center;
  color: var(--color-text-soft);
  font-size: .9rem;
  margin-top: 32px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { background: var(--color-accent-soft); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow-soft);
}
.review-card p { color: var(--color-text-soft); font-size: .98rem; }
.review-card footer { font-weight: 800; color: var(--color-text); }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.hours-list { list-style: none; margin: 0 0 24px; padding: 0; max-width: 360px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 600;
}
.location-address, .location-phone { font-weight: 700; font-size: 1.05rem; }
.location-phone a { color: var(--color-primary); }
.location-map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #221510;
  color: #f2e9de;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-logo { color: #fff; font-size: 1.2rem; margin-bottom: 12px; }
.site-footer a { color: #f2e9de; }
.footer-hours h4 { color: #fff; margin-bottom: 10px; }
.footer-cta { display: flex; justify-content: flex-start; }
.footer-bottom {
  text-align: center;
  margin: 40px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #b7a596;
  font-size: .85rem;
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
  text-align: center;
}
.modal h2 { color: var(--color-primary-dark); font-size: 1.5rem; }
.modal p { color: var(--color-text-soft); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-soft);
}
.modal-close:hover { color: var(--color-primary); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .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; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .btn-order--nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 100vh; padding-top: 110px; }
  .section { padding: 56px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 160px; }
}
