:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81f1f;
  --brand-gold: #f4a300;
  --ink: #201510;
  --ink-soft: #4a3b34;
  --cream: #fdf6ec;
  --cream-dark: #f3e6d3;
  --line: rgba(32, 21, 16, 0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-lg: 0 20px 45px rgba(32, 21, 16, 0.18);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; line-height: 1.15; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 999;
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-order {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.4);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.btn-order:hover, .btn-order:focus-visible {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(214, 40, 40, 0.5);
}
.btn-order--hero { font-size: 1rem; padding: 16px 34px; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
  padding: 14px 26px;
  font-weight: 700;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.navbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-gold));
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
}
.brand-text em { font-style: normal; color: var(--brand-red); }
.nav-links {
  display: flex;
  gap: 26px;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-red); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav-links-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px 22px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}
.nav-links-mobile.open { display: flex; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  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(20,10,8,0.55) 0%, rgba(20,10,8,0.72) 60%, rgba(20,10,8,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  color: #fff;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--brand-gold);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--brand-gold); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}
.stars { color: var(--brand-gold); letter-spacing: 2px; }
.stars--lg { font-size: 1.8rem; }
.star-half { display: inline-block; overflow: hidden; width: 0.5em; }

/* Sections */
.section { padding: 88px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--brand-red);
  margin-bottom: 10px;
}
.section h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 18px; }
.section-lead { max-width: 620px; color: var(--ink-soft); font-size: 1.05rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* About */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-copy p { color: var(--ink-soft); }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--brand-red);
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(214,40,40,0.35);
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 200px;
}
.about-badge strong { font-family: var(--font-display); font-size: 1.05rem; }
.about-badge span { font-size: 0.85rem; opacity: 0.9; }

/* Menu */
.menu { background: var(--cream-dark); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 48px;
}
.menu-category {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 6px 18px rgba(32,21,16,0.06);
}
.menu-category h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brand-gold);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.menu-category h3 span { font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }
.menu-category li { margin-bottom: 16px; }
.menu-category li:last-child { margin-bottom: 0; }
.menu-item { display: flex; flex-direction: column; gap: 3px; }
.item-name { font-weight: 800; font-size: 1.02rem; }
.item-desc { color: var(--ink-soft); font-size: 0.9rem; }
.menu-cta { text-align: center; margin-top: 48px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }
.gallery-tile--pattern {
  height: 260px;
  border-radius: 12px;
  background: repeating-linear-gradient(45deg, var(--brand-red) 0 18px, var(--brand-gold) 18px 36px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-tile--pattern span {
  background: rgba(20,10,8,0.55);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 1.1rem;
}

/* Reviews */
.reviews { background: #fff; }
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 32px 0 20px;
}
.rating-number { font-family: var(--font-display); font-size: 3.4rem; font-weight: 900; color: var(--brand-red); }
.rating-detail { text-align: left; }
.rating-detail p { margin: 4px 0 0; color: var(--ink-soft); }

/* Visit */
.visit { background: var(--cream-dark); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.info-block { margin-bottom: 26px; }
.info-block h3 { font-size: 1.05rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand-red); }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.hours-list li.closed span:last-child { color: var(--brand-red); font-weight: 800; }
.phone-link { font-weight: 800; font-size: 1.15rem; color: var(--brand-red); }
.visit-map {
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visit-map iframe { width: 100%; height: 100%; }

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,0.85); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand .brand-text { font-family: var(--font-display); font-size: 1.15rem; color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 6px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-gold); margin-bottom: 12px; }
.footer-col p { font-size: 0.92rem; color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--brand-gold); }
.footer-order { display: flex; align-items: flex-start; }
.footer-bottom { text-align: center; padding: 22px 0; font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,10,8,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative;
  background: #fff;
  border-radius: 18px;
  max-width: 440px;
  width: 100%;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal h2 { font-size: 1.5rem; margin-bottom: 14px; }
.modal p { color: var(--ink-soft); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--cream-dark);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.modal-close:hover { background: var(--brand-red); color: #fff; }
.modal .btn-order { margin-top: 10px; width: 100%; }

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .btn-order--nav { display: none; }
  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-badge { position: static; margin-top: 16px; }
  .visit-map { height: 340px; }
}
@media (max-width: 560px) {
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 80px 20px 60px; }
  .navbar-inner { padding: 12px 16px; }
}
