/* ---------- Base ---------- */
:root {
  --brand-red: #d3202a;
  --brand-red-dark: #a8171f;
  --brand-orange: #e8792c;
  --brand-dark: #2b1a17;
  --brand-cream: #fdf6ec;
  --brand-tan: #f3e3cc;
  --text-dark: #2b1a17;
  --text-muted: #6b5c53;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--brand-cream);
  line-height: 1.6;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--brand-dark);
}

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

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--brand-orange);
  margin-bottom: 8px;
}

.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

section { padding: 80px 0; }

/* ---------- Order Button ---------- */
.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 6px 18px rgba(211, 32, 42, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-order:hover, .btn-order:focus-visible {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(211, 32, 42, 0.45);
}

.btn-order-lg {
  font-size: 1.15rem;
  padding: 18px 44px;
}

.btn-secondary {
  display: inline-block;
  padding: 18px 36px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--brand-dark);
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.97);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brand-dark);
}

.brand-mark {
  background: var(--brand-orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--brand-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--brand-dark);
  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;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,26,23,0.55) 0%, rgba(43,26,23,0.75) 60%, rgba(43,26,23,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 720px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--brand-orange);
  margin-bottom: 16px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: #f0e6da;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #f0e6da;
}

.stars { color: var(--brand-orange); font-size: 1.1rem; letter-spacing: 2px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img {
  border-radius: 16px;
  object-fit: cover;
}

.about-img-1 {
  width: 78%;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.about-img-2 {
  position: absolute;
  width: 46%;
  aspect-ratio: 4/5;
  bottom: -30px;
  right: 0;
  border: 6px solid var(--brand-cream);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

/* ---------- Menu ---------- */
.menu { background: var(--brand-tan); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.menu-category {
  background: var(--brand-cream);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(43,26,23,0.06);
}

.menu-category h3 {
  color: var(--brand-red);
  font-size: 1.3rem;
  border-bottom: 2px solid var(--brand-orange);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.menu-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(43,26,23,0.15);
}

.menu-category li:last-child { border-bottom: none; }

.item-name {
  font-weight: 800;
  color: var(--brand-dark);
}

.item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.menu-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover { transform: scale(1.04); }

/* ---------- Reviews ---------- */
.reviews { background: var(--brand-dark); }
.reviews h2, .reviews .section-eyebrow { color: #fff; }
.reviews .section-eyebrow { color: var(--brand-orange); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.review-card {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  margin: 0;
  color: #f0e6da;
}

.review-card p { margin: 12px 0 0; font-style: italic; }

.review-card footer {
  margin-top: 16px;
  font-weight: 800;
  color: var(--brand-orange);
  font-style: normal;
}

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.location-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

.location-info address {
  font-style: normal;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.location-phone {
  display: inline-block;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.hours-table {
  width: 100%;
  max-width: 380px;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid rgba(43,26,23,0.12);
  font-weight: 600;
}

.hours-table th { color: var(--text-muted); font-weight: 700; }

.location-map {
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(43,26,23,0.1);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-dark);
  color: #f0e6da;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-grid .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-left: 8px;
}

.footer-grid p { margin: 12px 0 4px; color: #cbb9ac; }
.footer-grid a { color: #f0e6da; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-note {
  text-align: center;
  color: #8c7a6e;
  font-size: 0.85rem;
  margin-top: 40px;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43,26,23,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

.modal-backdrop[hidden] { display: none; }

.modal {
  position: relative;
  background: var(--brand-cream);
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.modal h3 {
  color: var(--brand-red);
  font-size: 1.5rem;
}

.modal p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 50%;
}

.modal-close:hover { background: rgba(43,26,23,0.08); }

.modal-call { display: inline-block; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .about-images { margin-bottom: 40px; }
}

@media (max-width: 700px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-cream);
    flex-direction: column;
    padding: 16px 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .navbar .btn-order { padding: 10px 20px; font-size: 0.9rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 56px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-order-lg, .hero-actions .btn-secondary { text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 150px; }
}
