:root {
  --brand-red: #d62828;
  --brand-red-dark: #a51d1d;
  --brand-gold: #f4a300;
  --brand-green: #2d6a4f;
  --ink: #2b1c15;
  --cream: #fdf6ec;
  --cream-2: #f7ecd9;
  --paper: #ffffff;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-md: 0 10px 30px rgba(43, 28, 21, 0.12);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
a { color: inherit; }
.section-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--brand-red-dark);
  margin-bottom: 0.5em;
}
.center { text-align: center; }
.menu-note.center { max-width: 560px; margin: 0 auto 2.5rem; color: #6b5b4d; }

/* Order button */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85em 2em;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.35);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(214, 40, 40, 0.4);
}
.btn-order--hero { font-size: 1.15rem; padding: 1em 2.4em; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85em 2em;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(43, 28, 21, 0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
}
.brand-name small { font-family: var(--font-body); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.04em; color: #6b5b4d; }
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
}
.main-nav a:hover { color: var(--brand-red); }
.main-nav-mobile { display: none; flex-direction: column; padding: 0 24px 20px; gap: 14px; }
.main-nav-mobile a { text-decoration: none; font-weight: 700; color: var(--ink); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span { display: block; width: 100%; height: 3px; background: var(--ink); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  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(43,28,21,0.55) 0%, rgba(43,28,21,0.65) 50%, rgba(43,28,21,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  color: #fff;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--brand-gold);
  margin-bottom: 1em;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 0.6em;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #f2e9da;
  margin-bottom: 1.8em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-weight: 700;
  color: #f2e9da;
}
.stars { color: var(--brand-gold); font-size: 1.1rem; letter-spacing: 2px; }

/* About */
.about { padding: 96px 0; background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-photo img { border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* Menu */
.menu { padding: 96px 0; background: var(--cream-2); }
.menu h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 2rem; }
.menu-category h3 {
  font-size: 1.25rem;
  color: var(--brand-red-dark);
  border-bottom: 3px solid var(--brand-gold);
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
.menu-category ul { list-style: none; padding: 0; margin: 0; }
.menu-category li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0.7em 0;
  border-bottom: 1px dashed rgba(43,28,21,0.15);
}
.menu-category li:last-child { border-bottom: none; }
.dish { font-weight: 800; white-space: nowrap; }
.desc { text-align: right; color: #6b5b4d; font-size: 0.92rem; }
.menu-cta { text-align: center; margin-top: 3rem; }

/* Gallery */
.gallery { padding: 96px 0; background: var(--paper); }
.gallery h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { padding: 96px 0; background: var(--cream-2); }
.reviews h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.review-card p { font-style: italic; color: #3d2c22; }
.review-author { font-weight: 800; font-style: normal; color: var(--brand-red-dark); margin: 0; }

/* Location */
.location { padding: 96px 0; background: var(--paper); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.location-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
address { font-style: normal; font-size: 1.1rem; margin-bottom: 0.5em; }
.phone-link { display: inline-block; font-weight: 800; color: var(--brand-red-dark); text-decoration: none; margin-bottom: 1.5em; font-size: 1.15rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 2em; }
.hours-table th, .hours-table td { text-align: left; padding: 0.5em 0; border-bottom: 1px solid rgba(43,28,21,0.1); font-weight: 600; }
.hours-table th { color: #6b5b4d; font-weight: 700; width: 40%; }
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 320px; }
.location-map iframe { width: 100%; height: 100%; min-height: 320px; }

/* Footer */
.site-footer { background: var(--ink); color: #f2e9da; padding: 56px 0 24px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-name { font-weight: 800; font-size: 1.1rem; margin: 0; }
.footer-brand p { margin: 0; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: #f2e9da; font-weight: 600; }
.footer-links a:hover { color: var(--brand-gold); }
.footer-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-cta .phone-link { color: var(--brand-gold); margin: 0; }
.footer-bottom { text-align: center; color: #a9998a; font-size: 0.85rem; margin: 40px 0 0; }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 28, 21, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.modal h2 { color: var(--brand-red-dark); }
.modal p { margin-bottom: 1.5em; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #6b5b4d;
}
.modal-close:hover { color: var(--brand-red); }

/* 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 { display: none; }
  .header-inner .btn-order--nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav-mobile.open { display: flex; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
  .menu-category li { flex-direction: column; gap: 2px; }
  .desc { text-align: left; }
}
