:root {
  --brand-red: #d62828;
  --brand-red-dark: #a91f1f;
  --brand-orange: #f77f00;
  --brand-cream: #fff8ec;
  --brand-dark: #211a17;
  --brand-brown: #4a2e22;
  --text-body: #3a2f2a;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--brand-cream);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 8px 16px;
  z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--brand-dark);
  margin: 0 0 0.5em;
}

a { color: var(--brand-red); text-decoration: none; }

/* ---------- Buttons ---------- */
.btn-order {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
  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 10px 24px rgba(214, 40, 40, 0.5);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.95rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 40px; }
.btn-order--footer { padding: 12px 28px; }
.btn-order--modal { margin-top: 20px; }
.btn-order--location { margin-top: 24px; }

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(33, 26, 23, 0.96);
  backdrop-filter: blur(6px);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.brand-mark {
  background: var(--brand-orange);
  color: #211a17;
  font-family: var(--font-display);
  font-weight: 900;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: #f2e9e4;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-orange); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  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(20,14,12,0.75) 0%, rgba(20,14,12,0.55) 45%, rgba(20,14,12,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
  max-width: 720px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--brand-orange);
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  color: #f2e9e4;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #f2e9e4;
}
.stars { color: var(--brand-orange); letter-spacing: 2px; }

/* ---------- Section basics ---------- */
section { padding: 80px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--brand-red);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section-lede {
  max-width: 620px;
  margin: 0 auto 40px;
  color: #6b5a52;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- About ---------- */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-media img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about-copy p { margin-bottom: 18px; color: var(--text-body); }
.about-copy h2 { font-size: 2rem; }

/* ---------- Menu ---------- */
.menu { background: var(--brand-cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.menu-category h3 {
  font-size: 1.4rem;
  border-bottom: 3px solid var(--brand-orange);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li { margin-bottom: 18px; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 600;
  color: var(--brand-dark);
  gap: 12px;
}
.menu-item-name { font-family: var(--font-display); font-size: 1.05rem; }
.menu-item-price { color: var(--brand-red); font-weight: 700; white-space: nowrap; }
.menu-item-desc { margin: 4px 0 0; color: #6b5a52; font-size: 0.92rem; }
.menu-note { margin-top: 40px; text-align: center; color: #6b5a52; font-size: 0.9rem; }

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

/* ---------- Reviews ---------- */
.reviews { background: var(--brand-dark); color: #f2e9e4; }
.reviews .section-eyebrow { color: var(--brand-orange); }
.reviews h2 { color: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  padding: 28px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
}
.review-card p { margin: 0 0 14px; font-size: 0.98rem; }
.review-author { color: var(--brand-orange); font-weight: 600; margin-bottom: 0 !important; }

/* ---------- Location ---------- */
.location { background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.location-info address { font-style: normal; display: block; margin: 12px 0; font-size: 1.05rem; }
.location-phone {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 24px;
}
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #eee0d4;
  font-weight: 500;
}
.hours-table th { color: var(--brand-dark); font-weight: 600; }
.location-map {
  min-height: 340px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.location-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* ---------- Footer ---------- */
.footer { background: var(--brand-dark); color: #f2e9e4; padding: 48px 0 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.footer-info p { margin: 2px 0; color: #cbb9ae; }
.footer-info a { color: #f2e9e4; }
.footer-bottom { padding: 20px 24px; text-align: center; color: #8a776c; font-size: 0.85rem; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,14,12,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 40px;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal h2 { font-size: 1.6rem; margin-bottom: 16px; }
.modal p { color: #6b5a52; margin-bottom: 8px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #9a8a80;
  width: 36px;
  height: 36px;
}
.modal-close:hover { color: var(--brand-dark); }

/* ---------- 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); }
  .nav-links { display: none; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 80px 20px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .footer-inner { flex-direction: column; text-align: center; }
}
