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

/* ===== VARIABLES ===== */
:root {
  --fire: #ef4444;
  --accent: #f97316;
  --primary: #22c55e;
  --navy: #1e2937;
  --cream: #fffbeb;
  --white: #ffffff;
  --border: #e5d5b0;
  --muted: #6b7280;
  --radius: 0.75rem;
}

/* ===== UTILITIES ===== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.text-sm { font-size: 0.875rem; }
.mb-10 { margin-bottom: 2.5rem; }
.text-white { color: #fff; }
.text-white-60 { color: rgba(255,255,255,0.6); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); }

.text-fire-gradient {
  background: linear-gradient(135deg, var(--fire), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== GRID ===== */
.grid { display: grid; gap: 2rem; }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 700; border-radius: var(--radius); padding: 0.625rem 1.5rem; font-size: 0.875rem; transition: transform 0.2s, box-shadow 0.2s; }
.btn:hover { transform: scale(1.05); }
.btn-fire { background: linear-gradient(135deg, var(--fire), var(--accent)); color: #fff; box-shadow: 0 8px 30px -8px rgba(249,115,22,0.4); }
.btn-lime { background: linear-gradient(135deg, var(--primary), #16a34a); color: #fff; box-shadow: 0 8px 30px -8px rgba(34,197,94,0.4); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 0.875rem 2.5rem; font-size: 1.125rem; }
.btn-xl { padding: 1.125rem 3.5rem; font-size: 1.25rem; font-weight: 900; margin-bottom: 4rem; }
.btn-icon { width: 1rem; height: 1rem; flex-shrink: 0; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 0.3s; }
.header.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; }
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon { width: 2rem; height: 2rem; color: var(--accent); }
.logo-text { font-size: 1.25rem; font-weight: 900; letter-spacing: -0.025em; }
.nav-desktop { display: none; align-items: center; gap: 1.5rem; }
.nav-link { font-size: 0.875rem; font-weight: 600; opacity: 0.8; transition: color 0.2s; }
.nav-link:hover { color: var(--accent); }
.mobile-toggle { display: block; background: none; }
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }
.mobile-nav { background: var(--white); border-top: 1px solid var(--border); padding: 0 1rem 1rem; }
.mobile-nav-link { display: block; padding: 0.75rem 0; font-size: 0.875rem; font-weight: 600; opacity: 0.8; border-bottom: 1px solid rgba(0,0,0,0.05); }
@media (min-width: 768px) { .nav-desktop { display: flex; } .mobile-toggle { display: none; } }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,41,55,0.8), rgba(30,41,55,0.6), rgba(30,41,55,0.9)); }
.hero-content { position: relative; z-index: 10; text-align: center; padding: 8rem 1rem; }
.hero-title { font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 1.5rem; max-width: 56rem; margin-left: auto; margin-right: auto; }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-weight: 500; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.badge { display: flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border-radius: 9999px; padding: 0.625rem 1.25rem; border: 1px solid rgba(255,255,255,0.2); }
.badge-icon { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.badge span { font-size: 0.875rem; font-weight: 600; color: #fff; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-title { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 900; text-align: center; margin-bottom: 1rem; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 3.5rem; font-size: 1.125rem; }

/* ===== STEP CARDS ===== */
.step-card { position: relative; background: var(--cream); border-radius: 1rem; padding: 2rem; text-align: center; border: 1px solid var(--border); transition: all 0.3s; }
.step-card:hover { border-color: rgba(249,115,22,0.5); box-shadow: 0 8px 30px -8px rgba(249,115,22,0.2); transform: translateY(-4px); }
.step-num { position: absolute; top: 1rem; right: 1rem; font-size: 3.75rem; font-weight: 900; color: rgba(30,41,55,0.05); line-height: 1; }
.step-icon-wrap { display: inline-flex; align-items: center; justify-content: center; width: 4rem; height: 4rem; border-radius: 1rem; background: linear-gradient(135deg, var(--fire), var(--accent)); margin-bottom: 1.25rem; transition: transform 0.3s; }
.step-card:hover .step-icon-wrap { transform: scale(1.1); }
.step-icon { width: 2rem; height: 2rem; color: #fff; }
.step-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-desc { color: var(--muted); font-size: 0.875rem; }

/* ===== MENU CARDS ===== */
.menu-card { background: var(--white); border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; }
.menu-card:hover { border-color: rgba(249,115,22,0.5); box-shadow: 0 8px 30px -8px rgba(249,115,22,0.2); transform: translateY(-4px); }
.menu-img-wrap { height: 14rem; overflow: hidden; }
.menu-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.menu-card:hover .menu-img-wrap img { transform: scale(1.1); }
.menu-body { padding: 1.5rem; }
.menu-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 0.5rem; }
.menu-name { font-size: 1.125rem; font-weight: 700; }
.menu-price { font-size: 1.25rem; font-weight: 900; color: var(--accent); white-space: nowrap; margin-left: 0.5rem; }
.menu-desc { color: var(--muted); font-size: 0.875rem; margin-bottom: 1rem; }

/* ===== MAP ===== */
.map-wrap { max-width: 48rem; margin: 0 auto; }
.texas-map { width: 100%; filter: drop-shadow(0 0 30px rgba(34,197,94,0.3)); }
.pulse-dot { animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.zip-check { margin-top: 2.5rem; text-align: center; }
.zip-check p { margin-bottom: 1rem; }
.zip-form { display: flex; gap: 0.75rem; max-width: 24rem; margin: 0 auto; }
.zip-input { flex: 1; padding: 0.75rem 1rem; border-radius: var(--radius); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 0.875rem; outline: none; }
.zip-input::placeholder { color: rgba(255,255,255,0.4); }
.zip-input:focus { box-shadow: 0 0 0 2px var(--primary); }

/* ===== MASONRY GALLERY ===== */
.masonry { columns: 2; gap: 1rem; }
.masonry-item { break-inside: avoid; margin-bottom: 1rem; overflow: hidden; border-radius: 0.75rem; }
.masonry-item img { width: 100%; object-fit: cover; border-radius: 0.75rem; transition: transform 0.5s; }
.masonry-item:hover img { transform: scale(1.1); }
@media (min-width: 768px) { .masonry { columns: 3; } }
@media (min-width: 1024px) { .masonry { columns: 4; } }

/* ===== REVIEW CARDS ===== */
.review-card { background: var(--white); border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--border); transition: all 0.3s; }
.review-card:hover { border-color: rgba(249,115,22,0.5); box-shadow: 0 8px 30px -8px rgba(249,115,22,0.2); transform: translateY(-4px); }
.stars { color: var(--accent); font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-weight: 500; margin-bottom: 1rem; line-height: 1.6; }
.review-author { font-size: 0.875rem; color: var(--muted); font-weight: 600; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--cream); border-radius: 0.75rem; border: 1px solid var(--border); overflow: hidden; transition: border-color 0.2s; }
.faq-item:hover { border-color: rgba(249,115,22,0.5); }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; background: none; font-size: 1rem; font-weight: 700; text-align: left; }
.faq-chevron { font-size: 0.75rem; transition: transform 0.3s; color: var(--muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-content p { padding: 0 1.5rem 1rem; color: var(--muted); font-size: 0.875rem; line-height: 1.7; }
.faq-item.open .faq-content { max-height: 200px; }

/* ===== CONTACT GRID ===== */
.contact-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.contact-icon { width: 1.5rem; height: 1.5rem; color: var(--accent); }
.contact-item span { color: rgba(255,255,255,0.8); font-size: 0.875rem; text-align: center; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 3rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer .logo-text { color: var(--cream); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,251,235,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.social-icons { display: flex; gap: 1rem; }
.social-btn { width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-weight: 700; font-size: 0.75rem; transition: all 0.2s; }
.social-btn:hover { background: var(--accent); color: #fff; }
.footer-copy { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; color: rgba(255,255,255,0.4); font-size: 0.875rem; }

/* ===== FLOATING BUTTON ===== */
.floating-btn { display: none; position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; background: linear-gradient(135deg, var(--fire), var(--accent)); color: #fff; border-radius: 9999px; padding: 1rem; box-shadow: 0 8px 30px -8px rgba(249,115,22,0.4); transition: transform 0.2s; animation: pulseGlow 2s ease-in-out infinite; }
.floating-btn:hover { transform: scale(1.1); }
@media (max-width: 767px) { .floating-btn { display: flex; } }
@keyframes pulseGlow { 0%,100% { box-shadow: 0 0 20px rgba(34,197,94,0.3); } 50% { box-shadow: 0 0 40px rgba(34,197,94,0.6); } }

/* ===== FADE IN ===== */
.fade-in-section { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.fade-in-section.visible { opacity: 1; transform: translateY(0); }
