:root {
  --brand-red: #d62828;
  --brand-red-dark: #a91d1d;
  --brand-gold: #f4a300;
  --brand-green: #2e5339;
  --ink: #241a15;
  --ink-soft: #55483f;
  --cream: #fdf6ec;
  --cream-2: #f8ede0;
  --white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(36, 26, 21, 0.12);
}

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

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; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

a { color: inherit; text-decoration: none; }

/* Buttons */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(214, 40, 40, 0.45);
}
.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; }

.btn-secondary {
  display: inline-block;
  padding: 1rem 2.25rem;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { background: var(--white); color: var(--ink); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(36,26,21,0.08);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.85rem 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--brand-green);
  white-space: nowrap;
}
.brand-mark { font-size: 1.4rem; }
.nav-links {
  display: flex;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--brand-red); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.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: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,20,14,0.55) 0%, rgba(36,20,14,0.75) 60%, rgba(36,20,14,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand-gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.stars { color: var(--brand-gold); letter-spacing: 2px; }

/* Section shared */
section { padding: 5rem 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.section-sub { color: var(--ink-soft); max-width: 600px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* About */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.about-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about-text p { color: var(--ink-soft); margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.25rem; font-size: clamp(1.8rem, 3vw, 2.3rem); }

/* Menu */
.menu { background: var(--cream-2); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.menu-category h3 {
  font-size: 1.4rem;
  color: var(--brand-green);
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--brand-gold);
}
.menu-category ul { list-style: none; }
.menu-category li { margin-bottom: 1.1rem; }
.menu-item-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.05rem;
}
.menu-item-row .price { color: var(--brand-red); white-space: nowrap; }
.menu-category li p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.2rem; }
.menu-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-top: 2.5rem;
  font-style: italic;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }

/* Reviews */
.reviews { background: var(--brand-green); color: var(--white); }
.reviews .section-eyebrow { color: var(--brand-gold); }
.reviews .section-title { color: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.review-card p { margin-top: 1rem; color: rgba(255,255,255,0.92); }
.review-author { font-weight: 800; color: var(--brand-gold); margin-top: 1.25rem !important; }

/* Location */
.location { background: var(--white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.location-info h2 { margin-bottom: 1.5rem; font-size: clamp(1.8rem, 3vw, 2.3rem); }
.info-block { margin-bottom: 1.5rem; }
.info-block h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand-red); margin-bottom: 0.4rem; }
.info-block a { color: var(--ink); font-weight: 700; }
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(36,26,21,0.15);
  max-width: 320px;
}
.location-map iframe { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,0.85); padding: 3.5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-brand .brand-mark { font-size: 1.3rem; }
.footer-brand .brand-text { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 0.5rem; }
.footer-info p { margin-bottom: 0.5rem; }
.footer-info a:hover { color: var(--brand-gold); }
.footer-bottom {
  text-align: center;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(36,26,21,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.modal h2 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--brand-green); }
.modal p { color: var(--ink-soft); margin-bottom: 1.75rem; }
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
}
.modal-close:hover { color: var(--brand-red); }
.modal-call { width: 100%; }

/* 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) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-bottom: 1px solid rgba(36,26,21,0.08);
  }
  .nav-links.open { max-height: 340px; padding: 1rem 0; }
  .nav-links a { padding: 0.75rem 0; width: 100%; text-align: center; }
  .hamburger { display: flex; }
  .nav-actions .btn-order { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 180px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  section { padding: 3.5rem 0; }
}
