:root {
  --brand-red: #d62828;
  --brand-red-dark: #a91f1f;
  --brand-orange: #f77f00;
  --brand-cream: #fff8ee;
  --brand-dark: #241a15;
  --brand-green: #386641;
  --text-main: #2b2018;
  --text-light: #6b5d51;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-main);
  background: var(--brand-cream);
  line-height: 1.6;
}

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

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

/* Buttons */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 18px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.5);
}
.btn-order--nav { padding: 10px 24px; font-size: 0.9rem; }
.btn-order--hero { font-size: 1.1rem; padding: 16px 40px; }
.btn-order--footer { margin-top: 8px; }

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  transition: background 0.15s ease;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(36, 26, 21, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.logo span { color: var(--brand-orange); }
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: #f1e8de;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--brand-orange); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/photo-01.jpg') center/cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,26,21,0.55) 0%, rgba(36,26,21,0.75) 60%, rgba(36,26,21,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0 0 20px;
  font-weight: 800;
  line-height: 1.15;
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: #f1e8de;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section titles */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--brand-dark);
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* About */
.about { padding: 80px 0; background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-text h2 {
  font-size: 2.2rem;
  color: var(--brand-dark);
  margin-top: 0;
}
.about-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.badge {
  background: var(--brand-cream);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  border: 2px solid #f3e3cf;
}
.badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-red);
}
.badge-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* Menu */
.menu { padding: 80px 0; background: var(--brand-cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.menu-category {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.menu-category h3 {
  color: var(--brand-red);
  font-size: 1.3rem;
  margin-top: 0;
  border-bottom: 3px solid var(--brand-orange);
  padding-bottom: 10px;
  display: inline-block;
}
.menu-category ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.menu-category li {
  padding: 12px 0;
  border-bottom: 1px solid #f0e6d8;
  display: flex;
  flex-direction: column;
}
.menu-category li:last-child { border-bottom: none; }
.menu-category li span {
  font-weight: 700;
  color: var(--text-main);
}
.menu-category li em {
  font-style: normal;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 2px;
}
.menu-note {
  text-align: center;
  margin-top: 32px;
  color: var(--text-light);
}
.menu-note a { color: var(--brand-red); font-weight: 700; }

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

/* Reviews */
.reviews { padding: 80px 0; background: var(--brand-dark); color: #fff; }
.reviews .section-title { color: #fff; }
.reviews .section-sub { color: #cbb8a8; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
}
.stars { color: var(--brand-orange); font-size: 1.1rem; margin-bottom: 12px; }
.review-card p {
  font-size: 0.95rem;
  color: #e9ded2;
  min-height: 96px;
}
.review-author {
  display: block;
  margin-top: 16px;
  font-weight: 700;
  color: var(--brand-orange);
}

/* Location */
.location { padding: 80px 0; background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.location-info address {
  font-style: normal;
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: block;
}
.location-phone {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-red);
  text-decoration: none;
  margin-bottom: 24px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid #f0e6d8;
}
.hours-table td:first-child { font-weight: 700; }
.hours-table td:last-child { text-align: right; color: var(--text-light); }
.location-map {
  min-height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Footer */
.footer { background: var(--brand-dark); color: #cbb8a8; padding: 48px 0 24px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { margin: 4px 0; }
.footer-brand a { color: #cbb8a8; text-decoration: none; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: #cbb8a8; text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: var(--brand-orange); }
.footer-copy { text-align: center; margin: 24px 0 0; font-size: 0.85rem; color: #8a7a6c; }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal h2 {
  color: var(--brand-dark);
  margin-top: 0;
}
.modal p { color: var(--text-light); margin-bottom: 28px; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-light);
}
.modal-close:hover { color: var(--brand-red); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-dark);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-order--nav { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
}
