/* ============================================================
   DANZVERSITY.CSS — Global Design System
   danzversity.com | Version 1.8 | April 2026
   ============================================================ */

/* ─── IMPORTS ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

/* ─── CSS VARIABLES ───────────────────────────────────────── */
:root {
  /* Brand */
  --gold:           #FFD700;
  --black:          #000000;
  --red:            #E74C3C;

  /* Backgrounds — ALL pure black */
  --bg-page:        #000000;
  --bg-surface:     #000000;
  --bg-card:        rgba(255, 255, 255, 0.04);
  --bg-card-hover:  rgba(255, 255, 255, 0.07);

  /* Borders */
  --border:         rgba(255, 255, 255, 0.08);
  --border-hover:   rgba(255, 215, 0, 0.5);

  /* Text */
  --text-primary:   #FFFFFF;
  --text-secondary: #888888;
  --text-muted:     #555555;

  /* Accents */
  --success:        #4CAF50;
  --warning:        #FF9800;
  --error:          #E74C3C;

  /* Program categories */
  --youth:          #4472C4;
  --adult:          #FFD700;
  --collective:     #9C27B0;
  --camps:          #FF5722;
  --trial:          #FF9800;

  /* Elements */
  --earth:          #4CAF50;
  --water:          #2196F3;
  --air:            #87CEEB;
  --fire:           #FF5722;

  /* Layout */
  --max-width:      1200px;
  --nav-height:     72px;
  --section-pad:    80px;
  --section-pad-sm: 48px;

  /* Radius */
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-pill:    100px;

  /* Transitions */
  --transition:     0.2s ease;
  --transition-md:  0.35s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #000000;
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.5px;
  line-height: 1.1;
  color: var(--text-primary);
}

h1 { font-size: clamp(48px, 8vw, 80px); }
h2 { font-size: clamp(36px, 6vw, 56px); }
h3 { font-size: clamp(24px, 4vw, 36px); }
h4 { font-size: clamp(20px, 3vw, 28px); }

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.text-gold   { color: var(--gold); }
.text-red    { color: var(--red); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--text-primary); }
.text-center { text-align: center; }

.label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section-sm { padding: var(--section-pad-sm) 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label { margin-bottom: 12px; }
.section-header h2 { color: var(--gold); margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ─── NAV ─────────────────────────────────────────────────── */
.site-nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); z-index: 1000; background: rgba(0, 0, 0, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255, 255, 255, 0.06); transition: background var(--transition-md), border-color var(--transition-md); }
.site-nav.scrolled { background: rgba(0, 0, 0, 0.97); border-bottom-color: rgba(62, 180, 137, 0.2); }
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; position: relative; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 3px; color: var(--gold); line-height: 1; }
.nav-logo-home { font-family: 'Bebas Neue', sans-serif; font-size: 9px; letter-spacing: 3px; color: var(--text-muted); position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); opacity: 0; transition: opacity var(--transition); }
.nav-logo:hover .nav-logo-home { opacity: 1; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item + .nav-item::before { content: ''; display: block; width: 1px; height: 16px; background: rgba(255, 255, 255, 0.1); flex-shrink: 0; }
.nav-link { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-secondary); padding: 8px 16px; border-radius: var(--radius-sm); transition: color var(--transition), background var(--transition); white-space: nowrap; position: relative; }
.nav-link:hover { color: #3eb489; background: rgba(62, 180, 137, 0.06); }
.nav-link.active { color: #3eb489; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown { position: absolute; top: calc(100% + 8px); left: 0; min-width: 200px; background: #111111; border: 1px solid rgba(62, 180, 137, 0.15); border-radius: var(--radius-md); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all var(--transition); box-shadow: 0 20px 60px rgba(0,0,0,0.8); }
.nav-dropdown a { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 1px; color: var(--text-secondary); padding: 10px 14px; border-radius: var(--radius-sm); transition: all var(--transition); }
.nav-dropdown a:hover { color: #3eb489; background: rgba(62, 180, 137, 0.08); }
.nav-cta { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 2px; background: var(--gold); color: var(--black); padding: 10px 22px; border-radius: var(--radius-pill); transition: transform var(--transition), box-shadow var(--transition); margin-left: 12px; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255, 215, 0, 0.35); }
.nav-portal { position: relative; margin-left: 12px; display: flex; align-items: center; }
.nav-portal-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.04); cursor: pointer; transition: all var(--transition); color: var(--text-secondary); }
.nav-portal-btn:hover { border-color: #3eb489; color: #3eb489; background: rgba(62,180,137,0.08); }
.nav-portal-btn svg { width: 18px; height: 18px; fill: currentColor; }
.nav-portal-btn.logged-in { border-color: #3eb489; color: #3eb489; }
.nav-portal:hover .nav-portal-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-portal-drop { position: absolute; top: calc(100% + 10px); right: 0; min-width: 200px; background: #111; border: 1px solid rgba(62,180,137,0.15); border-radius: var(--radius-md); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all var(--transition); box-shadow: 0 20px 60px rgba(0,0,0,0.8); z-index: 1001; }
.nav-portal-drop a { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 1px; color: var(--text-secondary); padding: 10px 14px; border-radius: var(--radius-sm); transition: all var(--transition); text-decoration: none; }
.nav-portal-drop a:hover { color: #3eb489; background: rgba(62,180,137,0.08); }
.nav-portal-drop .portal-drop-divider { height: 1px; background: var(--border); margin: 6px 0; }
.nav-portal-drop .portal-drop-logout { color: var(--text-muted); }
.nav-portal-drop .portal-drop-logout:hover { color: var(--red); background: rgba(231,76,60,0.08); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.98); padding: 32px 24px; overflow-y: auto; z-index: 999; flex-direction: column; gap: 4px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; color: var(--text-secondary); padding: 14px 0; border-bottom: 1px solid var(--border); transition: color var(--transition); }
.nav-mobile a:hover, .nav-mobile a.active { color: #3eb489; }
.nav-mobile .nav-mobile-cta { margin-top: 32px; display: inline-flex; font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; background: var(--gold); color: var(--black); padding: 16px 40px; border-radius: var(--radius-pill); text-align: center; justify-content: center; }
.nav-offset { padding-top: var(--nav-height); }

/* ─── HERO ACCENT — Top-Down Gradient Fade-In ─────────────── */
/*
  v1.8: z-index 1 on children so gradient bleeds over content (deeper effect).
  Fades in once over 2s, holds. High-punch opacity. Vibrant colors.
  Color set per page via accent class hardcoded in HTML.
*/

.hero-accent-bar {
  --_bar-r: var(--bar-r, 255);
  --_bar-g: var(--bar-g, 195);
  --_bar-b: var(--bar-b, 0);
  overflow: visible !important;
}

.hero-accent-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 600px;
  background: linear-gradient(180deg,
    rgba(var(--_bar-r), var(--_bar-g), var(--_bar-b), 0.32) 0%,
    rgba(var(--_bar-r), var(--_bar-g), var(--_bar-b), 0.22) 30%,
    rgba(var(--_bar-r), var(--_bar-g), var(--_bar-b), 0.12) 55%,
    rgba(var(--_bar-r), var(--_bar-g), var(--_bar-b), 0.04) 80%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: hero-breathe 2s ease-out 0.3s forwards;
}

.hero-accent-bar::after {
  content: none;
}

/* z-index: 1 = gradient bleeds over content for deeper cinematic effect */
.hero-accent-bar > * { position: relative; z-index: 1; }

@keyframes hero-breathe {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* ── Color variants (RGB channels for gradient stops) ── */
/* v1.7+ vibrant palette — deeper/richer on black */
.accent-gold       { --bar-r:255; --bar-g:195; --bar-b:0; }
.accent-fire       { --bar-r:255; --bar-g:69;  --bar-b:0; }
.accent-water      { --bar-r:0;   --bar-g:122; --bar-b:255; }
.accent-earth      { --bar-r:0;   --bar-g:200; --bar-b:83; }
.accent-collective { --bar-r:171; --bar-g:71;  --bar-b:188; }
.accent-red        { --bar-r:244; --bar-g:67;  --bar-b:54; }

/* ─── SCROLL-REVEAL ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease var(--reveal-delay, 0ms), transform 0.55s ease var(--reveal-delay, 0ms); will-change: opacity, transform; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-accent-bar::before { animation: none; opacity: 1; }
  .age-card-icon, .youth-icon-bounce { animation: none !important; }
}

/* ─── YOUTH BOUNCING ICONS ────────────────────────────────── */
@keyframes icon-bounce-in { 0% { transform: scale(0.4) translateY(12px); opacity: 0; } 55% { transform: scale(1.25) translateY(-6px); opacity: 1; } 75% { transform: scale(0.92) translateY(2px); } 90% { transform: scale(1.05) translateY(-2px); } 100% { transform: scale(1) translateY(0); opacity: 1; } }
@keyframes icon-idle-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.age-card-icon { display: block; font-size: 40px; margin-bottom: 12px; opacity: 0; transform: scale(0.4) translateY(12px); transition: none; }
.age-card-icon.bounce-in { animation: icon-bounce-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) var(--icon-delay, 0ms) both, icon-idle-bounce 2.2s ease-in-out calc(var(--icon-delay, 0ms) + 700ms) infinite; }

/* ─── STAT COUNTERS ───────────────────────────────────────── */
.stat-counter { display: inline-block; transition: color 0.3s ease; }

/* ─── CARD HOVER POLISH ───────────────────────────────────── */
.program-card:hover, .age-card:hover, .offering-card:hover, .beyond-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
@media (hover: none) { .program-card:active, .age-card:active, .offering-card:active { transform: scale(0.98); transition: transform 0.1s ease; } }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: #000000; border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .footer-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 4px; color: var(--gold); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-address { font-size: 13px; color: var(--text-muted); line-height: 1.8; }
.footer-address a { color: var(--text-muted); transition: color var(--transition); }
.footer-address a:hover { color: var(--gold); }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 3px; color: var(--text-primary); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-primary); }
.social-links { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; transition: all var(--transition); }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(255, 215, 0, 0.08); }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; border: none; cursor: pointer; transition: all var(--transition); text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--gold); color: var(--black); font-size: 18px; padding: 14px 36px; border-radius: var(--radius-pill); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255, 215, 0, 0.35); }
.btn-secondary { background: transparent; color: var(--text-primary); font-size: 15px; padding: 12px 28px; border-radius: var(--radius-pill); border: 2px solid var(--border); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-red { background: var(--red); color: #ffffff; font-size: 18px; padding: 14px 36px; border-radius: var(--radius-pill); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(231, 76, 60, 0.35); }
.btn-sm { font-size: 13px; padding: 9px 20px; }
.btn-lg { font-size: 22px; padding: 18px 48px; }

/* ─── CARDS ───────────────────────────────────────────────── */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; transition: border-color var(--transition-md), background var(--transition-md); }
.card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.card-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; color: var(--text-primary); margin-bottom: 12px; }

/* ─── BADGES ──────────────────────────────────────────────── */
.badge { display: inline-block; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-sm); }
.badge-gold { background: rgba(255, 215, 0, 0.15); color: var(--gold); border: 1px solid rgba(255, 215, 0, 0.3); }
.badge-red { background: rgba(231, 76, 60, 0.15); color: var(--red); border: 1px solid rgba(231, 76, 60, 0.3); }
.badge-youth { background: rgba(68, 114, 196, 0.15); color: var(--youth); border: 1px solid rgba(68, 114, 196, 0.3); }
.badge-collective { background: rgba(156, 39, 176, 0.15); color: var(--collective); border: 1px solid rgba(156, 39, 176, 0.3); }

/* ─── FORMS ───────────────────────────────────────────────── */
.input-field { width: 100%; padding: 14px 20px; background: var(--bg-card); border: 2px solid var(--border); border-radius: var(--radius-md); color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 15px; transition: border-color var(--transition); outline: none; }
.input-field:focus { border-color: var(--gold); }
.input-field::placeholder { color: var(--text-muted); }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section { padding: 80px 0; background: #000; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.testimonial-card { padding: 28px 24px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-md); display: flex; flex-direction: column; transition: border-color var(--transition-md); }
.testimonial-card:hover { border-color: var(--border-hover); }
.testimonial-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-quote { font-size: 15px; color: var(--text-secondary); line-height: 1.8; flex: 1; font-style: italic; }
.testimonial-author { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.testimonial-name { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 1px; color: var(--gold); }
.testimonial-source { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.google-rating-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-pill); margin-top: 20px; }
.google-rating-score { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--gold); line-height: 1; }
.google-rating-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.google-rating-count { font-size: 12px; color: var(--text-muted); }
@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ─── DIVIDERS ────────────────────────────────────────────── */
.divider { height: 0; background: none; margin: 40px 0; }
.divider-gold { height: 2px; width: 48px; background: var(--gold); margin: 16px auto 24px; }

/* ─── LOADING ─────────────────────────────────────────────── */
.spinner { width: 48px; height: 48px; border: 3px solid rgba(255, 215, 0, 0.1); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-state { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 80px 0; color: var(--text-muted); font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 2px; }

/* ─── PAGE HERO ───────────────────────────────────────────── */
.page-hero { padding: calc(var(--nav-height) + 64px) 0 64px; text-align: center; background: #000000; }
.page-hero .label { margin-bottom: 16px; }
.page-hero h1 { color: var(--gold); margin-bottom: 20px; }
.page-hero p { max-width: 580px; margin: 0 auto 36px; font-size: 17px; }

/* ─── UTILITIES ───────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-48{margin-top:48px}.mt-64{margin-top:64px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}.mb-48{margin-bottom:48px}.mb-64{margin-bottom:64px}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; --section-pad-sm: 36px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .page-hero { padding: calc(var(--nav-height) + 40px) 0 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-primary, .btn-red { width: 100%; }
}
