:root {
  --brand-red: #d62828;
  --brand-red-dark: #a91f1f;
  --brand-gold: #e9b44c;
  --dark: #2b1810;
  --cream: #fdf6ec;
  --cream-alt: #f7ecd9;
  --text: #3a2a1e;
  --font-display: '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 {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--dark);
}

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

/* Order Online Button */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.35);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(214, 40, 40, 0.45);
}

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dark);
}
.logo span { color: var(--brand-red); }

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--brand-red); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,15,10,0.55) 0%, rgba(30,15,10,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--brand-gold);
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: #f2e8da;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-order-hero { padding: 16px 40px; font-size: 1.05rem; }

/* Strip */
.strip {
  background: var(--dark);
  color: #fff;
  padding: 28px 0;
}
.strip-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}
.strip-item { display: flex; flex-direction: column; gap: 4px; }
.strip-item strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--brand-gold); }
.strip-item span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.85; }

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--cream-alt); }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 18px; }
.section-lead { color: #6b5648; font-size: 1.05rem; margin-bottom: 40px; }
.center { text-align: center; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-text p { margin-bottom: 18px; color: #55443a; }
.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;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--brand-gold);
  display: inline-block;
}
.menu-category ul { list-style: none; }
.menu-category li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.12);
  font-weight: 600;
}
.price { color: var(--brand-red); font-weight: 800; }
.menu-note { margin-top: 30px; text-align: center; color: #6b5648; font-size: 0.95rem; }
.menu-note a { color: var(--brand-red); font-weight: 700; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.stars { color: var(--brand-gold); font-size: 1.2rem; margin-bottom: 14px; }
.review-card p { color: #55443a; margin-bottom: 16px; }
.review-author { font-weight: 800; color: var(--dark); margin-bottom: 0 !important; }
.reviews-rating {
  text-align: center;
  margin-top: 40px;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 1.1rem;
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.hours-list { list-style: none; margin: 24px 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-weight: 600;
}
.location-address { margin-bottom: 10px; font-weight: 600; }
.location-phone { margin-bottom: 26px; }
.location-phone a { color: var(--brand-red); font-weight: 800; font-size: 1.1rem; }
.location-map {
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Footer */
.footer {
  background: var(--dark);
  color: #f2e8da;
  padding: 60px 0 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { margin-bottom: 8px; opacity: 0.85; }
.footer-brand a { color: var(--brand-gold); font-weight: 700; }
.footer-hours h4 { color: var(--brand-gold); margin-bottom: 12px; font-family: var(--font-display); }
.footer-hours p { margin-bottom: 6px; opacity: 0.85; }
.footer-cta { display: flex; align-items: center; justify-content: flex-start; }
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 5, 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;
  padding: 44px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal h3 { margin-bottom: 16px; font-size: 1.5rem; }
.modal p { color: #55443a; margin-bottom: 26px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.modal-close:hover { color: var(--brand-red); }
.modal-call { width: 100%; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-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-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
    display: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-order-nav { display: none; }
}
