/* ---------- Base ---------- */
:root {
  --color-brand: #e0472c;
  --color-brand-dark: #b8321c;
  --color-ink: #241a15;
  --color-cream: #fbf4ea;
  --color-cream-2: #f3e6d3;
  --color-gold: #c98a2c;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
  --radius-pill: 999px;
  --shadow-soft: 0 12px 30px rgba(36, 26, 21, 0.14);
}

* { 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; }

.container {
  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: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  z-index: 2000;
}

h1, h2, h3, .logo { font-family: var(--font-display); }

.section { padding: 80px 0; }
.section-eyebrow {
  color: var(--color-brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin: 0 0 8px;
}
.section h2 {
  font-size: 2.2rem;
  margin: 0 0 20px;
  font-weight: 700;
}
.section-lede {
  max-width: 640px;
  color: #5c4c40;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* ---------- Order Button (shared, striking style) ---------- */
.btn-order {
  display: inline-block;
  background: var(--color-brand);
  color: #fff;
  font-weight: 800;
  font-family: var(--font-body);
  text-decoration: none;
  border: none;
  border-radius: var(--radius-pill);
  padding: 16px 34px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(224, 71, 44, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.btn-order:hover, .btn-order:focus-visible {
  background: var(--color-brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(224, 71, 44, 0.5);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.95rem; }
.btn-order--mobile { width: 100%; margin-top: 20px; }
.btn-order--hero { font-size: 1.15rem; padding: 18px 40px; }
.btn-order--visit { margin-top: 8px; }
.btn-order--footer { padding: 12px 28px; }
.btn-order--modal { margin-top: 20px; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 244, 234, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(36, 26, 21, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-ink);
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--color-brand); }

.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 600;
}
.main-nav a:hover { color: var(--color-brand); }

.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;
}

.mobile-nav[hidden] { display: none; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 24px 28px;
  background: var(--color-cream);
  border-top: 1px solid rgba(36, 26, 21, 0.08);
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav a {
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  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(36,20,14,0.55) 0%, rgba(36,20,14,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--color-gold);
  margin: 0 0 16px;
}
.hero h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin: 0 0 20px;
  max-width: 760px;
  font-weight: 700;
}
.hero-sub {
  max-width: 600px;
  font-size: 1.15rem;
  margin: 0 0 32px;
  color: #f2e6da;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero .btn-secondary { border-color: #fff; color: #fff; }
.hero .btn-secondary:hover { background: #fff; color: var(--color-ink); }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.stars { color: var(--color-gold); letter-spacing: 2px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-images img {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.about-img-secondary {
  position: absolute;
  bottom: -36px;
  right: -36px;
  width: 55%;
  border: 6px solid var(--color-cream);
}
.about-text p { color: #4a3b30; }

/* ---------- Menu ---------- */
.menu { background: var(--color-cream-2); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.menu-category {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.menu-category h3 {
  margin: 0 0 16px;
  color: var(--color-brand-dark);
  font-size: 1.3rem;
  border-bottom: 2px solid var(--color-cream-2);
  padding-bottom: 10px;
}
.menu-items { list-style: none; margin: 0; padding: 0; }
.menu-items li {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.item-name { font-weight: 800; }
.item-desc { color: #6b5a4c; font-size: 0.92rem; }
.menu-note {
  margin-top: 36px;
  color: #6b5a4c;
  font-size: 0.9rem;
  font-style: italic;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow-soft);
}
.review-card p {
  font-style: italic;
  color: #4a3b30;
  margin: 12px 0 16px;
}
.review-card footer { font-weight: 800; color: var(--color-brand-dark); }

/* ---------- Visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.visit-block { margin-bottom: 28px; }
.visit-block h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--color-brand-dark);
}
.visit-block a { color: var(--color-ink); font-weight: 700; text-decoration: none; }
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 360px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(36,26,21,0.15);
}
.visit-map iframe {
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-ink);
  color: #f2e6da;
  padding-top: 48px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo { color: #fff; }
.footer-brand p { margin: 4px 0; color: #cbb9ab; }
.footer-brand a { color: #f2e6da; text-decoration: none; }
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a { color: #f2e6da; text-decoration: none; font-weight: 600; }
.footer-nav a:hover { color: var(--color-gold); }
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #96877a;
}

/* ---------- Modal ---------- */
.modal-backdrop[hidden] { display: none; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}
.modal {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.modal h2 {
  margin: 0 0 16px;
  color: var(--color-brand-dark);
}
.modal p { margin: 0 0 8px; color: #4a3b30; }
.modal a:not(.btn-order) { color: var(--color-brand); font-weight: 700; text-decoration: none; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #9c8a7c;
}
.modal-close:hover { color: var(--color-ink); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .about-img-secondary { position: static; width: 100%; margin-top: 16px; border: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.3rem; }
}

@media (max-width: 760px) {
  .main-nav, .btn-order--nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding: 60px 0; }
  .section { padding: 56px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 160px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; }
  .btn-order, .btn-secondary { text-align: center; width: 100%; }
}
