:root {
  --color-brand-red: #d62828;
  --color-brand-red-dark: #a8171b;
  --color-brand-gold: #f2a541;
  --color-ink: #241914;
  --color-cream: #fdf6ec;
  --color-cream-2: #f7ead3;
  --color-line: #e7d9bf;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h: 76px;
  --shadow-soft: 0 12px 30px rgba(36, 25, 20, 0.15);
}

* { 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 {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

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

.section { padding: 80px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--color-brand-red-dark);
  margin: 0 0 10px;
}
.section-lead { max-width: 620px; margin: 0 auto 40px; color: #5c4c3f; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-order {
  background: var(--color-brand-red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.35);
}
.btn-order:hover {
  background: var(--color-brand-red-dark);
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.45);
}

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

.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-line);
  height: var(--header-h);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-ink);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand-red), var(--color-brand-gold));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}
.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--color-ink);
  font-weight: 700;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--color-brand-red-dark); text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--color-ink);
  border-radius: 3px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  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(36,20,14,0.55) 0%, rgba(36,20,14,0.75) 55%, rgba(36,20,14,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 720px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-brand-gold);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.15rem;
  color: #f1e6d6;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-rating { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #f1e6d6; }
.stars { color: var(--color-brand-gold); font-size: 1.1rem; letter-spacing: 2px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-media img {
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about-copy p { color: #4a3c30; margin-bottom: 1em; }
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

/* Menu */
.menu { background: var(--color-cream-2); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 20px;
}
.menu-category {
  background: #fff;
  border-radius: 14px;
  padding: 28px 30px;
  box-shadow: var(--shadow-soft);
}
.menu-category h3 {
  font-size: 1.25rem;
  color: var(--color-brand-red-dark);
  border-bottom: 2px solid var(--color-line);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed var(--color-line);
}
.menu-list li:last-child { border-bottom: none; }
.item-name {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-weight: 800;
  font-size: 1.02rem;
}
.item-price { color: var(--color-brand-red-dark); font-weight: 800; white-space: nowrap; }
.item-desc { color: #6b5b4c; font-size: 0.92rem; margin-top: 3px; }
.menu-note { text-align: center; margin-top: 36px; color: #5c4c3f; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #4a3c30;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  margin: 0;
}
.review-card p { font-size: 1.05rem; color: #3d3128; margin: 14px 0; font-style: italic; }
.review-card footer { font-weight: 800; color: var(--color-brand-red-dark); }

/* Location */
.location { background: var(--color-cream-2); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.location-info address { font-style: normal; margin: 0 0 8px; font-size: 1.1rem; }
.location-phone { margin-bottom: 24px; }
.location-phone a { font-weight: 800; font-size: 1.15rem; }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 10px 20px;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.95rem;
}
.hours-table th { font-weight: 700; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.location-map {
  min-height: 360px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.location-map iframe { width: 100%; height: 100%; min-height: 360px; }

/* Footer */
.site-footer {
  background: var(--color-ink);
  color: #f1e6d6;
  padding: 50px 0;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: #fff; }
.footer-inner a { color: var(--color-brand-gold); }
.footer-copy { margin-top: 18px; font-size: 0.85rem; color: #b3a495; }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 40px 34px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  text-align: center;
}
.modal h2 { color: var(--color-brand-red-dark); font-size: 1.5rem; }
.modal p { color: #4a3c30; }
.modal-phone a {
  font-weight: 800;
  font-size: 1.2rem;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #8a7a6a;
}
.modal-close:hover { color: var(--color-brand-red-dark); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 32px; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px dashed var(--color-line); }
  .main-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-order { display: none; }
  .hero { min-height: 560px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
