:root {
  --primary: #c0272b;
  --primary-dark: #941d20;
  --accent: #e8a93a;
  --green: #4c7a3f;
  --dark: #241009;
  --paper: #fdfaf3;
  --ink: #241a15;
  --muted: rgba(36, 26, 21, 0.66);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.topbar {
  background: var(--dark);
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}
.topbar-inner, .nav-inner, .wrap {
  max-width: 1160px;
  margin: 0 auto;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-inner a { text-decoration: none; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 250, 243, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  gap: 1rem;
}
.brand {
  font-family: 'Fredoka', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a:not(.button) { text-decoration: none; }
.nav-links a:not(.button):hover { color: var(--primary); }

.button {
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  padding: 0.9rem 1.7rem;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(192, 39, 43, 0.42);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  letter-spacing: 0.01em;
}
.button:hover { background: var(--primary-dark); transform: translateY(-1px); }
.button.outline,
.button.alt {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  box-shadow: none;
}
.modal-card .button.alt {
  border-color: rgba(36, 16, 9, 0.35);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(rgba(24, 10, 6, 0.78), rgba(24, 10, 6, 0.62)), url('../images/gallery-01.jpg');
  background-size: cover;
  background-position: center;
}
.hero .wrap {
  min-height: 68vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 5rem 1rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--accent);
  margin: 0 0 0.8rem;
}
h1, h2, h3, h4 {
  font-family: 'Fredoka', system-ui, sans-serif;
  line-height: 1.1;
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); max-width: 720px; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
h3 { font-size: 1.7rem; }
.hero p.lede,
.hero .tagline { font-size: 1.2rem; line-height: 1.6; max-width: 640px; margin: 1rem 0 0; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-card {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 1.5rem;
  padding: 1.8rem;
  backdrop-filter: blur(6px);
}
.hero-card ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.hero-card li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.4rem 0; border-top: 1px solid rgba(255, 255, 255, 0.15); font-size: 0.95rem; }
.hero-card li:first-child { border-top: 0; }

main section { padding: 4.5rem 1rem; }
.split {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
.section-heading { max-width: 720px; margin: 0 auto 2.2rem; text-align: center; }
.section-heading.compact { margin-left: 0; text-align: left; }
.section-heading p.sub { color: var(--muted); line-height: 1.6; margin-top: 0.6rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.6rem; }
.info-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  padding: 1.3rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}
.info-card h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.info-card p, .menu-card p, .muted { color: var(--muted); line-height: 1.6; margin: 0; }
.story-text p, .story-lead p { line-height: 1.75; font-size: 1.05rem; }

.menu-section { max-width: 1160px; margin: 0 auto 3rem; }
.menu-group { margin-bottom: 2.4rem; }
.menu-group h3 { margin-bottom: 1rem; }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.menu-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  padding: 1.3rem 1.5rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}
.menu-card h4 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.menu-card .price { font-weight: 800; color: var(--primary); white-space: nowrap; flex: none; font-size: 1.05rem; }
.menu-note { max-width: 1160px; margin: -1rem auto 2rem; color: var(--muted); text-align: center; font-size: 0.95rem; }

.gallery-section { background: #fff; }
.gallery-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-grid img,
.gallery-grid .placeholder,
.gallery-grid .generated {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 1.1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}
.placeholder,
.generated {
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: #fff;
  font-family: 'Fredoka', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}
.placeholder::before,
.generated::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.14) 0 10px, transparent 10px 20px);
}
.placeholder span,
.generated span { position: relative; z-index: 1; }
.placeholder.p1, .generated.g1 { background: linear-gradient(160deg, #b8272b, #6f120f); }
.placeholder.p2, .generated.g2 { background: linear-gradient(160deg, #4c7a3f, #244317); }
.placeholder.p3, .generated.g3 { background: linear-gradient(160deg, #e8a93a, #a9660f); }
.placeholder.p4, .generated.g4 { background: linear-gradient(160deg, #7a4325, #3c1f0f); }

.reviews-section { background: linear-gradient(180deg, #fff, #fbe9d6); }
.review-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
blockquote {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  padding: 1.6rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.07);
  margin: 0;
}
blockquote .stars { color: var(--accent); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 0.6rem; display: block; }
blockquote p { line-height: 1.65; margin: 0 0 0.8rem; }
blockquote cite { font-weight: 700; font-style: normal; color: var(--ink); }

.contact-box {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.contact-panel { background: var(--dark); color: #fff; border-radius: 1.75rem; padding: 2rem; }
.contact-panel .eyebrow { color: var(--accent); }
.contact-panel p, .contact-panel li { line-height: 1.65; }
.hours-list { list-style: none; padding: 0; margin: 0.8rem 0 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 0.35rem; border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 0.35rem; }
.hours-list li:first-child { border-top: 0; padding-top: 0; }
.hours-list li.closed span:last-child { color: rgba(255, 255, 255, 0.5); }
.contact-links { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.2rem; }
.contact-links a { color: var(--accent); font-weight: 700; text-decoration: none; }
.contact-links a:hover { text-decoration: underline; }
.map-embed {
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.15);
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

footer { background: var(--dark); color: #fff; padding: 2.4rem 1rem; }
footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
  align-items: center;
}
footer p { margin: 0.2rem 0; color: rgba(255, 255, 255, 0.75); }
footer .foot-brand { font-family: 'Fredoka', system-ui, sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; }
.footer-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.mobile-cta { position: fixed; right: 1rem; bottom: 1rem; z-index: 30; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 50;
}
.modal-backdrop.open { display: flex; }
.modal-card {
  background: #fff;
  color: var(--ink);
  border-radius: 1.5rem;
  max-width: 440px;
  width: 100%;
  padding: 1.8rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.modal-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.modal-close {
  border: 0;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1.3rem;
  cursor: pointer;
  flex: none;
}
.modal-card p { line-height: 1.6; }
.modal-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.3rem; }

@media (max-width: 860px) {
  .hero .wrap, .split, .contact-box { grid-template-columns: 1fr; }
  .card-grid, .menu-grid, .review-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}
