/* ---------- Base ---------- */
:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-gold: #f2a541;
  --dark: #1c1410;
  --cream: #fdf6ec;
  --text: #2b2119;
  --muted: #6b5f54;
  --radius: 14px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

[hidden] { display: none !important; }

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--dark);
}

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

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-red);
  margin: 0 0 8px;
}
.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 12px auto 0;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Order Button ---------- */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(214, 40, 40, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(214, 40, 40, 0.45);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.95rem; }
.btn-order--hero { padding: 16px 38px; font-size: 1.1rem; }

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

/* ---------- 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(0,0,0,0.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--dark);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--brand-red); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url('../images/photo-01.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,20,16,0.55) 0%, rgba(28,20,16,0.75) 60%, rgba(28,20,16,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 100px 24px;
  max-width: 780px;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--brand-gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.stars { color: var(--brand-gold); letter-spacing: 2px; }

/* ---------- About ---------- */
.about { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about-text h2 { font-size: 2.2rem; margin-bottom: 18px; }
.about-text p { margin: 0 0 16px; color: var(--muted); }

/* ---------- Menu ---------- */
.menu { padding: 100px 0; background: #fff; }
.menu h2 { font-size: 2.2rem; margin-bottom: 8px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.menu-category h3 {
  font-size: 1.3rem;
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: 10px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.menu-time {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.item-name { font-weight: 600; }
.item-price { color: var(--brand-red); font-weight: 700; white-space: nowrap; margin-left: 12px; }
.menu-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 40px;
}

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

/* ---------- Reviews ---------- */
.reviews { padding: 100px 0; background: var(--dark); }
.reviews h2 { color: #fff; font-size: 2.2rem; margin-bottom: 48px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  color: rgba(255,255,255,0.85);
}
.review-card .stars { display: block; margin-bottom: 12px; }
.review-author {
  margin-top: 16px;
  font-weight: 700;
  color: #fff;
}

/* ---------- Location ---------- */
.location { padding: 100px 0; background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: stretch;
}
.location-info h2 { font-size: 2.2rem; margin-bottom: 20px; }
.location-info address {
  font-style: normal;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}
.location-phone {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 28px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.hours-table td:first-child { font-weight: 600; }
.hours-table td:last-child { text-align: right; color: var(--muted); }
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 48px 0 24px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { font-size: 1.4rem; color: #fff; margin-bottom: 8px; }
.footer-inner a { color: rgba(255,255,255,0.75); }
.footer-inner a:hover { color: #fff; }
.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.5);
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(28,20,16,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal h2 { font-size: 1.5rem; margin-bottom: 16px; }
.modal p { color: var(--muted); font-size: 1.05rem; }
.modal a { color: var(--brand-red); font-weight: 700; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.modal-close:hover { color: var(--dark); }

/* ---------- 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); }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav-links a {
    padding: 16px 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .nav-links:not(.is-open) { display: none; }
  .btn-order--nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 60px 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-order, .hero-actions .btn-secondary { text-align: center; }
}
