/* =============================================================
   Landingpage Builder — Design System
   One stylesheet, 4 swappable themes via [data-theme].
   Set the theme on <html data-theme="clean|bold|elegant|earthy">.
   ============================================================= */

/* ---------- Base tokens (shared by all themes) ---------- */
:root {
  /* Spacing scale */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6.5rem;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Type scale (fluid) */
  --fs-hero: clamp(2.5rem, 6vw, 4.5rem);
  --fs-h2: clamp(1.9rem, 4vw, 3rem);
  --fs-h3: clamp(1.25rem, 2.2vw, 1.6rem);
  --fs-lead: clamp(1.05rem, 1.6vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.55s;

  /* Defaults (overridden per theme) */
  --font-display: "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.16);
}

/* ---------- THEME: Clean & Minimal (Beratung, Agentur, IT) ---------- */
[data-theme="clean"] {
  --font-display: "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --color-bg: #ffffff;
  --color-surface: #f6f8fb;
  --color-surface-2: #eef2f8;
  --color-text: #0f172a;
  --color-text-muted: #5b6678;
  --color-primary: #2563eb;
  --color-primary-strong: #1d4ed8;
  --color-primary-contrast: #ffffff;
  --color-accent: #06b6d4;
  --color-border: #e3e9f1;
  --hero-overlay: linear-gradient(115deg, rgba(37, 99, 235, 0.78), rgba(6, 182, 212, 0.62));
}

/* ---------- THEME: Bold & Modern (Barbershop, Fitness, Tattoo) ---------- */
[data-theme="bold"] {
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --color-bg: #0b0e14;
  --color-surface: #141925;
  --color-surface-2: #1d2433;
  --color-text: #f4f6fb;
  --color-text-muted: #9aa6bd;
  --color-primary: #ff4d3d;
  --color-primary-strong: #e8351f;
  --color-primary-contrast: #ffffff;
  --color-accent: #ffd23f;
  --color-border: #28303f;
  --hero-overlay: linear-gradient(120deg, rgba(11, 14, 20, 0.82), rgba(232, 53, 31, 0.45));
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.55);
}

/* ---------- THEME: Elegant & Premium (Salon, Kosmetik, Spa) ---------- */
[data-theme="elegant"] {
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
  --color-bg: #14110f;
  --color-surface: #1d1916;
  --color-surface-2: #261f1b;
  --color-text: #f6efe7;
  --color-text-muted: #b6a99b;
  --color-primary: #c8a667;
  --color-primary-strong: #b8924d;
  --color-primary-contrast: #1a1512;
  --color-accent: #e7d6b8;
  --color-border: #34291f;
  --hero-overlay: linear-gradient(180deg, rgba(20, 17, 15, 0.22), rgba(20, 17, 15, 0.60));
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.6);
}

/* ---------- THEME: Bodenständig & Vertrauensvoll (Handwerk, Maler) ---------- */
[data-theme="earthy"] {
  --font-display: "Bitter", Georgia, serif;
  --font-body: "Mulish", system-ui, sans-serif;
  --color-bg: #fbf7f1;
  --color-surface: #ffffff;
  --color-surface-2: #f1e8dc;
  --color-text: #1f2a24;
  --color-text-muted: #5d6b62;
  --color-primary: #c2410c;
  --color-primary-strong: #9a3412;
  --color-primary-contrast: #ffffff;
  --color-accent: #15803d;
  --color-border: #e7dccb;
  --hero-overlay: linear-gradient(115deg, rgba(31, 42, 36, 0.72), rgba(194, 65, 12, 0.45));
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; font-weight: 700; }
:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-lg); }
.section { padding-block: var(--space-3xl); }
.section--tight { padding-block: var(--space-2xl); }
.section--surface { background: var(--color-surface); }
.section-head { max-width: var(--container-narrow); margin-inline: auto; text-align: center; margin-bottom: var(--space-2xl); }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; font-size: var(--fs-small);
  color: var(--color-primary); margin-bottom: var(--space-sm);
}
.section-head h2 { font-size: var(--fs-h2); margin-bottom: var(--space-md); }
.section-head p { font-size: var(--fs-lead); color: var(--color-text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 0.95em 1.7em; border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--color-primary); color: var(--color-primary-contrast); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--color-primary-strong); box-shadow: var(--shadow-lg); }
.btn--ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn--on-hero { backdrop-filter: blur(4px); }
.btn--lg { font-size: 1.08rem; padding: 1.05em 2em; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding-block: var(--space-md);
}
.header.is-scrolled {
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
  padding-block: var(--space-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); }
.brand { display: flex; align-items: center; gap: 0.6em; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; }
.brand__mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  background: var(--color-primary); color: var(--color-primary-contrast); font-weight: 800;
}
/* Echtes Kundenlogo (statt Monogramm). Höhe begrenzt, Breite frei → kein Verzerren. */
.brand__logo { height: 40px; width: auto; max-width: 190px; object-fit: contain; display: block; }
/* Dunkles Logo auf dunklem Header schlecht sichtbar? Heller „Chip" als Hintergrund. */
.brand__logo--chip { background: #fff; padding: 6px 10px; border-radius: 10px; box-sizing: content-box; }
.nav__links { display: flex; align-items: center; gap: var(--space-lg); }
.nav__links a { font-weight: 600; color: var(--color-text-muted); transition: color 0.2s; }
.nav__links a:hover { color: var(--color-text); }
.nav__cta { display: flex; align-items: center; gap: var(--space-sm); }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 26px; height: 2.5px; background: var(--color-text); border-radius: 2px; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; padding-top: 6rem; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.1) saturate(1.04); }
.hero__media::after { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); z-index: 1; }
/* Ken-Burns: langsamer, weicher Zoom auf das echte Hero-Foto (Standard, kein KI-Video). „alternate" pendelt zurück → kein harter Loop-Reset. Greift nur auf <img>, nicht auf ein evtl. eingebautes <video>. */
.hero__media img { transform-origin: 50% 42%; animation: heroKenBurns 24s ease-in-out infinite alternate; will-change: transform; }
@keyframes heroKenBurns {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to   { transform: scale(1.13) translate3d(-1.6%, -1.2%, 0); }
}
.hero__inner { max-width: 760px; color: #fff; }
[data-theme="clean"] .hero__inner, [data-theme="earthy"] .hero__inner { color: #fff; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5em; padding: 0.45em 1em; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.25);
  font-size: var(--fs-small); font-weight: 600; margin-bottom: var(--space-lg);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,0.3); }
.hero h1 { font-size: var(--fs-hero); margin-bottom: var(--space-lg); text-shadow: 0 2px 16px rgba(0,0,0,0.5); text-wrap: balance; overflow-wrap: break-word; }
.hero__lead { font-size: var(--fs-lead); max-width: 560px; margin-bottom: var(--space-xl); opacity: 0.97; text-shadow: 0 1px 10px rgba(0,0,0,0.45); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; }
.hero__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.6); }
.hero__actions .btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--space-lg); margin-top: var(--space-xl); font-size: var(--fs-small); }
.hero__trust div { display: flex; align-items: center; gap: 0.5em; opacity: 0.95; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.hero__trust strong { font-size: 1.3rem; font-family: var(--font-display); }

/* ---------- Services ---------- */
.grid { display: grid; gap: var(--space-lg); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-xl); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.section--surface .card { background: var(--color-bg); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--color-primary) 40%, var(--color-border)); }
.card__icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--color-primary) 14%, transparent); color: var(--color-primary);
  margin-bottom: var(--space-md); font-size: 1.6rem;
}
.card h3 { font-size: var(--fs-h3); margin-bottom: var(--space-sm); }
.card p { color: var(--color-text-muted); }
.card__link { display: inline-flex; align-items: center; gap: 0.4em; margin-top: var(--space-md); color: var(--color-primary); font-weight: 700; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius-md); cursor: pointer; aspect-ratio: 1; background: var(--color-surface-2);
}
.gallery__item:nth-child(1), .gallery__item:nth-child(6) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after {
  content: "+"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 2rem; color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.45), transparent 60%); opacity: 0; transition: opacity 0.3s;
}
.gallery__item:hover::after { opacity: 1; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.quote { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-xl); }
.section--surface .quote { background: var(--color-bg); }
.quote__stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: var(--space-md); }
.quote__text { font-size: 1.1rem; margin-bottom: var(--space-lg); }
.quote__person { display: flex; align-items: center; gap: var(--space-md); }
.quote__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--color-surface-2); }
.quote__name { font-weight: 700; }
.quote__role { font-size: var(--fs-small); color: var(--color-text-muted); }

/* ---------- About / Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.split h2 { font-size: var(--fs-h2); margin-bottom: var(--space-lg); }
.split p { color: var(--color-text-muted); margin-bottom: var(--space-md); }
.checklist { display: grid; gap: var(--space-sm); margin: var(--space-lg) 0; }
.checklist li { display: flex; align-items: flex-start; gap: 0.7em; font-weight: 600; color: var(--color-text); }
.checklist li::before {
  content: "✓"; flex: none; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%;
  background: color-mix(in srgb, var(--color-accent) 18%, transparent); color: var(--color-accent); font-size: 0.85rem; font-weight: 800; margin-top: 3px;
}
.stats { display: flex; gap: var(--space-xl); flex-wrap: wrap; }
.stats__num { font-family: var(--font-display); font-size: 2.4rem; color: var(--color-primary); font-weight: 800; line-height: 1; }
.stats__label { font-size: var(--fs-small); color: var(--color-text-muted); }

/* ---------- Steps / Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); counter-reset: step; }
.step { position: relative; padding: var(--space-lg); }
.step__num {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; margin-bottom: var(--space-md);
  background: var(--color-primary); color: var(--color-primary-contrast); font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
}
.step h3 { font-size: var(--fs-h3); margin-bottom: var(--space-xs); }
.step p { color: var(--color-text-muted); font-size: var(--fs-small); }

/* ---------- FAQ ---------- */
.faq { max-width: var(--container-narrow); margin-inline: auto; display: grid; gap: var(--space-sm); }
.faq__item { border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface); overflow: hidden; }
.section--surface .faq__item { background: var(--color-bg); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: var(--space-lg);
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--color-text);
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-md);
}
.faq__q::after { content: "+"; font-size: 1.5rem; color: var(--color-primary); transition: transform 0.3s; }
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq__a p { padding: 0 var(--space-lg) var(--space-lg); color: var(--color-text-muted); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--color-primary); color: var(--color-primary-contrast); border-radius: var(--radius-lg); padding: var(--space-2xl); text-align: center; }
.cta-band h2 { font-size: var(--fs-h2); margin-bottom: var(--space-md); }
.cta-band p { font-size: var(--fs-lead); opacity: 0.92; margin-bottom: var(--space-xl); }
.cta-band .btn--primary { background: #fff; color: var(--color-primary); }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.6); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
.contact__info { display: grid; gap: var(--space-lg); align-content: start; }
.contact__row { display: flex; gap: var(--space-md); align-items: flex-start; }
.contact__row .ic { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--radius-md); background: color-mix(in srgb, var(--color-primary) 12%, transparent); color: var(--color-primary); }
.form { display: grid; gap: var(--space-md); background: var(--color-surface); padding: var(--space-xl); border-radius: var(--radius-lg); border: 1px solid var(--color-border); }
.form label { font-weight: 600; font-size: var(--fs-small); display: grid; gap: 6px; }
.form input, .form textarea {
  font: inherit; padding: 0.85em 1em; border-radius: var(--radius-sm); border: 1px solid var(--color-border);
  background: var(--color-bg); color: var(--color-text); width: 100%;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--color-primary); }

/* ---------- Footer ---------- */
.footer { background: var(--color-surface-2); padding-block: var(--space-2xl) var(--space-lg); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.footer h4 { font-size: 1rem; margin-bottom: var(--space-md); }
.footer a { color: var(--color-text-muted); display: block; padding: 3px 0; }
.footer a:hover { color: var(--color-primary); }
.footer__bottom { border-top: 1px solid var(--color-border); padding-top: var(--space-lg); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-md); font-size: var(--fs-small); color: var(--color-text-muted); }
.placeholder-note { font-size: var(--fs-small); color: var(--color-text-muted); font-style: italic; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; inset: auto 0 0 0; z-index: 60; display: none; gap: var(--space-sm);
  padding: var(--space-sm); background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(12px); border-top: 1px solid var(--color-border);
}
.sticky-cta .btn { flex: 1; padding: 0.85em 1em; font-size: 0.95rem; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: var(--space-lg); background: rgba(0,0,0,0.9); }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.5rem; font-size: 2.2rem; color: #fff; background: none; border: 0; cursor: pointer; line-height: 1; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid--3, .grid--4, .steps, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .split, .contact { grid-template-columns: 1fr; gap: var(--space-xl); }
  .split__media { order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item:nth-child(1), .gallery__item:nth-child(6) { grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; position: absolute; inset: 100% var(--space-lg) auto;
    background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-md);
    padding: var(--space-lg); box-shadow: var(--shadow-lg); gap: var(--space-md);
  }
  .grid--3, .grid--4, .steps, .testimonials, .footer__grid { grid-template-columns: 1fr; }
  .stats { gap: var(--space-lg); }
  .sticky-cta { display: flex; padding-bottom: calc(var(--space-sm) + env(safe-area-inset-bottom)); }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }

  /* Kompaktere Abstände + Schrift → stimmiger auf dem Handy */
  .container { padding-inline: var(--space-md); }
  .section { padding-block: var(--space-2xl); }
  .section--tight { padding-block: var(--space-xl); }
  .section-head { margin-bottom: var(--space-xl); }
  .brand__logo { height: 34px; }

  /* Hero mobil: passende Größen + volle Button-Breite */
  .hero { min-height: 86vh; padding-top: 5rem; }
  .hero h1 { font-size: clamp(1.9rem, 7.6vw, 2.6rem); text-shadow: 0 2px 12px rgba(0,0,0,0.55); }
  .hero__lead { font-size: 1.05rem; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: var(--space-sm); }
  .hero__actions .btn { width: 100%; }
  .hero__trust { gap: var(--space-sm) var(--space-lg); margin-top: var(--space-lg); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
