@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --flame: #dc2626;
  --flame-light: #ef4444;
  --flame-orange: #ea580c;
  --sage: #4ade80;
  --sage-dark: #16a34a;
  --leather: #292524;
  --leather-light: #44403c;
  --leather-lighter: #57534e;
  --cream: #faf8f5;
  --cream-dark: #f0ece6;
  --white: #ffffff;
  --border: #e7e5e4;
  --muted: #a8a29e;
  --text: #1c1917;
  --radius: 0.75rem;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--cream); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Utilities */
.text-gradient-flame {
  background: linear-gradient(135deg, var(--flame), var(--flame-orange));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.bg-gradient-flame { background: linear-gradient(135deg, var(--flame), #b91c1c); }
.bg-gradient-leather { background: linear-gradient(180deg, var(--leather), #1a1917); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  border-radius: 9999px; padding: 0.875rem 2rem; transition: all 0.2s;
  font-family: inherit; text-decoration: none;
}
.btn-flame { background: linear-gradient(135deg, var(--flame), #b91c1c); color: #fff; }
.btn-flame:hover { opacity: 0.9; }
.btn-outline { background: transparent; border: 1.5px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-lg { font-size: 1.125rem; padding: 1rem 2.5rem; }
.btn-sm { font-size: 0.875rem; padding: 0.5rem 1.25rem; }
.btn-xl { font-size: 1.25rem; padding: 1.1rem 2.75rem; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(220,38,38,0.3); }
  50% { box-shadow: 0 0 40px rgba(220,38,38,0.6); }
}
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }

@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
.animate-ping { animation: ping 1s cubic-bezier(0,0,0.2,1) infinite; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 50;
  background: rgba(41,37,36,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.navbar-brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 900; font-size: 1.125rem; color: #fff; }
.navbar-links { display: flex; align-items: center; gap: 2rem; }
.navbar-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.navbar-links a:hover { color: #fff; }
.navbar-mobile-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(41,37,36,0.85), rgba(41,37,36,0.5), rgba(41,37,36,0.9));
}
.hero-content { position: relative; text-align: center; width: 100%; padding: 6rem 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(220,38,38,0.3); background: rgba(220,38,38,0.1);
  border-radius: 9999px; padding: 0.375rem 1rem; font-size: 0.875rem;
  font-weight: 500; color: var(--flame-light); margin-bottom: 2rem;
}
.hero h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; letter-spacing: -0.02em; color: #fff; line-height: 0.95; margin-bottom: 1.5rem; }
.hero-tagline { font-size: clamp(1.125rem, 2.5vw, 1.5rem); color: rgba(255,255,255,0.7); max-width: 640px; margin: 0 auto 2.5rem; font-weight: 500; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ===== MENU ===== */
.menu-section { padding: 6rem 0; background: var(--cream); }
.section-label { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--flame); font-weight: 600; margin-bottom: 0.75rem; font-size: 0.95rem; }
.section-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; letter-spacing: -0.02em; color: var(--text); }
.section-subtitle { margin-top: 1rem; color: var(--muted); font-size: 1.125rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.mb-16 { margin-bottom: 4rem; }

.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.menu-card {
  border-radius: 1rem; overflow: hidden; background: var(--white);
  border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: all 0.3s; cursor: pointer;
}
.menu-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.12); transform: translateY(-4px); }
.menu-card-img { position: relative; overflow: hidden; aspect-ratio: 1; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--flame); color: #fff; font-size: 0.75rem; font-weight: 600;
  padding: 0.25rem 0.625rem; border-radius: 9999px;
}
.menu-card-body { padding: 1.25rem; }
.menu-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.menu-card-header h3 { font-weight: 700; font-size: 1.05rem; color: var(--text); }
.menu-card-price { color: var(--flame); font-weight: 900; font-size: 1.05rem; white-space: nowrap; margin-left: 0.5rem; }
.menu-card-desc { color: var(--muted); font-size: 0.875rem; }

/* ===== DELIVERY ===== */
.delivery-section { padding: 6rem 0; background: var(--leather); color: #fff; }
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.delivery-label { color: var(--sage); }
.delivery-section h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.delivery-section h2 span { color: var(--sage); }
.delivery-desc { color: rgba(255,255,255,0.6); font-size: 1.125rem; margin-bottom: 2rem; max-width: 480px; }
.zip-form { display: flex; gap: 0.75rem; max-width: 400px; margin-bottom: 2rem; }
.zip-input {
  flex: 1; padding: 0.75rem 1.25rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08); color: #fff; font-family: inherit; font-size: 0.95rem;
  outline: none; transition: border-color 0.2s;
}
.zip-input::placeholder { color: rgba(255,255,255,0.35); }
.zip-input:focus { border-color: var(--flame); }
.city-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.city-tag {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05); border-radius: 9999px; padding: 0.25rem 0.75rem;
}
.city-tag svg { color: var(--sage); }
.map-placeholder {
  aspect-ratio: 1; max-width: 400px; margin: 0 auto;
  border-radius: 1.5rem; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.map-dot-ping { width: 1rem; height: 1rem; border-radius: 50%; background: var(--sage); position: absolute; }
.map-dot-ping::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; background: var(--sage); opacity: 0.5;
  animation: ping 1s cubic-bezier(0,0,0.2,1) infinite;
}

/* ===== HOW IT WORKS ===== */
.how-section { padding: 6rem 0; background: var(--cream); }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.how-step { text-align: center; }
.how-icon {
  position: relative; width: 5rem; height: 5rem; margin: 0 auto 1.25rem;
  border-radius: 1rem; background: rgba(220,38,38,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.how-step:hover .how-icon { background: rgba(220,38,38,0.15); }
.how-icon svg { width: 2.25rem; height: 2.25rem; color: var(--flame); }
.how-number {
  position: absolute; top: -0.5rem; right: -0.5rem;
  width: 1.75rem; height: 1.75rem; border-radius: 50%;
  background: var(--flame); color: #fff; font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.how-step h3 { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; }
.how-step p { color: var(--muted); font-size: 0.875rem; }

/* ===== GALLERY + REVIEWS ===== */
.gallery-section { padding: 6rem 0; background: var(--cream-dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 5rem; }
.gallery-item { border-radius: 1rem; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.reviews-title { font-size: 1.875rem; font-weight: 900; text-align: center; margin-bottom: 2.5rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: var(--white); border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.review-stars { display: flex; gap: 0.25rem; margin-bottom: 0.75rem; }
.review-stars svg { width: 1rem; height: 1rem; fill: var(--flame); color: var(--flame); }
.review-text { color: var(--text); margin-bottom: 1rem; line-height: 1.6; }
.review-author span:first-child { font-weight: 700; font-size: 0.875rem; }
.review-author span:last-child { color: var(--muted); font-size: 0.875rem; margin-left: 0.5rem; }

/* ===== FAQ ===== */
.faq-section { padding: 6rem 0; background: var(--cream); }
.faq-list { max-width: 768px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 0.75rem;
  overflow: hidden; transition: box-shadow 0.2s;
}
.faq-item.active { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.faq-question {
  width: 100%; padding: 1.25rem 1.5rem; display: flex; align-items: center;
  justify-content: space-between; background: none; border: none;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--text);
  cursor: pointer; text-align: left;
}
.faq-question svg { width: 1.25rem; height: 1.25rem; color: var(--muted); transition: transform 0.2s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem 1.25rem; color: var(--muted); display: none; }
.faq-item.active .faq-answer { display: block; }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 8rem 0; background: linear-gradient(180deg, var(--leather), #1a1917);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.final-cta-glow1 {
  position: absolute; top: 25%; left: 25%; width: 16rem; height: 16rem;
  border-radius: 50%; background: var(--flame); filter: blur(120px); opacity: 0.1;
}
.final-cta-glow2 {
  position: absolute; bottom: 25%; right: 25%; width: 12rem; height: 12rem;
  border-radius: 50%; background: var(--sage); filter: blur(100px); opacity: 0.1;
}
.final-cta .container { position: relative; }
.final-cta h2 { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 1.5rem; line-height: 1.1; }
.final-cta p { color: rgba(255,255,255,0.6); font-size: 1.25rem; max-width: 560px; margin: 0 auto 2.5rem; }

/* ===== FOOTER ===== */
.footer { background: var(--leather); color: #fff; padding: 3rem 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 900; font-size: 1.125rem; }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.875rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

/* ===== ICONS (inline SVG helper) ===== */
.icon { display: inline-block; width: 1.25em; height: 1.25em; vertical-align: middle; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-mobile-toggle { display: block; }
  .delivery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.75rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
@media (max-width: 640px) {
  .menu-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer .container { flex-direction: column; text-align: center; }
}
