:root {
  --brand-red: #d62828;
  --brand-red-dark: #a91f1f;
  --brand-orange: #f77f00;
  --cream: #fff8ef;
  --cream-dark: #f3e6d3;
  --brown: #3a2418;
  --brown-soft: #6b4f3f;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(58, 24, 24, 0.15);
  --radius: 14px;
  --font-heading: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brown);
  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-heading);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

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

/* Order button — signature pill CTA */
.btn-order {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: 0.02em;
  text-align: center;
}
.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(214, 40, 40, 0.45);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.92rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 38px; }
.btn-order--modal { margin-top: 20px; }

.btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid var(--brown);
  font-weight: 700;
  color: var(--brown);
}
.btn-secondary:hover { background: var(--brown); color: #fff; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 239, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.brand {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--brand-red-dark);
  white-space: nowrap;
}
.brand span { color: var(--brand-orange); }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown-soft);
}
.nav-links a:hover { color: var(--brand-red); }

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

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 12, 8, 0.55) 0%, rgba(30, 12, 8, 0.75) 60%, rgba(30,12,8,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffd8a8;
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.15rem;
  color: #f5ece2;
  margin-bottom: 32px;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #ffe8c9;
}
.stars { color: #ffb703; font-size: 1.1rem; letter-spacing: 2px; }

/* Sections */
.section { padding: 90px 0; }
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--brand-orange);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.center { text-align: center; }
.section h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--brand-red-dark); }

/* About */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text p { color: var(--brown-soft); margin-bottom: 1.1em; }
.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

/* Menu */
.menu { background: var(--cream-dark); }
.menu-intro { color: var(--brown-soft); max-width: 560px; margin: 0 auto 48px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.menu-card h3 {
  color: var(--brand-red-dark);
  font-size: 1.3rem;
  border-bottom: 3px solid var(--brand-orange);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.menu-card ul { list-style: none; margin: 0; padding: 0; }
.menu-card li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px dashed #e6d5bd;
}
.menu-card li:last-child { border-bottom: none; }
.menu-card li span { font-weight: 800; font-size: 1.05rem; }
.menu-card li em {
  font-style: normal;
  color: var(--brown-soft);
  font-size: 0.92rem;
  margin-top: 2px;
}
.menu-cta { text-align: center; margin-top: 48px; }

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

/* Reviews */
.reviews { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow);
}
.review-card p { color: var(--brown-soft); font-size: 1rem; margin: 12px 0; }
.review-card cite { font-weight: 800; color: var(--brand-red-dark); font-style: normal; }

/* Location */
.location { background: var(--cream-dark); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.location-info address { font-style: normal; font-size: 1.1rem; margin-bottom: 12px; display: block; }
.phone-link {
  display: inline-block;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.hours-table { width: 100%; margin-bottom: 32px; border-collapse: collapse; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #e6d5bd;
  font-weight: 600;
}
.hours-table th { color: var(--brown); font-weight: 800; width: 40%; }
.hours-table td { color: var(--brown-soft); }
.location-map iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Footer */
.footer { background: var(--brown); color: #f5ece2; padding: 56px 0 24px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer .brand { color: #fff; }
.footer .brand span { color: var(--brand-orange); }
.footer-brand p, .footer-brand a { color: #d9c6b3; margin: 6px 0; display: block; }
.footer-hours h4 { margin: 0 0 10px; color: #ffb703; font-family: var(--font-heading); }
.footer-hours p { margin: 4px 0; color: #d9c6b3; }
.footer-cta { display: flex; align-items: center; justify-content: flex-start; }
.footer-copy {
  text-align: center;
  color: #a98d78;
  font-size: 0.85rem;
  margin-top: 40px;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 6, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  text-align: center;
}
.modal h2 { color: var(--brand-red-dark); font-size: 1.5rem; }
.modal p { color: var(--brown-soft); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--brown-soft);
}
.modal-close:hover { color: var(--brand-red); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
}
@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-order--nav { padding: 8px 16px; font-size: 0.8rem; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
