/* ---------- Base ---------- */
:root {
  --brand-red: #d62828;
  --brand-red-dark: #b01f1f;
  --ink: #201a17;
  --cream: #fdf6ec;
  --gold: #e0a13a;
  --muted: #6b6058;
  --border: #eae1d3;
  --shadow: 0 10px 30px rgba(32, 26, 23, 0.12);
}

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

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.2; margin: 0 0 16px; }

section { padding: 80px 0; }

.center { text-align: center; margin-left: auto; margin-right: auto; }

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

/* ---------- Order Online Button ---------- */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn-order:hover, .btn-order:focus-visible {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.5);
}

.btn-order-lg {
  padding: 18px 44px;
  font-size: 1.15rem;
}

.btn-secondary {
  display: inline-block;
  padding: 18px 36px;
  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-secondary:hover { background: #fff; color: var(--ink); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}

.nav-logo span { color: var(--brand-red); }

.nav-links {
  display: flex;
  gap: 24px;
  margin-right: auto;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--brand-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(20, 14, 10, 0.55), rgba(20, 14, 10, 0.65)), url("../images/photo-01.jpg") center/cover no-repeat;
}

.hero-overlay { position: absolute; inset: 0; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 24px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: 1.15rem;
  margin-bottom: 32px;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.95rem;
}

.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-text p { margin: 0 0 16px; color: var(--muted); }
.about-text h2 { color: var(--ink); }

.about-image img {
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* ---------- Menu ---------- */
.menu { background: #fff; }

.menu-intro { color: var(--muted); max-width: 600px; margin-bottom: 48px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.menu-category h3 {
  color: var(--brand-red);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.menu-category ul { list-style: none; margin: 0; padding: 0; }

.menu-category li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}

.menu-category .price { font-weight: 700; color: var(--ink); white-space: nowrap; }

.menu-note { color: var(--muted); font-size: 0.9rem; margin-top: 40px; font-style: italic; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.gallery-grid img:hover { transform: scale(1.03); }

/* ---------- Reviews ---------- */
.reviews { background: #fff; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.review-card p { color: var(--ink); margin: 12px 0 0; }

.review-author {
  font-weight: 700;
  color: var(--brand-red);
  margin-top: 16px !important;
}

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location-address { font-size: 1.1rem; margin-bottom: 4px; }

.location-phone a {
  color: var(--brand-red);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}

.location-info h3 { margin-top: 32px; }

.hours-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  max-width: 360px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.location-map iframe {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #f3ece2;
  padding: 56px 0 24px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 32px;
}

.footer-grid .nav-logo { color: #fff; margin-bottom: 8px; }
.footer-grid p { margin: 4px 0; color: #cfc4b6; }
.footer-grid a { color: #cfc4b6; }

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a { text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #8a7f72;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  margin: 0;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}

.modal-backdrop[hidden] { display: none; }

.modal {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
}

.modal h2 { color: var(--brand-red); }
.modal p { color: var(--muted); font-size: 1.05rem; }
.modal a { color: var(--brand-red); font-weight: 700; text-decoration: none; }

.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(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-container .btn-order { order: 3; }
  section { padding: 56px 0; }
  .hero { min-height: 80vh; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 160px; }
  .hero-cta { flex-direction: column; }
  .btn-secondary, .btn-order-lg { width: 100%; }
}
