/* ============================================
   TASTY NATION — Design System
   ============================================ */

:root {
  --cream: #FFF8F0;
  --cream-dark: #F5EDE0;
  --chocolate: #3D1F0B;
  --chocolate-light: #5C3A1E;
  --chocolate-medium: #6B4226;
  --cherry: #f44242;
  --cherry-dark: #d63535;
  --gold: #D4A017;
  --gold-light: #E8C547;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(61,31,11,0.08);
  --shadow-md: 0 8px 32px rgba(61,31,11,0.12);
  --shadow-lg: 0 16px 48px rgba(61,31,11,0.16);
  --shadow-xl: 0 24px 64px rgba(61,31,11,0.20);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--chocolate);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Film Grain Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--chocolate-light); border-radius: 4px; }

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { font-size: 1.05rem; margin-bottom: 1rem; }
a { color: var(--cherry); text-decoration: none; transition: color 0.3s var(--ease-out); }
a:hover { color: var(--cherry-dark); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1.5rem; }
.section-subtitle { font-size: 1.15rem; color: var(--chocolate-medium); max-width: 600px; margin: 0 auto 2.5rem; }

/* ============================================
   Layout
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 60px 0; } }

.text-center { text-align: center; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(61,31,11,0.08);
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(255, 248, 240, 0.97);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--chocolate);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--cherry);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--cherry); }

.btn-order {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cherry);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s var(--ease-out);
  border: none; cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(244,66,66,0.3);
}
.btn-order:hover {
  background: var(--cherry-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(244,66,66,0.4);
  color: var(--white) !important;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--chocolate);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; width: 100%;
    background: rgba(255,248,240,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 0 32px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s var(--ease-out);
    border-bottom: 1px solid rgba(61,31,11,0.1);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 12px 24px; font-size: 1.05rem; }
  .nav-links a::after { display: none; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: linear-gradient(165deg, var(--cream) 0%, #F5EDE0 50%, #EDE0D0 100%);
}
.hero-particles {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.15;
  animation: floatParticle 12s infinite ease-in-out;
}
.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 14s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 2s; animation-duration: 11s; width: 8px; height: 8px; }
.particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 4s; animation-duration: 16s; width: 4px; height: 4px; }
.particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(5) { left: 85%; top: 40%; animation-delay: 3s; animation-duration: 10s; width: 10px; height: 10px; opacity: 0.1; }
.particle:nth-child(6) { left: 40%; top: 80%; animation-delay: 5s; animation-duration: 15s; width: 5px; height: 5px; }
.particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 6s; width: 7px; height: 7px; }
.particle:nth-child(8) { left: 15%; top: 45%; animation-delay: 7s; animation-duration: 18s; }

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
  25% { transform: translate(30px, -40px) scale(1.3); opacity: 0.25; }
  50% { transform: translate(-20px, -80px) scale(0.8); opacity: 0.1; }
  75% { transform: translate(40px, -30px) scale(1.1); opacity: 0.2; }
}

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 720px; }
.hero-content h1 { margin-bottom: 1rem; }
.hero-content h1 .accent { color: var(--cherry); }
.hero-content .hero-sub {
  font-size: 1.2rem; color: var(--chocolate-medium);
  margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cherry);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(244,66,66,0.3);
}
.btn-primary:hover {
  background: var(--cherry-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(244,66,66,0.4);
  color: var(--white);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--chocolate);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700; font-size: 1.05rem;
  border: 2px solid var(--chocolate-light);
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--chocolate);
  color: var(--cream);
  transform: translateY(-3px);
}

.hero-image {
  position: relative; z-index: 2;
  margin-top: 3rem;
}
.hero-image img {
  max-width: 480px; width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   Cards — Glassmorphism
   ============================================ */
.card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: rgba(255,255,255,0.8);
}

.product-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  text-decoration: none;
  color: var(--chocolate);
  display: block;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  color: var(--chocolate);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-card-img {
  transform: scale(1.05);
}
.product-card-img-wrap { overflow: hidden; }
.product-card-body { padding: 20px 24px 24px; }
.product-card-body h3 { margin-bottom: 0.4rem; font-size: 1.3rem; }
.product-card-body p { font-size: 0.95rem; color: var(--chocolate-medium); margin-bottom: 0; }

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
  background: var(--chocolate);
  color: var(--cream);
  padding: 48px 0;
}
.stats-grid {
  display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.95rem; opacity: 0.85; }

/* ============================================
   Page Header
   ============================================ */
.page-header {
  padding: 140px 24px 60px;
  text-align: center;
  background: linear-gradient(165deg, var(--cream) 0%, #F5EDE0 100%);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header h1 { margin-bottom: 1rem; }
.page-header p { font-size: 1.15rem; color: var(--chocolate-medium); max-width: 600px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--chocolate-medium);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--chocolate-medium); }
.breadcrumb a:hover { color: var(--cherry); }

/* ============================================
   Content
   ============================================ */
.content-section { padding: 80px 0; }
.content-section:nth-child(even) { background: rgba(245,237,224,0.4); }

.prose { max-width: 700px; margin: 0 auto; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.8rem; }
.prose h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.prose p { margin-bottom: 1.2rem; }
.prose ul, .prose ol { margin-bottom: 1.2rem; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--chocolate); }

/* ============================================
   Location Cards
   ============================================ */
.location-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s var(--ease-out);
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.location-card h3 { margin-bottom: 1rem; }
.location-card .location-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.location-info { display: flex; flex-direction: column; gap: 8px; margin-top: 1rem; }
.location-info-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.95rem;
}
.location-info-item .icon { flex-shrink: 0; width: 20px; text-align: center; color: var(--cherry); }

/* ============================================
   Blog Cards
   ============================================ */
.blog-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease-out);
  text-decoration: none;
  color: var(--chocolate);
  display: block;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: var(--chocolate);
}
.blog-card .blog-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.blog-card p { font-size: 0.92rem; color: var(--chocolate-medium); margin-bottom: 0; }

/* ============================================
   Contact Form
   ============================================ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--chocolate);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(61,31,11,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: rgba(255,255,255,0.8);
  color: var(--chocolate);
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cherry);
  box-shadow: 0 0 0 3px rgba(244,66,66,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.btn-submit {
  background: var(--cherry);
  color: var(--white);
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer;
  transition: all 0.3s var(--ease-out);
  font-family: var(--font-body);
}
.btn-submit:hover {
  background: var(--cherry-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(244,66,66,0.3);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--chocolate);
  color: rgba(255,248,240,0.85);
  padding: 64px 0 0;
}
.footer a { color: rgba(255,248,240,0.85); }
.footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,248,240,0.1);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img { height: 48px; margin-bottom: 16px; filter: brightness(10); }
.footer-brand p { font-size: 0.92rem; line-height: 1.6; max-width: 280px; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.92rem; }
.footer-social {
  display: flex; gap: 12px; margin-top: 16px;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,248,240,0.1);
  transition: all 0.3s;
  font-size: 0.85rem;
}
.footer-social a:hover {
  background: var(--cherry);
  color: var(--white);
}
.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem;
  opacity: 0.7;
}
.footer-bottom a { opacity: 0.8; }

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--chocolate) 0%, var(--chocolate-light) 100%);
  color: var(--cream);
}
.cta-section h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,248,240,0.8); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary {
  background: var(--gold);
  color: var(--chocolate);
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
}
.cta-section .btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(212,160,23,0.5);
  color: var(--chocolate);
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   Feature Grid
   ============================================ */
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--cherry), var(--cherry-dark));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--white);
}

/* ============================================
   Steps
   ============================================ */
.step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px 0;
}
.step-number {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cherry);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.step-content h3 { margin-bottom: 0.4rem; }

/* ============================================
   Badge / Tag
   ============================================ */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-gold { background: var(--gold); color: var(--white); }
.badge-cherry { background: var(--cherry); color: var(--white); }
.badge-chocolate { background: var(--chocolate); color: var(--cream); }

/* ============================================
   WhatsApp Button
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s;
  color: var(--white);
  font-size: 1.5rem;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  color: var(--white);
}

/* ============================================
   Misc
   ============================================ */
.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 0 auto 2rem;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(212,160,23,0.08), rgba(212,160,23,0.04));
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}

.tag-veg {
  display: inline-flex; align-items: center; gap: 6px;
  background: #E8F5E9;
  color: #2E7D32;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

img { max-width: 100%; height: auto; }

/* Responsive inline grids */
@media (max-width: 768px) {
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .hero { min-height: auto; padding: 120px 24px 60px; }
  .hero-image img { max-width: 320px; }
  .stats-grid { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Print */
@media print {
  .nav, .whatsapp-float, .footer { display: none; }
  body::before { display: none; }
}
