/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
  --color-bg: #fffaf3;
  --color-cream: #fff3e2;
  --color-text: #2a1c14;
  --color-text-soft: #5c4636;
  --color-brand: #c8102e;
  --color-brand-dark: #9c0c22;
  --color-accent: #2a7a3b;
  --color-gold: #e8a13c;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-pill: 999px;
  --radius-card: 16px;
  --shadow-soft: 0 10px 30px rgba(42, 28, 20, 0.12);
}

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

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

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

a { color: var(--color-brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

.section { padding: 80px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--color-brand-dark);
  margin-bottom: 8px;
}
.center { text-align: center; }
.section-sub { color: var(--color-text-soft); max-width: 620px; margin: 0 auto 40px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; }

.btn-order {
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.4);
}
.btn-order:hover {
  background: var(--color-brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.5);
}
.btn-order--nav { padding: 10px 22px; font-size: 0.95rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 36px; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid rgba(42,28,20,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: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--color-text);
}
.logo-flag { font-size: 1.4rem; }

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--color-brand-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 28px;
  background: var(--color-bg);
  border-bottom: 1px solid rgba(42,28,20,0.08);
}
.mobile-nav a {
  color: var(--color-text);
  font-weight: 700;
}
.mobile-nav .btn { align-self: flex-start; }

.mobile-nav { display: none; }

@media (max-width: 820px) {
  .main-nav { display: none; }
  .btn-order--nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav:not([hidden]) { display: flex; }
}

/* ===== Hero ===== */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-inner { max-width: 700px; padding: 60px 24px; }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.92);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.stars { color: var(--color-gold); font-size: 1.1rem; letter-spacing: 2px; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.about-copy p { color: var(--color-text-soft); margin-bottom: 18px; }
.about-media img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  width: 100%;
  height: 380px;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
}

/* ===== Menu ===== */
.menu { background: var(--color-cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 40px;
}
.menu-category {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.menu-category h3 {
  color: var(--color-brand-dark);
  font-size: 1.3rem;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li { margin-bottom: 18px; }
.menu-category li:last-child { margin-bottom: 0; }
.item-name {
  display: block;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 4px;
}
.item-desc {
  display: block;
  color: var(--color-text-soft);
  font-size: 0.92rem;
}
@media (max-width: 900px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.review-card {
  background: var(--color-cream);
  border-radius: var(--radius-card);
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow-soft);
}
.review-card p { color: var(--color-text-soft); font-style: italic; }
.review-card footer { font-weight: 800; margin-top: 14px; }
.reviews-summary { margin-top: 32px; font-weight: 700; color: var(--color-text-soft); }
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== Location ===== */
.location { background: var(--color-cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.location-info address { font-style: normal; color: var(--color-text-soft); margin-bottom: 10px; }
.hours-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid rgba(42,28,20,0.1);
  font-weight: 600;
}
.hours-table th { color: var(--color-text-soft); font-weight: 700; }
.location-map iframe {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 860px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding: 50px 0 30px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
}
.site-footer a { color: #fff; }
.footer-copy { margin-top: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,10,8,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal {
  background: #fff;
  border-radius: var(--radius-card);
  max-width: 440px;
  width: 100%;
  padding: 40px 32px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal h2 { margin-bottom: 16px; color: var(--color-brand-dark); }
.modal p { color: var(--color-text-soft); margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-soft);
}
.modal-close:hover { color: var(--color-brand-dark); }
