/* ---------- Variables & Reset ---------- */
:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-orange: #f2a007;
  --brand-green: #2f5233;
  --ink: #241a15;
  --ink-soft: #4a3a30;
  --cream: #fdf6ec;
  --cream-dark: #f4e6cf;
  --white: #ffffff;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
  --radius: 14px;
  --shadow: 0 10px 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; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand-red);
  color: var(--white);
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Order Button ---------- */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}
.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.45);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.92rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 38px; }
.btn-order--location { margin-top: 24px; }
.btn-order--modal { margin-top: 20px; }

.btn-secondary {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { background: var(--white); color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(253, 246, 236, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(36, 26, 21, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--ink);
  white-space: nowrap;
}
.logo span { color: var(--brand-red); }
.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 2px;
}
.main-nav a:hover { color: var(--brand-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg 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) 60%, rgba(20,12,9,0.9) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 720px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-orange);
  margin: 0 0 14px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.92);
  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: 700;
  font-size: 0.95rem;
}
.stars { color: var(--brand-orange); letter-spacing: 2px; }

/* ---------- Section basics ---------- */
section { padding: 90px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--brand-red);
  margin: 0 0 10px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}
.section-sub { color: var(--ink-soft); max-width: 560px; margin: 0 auto 40px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- About ---------- */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-media-secondary {
  position: absolute;
  width: 55% !important;
  height: 220px !important;
  bottom: -30px;
  right: -30px;
  border: 6px solid var(--white);
}
.about-text p { color: var(--ink-soft); margin: 0 0 18px; }
.about-text h2 { margin-bottom: 20px; }

/* ---------- Menu ---------- */
.menu { background: var(--cream-dark); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.menu-category h3 {
  color: var(--brand-red);
  font-size: 1.4rem;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: 12px;
}
.menu-category li { margin-bottom: 16px; }
.menu-category li:last-child { margin-bottom: 0; }
.menu-item-name {
  display: block;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.menu-item-desc {
  display: block;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.menu-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-top: 32px;
  font-style: italic;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-pattern {
  border-radius: var(--radius);
  height: 220px;
  background: repeating-linear-gradient(45deg, var(--brand-red) 0, var(--brand-red) 12px, var(--brand-orange) 12px, var(--brand-orange) 24px);
  opacity: 0.85;
}

/* ---------- Reviews ---------- */
.reviews { background: var(--cream-dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin: 0;
}
.review-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 14px 0 16px;
}
.review-card cite {
  font-weight: 800;
  font-style: normal;
  color: var(--ink);
}

/* ---------- Location ---------- */
.location { background: var(--white); }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.location-info address {
  font-style: normal;
  font-size: 1.1rem;
  margin: 16px 0 8px;
  color: var(--ink-soft);
}
.phone-line { margin-bottom: 32px; }
.phone-line a {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-red);
}
.location-info h3 { margin-bottom: 16px; font-size: 1.3rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-weight: 600;
}
.hours-list li span:first-child { color: var(--ink); }
.hours-list li span:last-child { color: var(--ink-soft); }
.location-map {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.location-map iframe { width: 100%; height: 100%; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 0 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo { color: var(--cream); margin-bottom: 8px; }
.footer-brand p { margin: 4px 0; color: rgba(253,246,236,0.75); }
.footer-brand a { color: var(--brand-orange); font-weight: 700; }
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a { color: rgba(253,246,236,0.85); font-weight: 600; }
.footer-nav a:hover { color: var(--brand-orange); }
.footer-bottom {
  padding: 22px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(253,246,236,0.55);
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 9, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  max-width: 460px;
  width: 100%;
  padding: 40px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.modal h2 { font-size: 1.6rem; margin-bottom: 16px; color: var(--ink); }
.modal p { color: var(--ink-soft); margin-bottom: 8px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
}
.modal-close:hover { color: var(--brand-red); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-inner, .location-inner { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-media-secondary { display: none; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 20px;
    box-shadow: 0 12px 20px rgba(36,26,21,0.1);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .main-nav a { width: 100%; padding: 10px 0; }
  .nav-toggle { display: flex; }
  .btn-order--nav { padding: 9px 18px; font-size: 0.85rem; }
  .header-inner { flex-wrap: nowrap; gap: 12px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .location-map { height: 320px; }
  section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-order, .hero-actions .btn-secondary { text-align: center; }
}
