:root {
  --brand-red: #d62828;
  --brand-red-dark: #a81e1e;
  --brand-orange: #f4a300;
  --dark: #241a17;
  --cream: #fff8ef;
  --tan: #f3e3c9;
  --text: #2c2420;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

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

h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; margin: 0 0 16px; color: var(--dark); }

h2 { font-size: 2.1rem; text-align: center; }

.section-sub { text-align: center; color: #6b5d54; margin-top: -8px; margin-bottom: 40px; }

/* Order Button */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, background 0.15s ease;
  letter-spacing: 0.3px;
}
.btn-order:hover { background: var(--brand-red-dark); transform: translateY(-2px); }

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--brand-orange); font-size: 0.9rem; display: block; font-family: 'Segoe UI', sans-serif; font-weight: 400; }
.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: #f3e3c9;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-orange); }

.nav-order { padding: 10px 22px; font-size: 0.9rem; }

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

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/photo-01.jpg') center/cover no-repeat;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,26,23,0.55), rgba(36,26,23,0.85));
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 780px;
  padding: 0 24px;
}
.hero-eyebrow {
  color: var(--brand-orange);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.hero-content h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 18px;
}
.hero-sub { font-size: 1.15rem; margin-bottom: 32px; color: #f3e3c9; }
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-order-hero { font-size: 1.1rem; padding: 16px 40px; }

/* About */
.about { padding: 80px 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text p { margin-bottom: 18px; }
.about-photo img { border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

/* Menu */
.menu { padding: 80px 0; background: var(--tan); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.menu-category {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.menu-category h3 {
  color: var(--brand-red);
  font-size: 1.3rem;
  border-bottom: 2px solid var(--tan);
  padding-bottom: 10px;
}
.menu-category ul { list-style: none; padding: 0; margin: 0; }
.menu-category li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #e6d8bf;
}
.menu-category li:last-child { border-bottom: none; }
.item-price { font-weight: 700; color: var(--brand-red-dark); white-space: nowrap; }

/* Gallery */
.gallery { padding: 80px 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-generated {
  height: 190px;
  border-radius: 10px;
  background: repeating-linear-gradient(45deg, var(--brand-red) 0, var(--brand-red) 10px, var(--brand-orange) 10px, var(--brand-orange) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Reviews */
.reviews { padding: 80px 0; background: var(--dark); }
.reviews h2, .reviews .section-sub { color: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: #33241f;
  border-radius: var(--radius);
  padding: 26px 28px;
  color: #f3e3c9;
}
.stars { color: var(--brand-orange); margin-bottom: 10px; letter-spacing: 2px; }
.review-author { font-weight: 700; color: #fff; margin-top: 14px; margin-bottom: 0; }

/* Hours & Location */
.hours { padding: 80px 0; background: var(--tan); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hours-list { list-style: none; padding: 0; margin: 0 0 24px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #d8c6a3;
}
.address, .phone { margin: 6px 0; font-weight: 600; }
.phone a { color: var(--brand-red-dark); text-decoration: none; }
.map-embed iframe { border-radius: var(--radius); }

/* Footer */
.footer { background: var(--dark); color: #f3e3c9; padding: 50px 0 20px; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
}
.footer-brand { color: #fff; font-size: 1.2rem; margin: 0 0 8px; }
.footer a { color: #f3e3c9; text-decoration: none; }
.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #a8988a;
  border-top: 1px solid #3d2d27;
  padding-top: 18px;
  margin: 0;
}

/* 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: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal h3 { color: var(--brand-red); margin-bottom: 14px; }
.modal p { margin: 0; font-size: 1.05rem; }
.modal p a { color: var(--brand-red-dark); font-weight: 700; text-decoration: none; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.modal-close:hover { color: var(--brand-red); }

/* 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); }
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px 24px;
    gap: 16px;
    justify-content: flex-start;
  }
  .nav-links[hidden] { display: none; }
  .hamburger { display: flex; }
  .nav-order.nav-order { display: none; }
  .hero-content h1 { font-size: 2.1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 1.7rem; }
}
