/* ---- Reset & base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  color: #2b2117;
  background: #fffaf3;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

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

/* ---- Brand button ---- */
.btn-order {
  display: inline-block;
  background: #d62828;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}
.btn-order:hover, .btn-order:focus-visible {
  background: #b91f1f;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(214, 40, 40, 0.45);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.9rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 40px; }
.btn-order--modal { margin-top: 20px; width: 100%; }

.btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease;
}
.hours-actions .btn-secondary {
  border-color: #d62828;
  color: #d62828;
}
.btn-secondary:hover {
  background: #fff;
  color: #d62828;
}

/* ---- Navbar ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-mark {
  background: #1c6b3c;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 0.9rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a:hover { color: #d62828; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: #2b2117;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 24px;
  background: #fffaf3;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.mobile-menu a { font-weight: 700; }
.mobile-menu.open { display: flex; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .navbar-inner .btn-order--nav { display: none; }
  .nav-toggle { display: flex; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 88vh;
  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,5,0.55) 0%, rgba(20,10,5,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  font-size: 0.85rem;
  color: #ffd166;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  margin-bottom: 18px;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  opacity: 0.95;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero-rating {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
.stars { color: #ffd166; font-size: 1.1rem; }

/* ---- Section shared ---- */
section { padding: 90px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  font-size: 0.8rem;
  color: #d62828;
  margin-bottom: 10px;
}
section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }

/* ---- About ---- */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about-copy p { margin-bottom: 16px; color: #4a3f33; }
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---- Menu ---- */
.menu { background: #fff6e9; }
.menu-intro { max-width: 560px; margin: 0 auto 50px; color: #4a3f33; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #1c6b3c;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.menu-category h3 span {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a08a6b;
  font-weight: 700;
}
.menu-category ul { list-style: none; }
.menu-category li {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}
.menu-category li:last-child { border-bottom: none; }
.menu-category li span {
  font-weight: 800;
  font-size: 1.05rem;
}
.menu-category li em {
  font-style: normal;
  color: #6b5d4c;
  font-size: 0.92rem;
  margin-top: 3px;
}
.menu-note {
  margin-top: 40px;
  text-align: center;
  color: #6b5d4c;
}
.menu-note a { color: #d62828; font-weight: 700; }
@media (max-width: 700px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ---- Gallery ---- */
.gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-tile--cta {
  background: linear-gradient(135deg, #1c6b3c, #124a29);
  border-radius: 14px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.gallery-tile--cta p {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
}
@media (max-width: 820px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img, .gallery-tile--cta { height: 160px; }
}

/* ---- Reviews ---- */
.reviews { background: #fff6e9; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.review-card p {
  font-size: 1.05rem;
  margin: 14px 0 18px;
  color: #3a2f22;
}
.review-card cite {
  font-weight: 800;
  color: #1c6b3c;
}
.review-card--muted { background: #fffaf3; }
@media (max-width: 750px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---- Hours & Location ---- */
.hours-location { background: #1c6b3c; color: #fff; }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.hours-card .section-eyebrow { color: #ffd166; }
.hours-table { width: 100%; margin: 20px 0 24px; border-collapse: collapse; }
.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.hours-table td:last-child { text-align: right; font-weight: 700; }
.hours-address { margin-bottom: 24px; opacity: 0.9; }
.hours-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hours-actions .btn-order { background: #d62828; }
.map-embed {
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}
@media (max-width: 800px) {
  .hours-grid { grid-template-columns: 1fr; }
  .map-embed { min-height: 280px; }
}

/* ---- Footer ---- */
.footer { background: #14100a; color: #cfc6b8; padding: 60px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-name { font-family: 'Fraunces', serif; font-weight: 700; color: #fff; margin: 12px 0 8px; font-size: 1.2rem; }
.footer-grid a { display: block; margin-bottom: 10px; }
.footer-grid a:hover { color: #fff; }
.footer h3 { color: #fff; font-size: 1rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-cta p { font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-fine {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Modal ---- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fffaf3;
  border-radius: 20px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: #1c6b3c;
}
.modal p { color: #4a3f33; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #6b5d4c;
}
.modal-close:hover { color: #d62828; }
