/* ---------- Base ---------- */
:root {
  --brand-red: #e0402a;
  --brand-red-dark: #c22f1b;
  --diner-navy: #1f2a3c;
  --diner-cream: #fdf6ec;
  --diner-yellow: #f4b93e;
  --text-dark: #26241f;
  --text-muted: #5b5850;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.12);
  font-size: 16px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--diner-cream);
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

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

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

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

/* ---------- Order Button (shared) ---------- */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 18px rgba(224, 64, 42, 0.45);
  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 24px rgba(224, 64, 42, 0.55);
}

.btn-order--nav { padding: 10px 24px; font-size: 0.95rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 38px; }
.btn-order--hours { margin-top: 8px; }
.btn-order--footer { padding: 14px 30px; }
.btn-order--modal { margin-top: 12px; }

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  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(--diner-navy);
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(31, 42, 60, 0.97);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  margin-right: auto;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--diner-yellow);
  color: var(--diner-navy);
  font-weight: 800;
  font-size: 1.2rem;
}
.brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  color: #f0ede4;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--diner-yellow); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 24px 24px;
  background: rgba(31, 42, 60, 0.98);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  color: #f0ede4;
  text-decoration: none;
  font-weight: 600;
}
.mobile-menu .btn-order {
  align-self: flex-start;
  margin-top: 8px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  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,20,18,0.55) 0%, rgba(20,20,18,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
  color: #fff;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--diner-yellow);
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.15rem;
  color: #f2f0ea;
  margin-bottom: 32px;
}
.hero-cta-row {
  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-size: 0.95rem;
  color: #f2f0ea;
}
.stars { color: var(--diner-yellow); letter-spacing: 2px; }

/* ---------- Section shared ---------- */
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--brand-red);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.section-sub { color: var(--text-muted); max-width: 640px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

section { padding: 72px 0; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.2rem); }
.about-copy p { color: var(--text-muted); }

/* ---------- Menu ---------- */
.menu { background: #fff; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.menu-category h3 {
  color: var(--diner-navy);
  border-bottom: 3px solid var(--diner-yellow);
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-size: 1.25rem;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #e3ddcc;
}
.menu-category li:last-child { border-bottom: none; }
.price { font-weight: 700; color: var(--brand-red); white-space: nowrap; }
.menu-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 40px;
}

/* ---------- 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: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ---------- Reviews ---------- */
.reviews { background: var(--diner-navy); color: #fff; }
.reviews .section-eyebrow { color: var(--diner-yellow); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px;
  margin: 0;
}
.review-card p {
  font-family: 'Merriweather', serif;
  font-style: italic;
  color: #f2f0ea;
  margin: 10px 0 12px;
}
.review-card cite {
  font-weight: 700;
  color: var(--diner-yellow);
  font-style: normal;
}
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  font-weight: 600;
}

/* ---------- Hours & Location ---------- */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.hours-card address {
  font-style: normal;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #e3ddcc;
  font-weight: 600;
}
.hours-table th { color: var(--diner-navy); width: 40%; }
.hours-table td { color: var(--text-muted); font-weight: 400; }
.phone-line a {
  color: var(--brand-red);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}
.map-embed {
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--diner-navy);
  color: #f0ede4;
  padding: 48px 0 24px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-brand { font-size: 1.2rem; font-weight: 800; color: #fff; }
.site-footer a { color: var(--diner-yellow); text-decoration: none; }
.footer-hours p { margin: 0; }
.footer-note {
  text-align: center;
  color: #a9a58f;
  font-size: 0.85rem;
  margin: 32px 0 0;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,18,15,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal h2 { color: var(--diner-navy); font-size: 1.5rem; }
.modal p { color: var(--text-muted); }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
}
.modal-close:hover { color: var(--brand-red); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .hours-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .btn-order--nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 150px; }
  .hero-content { padding: 64px 20px; }
  section { padding: 56px 0; }
}
