:root {
  --brand-red: #d9351f;
  --brand-red-dark: #b32a17;
  --brand-green: #2f5233;
  --brand-gold: #f0a83c;
  --ink: #2a1c14;
  --cream: #fff8f0;
  --cream-dark: #f4e8da;
  --card-bg: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(42, 28, 20, 0.12);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

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

/* Buttons */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85em 1.9em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(217, 53, 31, 0.45);
  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 22px rgba(217, 53, 31, 0.55);
}
.btn-order--nav { font-size: 0.95rem; padding: 0.65em 1.5em; }
.btn-order--hero { font-size: 1.1rem; padding: 1em 2.2em; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1em 2em;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}
.nav-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.2rem;
  margin-right: auto;
}
.brand-mark { font-size: 1.5rem; }
.brand-text strong { color: var(--brand-red); }
.main-nav {
  display: flex;
  gap: 22px;
}
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--brand-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: #fff;
  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(180deg, rgba(30,17,10,0.55) 0%, rgba(30,17,10,0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 28px;
  opacity: 0.95;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section { padding: 72px 0; }
.section h2 {
  font-size: 2rem;
  text-align: center;
  color: var(--brand-red);
}
.section-lede {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
  color: #5b4636;
}

/* About */
.about { background: var(--card-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-copy h2 { text-align: left; }
.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
  height: 420px;
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--brand-green);
}
.menu-card h3 {
  color: var(--brand-green);
  font-size: 1.2rem;
}
.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-card li {
  padding: 7px 0;
  border-bottom: 1px dashed var(--cream-dark);
}
.menu-card li:last-child { border-bottom: none; }
.price {
  color: var(--brand-red);
  font-weight: 700;
}

/* Gallery */
.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;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { background: var(--brand-green); color: #fff; }
.reviews h2 { color: #fff; }
.rating-badge {
  text-align: center;
  margin-bottom: 32px;
}
.rating-score {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brand-gold);
  margin-right: 10px;
}
.rating-detail { opacity: 0.85; }
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
  gap: 20px;
}
.review-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
}
.review-card p { font-size: 1.1rem; font-style: italic; }
.review-card footer {
  margin-top: 14px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-stars { color: var(--brand-gold); letter-spacing: 2px; }

/* Hours & Location */
.hours { background: var(--card-bg); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hours-card h2 { text-align: left; }
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  max-width: 360px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.address, .phone { font-weight: 600; margin: 4px 0; }
.phone a { color: var(--brand-red); text-decoration: none; }
.map-embed iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #f1e6da;
  padding: 48px 0 20px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-grid a { color: #f1e6da; }
.footer-brand { font-size: 1.3rem; font-family: Georgia, serif; margin-bottom: 8px; }
.footer-brand strong { color: var(--brand-gold); }
.footer-fine {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  text-align: center;
}
.modal h2 { color: var(--brand-red); font-size: 1.5rem; }
.modal p { margin-bottom: 24px; }
.modal p 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: #8a7364;
}
.modal-close:hover { color: var(--brand-red); }

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

@media (max-width: 700px) {
  .main-nav { display: none; }
  .btn-order--nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-wrap.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 16px 24px;
    border-bottom: 1px solid var(--cream-dark);
  }
  .nav-wrap.nav-open .btn-order--nav {
    display: none;
  }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 90vh; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
