:root {
  --brand-dark: #14181f;
  --brand-charcoal: #1d222b;
  --brand-orange: #ff5a1f;
  --brand-orange-dark: #e4470f;
  --brand-cream: #f7f3ea;
  --brand-gold: #ffb703;
  --text-light: #f7f3ea;
  --text-muted: #b9bec8;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--brand-cream);
  color: #22262f;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* Buttons */
.order-btn {
  display: inline-block;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(255, 90, 31, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: 0.03em;
}
.order-btn:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 90, 31, 0.5);
}

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 24, 31, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-family: var(--font-display);
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--brand-gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--brand-gold); }
.nav-order-btn { padding: 10px 24px; font-size: 0.9rem; }

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

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1d222b, #0e1015), url('../images/photo-01.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,12,16,0.55) 0%, rgba(10,12,16,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  color: var(--text-light);
}
.hero-eyebrow {
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-order-btn { font-size: 1.1rem; padding: 16px 40px; }

/* Section shared */
section { padding: 80px 0; }
.section-eyebrow {
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  margin: 0 0 20px;
  color: var(--brand-dark);
  letter-spacing: 0.01em;
}

/* About */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-text p { color: #444; margin-bottom: 18px; }
.about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Menu */
.menu { background: var(--brand-cream); }
.menu-intro { color: #555; max-width: 560px; margin: 0 auto 48px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.menu-category h3 {
  font-family: var(--font-display);
  color: var(--brand-orange-dark);
  font-size: 1.5rem;
  margin: 0 0 18px;
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: 10px;
}
.menu-category ul { list-style: none; margin: 0; padding: 0; }
.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px dashed #e3ddce;
}
.menu-category li:last-child { border-bottom: none; }
.item-name {
  font-weight: 600;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tag {
  font-size: 0.7rem;
  background: var(--brand-orange);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.item-desc { color: #666; font-size: 0.92rem; margin-top: 4px; }
.menu-note { color: #666; margin-top: 36px; font-style: italic; }

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

/* Reviews */
.reviews { background: var(--brand-dark); color: var(--text-light); }
.reviews h2, .reviews .section-eyebrow { color: var(--text-light); }
.reviews .section-eyebrow { color: var(--brand-gold); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: var(--brand-charcoal);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
}
.stars { color: var(--brand-gold); font-size: 1.1rem; margin-bottom: 12px; }
.review-card p { color: var(--text-muted); font-size: 0.95rem; }
.review-author { color: var(--text-light); font-weight: 600; margin-top: 12px; }

/* Location */
.location { background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.address, .phone { font-size: 1.05rem; }
.phone a { color: var(--brand-orange-dark); font-weight: 600; text-decoration: none; }
.hours-table { width: 100%; margin: 24px 0 32px; border-collapse: collapse; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid #eee; }
.hours-table td:first-child { font-weight: 600; color: var(--brand-dark); }
.hours-table td:last-child { text-align: right; color: #555; }
.location-map { min-height: 340px; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.location-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* Footer */
.footer { background: var(--brand-dark); color: var(--text-muted); padding: 56px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { margin-bottom: 12px; }
.footer a { color: var(--text-muted); text-decoration: none; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-cta { display: flex; align-items: start; justify-content: flex-start; }
.footer-bottom { text-align: center; font-size: 0.85rem; margin: 24px 0 0; color: #6b707c; }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,12,16,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  padding: 36px;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal h3 { font-family: var(--font-display); font-size: 1.7rem; margin: 0 0 16px; color: var(--brand-dark); }
.modal p { color: #555; margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #999;
  cursor: pointer;
}
.modal-close:hover { color: #333; }
.modal-call-btn { width: 100%; }

/* 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(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20,24,31,0.98);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-order-btn { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 180px; }
  h2 { font-size: 2rem; }
  .hero h1 { font-size: 1.9rem; }
}
