:root {
  --brand-red: #d62828;
  --brand-red-dark: #a91f1f;
  --brand-gold: #e8a33d;
  --ink: #241a15;
  --cream: #fdf7ee;
  --cream-2: #f6ece0;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  --radius-lg: 18px;
  --shadow: 0 12px 30px rgba(36, 26, 21, 0.15);
}

* { 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 {
  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: 0; }

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

/* Order button — the star of the show */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.4);
  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 12px 26px rgba(214, 40, 40, 0.5);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.95rem; }
.btn-order--hero { padding: 16px 40px; font-size: 1.1rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  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); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 247, 238, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--brand-red);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px 24px;
}
.mobile-menu a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}
.mobile-menu.open { display: flex; }

@media (max-width: 820px) {
  .nav-links, .navbar-inner > .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(36,20,15,0.55) 0%, rgba(36,20,15,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  color: #fff;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand-gold);
  margin-bottom: 12px;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  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;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}
.stars { color: var(--brand-gold); letter-spacing: 2px; }

/* Sections */
.section { padding: 80px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand-red);
  margin-bottom: 6px;
}
.section-sub { max-width: 640px; color: #5a4c42; margin-bottom: 40px; }

/* About */
.about { background: var(--cream-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.about-text p { margin-bottom: 16px; color: #4a3d34; }
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}
.menu-category {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.menu-category h3 {
  color: var(--brand-red);
  font-size: 1.25rem;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--cream-2);
  padding-bottom: 10px;
}
.menu-category ul { list-style: none; padding: 0; margin: 0; }
.menu-category li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed #e6d9c8;
}
.menu-category li:last-child { border-bottom: none; }
.price { font-weight: 800; color: var(--brand-gold); white-space: nowrap; }
.menu-cta { text-align: center; margin-top: 40px; }

@media (max-width: 900px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Reviews */
.reviews { background: var(--cream-2); }
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  margin-bottom: 32px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  margin: 0;
}
.review-card p { font-style: italic; color: #4a3d34; margin: 12px 0; }
.review-card cite { font-weight: 800; color: var(--brand-red); }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.location-info address { font-style: normal; margin: 8px 0 4px; color: #4a3d34; }
.phone-link {
  display: inline-block;
  color: var(--brand-red);
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  margin-bottom: 20px;
}
.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 #e6d9c8;
  font-weight: 600;
}
.hours-table th { color: #5a4c42; font-weight: 700; }
.location-map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
  background: var(--ink);
  color: #f0e6d8;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-brand { color: var(--brand-gold); font-size: 1.4rem; margin-bottom: 8px; }
.footer .phone-link { color: var(--brand-gold); }
.footer-hours p { margin: 4px 0; }
.footer-copy {
  text-align: center;
  margin: 40px 0 0;
  font-size: 0.85rem;
  color: #b5a897;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.modal h2 { color: var(--brand-red); margin-bottom: 14px; }
.modal p { color: #4a3d34; margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #8a7b6c;
}
.modal-close:hover { color: var(--ink); }
