:root {
  --brand-red: #d4382b;
  --brand-red-dark: #b12a1f;
  --river-blue: #2d5f6e;
  --cream: #faf6ef;
  --charcoal: #2a2622;
  --tan: #e8dcc8;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

h1, h2, h3, h4 { font-family: var(--font-head); }

/* Order Button - striking, consistent everywhere */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(212, 56, 43, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 56, 43, 0.5);
}
.btn-order-nav { padding: 10px 24px; font-size: 0.9rem; }
.btn-order-hero { font-size: 1.1rem; padding: 16px 40px; }
.modal-phone { margin-top: 20px; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 246, 239, 0.97);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--river-blue); font-weight: 600; }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-red); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--charcoal);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  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(20,20,18,0.55) 0%, rgba(20,20,18,0.35) 40%, rgba(20,20,18,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 720px;
  padding: 0 24px;
}
.hero-eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
  color: var(--tan);
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 22px;
  opacity: 0.95;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.95rem;
}
.stars { color: #ffc94a; font-size: 1.1rem; }

/* Sections */
section { padding: 80px 0; }
section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.section-sub {
  text-align: center;
  color: #6a6259;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* About */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 30px;
}
.about-text p { margin-bottom: 18px; color: #4a453e; font-size: 1.05rem; }
.about-image img { border-radius: 12px; box-shadow: 0 12px 30px rgba(0,0,0,0.15); }

/* Menu */
.menu { background: var(--cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
}
.menu-category h3 {
  font-size: 1.4rem;
  color: var(--river-blue);
  border-bottom: 2px solid var(--tan);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.menu-item { margin-bottom: 20px; }
.menu-item-head {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.price { color: var(--brand-red); }
.menu-item p { color: #6a6259; font-size: 0.95rem; }

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

/* Reviews */
.reviews { background: var(--river-blue); color: #fff; }
.reviews h2 { color: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 28px;
}
.review-stars { color: #ffc94a; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { font-size: 0.95rem; }
.review-author { margin-top: 14px; font-weight: 700; font-style: normal; }

/* Hours & Location */
.hours { background: #fff; }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.hours-info h3 {
  font-size: 1.3rem;
  margin: 24px 0 12px;
  color: var(--river-blue);
}
.hours-info h3:first-child { margin-top: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--tan);
  font-size: 0.98rem;
}
.phone-link {
  color: var(--brand-red);
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
}
.hours-info .btn-order { margin-top: 22px; }
.map-embed iframe { border-radius: 12px; box-shadow: 0 12px 30px rgba(0,0,0,0.12); }

/* Footer */
.footer {
  background: var(--charcoal);
  color: #ddd6cc;
  padding: 56px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.footer-logo { color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.footer-logo span { color: var(--tan); }
.footer a { color: #ddd6cc; text-decoration: none; }
.footer h4 { color: #fff; margin-bottom: 10px; }
.footer-cta { display: flex; justify-content: flex-end; }
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #454038;
  font-size: 0.85rem;
  color: #9a9288;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal h2 { color: var(--charcoal); margin-bottom: 16px; font-size: 1.5rem; }
.modal p { color: #5a544c; margin-bottom: 8px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #999;
  line-height: 1;
}
.modal-close:hover { color: var(--charcoal); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .hours-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: left; gap: 20px; }
  .footer-cta { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    display: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 16px 24px; border-bottom: 1px solid var(--tan); width: 100%; }
  .hamburger { display: flex; }
  .btn-order-nav { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
