:root {
  --charcoal: #221b17;
  --charcoal-light: #33281f;
  --cream: #fbf4ea;
  --cream-dark: #f0e4d3;
  --brand-orange: #e8541e;
  --brand-orange-dark: #c9410f;
  --gold: #d8a13c;
  --text-dark: #2a221c;
  --text-muted: #6b5f54;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(34, 20, 10, 0.16);
  --font-head: "Poppins", sans-serif;
  --font-body: "Merriweather", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
}

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

h1, h2, h3, .brand { font-family: var(--font-head); }

a { color: inherit; }

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

/* ---------- Buttons ---------- */

.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(232, 84, 30, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-order:hover, .btn-order:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232, 84, 30, 0.5);
}

.btn-order--nav { padding: 10px 24px; font-size: 0.92rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.15); }

/* ---------- Navbar ---------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(34, 27, 23, 0.96);
  backdrop-filter: blur(6px);
}

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

.brand {
  color: var(--cream);
  font-weight: 800;
  font-size: 1.4rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--cream-dark);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
}

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

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

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

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(24, 17, 13, 0.88) 10%, rgba(34, 22, 15, 0.55) 60%, rgba(34, 22, 15, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 720px;
  padding: 120px 24px 100px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--gold);
  margin: 0 0 14px;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin: 0 0 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--cream-dark);
  max-width: 560px;
  margin: 0 0 34px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  color: var(--cream-dark);
}

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

/* ---------- Sections generic ---------- */

section { padding: 90px 0; }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--brand-orange-dark);
  margin: 0 0 10px;
}

.section-sub { color: var(--text-muted); max-width: 560px; }

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

h2 { font-size: 2.2rem; margin: 0 0 22px; color: var(--charcoal); }

/* ---------- About ---------- */

.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

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

.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ---------- Menu ---------- */

.menu { background: var(--cream-dark); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.menu-category h3 {
  font-size: 1.25rem;
  color: var(--brand-orange-dark);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 10px;
  margin: 0 0 18px;
}

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

.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(42, 34, 28, 0.15);
}

.menu-category li:last-child { border-bottom: none; }

.item-name { font-family: var(--font-head); font-weight: 700; }

.item-desc { color: var(--text-muted); font-size: 0.92rem; margin-top: 3px; }

.menu-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.menu-note a { color: var(--brand-orange-dark); font-weight: 700; }

/* ---------- Gallery ---------- */

.gallery { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* ---------- Reviews ---------- */

.reviews { background: var(--charcoal); color: var(--cream); }

.reviews h2, .reviews .section-eyebrow { color: var(--cream); }
.reviews .section-eyebrow { color: var(--gold); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 46px;
}

.review-card {
  background: var(--charcoal-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
}

.review-card p {
  color: var(--cream-dark);
  font-style: italic;
  margin: 14px 0 16px;
  font-size: 0.95rem;
}

.review-card footer {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
}

/* ---------- Hours & Location ---------- */

.hours { background: var(--cream-dark); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.hours-info address {
  font-style: normal;
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--text-dark);
}

.phone-link {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand-orange-dark);
  text-decoration: none;
  margin-bottom: 24px;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(42, 34, 28, 0.18);
  font-size: 0.95rem;
}

.hours-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 360px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--charcoal);
  color: var(--cream-dark);
  padding: 56px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.footer-brand { color: var(--cream); margin: 0 0 10px; }

.footer-grid a { color: var(--cream-dark); text-decoration: none; }

.footer-hours p { margin: 4px 0; font-size: 0.92rem; }

.footer-cta { text-align: right; }

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(251, 244, 234, 0.5);
  margin: 40px 0 0;
}

/* ---------- Modal ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

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

.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  padding: 40px 32px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.modal h2 { font-size: 1.4rem; margin-bottom: 14px; }

.modal p { color: var(--text-muted); margin-bottom: 26px; }

.modal p a { color: var(--brand-orange-dark); font-weight: 700; text-decoration: none; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-close:hover { color: var(--brand-orange-dark); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .about-grid, .hours-grid { grid-template-columns: 1fr; }
  .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: center; }
  .footer-cta { text-align: center; }
  .hero-content h1 { font-size: 2.4rem; }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(34, 27, 23, 0.98);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-order--nav { padding: 9px 18px; font-size: 0.85rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero-content { padding: 100px 20px 70px; }
}
