:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-gold: #f4a300;
  --dark: #241a15;
  --cream: #fdf6ee;
  --text: #2b2118;
  --muted: #6b5d52;
  --border: #e8ddd0;
  --font-head: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

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

h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; }

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

/* Order button — the star of the show */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  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;
  letter-spacing: 0.3px;
  text-align: center;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.45);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.95rem; }
.btn-order--hero { font-size: 1.15rem; padding: 16px 40px; }

.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { background: #fff; color: var(--dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(36, 26, 21, 0.95);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.brand {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
  color: #fff;
}
.brand span { color: var(--brand-gold); }
.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: #f2e8dd;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--brand-gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('../images/photo-01.jpg') center/cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,26,21,0.55) 0%, rgba(36,26,21,0.75) 60%, rgba(36,26,21,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-eyebrow {
  color: var(--brand-gold);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  max-width: 780px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  color: #f2e8dd;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #f2e8dd;
}
.stars { color: var(--brand-gold); letter-spacing: 2px; }

/* Sections */
.section { padding: 90px 0; }
.section-tag {
  color: var(--brand-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 18px;
}
.section-sub {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 40px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* About */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-text p { color: var(--muted); margin-bottom: 18px; }
.about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}
.menu-category h3 {
  font-size: 1.4rem;
  color: var(--brand-red-dark);
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.menu-category ul { list-style: none; }
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.menu-category li:last-child { border-bottom: none; }
.item-name { font-weight: 800; font-size: 1.05rem; }
.item-desc { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }
.menu-note {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.9rem;
}
.menu-note a { color: var(--brand-red); font-weight: 700; }

/* Gallery */
.gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.review-card .stars { display: block; margin-bottom: 12px; }
.review-card p:not(.stars):not(.review-author) { color: var(--text); font-size: 0.96rem; }
.review-author { margin-top: 16px; font-weight: 700; color: var(--brand-red-dark); }
.reviews-overall {
  text-align: center;
  margin-top: 36px;
  font-weight: 700;
  color: var(--muted);
}

/* Location */
.location { background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.location-address { font-size: 1.1rem; margin-bottom: 12px; }
.location-phone {
  display: inline-block;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--brand-red);
  margin-bottom: 24px;
}
.hours-table { width: 100%; margin-bottom: 30px; border-collapse: collapse; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid var(--border); }
.hours-table td:first-child { font-weight: 700; }
.hours-table td:last-child { text-align: right; color: var(--muted); }
.location-map {
  min-height: 340px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.location-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* Footer */
.site-footer { background: var(--dark); color: #f2e8dd; padding: 50px 0 20px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
}
.footer-brand .brand { color: #fff; margin-bottom: 8px; }
.footer-brand p { color: #cbb9a8; margin-top: 4px; }
.footer-brand a { color: var(--brand-gold); font-weight: 700; }
.footer-copy {
  text-align: center;
  color: #8a7a6c;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, 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: 16px;
  max-width: 440px;
  width: 100%;
  padding: 40px 32px;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal h2 { font-size: 1.6rem; margin-bottom: 14px; color: var(--brand-red-dark); }
.modal p { color: var(--muted); 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(--muted);
}
.modal-close:hover { color: var(--brand-red); }
.modal-call { display: inline-block; }

/* 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); }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(36, 26, 21, 0.98);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-order--nav { display: none; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 160px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-order, .hero-cta .btn-secondary { text-align: center; }
}
