/* ---------- Base ---------- */
:root {
  --color-bg: #fffaf3;
  --color-text: #2b1e17;
  --color-muted: #6b5c50;
  --color-cream: #fff3e2;
  --color-brand: #c1272d;
  --color-brand-dark: #9c1f24;
  --color-accent: #f0a500;
  --color-line: #eaddc7;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(43, 30, 23, 0.12);
}

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

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

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

[hidden] { display: none !important; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-brand);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-brand);
  margin: 0 0 10px;
}
.center { text-align: center; }

/* ---------- Order Button ---------- */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover, .btn-order:focus-visible {
  background: var(--color-brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(193, 39, 45, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { background: #fff; color: var(--color-text); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-text);
  text-decoration: none;
  margin-right: auto;
  white-space: nowrap;
}
.logo-accent { color: var(--color-brand); }
.logo-sub { font-weight: 600; font-size: 0.95rem; color: var(--color-muted); }

.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--color-brand); }

.btn-order--nav { padding: 10px 24px; font-size: 0.9rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 28px;
  border-top: 1px solid var(--color-line);
}
.mobile-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}
.mobile-nav .btn-order { margin-top: 8px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,30,23,0.55) 0%, rgba(43,30,23,0.75) 60%, rgba(43,30,23,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 90px 24px;
  max-width: 720px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: 1.15rem;
  color: #f5ece1;
  margin-bottom: 34px;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-order--hero { padding: 16px 40px; font-size: 1.1rem; }

/* ---------- About ---------- */
.about { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-text p { color: var(--color-muted); margin-bottom: 1.1em; }
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ---------- Menu ---------- */
.menu {
  padding: 90px 0;
  background: var(--color-cream);
}
.menu h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 48px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category h3 {
  font-size: 1.3rem;
  color: var(--color-brand);
  border-bottom: 2px solid var(--color-line);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.menu-category ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed var(--color-line);
}
.menu-category li:last-child { border-bottom: none; }
.menu-item-name { font-weight: 800; font-size: 1.02rem; }
.menu-item-desc { color: var(--color-muted); font-size: 0.92rem; margin-top: 2px; }
.menu-note {
  margin-top: 40px;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* ---------- Gallery ---------- */
.gallery { padding: 90px 0; }
.gallery h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ---------- Reviews ---------- */
.reviews {
  padding: 90px 0;
  background: var(--color-cream);
}
.reviews h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.rating-summary {
  color: var(--color-brand);
  font-weight: 800;
  margin-bottom: 48px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  margin: 0;
}
.review-card .stars {
  color: var(--color-accent);
  letter-spacing: 2px;
  margin: 0 0 12px;
}
.review-card p { color: var(--color-text); font-size: 0.95rem; }
.review-card footer {
  margin-top: 16px;
  font-weight: 800;
  color: var(--color-brand);
  font-size: 0.9rem;
}

/* ---------- Location ---------- */
.location { padding: 90px 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.location-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.location-info address {
  font-style: normal;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--color-muted);
}
.phone-link {
  display: inline-block;
  font-weight: 800;
  color: var(--color-brand);
  font-size: 1.15rem;
  text-decoration: none;
  margin-bottom: 28px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.95rem;
}
.hours-table th { font-weight: 700; color: var(--color-text); width: 40%; }
.hours-table td { color: var(--color-muted); }
.location-map {
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.location-map iframe { width: 100%; height: 100%; min-height: 320px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #2b1e17;
  color: #f0e6d9;
  padding: 56px 0 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(240, 230, 217, 0.15);
}
.footer-brand { margin-right: auto; }
.footer-brand .logo { color: #fff; }
.footer-brand p { margin: 4px 0; color: #cbbba9; }
.footer-brand a { color: #cbbba9; text-decoration: none; font-weight: 700; }
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a { color: #f0e6d9; text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.footer-nav a:hover { color: var(--color-accent); }
.footer-copy {
  text-align: center;
  color: #97887a;
  font-size: 0.85rem;
  margin: 24px 0 0;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 30, 23, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 300;
}
.modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.modal h2 {
  font-size: 1.5rem;
  color: var(--color-brand);
}
.modal p { color: var(--color-muted); margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-muted);
  cursor: pointer;
}
.modal-close:hover { color: var(--color-brand); }

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

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
