/* Crayons for Change — Stylesheet 2025 */

/* ── VARIABLES ─────────────────────────────── */
:root {
  --cream:        #FDFAF3;
  --cream-alt:    #F5EDDB;
  --cream-card:   #FAF6ED;
  --border:       #E9DFCB;
  --terracotta:   #B8471E;
  --terra-hover:  #9A3A18;
  --terra-light:  #E2773D;
  --terra-pale:   #FEF3EC;
  --terra-glow:   rgba(184,71,30,0.12);
  --ink:          #1A1612;
  --text:         #2D2520;
  --muted:        #7A6E65;
  --muted-light:  #B0A49A;
  --white:        #FFFFFF;
  --max-w:        1100px;
  --r:            10px;
  --r-lg:         16px;
  --r-xl:         24px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm:    0 1px 3px rgba(26,22,18,0.07), 0 1px 2px rgba(26,22,18,0.04);
  --shadow:       0 4px 16px rgba(26,22,18,0.09), 0 2px 4px rgba(26,22,18,0.05);
  --shadow-lg:    0 12px 40px rgba(26,22,18,0.13), 0 4px 12px rgba(26,22,18,0.06);
  --shadow-warm:  0 8px 32px rgba(184,71,30,0.18);
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── SKIP LINK ─────────────────────────────── */
.skip-link {
  position: absolute; left: 16px; top: 16px;
  padding: 8px 16px; border-radius: var(--r);
  background: var(--ink); color: var(--cream);
  text-decoration: none; font-weight: 700; font-size: 14px;
  z-index: 100; transform: translateY(-200%);
  transition: transform 0.2s;
}
.skip-link:focus { transform: translateY(0); }

/* ── CONTAINER ─────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,250,243,0.9);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; height: 68px;
}

.brand {
  display: inline-flex; align-items: center;
  gap: 10px; text-decoration: none;
  font-weight: 800; font-size: 15px;
  letter-spacing: -0.02em; color: var(--ink);
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.brand:hover { opacity: 0.72; }
.brand img { width: 34px; height: 34px; object-fit: contain; border-radius: 6px; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  text-decoration: none; padding: 6px 13px;
  border-radius: var(--r); font-weight: 600;
  font-size: 14px; color: var(--muted);
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--cream-alt); }
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--terracotta); background: var(--terra-pale);
}

.nav-cta {
  display: inline-flex; align-items: center;
  padding: 9px 18px; border-radius: var(--r);
  background: var(--terracotta); color: var(--white) !important;
  font-weight: 700; font-size: 14px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 2px 10px rgba(184,71,30,0.28);
  transition: background 0.18s, transform 0.14s var(--ease-spring), box-shadow 0.18s;
}
.nav-cta:hover {
  background: var(--terra-hover); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,71,30,0.38);
}
.nav-cta:active { transform: translateY(0); }

/* ── HAMBURGER ─────────────────────────────── */
.menu-toggle {
  display: none; flex-direction: column;
  justify-content: center; align-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border); border-radius: var(--r);
  background: transparent; gap: 5px;
  transition: background 0.18s, border-color 0.18s;
}
.menu-toggle:hover { background: var(--cream-alt); border-color: rgba(26,22,18,0.2); }
.menu-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s, width 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV ────────────────────────────── */
.mobile-nav {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(253,250,243,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 40; flex-direction: column;
  padding: 24px 20px; gap: 4px;
  opacity: 0; transform: translateY(-6px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  pointer-events: none;
  border-top: 1px solid var(--border);
}
.mobile-nav.open {
  opacity: 1; transform: translateY(0);
  pointer-events: all;
}
.mobile-nav a {
  text-decoration: none; padding: 15px 18px;
  border-radius: var(--r-lg); font-weight: 700;
  font-size: 17px; color: var(--text);
  transition: background 0.15s, color 0.15s;
  border: 1px solid transparent;
}
.mobile-nav a:hover { background: var(--cream-alt); color: var(--ink); border-color: var(--border); }
.mobile-nav a.active { color: var(--terracotta); background: var(--terra-pale); border-color: rgba(184,71,30,0.15); }
.mobile-nav .mobile-cta {
  margin-top: 12px; background: var(--terracotta);
  color: var(--white) !important; text-align: center;
  box-shadow: var(--shadow-warm); border-color: transparent;
}
.mobile-nav .mobile-cta:hover { background: var(--terra-hover); border-color: transparent; }

/* ── TYPOGRAPHY ────────────────────────────── */
h1, h2, h3, h4 {
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.18;
  font-weight: 800;
}
h1 { font-size: clamp(30px, 4.5vw, 52px); }
h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; }
h3 { font-size: 18px; letter-spacing: -0.015em; }

p { line-height: 1.75; }

.lead {
  color: var(--muted); font-size: 17px;
  line-height: 1.78; max-width: 640px;
}

/* ── SECTION LAYOUT ────────────────────────── */
section { padding: 72px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px;
  background: var(--terra-pale);
  border: 1px solid rgba(184,71,30,0.15);
  color: var(--terracotta);
  font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 14px;
}

/* ── GRIDS ─────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.grid-2-1 { display: grid; grid-template-columns: 1.45fr 1fr; gap: 56px; align-items: center; }

/* ── CARDS ─────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: box-shadow 0.22s var(--ease), transform 0.22s var(--ease), border-color 0.22s;
}
.card-hover:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-3px);
  border-color: rgba(184,71,30,0.22);
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center;
  justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--r);
  font-family: inherit; font-weight: 700;
  font-size: 15px; text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.18s, transform 0.14s var(--ease-spring), box-shadow 0.18s, border-color 0.18s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--terracotta); color: var(--white);
  box-shadow: 0 2px 10px rgba(184,71,30,0.24);
}
.btn-primary:hover {
  background: var(--terra-hover);
  box-shadow: 0 6px 22px rgba(184,71,30,0.36);
}
.btn-outline {
  background: transparent; border: 1.5px solid var(--border);
  color: var(--ink);
}
.btn-outline:hover { background: var(--cream-alt); border-color: rgba(26,22,18,0.24); }
.btn-ghost-white {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.38);
  color: var(--white);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* ── HERO ──────────────────────────────────── */
.site-hero {
  padding: 84px 0 76px;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.site-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 88% 8%, rgba(184,71,30,0.075) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 0% 95%, rgba(184,71,30,0.045) 0%, transparent 60%);
  pointer-events: none;
}
.site-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(26,22,18,0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 75% 85% at 50% 50%, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 85% at 50% 50%, black 25%, transparent 80%);
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border: 1px solid var(--border);
  border-radius: 999px; font-size: 13px; font-weight: 700;
  color: var(--muted); margin-bottom: 24px;
  background: var(--white); box-shadow: var(--shadow-sm);
}
.pulse-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--terracotta);
  animation: pulseDot 2.2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,71,30,0.45); }
  50%       { box-shadow: 0 0 0 6px rgba(184,71,30,0); }
}

.site-hero h1 {
  font-size: clamp(34px, 5.2vw, 60px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.07; max-width: 560px; margin-bottom: 20px;
}
.site-hero h1 em {
  font-style: normal; color: var(--terracotta);
  position: relative; display: inline-block;
}
.site-hero h1 em::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0;
  height: 3px; border-radius: 2px;
  background: var(--terracotta); opacity: 0.28;
}
.site-hero .lead { font-size: 18px; margin-bottom: 0; }

.hero-image {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; background: var(--cream-alt);
  position: relative;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.hero-image:hover img { transform: scale(1.04); }

.hero-image-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(253,250,243,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(233,223,203,0.8);
  border-radius: var(--r-lg); padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow); font-size: 13px;
  font-weight: 700; color: var(--ink);
}
.hero-image-badge .badge-green {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E; flex-shrink: 0;
  animation: pulseDot 2.2s ease-in-out infinite;
}
.hero-image-badge span { color: var(--muted); font-weight: 500; }

/* ── STATS ─────────────────────────────────── */
.stats-section {
  padding: 0; background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-row { display: flex; }
.stat-item {
  flex: 1; padding: 32px 24px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s var(--ease);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--cream); }
.stat-value {
  font-size: clamp(26px, 3.5vw, 38px); font-weight: 800;
  color: var(--terracotta); line-height: 1;
  letter-spacing: -0.03em; font-feature-settings: 'tnum';
  transition: transform 0.18s var(--ease-spring);
}
.stat-item:hover .stat-value { transform: scale(1.07); }
.stat-label {
  font-size: 13.5px; color: var(--muted);
  font-weight: 600; margin-top: 5px;
}

/* ── FEATURE CARDS ─────────────────────────── */
.feature-card {
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: inherit;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: box-shadow 0.22s var(--ease), transform 0.22s var(--ease), border-color 0.22s;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
  border-color: rgba(184,71,30,0.22);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--terra-pale); display: grid;
  place-items: center; flex-shrink: 0;
  border: 1px solid rgba(184,71,30,0.12);
  transition: background 0.22s var(--ease), transform 0.22s var(--ease-spring);
}
.feature-card:hover .feature-icon {
  background: var(--terracotta); transform: scale(1.08) rotate(-2deg);
}
.feature-icon svg { width: 22px; height: 22px; transition: stroke 0.22s; }
.feature-card:hover .feature-icon svg { stroke: white !important; }
.feature-card h3 { font-size: 17px; margin-bottom: 2px; }
.feature-link {
  margin-top: auto; font-weight: 700; font-size: 14px;
  color: var(--terracotta); display: inline-flex;
  align-items: center; gap: 5px;
  transition: gap 0.22s var(--ease);
}
.feature-card:hover .feature-link { gap: 9px; }

/* ── PAGE HERO ─────────────────────────────── */
.page-hero {
  background: var(--ink); color: var(--white);
  padding: 64px 0 56px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% -10%, rgba(184,71,30,0.25) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero h1 {
  color: var(--white); margin-bottom: 12px;
  position: relative;
  animation: fadeSlideUp 0.65s var(--ease-out) both;
}
.page-hero p {
  position: relative; margin: 0 auto; max-width: 540px;
  color: rgba(255,255,255,0.62); font-size: 17px; line-height: 1.72;
  animation: fadeSlideUp 0.65s var(--ease-out) 0.1s both;
}

/* ── CTA BANNER ────────────────────────────── */
.cta-banner {
  background: var(--ink); border-radius: var(--r-xl);
  padding: 60px 48px; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 100% 0%, rgba(184,71,30,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(184,71,30,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.cta-banner h2 {
  color: var(--white); position: relative; z-index: 1;
  margin-bottom: 10px; font-size: clamp(22px, 3vw, 30px);
}
.cta-banner p {
  color: rgba(255,255,255,0.62); max-width: 480px;
  margin: 0 auto; position: relative; z-index: 1;
}
.cta-banner .btn-row { justify-content: center; margin-top: 28px; position: relative; z-index: 1; }

/* ── CONTENT IMAGE ─────────────────────────── */
.content-image {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  min-height: 300px; background: var(--cream-alt);
}
.content-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.content-image:hover img { transform: scale(1.03); }

/* ── CLEAN LIST ────────────────────────────── */
.clean-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.clean-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--text); line-height: 1.65;
}
.clean-list li::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--terracotta);
  flex-shrink: 0; margin-top: 8px;
}

/* ── CALLOUT ───────────────────────────────── */
.callout {
  background: var(--terra-pale); border-radius: var(--r-lg);
  border: 1px solid rgba(184,71,30,0.14);
  border-left: 3px solid var(--terracotta);
  padding: 20px 24px;
}
.callout h3 { color: var(--terracotta); font-size: 18px; }

/* ── TEAM / PERSON CARDS ───────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.person-card { transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.person-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.person-card .photo {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--cream-alt); border: 1px solid var(--border); margin-bottom: 14px;
}
.person-card .photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.person-card:hover .photo img { transform: scale(1.045); }
.photo-placeholder { width: 100%; height: 100%; display: grid; place-items: center; }
.person-card h3 { font-size: 16px; margin-bottom: 2px; }
.person-role { font-size: 13px; font-weight: 700; color: var(--terracotta); margin: 0 0 6px; }
.person-bio { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── CONTACT ───────────────────────────────── */
.contact-info a { color: var(--terracotta); text-decoration: none; font-weight: 700; }
.contact-info a:hover { text-decoration: underline; }

/* ── FOOTER ────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 0% 100%, rgba(184,71,30,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.footer-inner {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
footer .brand { color: var(--white); }
footer .brand img { filter: brightness(0) invert(1); opacity: 0.88; }
.brand-desc { font-size: 14px; margin-top: 10px; line-height: 1.65; color: rgba(255,255,255,0.48); }
.footer-col h4 {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.28); margin: 0 0 14px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.58);
  text-decoration: none; font-size: 14px;
  font-weight: 500; margin-bottom: 9px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px; font-size: 13px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
  color: rgba(255,255,255,0.28); position: relative;
}

/* ── ANIMATIONS ────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.site-hero .hero-text { animation: fadeSlideUp 0.85s var(--ease-out) 0.05s both; }
.site-hero .hero-image { animation: fadeSlideUp 0.85s var(--ease-out) 0.18s both; }

.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ── INVOLVE CARDS ─────────────────────────── */
.involve-card { display: flex; flex-direction: column; gap: 12px; }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .site-hero h1 { max-width: 100%; }
}

@media (max-width: 700px) {
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .nav-links { display: none; }
  .nav-cta.desktop-cta { display: none; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 40px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 52px 0; }
  .site-hero { padding: 60px 0 52px; }
  .hero-image-badge { display: none; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
