:root {
  --brand-red: #d62828;
  --brand-red-dark: #a91f1f;
  --brand-orange: #f4a300;
  --brand-green: #1f6b4c;
  --ink: #241812;
  --cream: #fdf6ec;
  --cream-dark: #f4e8d4;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

/* [hidden] must always win over any display rule applied via class */
[hidden] { display: none !important; }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-eyebrow {
  color: var(--brand-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-size: 1rem;
}
.btn-order {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(214, 40, 40, 0.45);
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.55);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1.1rem; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--brand-orange);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.logo-mark {
  background: var(--brand-green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  letter-spacing: 0.03em;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.logo-text em { font-style: normal; color: var(--brand-red); }

.main-nav {
  display: flex;
  gap: 1.6rem;
}
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
}
.main-nav a:hover { color: var(--brand-red); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.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;
  height: 3px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.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, 24, 18, 0.55) 0%, rgba(36, 24, 18, 0.75) 60%, rgba(36, 24, 18, 0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand-orange);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  opacity: 0.95;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.hero-actions .btn-outline {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: #fff;
}
.hero-actions .btn-outline:hover { background: #fff; color: var(--ink); }
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
}
.stars { color: var(--brand-orange); letter-spacing: 0.1em; }

/* About */
.about { padding: 5.5rem 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.about-images {
  position: relative;
  display: grid;
  gap: 1rem;
}
.about-img {
  border-radius: 14px;
  object-fit: cover;
  width: 100%;
  height: 260px;
  box-shadow: 0 12px 30px rgba(36, 24, 18, 0.18);
}
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1.2rem; }
.about-copy p { margin-bottom: 1rem; color: #4a3a30; }

/* Menu */
.menu { padding: 5.5rem 0; background: var(--cream-dark); }
.menu h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 0.6rem; }
.menu-intro { max-width: 560px; margin: 0 auto 2.8rem; color: #4a3a30; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.menu-category {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem 2rem;
  box-shadow: 0 8px 24px rgba(36, 24, 18, 0.08);
  border-top: 4px solid var(--brand-red);
}
.menu-category h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: var(--brand-green);
}
.menu-note {
  font-size: 0.88rem;
  color: #7a6a5c;
  margin-bottom: 1rem;
  font-style: italic;
}
.menu-list { list-style: none; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed #e2d5c2;
  font-weight: 600;
}
.menu-list li:last-child { border-bottom: none; }
.price { color: var(--brand-red); font-weight: 800; white-space: nowrap; }
.menu-disclaimer { margin-top: 2rem; font-size: 0.8rem; color: #8a7a6c; }

/* Gallery */
.gallery { padding: 5.5rem 0; background: var(--cream); }
.gallery h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 2.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.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 { padding: 5.5rem 0; background: var(--brand-green); color: #fff; }
.reviews h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 2.5rem; }
.reviews .section-eyebrow { color: var(--brand-orange); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1.6rem;
}
.review-card p { margin-bottom: 0.8rem; }
.review-author { font-weight: 700; color: var(--brand-orange); margin-bottom: 0 !important; }
.reviews-cta {
  margin-top: 2.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* Location */
.location { padding: 5.5rem 0; background: var(--cream-dark); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.location-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.location-info address { font-size: 1.05rem; margin-bottom: 0.6rem; font-style: normal; }
.phone-line { margin-bottom: 1.6rem; }
.phone-line a { color: var(--brand-red); font-weight: 800; font-size: 1.2rem; text-decoration: none; }
.hours-table {
  width: 100%;
  margin-bottom: 2rem;
  border-collapse: collapse;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px solid #e2d5c2;
  font-weight: 600;
}
.hours-table th { color: var(--brand-green); font-weight: 800; }
.hours-table .closed { color: var(--brand-red); font-weight: 800; }
.location-map {
  min-height: 340px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(36, 24, 18, 0.18);
}
.location-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* Footer */
.site-footer { background: var(--ink); color: #f0e6d8; padding: 3rem 0 1.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
.site-footer .logo-text { color: #f0e6d8; }
.site-footer .logo-text em { color: var(--brand-orange); }
.site-footer p { margin-top: 0.5rem; color: #cbb9a4; }
.site-footer a { color: #f0e6d8; text-decoration: none; }
.site-footer a:hover { color: var(--brand-orange); }
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-order { display: flex; align-items: flex-start; }
.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #9a8a7a;
  border-top: 1px solid #3a2c22;
  padding-top: 1.5rem;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(36, 24, 18, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 1.5rem;
}
.modal {
  background: #fff;
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 2.4rem 2.2rem;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--brand-green);
}
.modal p { margin-bottom: 1rem; color: #4a3a30; }
.modal-phone a { color: var(--brand-red); font-weight: 800; font-size: 1.2rem; text-decoration: none; }
.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #8a7a6c;
}
.modal-close:hover { color: var(--brand-red); }
.modal .btn-outline { margin-top: 0.5rem; }

/* 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; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 1rem;
    border-bottom: 3px solid var(--brand-orange);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-actions .btn-order.desktop-only { display: none; }
  .about-images { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .header-inner .logo-text { font-size: 1rem; }
}
