:root {
  --brand-red: #d62828;
  --brand-red-dark: #a91d1d;
  --brand-gold: #f4a300;
  --ink: #23201d;
  --cream: #fdf6ec;
  --cream-dark: #f4e9d8;
  --font-head: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, 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;
}

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

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

h2 {
  font-size: 2rem;
  text-align: center;
  color: var(--brand-red-dark);
  position: relative;
  margin-bottom: 40px;
}
h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--brand-gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Order Button */
.btn-order {
  background: var(--brand-red);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.5);
}
.btn-order-lg {
  padding: 18px 44px;
  font-size: 1.15rem;
}

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--brand-gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--ink);
  text-decoration: none;
}
.logo span { color: var(--brand-red); }
.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-red); }

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: url('../images/photo-01.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35,32,29,0.55) 0%, rgba(35,32,29,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
  padding: 60px 24px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 32px;
  opacity: 0.95;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About */
.about {
  padding: 80px 0;
  background: var(--cream);
}
.about h2 { text-align: left; }
.about h2::after { margin-left: 0; }
.about p {
  font-size: 1.05rem;
  max-width: 800px;
}

/* Menu */
.menu {
  padding: 80px 0;
  background: var(--cream-dark);
}
.menu-intro {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 40px;
  color: #5a5248;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category h3 {
  color: var(--brand-red-dark);
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: 8px;
}
.menu-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed #d8c9ad;
}
.menu-category li span {
  font-weight: 700;
}
.menu-category li em {
  font-style: normal;
  color: #6b6154;
  font-size: 0.9rem;
}

/* Gallery */
.gallery {
  padding: 80px 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.04); }

/* Reviews */
.reviews {
  padding: 80px 0;
  background: var(--cream-dark);
}
.rating-summary {
  text-align: center;
  margin-bottom: 40px;
}
.rating-score {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--brand-red-dark);
}
.rating-stars {
  color: var(--brand-gold);
  font-size: 1.5rem;
  margin: 0 12px;
}
.rating-count {
  color: #6b6154;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  margin: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-top: 4px solid var(--brand-red);
}
.review-card p {
  margin: 0 0 12px;
  font-style: italic;
}
.review-card cite {
  font-weight: 700;
  color: var(--brand-red-dark);
}

/* Location */
.location {
  padding: 80px 0;
  background: var(--cream);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #d8c9ad;
}
.location-info a {
  color: var(--brand-red-dark);
  font-weight: 700;
  text-decoration: none;
}
.location-map {
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.location-map iframe {
  width: 100%;
  height: 100%;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #f4e9d8;
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin: 0 0 4px;
  color: #fff;
}
.site-footer a {
  color: var(--brand-gold);
  text-decoration: none;
}

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

/* Responsive */
@media (max-width: 800px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .navbar-inner { flex-wrap: wrap; }
}
