:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --masa: #fdf6ec;
  --ink: #2b2320;
  --ink-soft: #5c5049;
  --gold: #f2a541;
  --green: #2f6b3a;
  --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(--ink);
  background: var(--masa);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; margin: 0 0 16px; color: var(--ink); }
.center { text-align: center; }

.section-eyebrow {
  color: var(--brand-red);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 8px;
}

/* Buttons */
.btn-order {
  background: var(--brand-red);
  color: #fff;
  border: none;
  font-weight: 800;
  font-family: var(--font-body);
  padding: 14px 32px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  display: inline-block;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(214, 40, 40, 0.45);
}
.btn-order-lg { padding: 18px 42px; font-size: 1.15rem; }

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(43,35,32,0.08);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--ink);
  white-space: nowrap;
}
.logo span { color: var(--brand-red); }

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--brand-red); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(20,10,8,0.55), rgba(20,10,8,0.65)), url('../images/photo-01.jpg') center/cover no-repeat;
  color: #fff;
}
.hero-overlay { position: absolute; inset: 0; }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero h1 {
  color: #fff;
  font-size: 3.1rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating { font-weight: 700; color: rgba(255,255,255,0.9); }
.stars { color: var(--gold); letter-spacing: 2px; }

/* About */
.about { padding: 90px 0; background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about-text h2 { font-size: 2.2rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }

/* Menu */
.menu { padding: 90px 0; background: var(--masa); }
.menu h2 { font-size: 2.2rem; }
.menu-note { color: var(--ink-soft); margin-bottom: 40px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.menu-category {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 8px 24px rgba(43,35,32,0.06);
  border-top: 4px solid var(--brand-red);
}
.menu-category h3 {
  font-size: 1.3rem;
  color: var(--brand-red-dark);
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(43,35,32,0.15);
}
.menu-category li:last-child { border-bottom: none; }
.menu-category li span { font-weight: 700; }
.menu-category li em { font-style: normal; color: var(--ink-soft); font-size: 0.9rem; }
.menu-disclaimer { margin-top: 32px; color: var(--ink-soft); font-size: 0.9rem; }

/* Gallery */
.gallery { padding: 90px 0; background: #fff; }
.gallery h2 { font-size: 2.2rem; margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  border-radius: 12px;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { padding: 90px 0; background: var(--masa); }
.reviews h2 { font-size: 2.2rem; margin-bottom: 40px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(43,35,32,0.06);
}
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { color: var(--ink-soft); }
.review-author { font-weight: 800; color: var(--ink); margin-top: 12px; }
.reviews-summary { margin-top: 36px; font-weight: 700; font-size: 1.1rem; }

/* Location */
.location { padding: 90px 0; background: #fff; }
.location h2 { font-size: 2.2rem; margin-bottom: 40px; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}
.location-info h3 {
  font-size: 1.05rem;
  color: var(--brand-red-dark);
  margin-top: 24px;
  margin-bottom: 6px;
}
.location-info h3:first-child { margin-top: 0; }
.location-info p { color: var(--ink-soft); margin: 0 0 4px; }
.location-info a { font-weight: 700; }
.hours-list { list-style: none; padding: 0; margin: 0 0 28px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(43,35,32,0.08);
  color: var(--ink-soft);
  font-weight: 600;
}
.hours-list li span:first-child { color: var(--ink); }
.location-map {
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(43,35,32,0.1);
}
.location-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* Footer */
.footer { background: #1d1512; color: rgba(255,255,255,0.85); padding: 56px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { margin-bottom: 12px; }
.footer-logo span { color: var(--gold); }
.footer a:hover { color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin: 24px 0 0;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,10,8,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal h3 { color: var(--brand-red-dark); font-size: 1.5rem; }
.modal p { color: var(--ink-soft); margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
}
.modal-close:hover { color: var(--brand-red); }
.modal-call { width: 100%; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-links { align-items: center; }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--masa);
    flex-direction: column;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid rgba(43,35,32,0.08);
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 16px 0; width: 100%; text-align: center; }
  .hamburger { display: flex; }
  .nav-inner .btn-order { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
