/* ===========================================================
   Veronika Engelmann — Tiergestützte Therapie am Bauernhof
   Warm-natürliches, ruhiges Design-System
   =========================================================== */

:root {
  /* Farben — Grün & Sonnengelb (über Tweaks überschreibbar) */
  --bg:        oklch(0.975 0.012 100);  /* warmes, sonniges Papier */
  --bg-soft:   oklch(0.948 0.020 98);   /* tieferer Warmton */
  --bg-deep:   #014f27;                 /* Marken-Dunkelgrün (Bänder/Footer) */
  --card:      oklch(0.992 0.006 100);
  --ink:       #173220;                 /* tiefes Grün-Schwarz */
  --ink-soft:  #4c5b4e;
  --sage:      #8cc53f;                 /* Marken-Blattgrün */
  --sage-deep: #014f27;                 /* Marken-Dunkelgrün (Primär) */
  --clay:      oklch(0.735 0.152 78);   /* Sonnenblumen-/Dottergelb-Akzent */
  --line:      color-mix(in oklch, var(--ink) 14%, transparent);
  --line-soft: color-mix(in oklch, var(--ink) 8%, transparent);

  /* Typografie */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Mulish", system-ui, -apple-system, sans-serif;
  --type-scale: 1;

  /* Maße */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --shadow: 0 1px 2px rgba(47,58,48,0.04), 0 18px 40px -28px rgba(47,58,48,0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  font-size: calc(17px * var(--type-scale));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.h-display { font-size: clamp(2.6rem, 6.2vw, 4.7rem); }
.h-section { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }

p { margin: 0 0 1.1em; text-wrap: pretty; }
.lead { font-size: clamp(1.12rem, 1.7vw, 1.34rem); color: var(--ink-soft); line-height: 1.6; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--clay);
  display: inline-block;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--soft { background: var(--bg-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.92rem; letter-spacing: 0.02em;
  padding: 0.92em 1.7em;
  border-radius: 999px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--sage-deep); color: oklch(0.98 0.01 85); }
.btn--primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 28px -18px var(--sage-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--sage-deep); color: var(--sage-deep); transform: translateY(-2px); }
.btn--light { background: oklch(0.98 0.01 85); color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -16px rgba(0,0,0,0.5); }
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding-block: 18px;
}
.site-header.scrolled {
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: 10px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand__logo { height: 46px; width: auto; transition: height .35s ease; }
.site-header.scrolled .brand__logo { height: 38px; }
@media (max-width: 480px) { .brand__logo { height: 38px; } }

.nav__links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav__links a { font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); position: relative; padding-block: 4px; transition: color .2s; white-space: nowrap; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0; background: var(--clay); transition: width .28s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .3s, opacity .3s; }
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Image placeholders ---------- */
.ph {
  position: relative; overflow: hidden;
  background-color: var(--bg-soft);
  background-image:
    repeating-linear-gradient(135deg,
      color-mix(in oklch, var(--sage) 16%, transparent) 0 2px,
      transparent 2px 13px);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--sage-deep);
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.72rem; letter-spacing: 0.04em;
  padding: 6px 12px; border-radius: 6px;
  background: color-mix(in oklch, var(--bg) 80%, transparent);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  max-width: 80%; text-align: center; text-wrap: balance;
}
.ph--photo { background-size: cover; background-position: center; background-repeat: no-repeat; }
.gallery .ph, .split__media .ph { content-visibility: auto; contain-intrinsic-size: 500px 500px; }
.ph--photo::after { content: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: clamp(560px, 88vh, 860px); display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; border-radius: 0; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,36,28,0.20) 0%, rgba(28,36,28,0.12) 40%, rgba(28,36,28,0.72) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-bottom: clamp(48px, 8vh, 96px); padding-top: 120px; color: oklch(0.98 0.012 85); width: 100%; }
.hero .eyebrow { color: oklch(0.93 0.03 80); }
.hero .eyebrow::before { background: oklch(0.86 0.07 70); }
.hero__title { color: oklch(0.99 0.012 85); max-width: 16ch; }
.hero__sub { color: oklch(0.95 0.012 85); max-width: 52ch; margin-top: 1.1rem; font-size: clamp(1.1rem, 1.7vw, 1.34rem); line-height: 1.55; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.2rem; }
.hero__scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 2; color: oklch(0.95 0.02 85); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.85; }
.hero__scroll i { width: 1px; height: 34px; background: currentColor; animation: scrollpulse 2.2s ease-in-out infinite; transform-origin: top; }
@keyframes scrollpulse { 0%,100% { transform: scaleY(0.4); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

/* ---------- Intro ---------- */
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.intro__big { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.28; font-weight: 500; letter-spacing: -0.01em; }
.intro__big em { font-style: italic; color: var(--sage-deep); }

/* ---------- Services ---------- */
.services__head { max-width: 60ch; margin-bottom: clamp(36px, 5vw, 60px); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 30px 28px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line); }
.card__num { font-family: var(--font-display); font-size: 1.05rem; color: var(--clay); font-weight: 600; }
.card__icon { width: 52px; height: 52px; border-radius: 50%; background: color-mix(in oklch, var(--sage) 18%, var(--bg)); display: grid; place-items: center; color: var(--sage-deep); margin-bottom: 4px; }
.card h3 { font-size: 1.5rem; }
.card p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }
.card__tag { margin-top: auto; padding-top: 8px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; color: var(--sage-deep); display: inline-flex; align-items: center; gap: 6px; }
.card__btn { margin-top: 14px; align-self: flex-start; }
.card--feature { background: var(--bg-deep); color: oklch(0.95 0.012 85); border-color: transparent; }
.card--feature h3, .card--feature .card__num { color: oklch(0.97 0.012 85); }
.card--feature .card__num { color: oklch(0.86 0.07 70); }
.card--feature p { color: oklch(0.86 0.015 85); }
.card--feature .card__icon { background: color-mix(in oklch, white 14%, transparent); color: oklch(0.95 0.02 85); }
.card--feature .card__tag { color: oklch(0.88 0.06 75); }
.card--feature .btn--ghost { color: oklch(0.98 0.012 85); border-color: rgba(255,255,255,.4); }
.card--feature .btn--ghost:hover { border-color: #fff; color: #fff; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media .ph { aspect-ratio: 4 / 5; height: 100%; }
.split__body h2 { margin-bottom: 0.6em; }
.checklist { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.02rem; color: var(--ink-soft); }
.checklist svg { flex: none; margin-top: 3px; color: var(--sage-deep); }
.split__body .btn { margin-top: 2rem; }

/* who-for chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.6rem; }
.chip { font-size: 0.86rem; font-weight: 700; color: var(--sage-deep); background: color-mix(in oklch, var(--sage) 13%, var(--bg)); border: 1px solid var(--line-soft); padding: 7px 15px; border-radius: 999px; }

/* ---------- Farm band ---------- */
.farm { background: var(--bg-deep); color: oklch(0.95 0.012 85); }
.farm .eyebrow { color: oklch(0.86 0.06 75); }
.farm .eyebrow::before { background: oklch(0.78 0.08 70); }
.farm h2 { color: oklch(0.98 0.012 85); }
.farm .lead { color: oklch(0.86 0.015 85); }
.farm__head { max-width: 62ch; margin-bottom: clamp(32px, 4vw, 52px); }
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 16px; }
.gallery .ph { background-color: oklch(0.36 0.02 145); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.08) 0 2px, transparent 2px 14px); }
.gallery .ph::after { background: rgba(20,28,20,0.6); border-color: rgba(255,255,255,0.18); color: oklch(0.9 0.01 85); }
.gallery .g1 { grid-row: 1 / 3; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.about__media .ph { aspect-ratio: 3 / 4; }
.portrait {
  margin: 0; position: relative; width: 100%; max-width: 420px;
  aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 20%, color-mix(in oklch, var(--sage) 24%, var(--bg)) 0%, transparent 60%),
    linear-gradient(160deg, var(--bg-soft) 0%, color-mix(in oklch, var(--sage) 14%, var(--bg-soft)) 100%);
  display: grid; place-items: end center;
  box-shadow: 0 24px 44px -28px rgba(1,50,20,0.4);
  border: 1px solid var(--line-soft);
}
.portrait img { width: 92%; height: auto; object-fit: contain; display: block; align-self: end; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 2rem; }
.value { border-top: 2px solid var(--clay); padding-top: 14px; }
.value h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 4px; }
.value p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }
.about__sign { font-family: var(--font-display); font-size: 1.5rem; color: var(--sage-deep); margin-top: 1.4rem; font-style: italic; }

/* ---------- Buch ---------- */
.book { background: var(--bg-soft); }
.book__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.book__media { display: flex; justify-content: center; perspective: 1600px; }
.book__body .book__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 12px; }

.book3d {
  width: clamp(230px, 26vw, 320px);
  transform: rotateY(-20deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  filter: drop-shadow(0 34px 42px rgba(1,50,20,0.34));
  border-radius: 4px 9px 9px 4px;
}
.book__media:hover .book3d { transform: rotateY(-9deg) rotateX(1.5deg); }
.book3d__img {
  display: block; width: 100%; height: auto;
  border-radius: 4px 9px 9px 4px;
  box-shadow: inset 12px 0 22px -14px rgba(0,0,0,0.55), inset -1px 0 0 rgba(255,255,255,0.25);
}
.book__tagline { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 1.8vw, 1.4rem); color: var(--sage-deep); margin: 1.6rem 0 0; }

/* Leseprobe */
.book__sample {
  margin-top: clamp(52px, 7vw, 88px);
  max-width: 780px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 56px);
  box-shadow: var(--shadow);
  position: relative;
}
.sample__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.sample__head .eyebrow { margin-bottom: 0; }
.sample__chapter { font-family: var(--font-body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); }
.sample__title { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 18px 0 20px; }
.sample__text p { font-size: 1.06rem; line-height: 1.7; color: var(--ink-soft); }
.sample__text em { font-style: italic; color: var(--ink); }
.sample__more { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.sample__more > span { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.sample__more ul { list-style: disc; margin: 0; padding: 0 0 0 1.3em; display: grid; gap: 8px; }
.sample__more li { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; color: var(--sage-deep); }
.sample__more-row { display: flex; align-items: stretch; gap: 8px; margin-top: 12px; }
.sample__more-row ul { flex: 1; align-self: flex-start; }
.sample__more-img { flex: none; height: 100%; width: auto; max-height: 180px; object-fit: contain; align-self: flex-start; opacity: 1; }
.sample__question { margin: 28px 0 0; padding: 20px 24px; background: var(--bg-deep); color: oklch(0.96 0.02 115); border-radius: 10px; font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.5rem); font-style: italic; line-height: 1.35; }
.sample__q-label { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: oklch(0.82 0.06 120); margin-bottom: 8px; }

/* Über die Autorin */
.book__author { margin-top: clamp(52px, 7vw, 88px); display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.author__media .ph { aspect-ratio: 4 / 5; }
.author__name { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.5em; }
.author__body p { color: var(--ink-soft); }

/* ---------- Quote ---------- */
.quote { text-align: center; background: var(--bg-deep); color: oklch(0.95 0.012 85); position: relative; overflow: hidden; }
.quote::before {
  content: "\201C"; position: absolute; top: -0.28em; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: clamp(9rem, 16vw, 15rem); line-height: 1;
  color: color-mix(in oklch, var(--sage) 30%, transparent); pointer-events: none;
}
.quote .wrap { position: relative; }
.quote blockquote { font-family: var(--font-display); font-size: clamp(1.8rem, 3.8vw, 3rem); line-height: 1.25; font-weight: 500; max-width: 20ch; margin: 0 auto; letter-spacing: -0.01em; }
.quote blockquote span { color: oklch(0.86 0.07 75); }
.quote cite { display: block; margin-top: 1.8rem; font-family: var(--font-body); font-style: normal; font-size: 0.84rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: oklch(0.86 0.02 90); }
.quote cite::before { content: ""; display: block; width: 40px; height: 2px; background: var(--clay); margin: 0 auto 1.1rem; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
.contact__card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(26px, 3vw, 40px); }
.contact__card + .contact__card { }
.contact h3 { font-size: 1.45rem; margin-bottom: 6px; }
.contact__role { font-size: 0.84rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); margin-bottom: 18px; }
.contact__line { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--line-soft); }
.contact__line:first-of-type { border-top: 0; }
.contact__line svg { flex: none; margin-top: 2px; color: var(--sage-deep); }
.contact__line a:hover { color: var(--sage-deep); }
.contact__line strong { font-weight: 700; display: block; }
.contact__line span { color: var(--ink-soft); font-size: 0.95rem; }
.contact__cta { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-deep); color: oklch(0.86 0.015 85); padding-block: 56px 30px; }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__brand { flex-direction: column; align-items: flex-start; gap: 4px; }
.footer__name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; line-height: 1; color: oklch(0.98 0.012 115); }
.footer__sub { font-family: var(--font-body); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: oklch(0.82 0.04 120); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__nav a { font-size: 0.92rem; color: oklch(0.86 0.015 85); transition: color .2s; }
.footer__nav a:hover { color: white; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 24px; font-size: 0.8rem; color: oklch(0.74 0.012 85); }
.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .intro__grid, .split, .about__grid, .contact__grid, .book__grid, .book__author { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .cards { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; }
  .gallery .g1 { grid-row: auto; grid-column: 1 / 3; }
  .split__media .ph { aspect-ratio: 16/10; }
  .about__media .ph { aspect-ratio: 16/11; max-width: 460px; }
}
@media (max-width: 880px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; gap: 4px; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 18px var(--gutter) 26px;
    box-shadow: 0 20px 30px -22px rgba(0,0,0,0.4); border-top: 1px solid var(--line-soft);
  }
  .nav.open .nav__links a { padding-block: 9px; font-size: 1.05rem; }
  .site-header { position: sticky; }
}
@media (max-width: 620px) {
  .cards { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; gap: 14px; }
  .footer__top { flex-direction: column; }
}

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