:root {
  --brand-red: #c0392b;
  --brand-red-dark: #a5281c;
  --gold: #d4a24c;
  --ink: #1f1a17;
  --cream: #fdf8f1;
  --cream-2: #f6ece0;
  --muted: #6b5f56;
  --border: #e8dcc9;
  --shadow: 0 12px 30px rgba(31, 26, 23, 0.12);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0 0 0.5em;
  line-height: 1.2;
}

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

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

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

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

/* Buttons */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(192, 57, 43, 0.35);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(192, 57, 43, 0.45);
}
.btn-order:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.btn-order--nav { padding: 10px 24px; font-size: 0.9rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 40px; }

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 241, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-mark {
  background: var(--ink);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 0.85rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 700;
  font-size: 0.95rem;
}
.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(--ink);
  border-radius: 2px;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.mobile-menu a { font-weight: 700; }
.mobile-menu[hidden] { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .btn-order--nav { display: none; }
  .nav-toggle { display: flex; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  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(20, 14, 10, 0.55) 0%, rgba(20, 14, 10, 0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px;
  color: #fff;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 16px;
}
.hero-tagline {
  font-size: 1.15rem;
  margin-bottom: 28px;
  color: #f3ece2;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}
.stars { color: var(--gold); letter-spacing: 2px; }

/* Section basics */
section { padding: 88px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-sub { color: var(--muted); max-width: 560px; margin: 0 auto 20px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* About */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-media img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.about-copy p { color: var(--muted); margin-bottom: 16px; }
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Menu */
.menu { background: var(--cream-2); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.menu-category h3 {
  font-size: 1.3rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.item-name { font-weight: 800; }
.item-desc { color: var(--muted); font-size: 0.92rem; }
.menu-cta { text-align: center; margin-top: 48px; }
@media (max-width: 700px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Reviews */
.reviews { background: var(--cream-2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.review-card p { color: var(--muted); font-size: 0.95rem; margin: 12px 0; }
.review-author { font-weight: 800; color: var(--ink) !important; }
.reviews-summary {
  text-align: center;
  margin-top: 40px;
  font-weight: 700;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.location-info address { font-style: normal; color: var(--muted); margin: 10px 0; }
.location-phone a { font-weight: 800; color: var(--brand-red); font-size: 1.1rem; }
.hours-list { color: var(--muted); margin: 16px 0 24px; }
.location-map iframe { border-radius: 16px; box-shadow: var(--shadow); }
@media (max-width: 800px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #e9ddce;
  padding: 56px 0 24px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
}
.footer-grid p { margin: 6px 0; }
.footer-grid a:hover { color: var(--gold); }
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 700;
}
.footer-copy {
  text-align: center;
  color: #a99a89;
  font-size: 0.85rem;
  margin: 24px 0 0;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal h2 { color: var(--ink); }
.modal p { color: var(--muted); margin-bottom: 24px; }
.modal p a { color: var(--brand-red); font-weight: 800; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.modal-close:hover { color: var(--brand-red); }
