:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-orange: #f4a261;
  --ink: #241a17;
  --cream: #fdf7ee;
  --cream-2: #f5ead9;
  --gold: #e9b44c;
  --font-display: '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(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

[hidden] { display: none !important; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand-red);
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; margin: 0 0 16px; }

/* ---------- Buttons ---------- */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  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;
  white-space: nowrap;
}
.btn-order:hover, .btn-order:focus-visible {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(214, 40, 40, 0.45);
}
.btn-order--lg { padding: 16px 38px; font-size: 1.1rem; }
.btn-order--block { display: block; width: 100%; text-align: center; margin-top: 8px; }

.btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { background: #fff; color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
}
.brand-name small { font-family: var(--font-body); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.05em; color: #7a6a5f; text-transform: uppercase; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
}
.main-nav a:hover { color: var(--brand-red); }

.header-actions { display: flex; align-items: center; gap: 12px; }

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mobile-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  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(36,26,23,0.55) 0%, rgba(36,26,23,0.75) 60%, rgba(36,26,23,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 720px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 0.85rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  color: #f2e9dd;
  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: #f2e9dd; }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.section-lead { max-width: 640px; margin: 0 auto 40px; color: #5c4c42; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* About */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-copy p { color: #4a3d35; margin-bottom: 16px; }
.about-media { display: grid; gap: 16px; }
.about-media img { border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,0.15); }

/* Menu */
.menu { 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: 48px;
}
.menu-category h3 {
  font-size: 1.3rem;
  border-bottom: 3px solid var(--brand-red);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.menu-category h3 span { font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; color: #8a7a6d; }
.menu-category ul { list-style: none; padding: 0; margin: 0; }
.menu-category li { margin-bottom: 18px; }
.menu-category li:last-child { margin-bottom: 0; }
.item-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.item-row span:last-child { color: var(--brand-red); white-space: nowrap; }
.menu-category p { margin: 4px 0 0; color: #5c4c42; font-size: 0.95rem; }
.menu-note { text-align: center; margin-top: 40px; color: #8a7a6d; font-size: 0.9rem; }
.menu-note a { color: var(--brand-red); font-weight: 700; }

/* Gallery */
.gallery { background: #fff; }
.gallery h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.gallery-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.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 { background: var(--ink); color: #fff; }
.reviews h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.reviews .section-eyebrow { color: var(--gold); }
.reviews-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  margin: 0;
}
.review-card p { font-size: 1rem; color: #f0e6db; margin: 12px 0 16px; }
.review-card cite { font-weight: 800; color: var(--gold); font-style: normal; }

/* Location */
.location { background: var(--cream-2); }
.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); }
.location-info address { font-style: normal; font-size: 1.1rem; margin-bottom: 8px; display: block; }
.phone-link { display: inline-block; color: var(--brand-red); font-weight: 800; font-size: 1.2rem; text-decoration: none; margin-bottom: 24px; }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.hours-table th, .hours-table td { text-align: left; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.08); font-weight: 600; }
.hours-table th { color: #5c4c42; font-weight: 700; }
.location-map { min-height: 360px; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,0.15); }
.location-map iframe { width: 100%; height: 100%; min-height: 360px; }

/* Footer */
.site-footer { background: var(--ink); color: #f0e6db; padding: 48px 0 24px; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-name { color: #fff; }
.footer-info { text-align: center; }
.footer-info p { margin: 4px 0; }
.footer-info a { color: #f0e6db; text-decoration: none; }
.footer-bottom { text-align: center; padding-top: 20px; font-size: 0.85rem; color: #a8998c; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 12, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.modal {
  position: relative;
  background: var(--cream);
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.modal h2 { font-size: 1.5rem; margin-bottom: 16px; }
.modal p { color: #4a3d35; margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #8a7a6d;
  padding: 6px;
}
.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); }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-order { display: none; }
  .hero-content { padding-top: 60px; padding-bottom: 60px; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-order, .hero-actions .btn-secondary { text-align: center; }
}
