:root {
  --brand-red: #d62828;
  --brand-red-dark: #a91f1f;
  --brand-gold: #e0a640;
  --ink: #2b1d16;
  --cream: #fdf6ec;
  --cream-dark: #f5e9d6;
  --green: #3f6b47;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
}

* { 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; }
a { color: inherit; }
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Utility: elements toggled via [hidden] must never be shown by a competing display rule */
[hidden] { display: none !important; }

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

/* Order button — the striking CTA, consistent everywhere */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  cursor: pointer;
  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-decoration: none;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.45);
}
.btn-order:focus-visible {
  outline: 3px solid var(--brand-gold);
  outline-offset: 2px;
}
.btn-order--nav { padding: 10px 26px; font-size: 0.95rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 38px; }
.btn-order--footer { margin-top: 20px; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 14px 30px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { background: #fff; color: var(--ink); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--cream-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}
.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
}
.main-nav a:hover { color: var(--brand-red); }

.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;
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-nav {
  border-top: 1px solid var(--cream-dark);
  background: var(--cream);
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
}
.mobile-nav .btn-order { width: 100%; text-align: center; margin-top: 8px; }

/* 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.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 29, 22, 0.55) 0%, rgba(43, 29, 22, 0.75) 60%, rgba(43, 29, 22, 0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-gold);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 20px;
  max-width: 780px;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 0 32px;
  color: #f2e9dd;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
}
.stars { color: var(--brand-gold); letter-spacing: 2px; }

/* Section shared */
section { padding: 88px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--brand-red);
  margin: 0 0 10px;
}
section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 0 0 16px;
}
.section-lede {
  max-width: 620px;
  color: #5a4a3f;
  margin-bottom: 40px;
}

/* About */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-text p { color: #4a3b30; }
.about-photo img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(43, 29, 22, 0.2);
}

/* Menu */
.menu { background: var(--cream-dark); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.menu-category {
  background: #fff;
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 10px 30px rgba(43, 29, 22, 0.08);
}
.menu-category h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 18px;
  color: var(--brand-red);
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: 12px;
}
.menu-category ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed #e4d5bf;
}
.menu-category li:last-child { border-bottom: none; }
.item-name { font-weight: 800; }
.item-desc { color: #6b5a4c; font-size: 0.92rem; }
.menu-note {
  margin-top: 32px;
  font-size: 0.85rem;
  color: #7a6a5c;
  font-style: italic;
}

/* Gallery */
.gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { background: var(--green); color: #fff; }
.reviews .section-eyebrow { color: var(--brand-gold); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  margin: 0;
}
.review-card p { font-size: 1.02rem; margin: 14px 0 0; }
.review-card footer { margin-top: 16px; font-weight: 700; color: var(--brand-gold); }

/* Location */
.location { background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
address { font-style: normal; margin: 0 0 12px; font-size: 1.05rem; }
.phone-line a { text-decoration: none; font-weight: 800; color: var(--brand-red); font-size: 1.1rem; }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-weight: 600;
}
.hours-table th { font-weight: 700; }
.location-map {
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(43, 29, 22, 0.15);
}
.location-map iframe { height: 100%; min-height: 360px; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #f2e9dd;
  padding: 56px 0 32px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .brand-name { font-family: var(--font-display); font-size: 1.3rem; }
.site-footer p { margin: 6px 0; }
.site-footer a { text-decoration: none; color: var(--brand-gold); font-weight: 700; }
.footer-fine { margin-top: 24px; font-size: 0.8rem; color: #a8988a; }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 29, 22, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal {
  background: #fff;
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.modal h2 {
  font-family: var(--font-display);
  margin: 0 0 16px;
  font-size: 1.5rem;
  color: var(--brand-red);
}
.modal p { margin: 0 0 10px; }
.modal a { color: var(--brand-red); font-weight: 800; text-decoration: none; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.modal-close:hover { color: var(--ink); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .btn-order--nav { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-order, .hero-actions .btn-secondary { text-align: center; }
}
