/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; }
body { font-family: 'Inter', system-ui, sans-serif; color: #3d1f06; background: #fffbeb; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== TOKENS ===== */
:root {
  --brown: #78350f;
  --brown-dark: #4a1e06;
  --green: #22c55e;
  --orange: #f97316;
  --cream: #fffbeb;
  --sand: #fef3c7;
  --foreground: #3d1f06;
  --muted: #92734f;
  --border: #e8d5b8;
  --radius: 0.75rem;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 768px; }
.section { padding: 6rem 0; }
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }
.bg-brown { background: var(--brown-dark); }
.text-accent { color: var(--orange); }
.text-green { color: var(--green); }
.text-cream { color: var(--cream); }
.text-cream-muted { color: rgba(255,251,235,.6); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,251,235,.8); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-size: 1.2rem; font-weight: 800; color: var(--brown); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--brown); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--foreground); border-radius: 2px; transition: .3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--border); padding: 1.5rem; gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 700; border-radius: var(--radius); transition: all .2s; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-accent { background: var(--orange); color: #fff; }
.btn-accent:hover { background: #ea6a10; }
.btn-outline-light { border: 1px solid rgba(255,251,235,.3); color: var(--cream); }
.btn-outline-light:hover { background: rgba(255,251,235,.1); }
.badge { display: inline-block; padding: 0.375rem 1rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.badge-accent { background: var(--orange); color: #fff; }

/* ===== 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(to right, rgba(74,30,6,.92), rgba(74,30,6,.7), rgba(74,30,6,.4)); }
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 8rem 0 4rem; }
.hero-content .badge { margin-bottom: 1.5rem; }
.hero-content h1 { font-size: 3.5rem; font-weight: 900; line-height: 1.05; color: var(--cream); margin-bottom: 1.5rem; }
.hero-content p { font-size: 1.15rem; color: rgba(255,251,235,.8); margin-bottom: 2rem; max-width: 500px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); }
.scroll-mouse { width: 24px; height: 40px; border: 2px solid rgba(255,251,235,.4); border-radius: 12px; display: flex; align-items: flex-start; justify-content: center; padding-top: 8px; }
.scroll-dot { width: 6px; height: 12px; border-radius: 3px; background: rgba(255,251,235,.6); animation: scrollBounce 2s infinite; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.25rem; }
  .hero-content { padding: 6rem 0 3rem; }
}

/* ===== SECTIONS ===== */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; color: var(--foreground); margin-bottom: 1rem; }
.section-desc { font-size: 1.1rem; color: var(--muted); line-height: 1.7; }
.bg-brown .section-header h2 { color: var(--cream); }

@media (max-width: 768px) { .section-header h2 { font-size: 1.75rem; } .section { padding: 4rem 0; } }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.feature-card { background: var(--sand); border: 1px solid var(--border); border-radius: 1rem; padding: 2rem; text-align: center; transition: border-color .3s; }
.feature-card:hover { border-color: rgba(249,115,22,.4); }
.feature-icon { width: 56px; height: 56px; border-radius: 12px; background: rgba(249,115,22,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--orange); }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .75rem; }
.feature-card p { color: var(--muted); font-size: .95rem; }
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }

/* ===== MENU ===== */
.menu-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; max-width: 900px; margin: 0 auto; }
.menu-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 1.25rem; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--border); transition: border-color .3s; }
.menu-item:hover { border-color: rgba(249,115,22,.3); }
.menu-item-title { display: flex; align-items: center; gap: .5rem; margin-bottom: .25rem; flex-wrap: wrap; }
.menu-item-title h3 { font-size: .95rem; font-weight: 700; }
.menu-tag { font-size: .65rem; font-weight: 600; padding: .2rem .6rem; border-radius: 999px; background: rgba(34,197,94,.15); color: var(--green); text-transform: uppercase; letter-spacing: .04em; }
.menu-tag.tag-green { background: rgba(34,197,94,.15); color: var(--green); }
.menu-item-info p { font-size: .85rem; color: var(--muted); }
.menu-price { font-size: 1.1rem; font-weight: 800; color: var(--orange); white-space: nowrap; }
@media (max-width: 768px) { .menu-grid { grid-template-columns: 1fr; } }

/* ===== MAP ===== */
.map-wrapper { max-width: 640px; margin: 0 auto 3rem; }
.map-glow { position: relative; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 0 60px 15px rgba(34,197,94,.25); }
.map-glow img { width: 100%; }
.map-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(74,30,6,.5), transparent); }
.city-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.city-tag { padding: .5rem 1rem; border-radius: 999px; background: rgba(255,251,235,.1); color: var(--cream); font-size: .875rem; font-weight: 500; border: 1px solid rgba(255,251,235,.2); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.gallery-item { border-radius: 1rem; overflow: hidden; }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.1); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } .gallery-item img { height: 200px; } }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.review-card { background: var(--cream); border: 1px solid var(--border); border-radius: 1rem; padding: 1.75rem; }
.stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-card > p { color: var(--foreground); line-height: 1.7; margin-bottom: 1.25rem; }
.review-author strong { display: block; font-weight: 700; }
.review-author span { font-size: .85rem; color: var(--muted); }
@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--sand); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: rgba(249,115,22,.4); }
.faq-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; font-weight: 600; color: var(--foreground); text-align: left; }
.faq-icon { font-size: 1.25rem; color: var(--muted); transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-content p { padding: 0 1.5rem 1.25rem; color: var(--muted); }
.faq-item.open .faq-content { max-height: 200px; }

/* ===== FOOTER ===== */
.footer { background: var(--brown-dark); color: var(--cream); padding: 3rem 0; }
.footer-inner { text-align: center; }
.footer-logo { font-size: 1.5rem; font-weight: 800; margin-bottom: .5rem; }
.footer-tagline { font-size: .875rem; color: rgba(255,251,235,.5); margin-bottom: 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 2rem; }
.footer-links a { font-size: .875rem; color: rgba(255,251,235,.4); transition: color .2s; }
.footer-links a:hover { color: var(--cream); }
.footer-copy { font-size: .75rem; color: rgba(255,251,235,.25); }

/* ===== ANIMATIONS ===== */
.anim-fade-up { animation: fadeUp .8s ease-out both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.anim-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity .6s ease-out, transform .6s ease-out; }
.anim-on-scroll.visible { opacity: 1; transform: translateY(0); }
