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

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

:root {
  --bg: #fefce8;
  --fg: #3b2f20;
  --card: #ffffff;
  --card-fg: #3b2f20;
  --primary: #16a34a;
  --primary-fg: #fefce8;
  --secondary: #f59e0b;
  --secondary-fg: #1c1410;
  --muted: #fef9c3;
  --muted-fg: #6b5e4f;
  --border: #e2d5b0;
  --heat-orange: #f59e0b;
  --hill-green: #16a34a;
  --cream: #fefce8;
  --dark: #1c1410;
  --radius: 0.75rem;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--fg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5,h6 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 5rem 1rem; }

.text-gradient {
  background: linear-gradient(135deg, var(--hill-green), var(--heat-orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(28, 20, 16, 0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(254, 252, 232, 0.1);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.navbar-brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 900; font-size: 1.125rem; color: var(--cream); }
.navbar-links { display: flex; align-items: center; gap: 2rem; }
.navbar-links a { font-size: 0.875rem; font-weight: 500; color: rgba(254,252,232,0.7); transition: color 0.2s; }
.navbar-links a:hover { color: var(--cream); }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.625rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: 0.875rem; border: none; cursor: pointer; transition: all 0.2s; }
.btn-primary { background: var(--heat-orange); color: var(--dark); }
.btn-primary:hover { background: #e8930a; }
.btn-hero { padding: 0.875rem 2rem; font-size: 1.125rem; }
.btn-outline { background: transparent; border: 1px solid rgba(254,252,232,0.3); color: var(--cream); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(254,252,232,0.1); }

@media (max-width: 768px) {
  .navbar-links { display: none; }
}

/* ========== HERO ========== */
.hero { position: relative; min-height: 90vh; 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(to right, rgba(28,20,16,0.85), rgba(28,20,16,0.6), transparent); }
.hero-content { position: relative; z-index: 2; padding: 5rem 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px; border: 1px solid rgba(245,158,11,0.4); background: rgba(28,20,16,0.4); padding: 0.5rem 1rem; font-size: 0.875rem; color: var(--cream); backdrop-filter: blur(4px); margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(3rem, 8vw, 5rem); font-weight: 900; line-height: 0.95; color: var(--cream); margin-bottom: 1rem; }
.hero-tagline { font-size: clamp(1.125rem, 2.5vw, 1.5rem); font-weight: 500; color: rgba(254,252,232,0.8); margin-bottom: 2rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ========== GALLERY ========== */
.gallery { background: var(--dark); padding: 0.25rem 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.gallery-item { aspect-ratio: 1; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== MENU ========== */
.menu { background: var(--bg); }
.menu .container { max-width: 800px; }
.section-title { font-size: clamp(2rem, 5vw, 3rem); text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: var(--muted-fg); font-size: 1.125rem; margin-bottom: 3rem; }
.menu-item { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); margin-bottom: 0.75rem; transition: all 0.3s; }
.menu-item:hover { border-color: rgba(245,158,11,0.4); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.menu-item h3 { font-weight: 700; font-size: 1.125rem; display: flex; align-items: center; gap: 0.5rem; }
.menu-item p { color: var(--muted-fg); font-size: 0.875rem; margin-top: 0.25rem; }
.menu-price { font-weight: 900; font-size: 1.25rem; color: var(--hill-green); white-space: nowrap; margin-left: 1rem; }

/* ========== DELIVERY ========== */
.delivery { background: var(--primary); color: var(--primary-fg); }
.delivery .container { max-width: 1000px; text-align: center; }
.delivery .section-title { color: var(--primary-fg); }
.delivery .section-subtitle { color: rgba(254,252,232,0.7); }
.delivery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.delivery-city { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; border-radius: var(--radius); background: rgba(254,252,232,0.1); border: 1px solid rgba(254,252,232,0.2); font-weight: 600; font-size: 0.875rem; transition: background 0.2s; }
.delivery-city:hover { background: rgba(254,252,232,0.2); }
.delivery-note { margin-top: 2rem; font-size: 0.875rem; color: rgba(254,252,232,0.6); }
@media (max-width: 768px) { .delivery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .delivery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== HOW IT WORKS ========== */
.how-it-works { background: var(--bg); }
.how-it-works .container { max-width: 1000px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.step { text-align: center; }
.step-icon { width: 64px; height: 64px; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; border-radius: 1rem; background: rgba(245,158,11,0.1); color: var(--heat-orange); transition: all 0.3s; }
.step:hover .step-icon { background: var(--heat-orange); color: var(--dark); }
.step-label { font-size: 0.75rem; font-weight: 700; color: var(--heat-orange); margin-bottom: 0.5rem; text-transform: uppercase; }
.step h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.step p { color: var(--muted-fg); font-size: 0.875rem; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--muted); }
.testimonials .container { max-width: 1000px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--card); border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--border); transition: box-shadow 0.3s; }
.testimonial-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.star { color: var(--heat-orange); }
.testimonial-card blockquote { margin-bottom: 1rem; line-height: 1.7; }
.testimonial-card .author { font-weight: 700; font-size: 0.875rem; }
.testimonial-card .city { font-size: 0.75rem; color: var(--muted-fg); }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ========== FAQ ========== */
.faq { background: var(--bg); }
.faq .container { max-width: 700px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); margin-bottom: 0.75rem; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; font-weight: 600; font-size: 1rem; background: none; border: none; cursor: pointer; text-align: left; color: var(--fg); font-family: inherit; }
.faq-question:hover { color: var(--hill-green); }
.faq-chevron { transition: transform 0.3s; font-size: 1.25rem; color: var(--muted-fg); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: var(--muted-fg); line-height: 1.7; }

/* ========== FOOTER ========== */
.footer { background: var(--dark); color: rgba(254,252,232,0.7); padding: 3rem 1rem; }
.footer .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 900; font-size: 1.125rem; color: var(--cream); }
.footer p { font-size: 0.875rem; }

/* SVG icon inline helper */
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: middle; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 28px; height: 28px; }
