/* ===== Variables ===== */
:root {
  --color-brand-red: #d62828;
  --color-brand-red-dark: #a81e1e;
  --color-brand-orange: #f4a11c;
  --color-ink: #241a17;
  --color-ink-soft: #4a3a34;
  --color-cream: #fdf6ee;
  --color-cream-dark: #f5e9d8;
  --color-white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-pill: 999px;
  --shadow-soft: 0 12px 30px rgba(36, 26, 23, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-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 0 0.5em; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: var(--color-white);
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 1000;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-transform: uppercase;
}
.btn-order {
  background: var(--color-brand-red);
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
}
.btn-order:hover, .btn-order:focus-visible {
  background: var(--color-brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(214, 40, 40, 0.5);
}
.btn-large { padding: 16px 36px; font-size: 1.05rem; }
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.8);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.15);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(253, 246, 238, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(36, 26, 23, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-ink);
  white-space: nowrap;
}
.logo-mark { font-size: 1.6rem; }
.logo-text em { font-style: normal; color: var(--color-brand-red); }

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover { color: var(--color-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;
  width: 100%;
  height: 3px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  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(36,20,15,0.55) 0%, rgba(36,20,15,0.7) 55%, rgba(20,12,9,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: 80px 24px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-orange, #f4a11c);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 900;
  margin-bottom: 18px;
}
.hero-tagline {
  max-width: 620px;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
}
.stars { color: var(--color-brand-orange); letter-spacing: 2px; }

/* ===== Section shared ===== */
section { padding: 90px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-brand-red);
  margin-bottom: 10px;
}
.section-lead {
  max-width: 560px;
  color: var(--color-ink-soft);
}
.center { text-align: center; margin-left: auto; margin-right: auto; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }

/* ===== About ===== */
.about { background: var(--color-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-text p { color: var(--color-ink-soft); }
.about-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.about-media img:first-child { margin-top: 40px; }

/* ===== Menu ===== */
.menu { background: var(--color-cream-dark); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.menu-category {
  background: var(--color-white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.menu-category h3 {
  font-size: 1.4rem;
  color: var(--color-brand-red-dark);
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-bottom: 2px solid var(--color-cream-dark);
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.menu-category h3 span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ink-soft);
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(36,26,23,0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-category li:last-child { border-bottom: none; }
.item-name { font-weight: 800; }
.item-desc { color: var(--color-ink-soft); font-size: 0.92rem; }

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

/* ===== Reviews ===== */
.reviews { background: var(--color-cream-dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px;
}
.review-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 32px;
  margin: 0;
  box-shadow: var(--shadow-soft);
}
.review-card .stars { color: var(--color-brand-orange); margin-bottom: 14px; display: block; }
.review-card p { color: var(--color-ink-soft); font-style: italic; }
.review-card cite { font-weight: 800; font-style: normal; color: var(--color-ink); }
.reviews-summary {
  text-align: center;
  margin: 40px 0 0;
  font-weight: 800;
  color: var(--color-brand-red-dark);
}

/* ===== Location ===== */
.location { background: var(--color-white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
address { font-style: normal; color: var(--color-ink-soft); margin-bottom: 10px; display: block; }
.phone-link { font-weight: 800; font-size: 1.1rem; color: var(--color-brand-red); }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 28px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid rgba(36,26,23,0.1);
  font-weight: 600;
}
.hours-table th { color: var(--color-ink-soft); font-weight: 700; width: 40%; }
.location-map {
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.location-map iframe { width: 100%; height: 100%; }

/* ===== Footer ===== */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.85);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 50px 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
}
.footer-brand .logo-text em { font-style: normal; color: var(--color-brand-orange); }
.footer-info p { margin: 0 0 4px; font-size: 0.95rem; }
.footer-info a:hover { color: var(--color-brand-orange); }
.footer-bottom {
  text-align: center;
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

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

/* ===== 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(2, 1fr); }
  .about-media img:first-child { margin-top: 0; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .main-nav { position: relative; }
  .nav-links {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    min-width: 200px;
  }
  .nav-links[hidden] { display: none; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
  }
  .nav-links a:hover { background: var(--color-cream-dark); }
  .header-inner { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}
