/* ---- Variables ---- */
:root {
  --color-bg: #fdf6ec;
  --color-cream: #fff8ee;
  --color-text: #2c1c14;
  --color-text-soft: #5a4436;
  --color-brand-red: #d62828;
  --color-brand-red-dark: #b31f1f;
  --color-brand-orange: #f2994a;
  --color-teal: #0f5257;
  --color-gold: #e8b84b;
  --color-border: #e8dcc8;
  --shadow-soft: 0 10px 30px rgba(44, 28, 20, 0.12);
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-heading); margin: 0 0 0.5em; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-eyebrow {
  color: var(--color-brand-red);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }

/* ---- Order Button ---- */
.btn-order {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-brand-red), var(--color-brand-red-dark));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-pill);
  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, .btn-order:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(214, 40, 40, 0.45);
}
.btn-order--large { padding: 18px 42px; font-size: 1.1rem; }

.btn-secondary {
  display: inline-block;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(2px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

/* ---- Navbar ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-heading); font-weight: 900; font-size: 1.5rem; color: var(--color-brand-red); }
.brand-sub { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-teal); font-weight: 700; }

.nav-links { display: flex; gap: 28px; }
.nav-links a { font-weight: 700; color: var(--color-text-soft); font-size: 0.95rem; }
.nav-links a:hover { color: var(--color-brand-red); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  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(20,10,8,0.55) 0%, rgba(20,10,8,0.72) 60%, rgba(20,10,8,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 900; margin-bottom: 20px; }
.hero-tagline { font-size: 1.15rem; opacity: 0.92; margin-bottom: 34px; }
.hero-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-rating { display: flex; gap: 10px; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; opacity: 0.95; }
.stars { color: var(--color-gold); font-size: 1.1rem; letter-spacing: 2px; }

/* ---- About ---- */
.about { background: var(--color-cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 45%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--color-bg);
  box-shadow: var(--shadow-soft);
}
.about-copy p { color: var(--color-text-soft); margin-bottom: 18px; }
.about-copy h2 { color: var(--color-text); }

/* ---- Menu ---- */
.menu-intro { max-width: 560px; margin-bottom: 50px; color: var(--color-text-soft); font-size: 1.05rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.menu-category h3 {
  color: var(--color-teal);
  border-bottom: 3px solid var(--color-gold);
  padding-bottom: 12px;
  margin-bottom: 20px;
  font-size: 1.35rem;
}
.menu-item { padding: 14px 0; border-bottom: 1px dashed var(--color-border); }
.menu-category li:last-child .menu-item { border-bottom: none; }
.menu-item-name { display: block; font-weight: 800; font-size: 1.05rem; margin-bottom: 4px; }
.menu-item-desc { display: block; color: var(--color-text-soft); font-size: 0.92rem; }
.menu-footnote { text-align: center; margin-top: 50px; color: var(--color-text-soft); font-size: 0.95rem; }
.menu-footnote a { color: var(--color-brand-red); font-weight: 700; }

/* ---- Gallery ---- */
.gallery { background: var(--color-cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--color-teal), #0a3a3d);
  border-radius: 14px;
  color: #fff;
  height: 220px;
  text-align: center;
  padding: 16px;
}
.gallery-cta p { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin: 0; }

/* ---- Reviews ---- */
.reviews-summary { display: flex; gap: 10px; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 44px; color: var(--color-text-soft); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review-card {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card p { font-size: 0.98rem; color: var(--color-text-soft); margin: 0; }
.review-card cite { font-weight: 800; color: var(--color-teal); font-style: normal; }

/* ---- Location ---- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.location-info address { font-size: 1.1rem; font-style: normal; margin-bottom: 6px; color: var(--color-text-soft); }
.location-phone { margin-bottom: 26px; }
.location-phone a { font-size: 1.2rem; font-weight: 800; color: var(--color-brand-red); }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.hours-table th, .hours-table td { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--color-border); font-weight: 700; }
.hours-table th { color: var(--color-text); font-weight: 700; }
.hours-table td { text-align: right; color: var(--color-text-soft); font-weight: 600; }
.hours-table tr.closed td { color: var(--color-brand-red); font-weight: 800; }
.location-map { min-height: 360px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.location-map iframe { width: 100%; height: 100%; min-height: 360px; }

/* ---- Footer ---- */
.footer { background: #201310; color: #f3e8dc; padding: 60px 0 20px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand p { color: #cbb6a5; margin: 6px 0; }
.footer-brand a { color: #f3e8dc; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: #cbb6a5; font-weight: 600; }
.footer-links a:hover { color: #fff; }
.footer-cta { display: flex; align-items: flex-start; justify-content: flex-end; }
.footer-copy { text-align: center; color: #8a7466; font-size: 0.85rem; margin-top: 24px; }

/* ---- Modal ---- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 8, 0.65);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.modal h2 { color: var(--color-brand-red); font-size: 1.6rem; margin-bottom: 16px; }
.modal p { color: var(--color-text-soft); margin-bottom: 24px; font-size: 1.05rem; }
.modal p a { color: var(--color-teal); font-weight: 800; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  color: var(--color-text);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { background: var(--color-brand-red); color: #fff; }

/* ---- Responsive ---- */
@media (max-width: 940px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta { justify-content: flex-start; }
  .about-img-accent { width: 40%; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
  }
  .nav-links[hidden] { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-order { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 160px; }
  .about-img-accent { display: none; }
  section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .hero-cta-row .btn-order, .hero-cta-row .btn-secondary { width: 100%; max-width: 300px; }
}
