/* ---------- Base ---------- */
:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-gold: #f2a71b;
  --brand-green: #2c5f2d;
  --ink: #24211f;
  --cream: #fdf6ec;
  --cream-dark: #f4e9d8;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.15);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  margin: 0 0 0.5em;
  line-height: 1.15;
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.center { text-align: center; }
.section__eyebrow {
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.4em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 1rem;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn--order {
  background: var(--brand-red);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.45);
}
.btn--order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(214, 40, 40, 0.55);
}
.btn--lg { padding: 16px 36px; font-size: 1.15rem; }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.navbar__brand {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brand-red-dark);
  white-space: nowrap;
}
.navbar__brand span { color: var(--ink); font-weight: 400; font-size: 0.85em; display: block; }
.navbar__links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.navbar__links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.navbar__links a:hover { border-bottom-color: var(--brand-red); }
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar__toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('../images/photo-08.jpg') center/cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,10,8,0.55), rgba(20,10,8,0.75));
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 760px;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 0.6em;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.5em;
}
.hero__tagline {
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 1.6em;
  color: #f4f1ec;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 1.8em;
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.stars { color: var(--brand-gold); font-size: 1.2rem; letter-spacing: 2px; }

/* ---------- About ---------- */
.about { padding: 90px 0; background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.about__img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about__text h2 { font-size: 2rem; }

/* ---------- Menu ---------- */
.menu { padding: 90px 0; background: var(--cream-dark); }
.menu h2 { font-size: 2.1rem; }
.menu__intro { max-width: 600px; margin: 0 auto 50px; }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.menu__category {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.menu__category h3 {
  color: var(--brand-red-dark);
  font-size: 1.3rem;
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.menu__category ul { list-style: none; margin: 0; padding: 0; }
.menu__category li { margin-bottom: 16px; }
.menu__category li:last-child { margin-bottom: 0; }
.menu__category span {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
}
.menu__category em {
  display: block;
  font-style: normal;
  color: #5c564c;
  font-size: 0.92rem;
  margin-top: 2px;
}
.menu__note { margin-top: 40px; color: #7a746a; font-size: 0.9rem; }

/* ---------- Gallery ---------- */
.gallery { padding: 90px 0; background: var(--white); }
.gallery h2 { font-size: 2.1rem; margin-bottom: 40px; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}
.gallery__grid img:hover { transform: scale(1.03); }

/* ---------- Reviews ---------- */
.reviews { padding: 90px 0; background: var(--brand-green); color: var(--white); }
.reviews h2 { font-size: 2.1rem; color: var(--white); }
.reviews .section__eyebrow { color: var(--brand-gold); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 30px;
  margin: 0;
}
.review-card__stars { color: var(--brand-gold); font-size: 1.1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p { font-size: 1.02rem; }
.review-card footer { font-weight: 700; color: var(--brand-gold); }
.reviews__cta { margin-top: 40px; font-size: 1.05rem; }
.reviews__cta .stars { color: var(--brand-gold); }

/* ---------- Location ---------- */
.location { padding: 90px 0; background: var(--cream-dark); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.location__info h2 { font-size: 2.1rem; }
.location__info address {
  font-style: normal;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.location__phone {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-red-dark);
  margin-bottom: 24px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hours-table td {
  padding: 10px 18px;
  border-bottom: 1px solid var(--cream-dark);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-weight: 700; }
.hours-table td:last-child { text-align: right; color: #5c564c; }
.location__map iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #d9d4c9; padding: 50px 0 20px; }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand { font-weight: 700; font-size: 1.1rem; color: var(--white); margin-bottom: 6px; }
.footer address { font-style: normal; margin-bottom: 6px; }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__copy { text-align: center; font-size: 0.85rem; margin: 20px 0 0; color: #96908a; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.modal h2 { color: var(--brand-red-dark); font-size: 1.5rem; }
.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.modal__close:hover { color: var(--ink); }

/* ---------- 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: 720px) {
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }
  .navbar.nav-open .navbar__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid img { height: 180px; }
  .hero { min-height: 100vh; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .btn--lg { width: 100%; }
}
