:root {
  --brand-orange: #e8590c;
  --brand-orange-dark: #c94b09;
  --pink: #ff5c8a;
  --cream: #fff8f0;
  --dark: #2b1810;
  --text: #3a2a20;
  --muted: #7a6a5f;
}

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

html { scroll-behavior: smooth; }

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

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

h2 {
  font-size: 2.2rem;
  color: var(--dark);
  text-align: center;
  margin-bottom: 8px;
}

/* Order button - most striking element */
.btn-order {
  display: inline-block;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(232, 89, 12, 0.45);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 89, 12, 0.55);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.97);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
}
.logo span { color: var(--brand-orange); }
.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brand-orange); }
.nav-order { padding: 10px 24px; font-size: 0.9rem; }

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

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #e8590c 0%, #ff8c42 40%, #ffb454 100%), url('../images/photo-01.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,24,16,0.55) 0%, rgba(43,24,16,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  padding: 0 24px;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.95;
}
.btn-hero { font-size: 1.15rem; padding: 18px 44px; }
.hero-rating {
  margin-top: 24px;
  font-size: 1.1rem;
  color: #ffd27a;
  letter-spacing: 2px;
}
.hero-rating span {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: normal;
  margin-top: 4px;
  opacity: 0.9;
}

/* About */
.about { padding: 80px 0; background: #fff; }
.about h2 { margin-bottom: 28px; }
.about p {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: 1.05rem;
  color: var(--text);
}

/* Menu */
.menu { padding: 80px 0; background: var(--cream); }
.menu-intro { text-align: center; color: var(--muted); margin-bottom: 40px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.menu-category {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.menu-category h3 {
  color: var(--brand-orange);
  font-size: 1.3rem;
  margin-bottom: 16px;
  border-bottom: 3px solid #ffd8b0;
  padding-bottom: 10px;
}
.menu-category ul { list-style: none; }
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid #f0e5d8;
}
.menu-category li:last-child { border-bottom: none; }
.menu-category li span { font-weight: 700; color: var(--dark); }
.menu-category li em { font-style: normal; color: var(--muted); font-size: 0.9rem; }

/* Gallery */
.gallery { padding: 80px 0; background: #fff; }
.gallery h2 { margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gradient-tile {
  background: linear-gradient(135deg, #e8590c, #ff8c42, #ffd27a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* Reviews */
.reviews { padding: 80px 0; background: var(--cream); }
.reviews h2 { margin-bottom: 40px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.stars { color: #ffb454; font-size: 1.1rem; margin-bottom: 12px; }
.review-card p { font-style: italic; margin-bottom: 16px; color: var(--text); }
.review-card cite { font-weight: 700; color: var(--dark); }
.reviews-overall {
  text-align: center;
  margin-top: 36px;
  font-size: 1.1rem;
  color: var(--brand-orange-dark);
  font-weight: 700;
}

/* Location */
.location { padding: 80px 0; background: #fff; }
.location h2 { margin-bottom: 40px; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.location-info h3 {
  color: var(--brand-orange);
  margin-bottom: 12px;
  margin-top: 20px;
}
.location-info h3:first-child { margin-top: 0; }
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #f0e5d8;
  max-width: 380px;
}
.hours-list li span { font-weight: 700; }
.phone-link {
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}
.location-map iframe { border-radius: 16px; }

/* Footer */
.footer { background: var(--dark); color: #fff; padding: 48px 0 20px; }
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
}
.footer-brand .logo { color: #fff; }
.footer-brand p { color: #d8c8bc; margin-top: 6px; }
.footer-brand a { color: #d8c8bc; text-decoration: none; }
.footer-copy {
  text-align: center;
  color: #8a7a6f;
  font-size: 0.85rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

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

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    display: none;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-order { display: none; }
  .hero-content h1 { font-size: 2.1rem; }
  .hero-content p { font-size: 1rem; }
}
