/* ===== Base ===== */
:root {
  --brand-red: #d62828;
  --brand-red-dark: #b31f1f;
  --brand-orange: #f4a11d;
  --ink: #241a14;
  --cream: #fdf7ee;
  --cream-2: #f6ead5;
  --green: #2f6b3f;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(36, 26, 20, 0.15);
}

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

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

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

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: white;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

.section-eyebrow {
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.5em;
}
.center { text-align: center; }

/* ===== Order Button (striking, consistent) ===== */
.btn-order {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.5);
}
.btn-order-lg {
  font-size: 1.15rem;
  padding: 18px 42px;
}
.btn-secondary {
  display: inline-block;
  padding: 18px 32px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(253, 247, 238, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(36,26,20,0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
}
.brand-mark { font-size: 1.8rem; }
.brand-text {
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 700;
}
.nav-links a:hover { color: var(--brand-red); }
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,12,8,0.55) 0%, rgba(20,12,8,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 800px;
  margin-bottom: 20px;
}
.hero-tagline {
  max-width: 600px;
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 32px;
}
.hero-cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.stars { color: var(--brand-orange); letter-spacing: 2px; }

/* ===== About ===== */
.about { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-text h2 { font-size: 2.2rem; }
.about-text p { margin-bottom: 1em; }

/* ===== Menu ===== */
.menu { padding: 90px 0; background: var(--cream-2); }
.menu h2 { font-size: 2.2rem; }
.menu-intro { max-width: 560px; margin: 0 auto 48px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category h3 {
  font-size: 1.4rem;
  border-bottom: 3px solid var(--brand-red);
  padding-bottom: 10px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.menu-time {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
}
.menu-category ul { list-style: none; padding: 0; margin: 0; }
.menu-category li { margin-bottom: 16px; }
.menu-item-name {
  display: block;
  font-weight: 800;
  font-family: 'Fraunces', serif;
}
.menu-item-desc {
  display: block;
  font-size: 0.92rem;
  color: #5a4a3d;
}
.menu-note {
  margin-top: 48px;
  font-size: 0.9rem;
  color: #5a4a3d;
}
.menu-note a { color: var(--brand-red); font-weight: 700; }

/* ===== Gallery ===== */
.gallery { padding: 90px 0; }
.gallery h2 { font-size: 2.2rem; margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.04); }

/* ===== Reviews ===== */
.reviews { padding: 90px 0; background: var(--cream-2); }
.reviews h2 { font-size: 2.2rem; margin-bottom: 40px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.review-text {
  font-style: italic;
  margin: 14px 0;
}
.review-author { font-weight: 800; }
.review-summary {
  margin-top: 36px;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== Location ===== */
.location { padding: 90px 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.location-info h2 { font-size: 2.2rem; }
.location-info address {
  font-style: normal;
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: block;
}
.phone-link {
  display: inline-block;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--brand-red);
  margin-bottom: 24px;
}
.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 rgba(36,26,20,0.1);
  font-weight: 600;
}
.hours-table th { font-weight: 700; }
.location-map {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: #f4ece1;
  padding: 56px 0;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.footer p { margin: 6px 0; }
.footer a:hover { color: var(--brand-orange); }
.footer .btn-order { margin: 20px 0; }
.footer-copy {
  opacity: 0.6;
  font-size: 0.85rem;
  margin-top: 20px;
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,12,8,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: var(--radius);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
}
.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--brand-red);
}
.modal p { margin-bottom: 12px; }
.modal-phone {
  font-weight: 800;
  color: var(--brand-red);
  font-size: 1.2rem;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #999;
  line-height: 1;
}
.modal-close:hover { color: var(--ink); }

/* ===== 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(3, 1fr); }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(36,26,20,0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .navbar-actions .btn-order { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
}
