/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --color-brand: #d1361f;
  --color-brand-dark: #a82814;
  --color-accent: #f6a623;
  --color-ink: #2a1e18;
  --color-cream: #fdf6ec;
  --color-cream-dark: #f4e8d6;
  --color-muted: #6b5c52;
  --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, 30, 24, 0.12);
}

html { scroll-behavior: smooth; }

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

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

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

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

a { color: inherit; }

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}

.btn-order {
  background: var(--color-brand);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 30px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(209, 54, 31, 0.4);
}
.btn-order:hover, .btn-order:focus-visible {
  background: var(--color-brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(209, 54, 31, 0.5);
}

.btn-order--nav { padding: 10px 22px; font-size: 0.9rem; }
.btn-order--hero { font-size: 1.05rem; padding: 16px 34px; }
.btn-order--footer { margin-top: 24px; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  font-size: 1rem;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-cream-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-ink);
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-brand);
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-ink);
  position: relative;
}
.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: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--color-ink);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 28px;
  background: var(--color-cream);
  border-top: 1px solid var(--color-cream-dark);
}
.mobile-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--color-ink);
}
.mobile-nav.open { display: flex; }

/* ===== 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;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 18, 12, 0.72) 0%, rgba(30, 18, 12, 0.55) 45%, rgba(30, 18, 12, 0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.stars { color: var(--color-accent); font-size: 1.1rem; letter-spacing: 2px; }

/* ===== About ===== */
.about { padding: 96px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img:first-child {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-media-accent {
  position: absolute;
  bottom: -36px;
  right: -36px;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 6px solid var(--color-cream);
  box-shadow: var(--shadow-soft);
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-brand);
  margin-bottom: 12px;
}
.section-eyebrow--center { text-align: center; }
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.about-copy p { color: var(--color-muted); margin-bottom: 16px; }
.about-copy p:last-child { margin-bottom: 0; }

/* ===== Menu ===== */
.menu { padding: 96px 0; background: var(--color-cream-dark); }
.section-title {
  text-align: center;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--color-muted);
  max-width: 620px;
  margin: 0 auto 56px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.menu-category {
  background: var(--color-cream);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
}
.menu-category h3 {
  font-size: 1.3rem;
  color: var(--color-brand);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-cream-dark);
}
.menu-category ul { list-style: none; }
.menu-category li { margin-bottom: 20px; }
.menu-category li:last-child { margin-bottom: 0; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-weight: 800;
}
.menu-item-name { font-size: 1.02rem; }
.menu-item-price { color: var(--color-brand); white-space: nowrap; }
.menu-item-desc {
  color: var(--color-muted);
  font-size: 0.92rem;
  margin-top: 4px;
}
.menu-note {
  text-align: center;
  margin-top: 48px;
  color: var(--color-muted);
  font-size: 0.9rem;
}
.menu-note a { color: var(--color-brand); font-weight: 700; text-decoration: none; }

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

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

/* ===== Visit ===== */
.visit { padding: 96px 0; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.visit-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.visit-info address {
  font-style: normal;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--color-ink);
}
.visit-phone {
  display: inline-block;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-brand);
  text-decoration: none;
  margin-bottom: 28px;
}
.hours-table { width: 100%; border-collapse: collapse; max-width: 380px; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-cream-dark);
  font-weight: 600;
}
.hours-table th { color: var(--color-muted); font-weight: 700; }
.hours-table td { text-align: right; }
.visit-map {
  min-height: 360px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 360px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.85);
  padding: 48px 0 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 20px;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .brand-mark { color: var(--color-accent); }
.footer-brand .brand-sub { color: rgba(255,255,255,0.6); }
.footer-info { font-size: 0.95rem; }
.footer-info a { text-decoration: none; color: rgba(255,255,255,0.85); }
.footer-copy {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--color-cream);
  border-radius: var(--radius-card);
  max-width: 440px;
  width: 100%;
  padding: 44px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  text-align: center;
}
.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--color-ink);
}
.modal p {
  color: var(--color-muted);
  margin-bottom: 24px;
}
.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); color: #fff; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-media-accent { display: none; }
  .visit-map { min-height: 300px; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .btn-order--nav { display: none; }
  .nav-toggle { display: flex; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .hero-cta-row .btn { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
}
