/* Konzept 06 — „Tusche & Linie"
   Die kanonische Fusion: der eine Strich, gezogen in stillem Wasser.
   Palette = Runde-1-Erbe (Papier, Tusche, ein Zinnober für Siegel + CTA). */

:root {
  --paper:        #F6F3EC;
  --paper-shade:  #EFEADF;
  --paper-light:  #FAF8F3;
  --ink:          #15181D;
  --ink-mid:      #403D3A;
  --ink-dilute:   #8D857A;
  --text:         #26241F;
  --vermillion:   #A23528;
  --vermillion-d: #8A2B20;
  --hairline:     rgba(38, 36, 31, .15);
  --hairline-2:   rgba(38, 36, 31, .28);

  --ease:      cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.32, .72, .18, 1);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --gut: clamp(1.4rem, 5vw, 3.2rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.74;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.preload * { transition: none !important; animation: none !important; }

::selection { background: rgba(162, 53, 40, .16); }

:focus-visible {
  outline: 2px solid var(--vermillion);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ---------------- feste Schichten ---------------- */

.atmos {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 62% 46% at 16% 10%,  rgba(64, 61, 58, .040), transparent 72%),
    radial-gradient(ellipse 52% 42% at 90% 66%,  rgba(64, 61, 58, .032), transparent 72%),
    radial-gradient(ellipse 74% 52% at 42% 104%, rgba(64, 61, 58, .034), transparent 72%);
}
.mottle   { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .85; }
#water    { position: fixed; inset: 0; z-index: 1; width: 100vw; height: 100vh; pointer-events: none; }
#ink      { position: fixed; inset: 0; z-index: 2; width: 100vw; height: 100vh; pointer-events: none; }
.grain    { position: fixed; inset: 0; z-index: 3; pointer-events: none; mix-blend-mode: soft-light; opacity: .5; }
.vignette {
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(ellipse 118% 102% at 50% 40%, transparent 56%, rgba(96, 80, 54, .12) 100%);
}

main, footer { position: relative; z-index: 4; }

/* ---------------- Markenauftritt ---------------- */

.intro {
  position: fixed; inset: 0; z-index: 6;
  pointer-events: none;
}
.intro.gone { visibility: hidden; transition: visibility 0s linear .9s; }
.intro-word {
  position: absolute; left: 50%; top: 62%;
  transform: translate(-50%, 14px);
  white-space: nowrap;
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.65rem, 4.2vw, 3.05rem);
  line-height: 1; letter-spacing: .012em;
  color: var(--ink);
  opacity: 0;
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.intro-word .w2 { color: var(--ink-mid); }
.intro-word.in { opacity: 1; transform: translate(-50%, 0); }
.intro-word.out { opacity: 0; transform: translate(-50%, 0); transition-duration: .6s; }


/* ---------------- Einblend-Choreografie ---------------- */

[data-appear] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.15s var(--ease), transform 1.15s var(--ease);
}
[data-appear].in { opacity: 1; transform: none; }
/* nach dem Überspringen des Auftritts setzt sich der Hero sofort */
[data-appear].quick { transition-duration: .3s; }

@media (prefers-reduced-motion: reduce) {
  [data-appear] { opacity: 1; transform: none; transition: none; }
}

/* ---------------- Navigation ---------------- */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 20;
  padding: 1.5rem 0 1.2rem;
  background: linear-gradient(to bottom, var(--paper) 34%, rgba(246, 243, 236, 0));
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
body.arrived .nav { opacity: 1; }
.nav-inner {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 2rem; position: relative;
}
.nav-inner::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1.2rem;
  height: 1px; background: var(--hairline);
  opacity: 0; transition: opacity .6s var(--ease);
}
.nav.scrolled .nav-inner::after { opacity: 1; }
/* Sobald gescrollt wird, kann die Tusche unter der Leiste durchziehen.
   Dann braucht die Navigation einen echten Papiergrund, sonst steht graue
   Schrift auf schwarzer Tusche. */
.nav.scrolled {
  background: linear-gradient(to bottom,
    var(--paper) 0%, var(--paper) 74%,
    rgba(246, 243, 236, .82) 88%, rgba(246, 243, 236, 0) 100%);
}

.brand {
  font-family: var(--serif); font-weight: 600; font-size: 1.08rem;
  letter-spacing: .045em; color: var(--text); text-decoration: none;
  padding: .5rem 0; white-space: nowrap;
}
.nav-links { display: flex; gap: 2.4rem; }
.nav-links a, .nav-cta {
  font-size: .6875rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-dilute);
  text-decoration: none; padding: .9rem 0;
  transition: color .4s var(--ease);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--text); }
.nav-cta { color: var(--text); border-bottom: 1px solid var(--hairline-2); padding-bottom: .3rem; }
.nav-cta:hover, .nav-cta:focus-visible { border-color: var(--text); }

/* ---------------- gemeinsame Typografie ---------------- */

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 var(--gut); }

.eyebrow {
  font-size: .6875rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-dilute);
  margin-bottom: 1.7rem;
}
.eyebrow.centered { text-align: center; }

h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.15rem, 3.9vw, 3.4rem);
  line-height: 1.06; letter-spacing: -.006em;
  color: var(--ink); text-wrap: balance;
}
h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.34rem; line-height: 1.22; color: var(--ink);
  margin-bottom: .6rem;
}
p { color: var(--ink-mid); }

.text-link {
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--hairline-2);
  padding-bottom: .12em;
  transition: border-color .4s var(--ease), color .4s var(--ease);
}
.text-link:hover, .text-link:focus-visible { border-color: var(--text); }
.more { margin-top: 2.6rem; font-size: .95rem; }
.section-intro { max-width: 33em; margin-top: 1.5rem; }

/* vertikale Randmarken (nur breite Viewports) */
.side-label {
  position: absolute; top: 16vh;
  writing-mode: vertical-rl;
  font-size: .625rem; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(141, 133, 122, .78);
  user-select: none; display: none;
  opacity: 0; transition: opacity 1.6s var(--ease);
}
body.arrived .side-label { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .side-label { opacity: 1; transition: none; } }
.side-left  { left: .9rem; }
.side-right { right: .9rem; transform: rotate(180deg); }
@media (min-width: 1200px) { .side-label { display: block; } }

/* Grundlinien-Sonde: ein Inline-Block ohne Höhe sitzt exakt auf der Schriftlinie.
   Damit verankert die Linie ihre Gesten an der Typografie, nicht an Kastenmaßen. */
.bl-probe { display: inline-block; width: 0; height: 0; overflow: hidden; }

/* ---------------- 1 · Hero ---------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  padding: 9.5rem 0 6rem;
}
.hero-inner {
  flex: 1; width: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: clamp(4rem, 10vh, 8rem);
}
.hero .eyebrow { margin-bottom: 2.2rem; }
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(3.2rem, 7.4vw, 7rem);
  line-height: .98; letter-spacing: -.018em;
  color: var(--ink);
}
.h1-a, .h1-b { display: block; }
.h1-b { margin-top: .06em; }
.hero h1 em { font-style: italic; font-weight: 500; }

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: end;
  padding-top: 2.2rem;
  /* Der Ladeauftritt beginnt auf leerem Papier: erst kommt die Tusche,
     dann die Linien des Satzspiegels. */
  border-top: 1px solid transparent;
  transition: border-color 1.4s var(--ease);
}
body.arrived .hero-bottom { border-top-color: var(--hairline); }
@media (prefers-reduced-motion: reduce) {
  .hero-bottom { border-top-color: var(--hairline); transition: none; }
}
.lead {
  font-family: var(--serif);
  font-size: clamp(1.22rem, 1.75vw, 1.5rem);
  line-height: 1.5; color: var(--ink-mid);
  max-width: 30em;
}
.hero-side { display: flex; flex-direction: column; gap: 1.9rem; align-items: flex-start; }
.meta {
  font-size: .72rem; letter-spacing: .07em; line-height: 2;
  color: var(--ink-dilute); text-transform: none;
}
.hero-ctas { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }

.btn-ghost {
  display: inline-block; padding: 1rem 2rem;
  border: 1px solid var(--hairline-2); border-radius: 2px;
  color: var(--text); text-decoration: none;
  font-size: .9rem; font-weight: 500; letter-spacing: .02em;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--ink); background: rgba(38, 36, 31, .035); }
.link-quiet {
  color: var(--ink-dilute); font-size: .9rem; text-decoration: none;
  border-bottom: 1px solid transparent; padding: .55rem 0;
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.link-quiet:hover, .link-quiet:focus-visible { color: var(--text); border-color: var(--hairline-2); }

/* ---------------- 2 · Methode ---------------- */

.method { position: relative; padding: 24vh 0 19vh; }
.knockout {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: 1.06; letter-spacing: -.012em;
  display: inline-block; padding: .16em .08em;
  color: var(--ink);
  transition: color .85s var(--ease);
}
.knockout.inked { color: var(--paper-light); }
@media (min-width: 900px) { .knockout { white-space: nowrap; } }
@media (prefers-reduced-motion: reduce) { .knockout { color: var(--paper-light); transition: none; } }

.method-grid {
  margin-top: clamp(3.4rem, 7vh, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.4rem, 6vw, 5.5rem);
  align-items: start;
}
.method-text p + p { margin-top: 1.5rem; }
.method-text > p:first-child::first-letter {
  font-family: var(--serif); font-size: 3.4em; line-height: .76;
  float: left; padding: .06em .1em 0 0; color: var(--ink);
}
.ink-frame {
  position: relative; overflow: hidden; border-radius: 1px;
  background: var(--paper-shade);
  box-shadow: 0 1px 0 rgba(38, 36, 31, .1), 0 18px 40px -28px rgba(21, 24, 29, .5);
}
.ink-frame img {
  display: block; width: 100%; height: auto;
  filter: grayscale(1) contrast(1.03);
  mix-blend-mode: multiply;
}
.ink-frame::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 45%, transparent 55%, rgba(96, 80, 54, .16));
}
.method-figure figcaption {
  margin-top: 1rem; font-size: .72rem; line-height: 1.6;
  letter-spacing: .02em; color: var(--ink-dilute);
}

/* ---------------- 3 · Kurse ---------------- */

.courses { position: relative; padding: 12vh 0 18vh; }
.sec-head { max-width: 34em; }
.cards {
  margin-top: clamp(3.2rem, 7vh, 5.5rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 4vw, 3.6rem);
}
/* Die drei Karten tragen unterschiedlich viel Text. Der Link sitzt trotzdem
   bei allen dreien auf einer Linie, sonst franst die Reihe unten aus. */
.card {
  border-top: 1px solid var(--hairline); padding: 1.7rem 0 0;
  display: flex; flex-direction: column; align-items: flex-start;
}
.card p { flex: 1; }
.card .text-link { align-self: flex-start; }
.card-num {
  display: block; margin-bottom: 1.15rem;
  font-family: var(--serif); font-style: italic; font-size: 1.2rem;
  color: var(--ink-dilute); letter-spacing: .08em;
}
.card p { font-size: .95rem; margin-bottom: 1.7rem; }
.card .text-link { font-size: .9rem; }
.note {
  margin-top: clamp(3rem, 6vh, 4.6rem);
  max-width: 40em; font-size: .88rem; color: var(--ink-dilute);
}

/* ---------------- 4 · ZPP ---------------- */

.zpp { position: relative; padding: 12vh 0 16vh; }
.zpp-head { max-width: 30em; }
.zpp-steps {
  list-style: none;
  margin: clamp(3.4rem, 7vh, 5.4rem) 0 0 clamp(0rem, 8vw, 7rem);
  max-width: 660px;
}
.zpp-step {
  display: grid; grid-template-columns: 78px 1fr; gap: 1.4rem;
  padding: 2.1rem 0; border-top: 1px solid var(--hairline);
}
.zpp-step:last-child { border-bottom: 1px solid var(--hairline); }
.step-num {
  font-family: var(--serif); font-weight: 500; font-size: 1.85rem;
  line-height: 1; padding-top: .25rem;
  color: rgba(38, 36, 31, .3); font-variant-numeric: lining-nums;
}
.zpp-step h3 { font-size: 1.28rem; }
.zpp-step p { font-size: .95rem; }
.zpp-foot {
  margin-left: clamp(0rem, 8vw, 7rem);
  max-width: 660px;
}
.disclaimer {
  margin-top: 3.2rem; font-size: .8rem; line-height: 1.78;
  color: var(--ink-dilute);
}

/* ---------------- 5 · Ensō ---------------- */

.enso { position: relative; padding: 14vh 0 12vh; }
.enso-head { text-align: center; }
.enso-wrap {
  width: min(620px, 78vw); aspect-ratio: 1;
  margin: .8rem auto 0;
  display: grid; place-items: center;
}
.enso-statement {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 2.9vw, 2.35rem);
  line-height: 1.5; text-align: center; color: var(--ink);
  max-width: 78%;
}
.enso-intro {
  max-width: 42em; margin: clamp(2rem, 6vh, 5rem) auto 0;
  text-align: center; font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.6;
  color: var(--ink-mid);
}
.triad {
  margin-top: clamp(3.4rem, 7vh, 5.6rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 4vw, 3.4rem);
}
.triad-item { border-top: 1px solid var(--hairline); padding-top: 1.5rem; }
.triad-item h3 { font-size: 1.16rem; }
.triad-item p { font-size: .92rem; }

/* ---------------- 6 · Lehrer ---------------- */

.about { position: relative; padding: 8vh 0 17vh; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}
.about-figure {
  position: relative; overflow: hidden; border-radius: 1px;
  background: var(--paper-shade);
  box-shadow: 0 1px 0 rgba(38, 36, 31, .1), 0 22px 46px -30px rgba(21, 24, 29, .55);
}
.about-figure img {
  display: block; width: 100%; height: auto;
  filter: grayscale(1) contrast(1.04) brightness(1.02);
  mix-blend-mode: multiply;
}
.about-figure::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 96% 92% at 50% 38%, transparent 58%, rgba(96, 80, 54, .18));
}
.about-text { max-width: 36em; margin-top: 2rem; }
.about-quote {
  margin-top: 3rem; padding-left: 1.7rem;
  border-left: 2px solid rgba(38, 36, 31, .42);
}
.about-quote p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.28rem, 1.9vw, 1.62rem);
  line-height: 1.44; color: var(--ink);
}
.about-creds { margin-top: 3.2rem; }
.about-creds .eyebrow { margin-bottom: 1rem; }
.about-creds ul { list-style: none; columns: 2; column-gap: 2.6rem; }
.about-creds li {
  break-inside: avoid;
  padding: .95rem 0; border-top: 1px solid var(--hairline);
  font-size: .875rem; line-height: 1.55; color: var(--ink-mid);
}

/* ---------------- 7 · Abschluss ---------------- */

.closing {
  padding: 20vh var(--gut) 22vh;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.closing h2 { font-size: clamp(2.3rem, 4.4vw, 3.9rem); max-width: 14em; }
.closing-text { max-width: 33em; margin-top: 1.7rem; }
.cta-row {
  margin-top: 3.4rem; display: flex; align-items: center;
  gap: clamp(2.6rem, 7vw, 5.5rem);
}
.btn-primary {
  display: inline-block; padding: 1.15rem 2.5rem;
  background: var(--vermillion); color: #F8F4EA;
  text-decoration: none; border-radius: 2px;
  font-size: .94rem; font-weight: 500; letter-spacing: .025em;
  box-shadow: 0 10px 26px -18px rgba(138, 43, 32, .9);
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--vermillion-d); transform: translateY(-1px); }
.closing-alt { margin-top: 3.6rem; font-size: .88rem; color: var(--ink-dilute); }

.seal {
  display: flex; flex-direction: column; align-items: center; gap: .85rem;
  opacity: 0; transform: scale(.92) rotate(-5deg);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.seal.in { opacity: 1; transform: rotate(-2.5deg); }
@media (prefers-reduced-motion: reduce) { .seal { opacity: 1; transform: rotate(-2.5deg); transition: none; } }
.seal svg { width: 72px; height: 72px; display: block; }
.seal-glyph {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Songti SC", "Noto Serif SC", serif;
  font-size: 30px; fill: #F6F3EC; text-anchor: middle;
}
.seal-caption {
  font-size: .5625rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-dilute);
}

/* ---------------- Footer ---------------- */

.footer { border-top: 1px solid var(--hairline); padding: 3.6rem 0 4.4rem; }
.foot-inner { text-align: center; }
.foot-brand { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; letter-spacing: .045em; color: var(--ink); }
.foot-line { margin-top: .5rem; font-size: .78rem; color: var(--ink-dilute); }
.foot-links { margin-top: 1.6rem; display: flex; justify-content: center; gap: 2.2rem; }
.foot-links a {
  font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-dilute); text-decoration: none; padding: .7rem 0;
  transition: color .4s var(--ease);
}
.foot-links a:hover, .foot-links a:focus-visible { color: var(--text); }
.foot-note { margin-top: 1.9rem; font-size: .625rem; letter-spacing: .14em; color: rgba(141, 133, 122, .72); }

/* ---------------- Tablet ---------------- */

@media (max-width: 1000px) {
  .method-grid { grid-template-columns: 1fr; }
  .method-figure { max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-figure { max-width: 340px; }
  .about-creds ul { columns: 1; }
}

/* ---------------- Mobil ---------------- */

@media (max-width: 779px) {
  body { line-height: 1.7; }
  /* Auf dem Telefon wandert die Linie in die Ränder. Der Satzspiegel gibt ihr
     die Bahn frei, damit sie nie durch Text läuft. */
  .wrap { padding-right: 2.9rem; }
  .zpp .wrap { padding-left: 3.1rem; padding-right: 1.3rem; }
  .footer .wrap { padding-right: 1.3rem; }
  .nav { padding: 1.1rem 0 .9rem; }
  .nav-inner { padding-right: 1.15rem; }
  .nav-links { display: none; }
  .brand { font-size: 1rem; }

  .hero { padding: 7.5rem 0 4.5rem; min-height: 100svh; }
  .hero-inner { gap: 3.4rem; }
  .hero h1 { font-size: clamp(2.7rem, 12.5vw, 3.7rem); line-height: 1.02; }
  .hero-bottom { grid-template-columns: 1fr; gap: 2.2rem; align-items: start; }
  .hero-side { gap: 1.6rem; }
  .hero-ctas { gap: 1.4rem; }
  .btn-ghost { padding: .95rem 1.6rem; }

  .method { padding: 18vh 0 13vh; }
  .knockout { font-size: clamp(2rem, 8.6vw, 2.6rem); padding: .12em .06em; }
  .method-grid { margin-top: 2.6rem; }

  .courses { padding: 9vh 0 13vh; }
  .cards { grid-template-columns: 1fr; gap: 0; margin-top: 2.6rem; }
  .card { padding: 1.9rem 0 2.1rem; }
  .card:last-child { border-bottom: 1px solid var(--hairline); }
  .card-num { margin-bottom: 1rem; }
  .card p { margin-bottom: 1.3rem; }

  .zpp { padding: 9vh 0 12vh; }
  .zpp .wrap { padding-left: 3.1rem; }
  .zpp-steps { margin-left: 0; margin-top: 2.6rem; }
  .zpp-step { grid-template-columns: 50px 1fr; gap: .9rem; padding: 1.7rem 0; }
  .step-num { font-size: 1.5rem; }
  .zpp-foot { margin-left: 0; }

  .enso { padding: 9vh 0 11vh; }
  .enso-wrap { width: min(420px, 86vw); }
  .enso-statement { font-size: clamp(1.25rem, 6.4vw, 1.6rem); max-width: 88%; }
  .triad { grid-template-columns: 1fr; gap: 0; }
  .triad-item { padding: 1.5rem 0 1.6rem; }

  .about { padding: 6vh 0 12vh; }
  .about-figure { max-width: none; }
  .about-quote { margin-top: 2.4rem; padding-left: 1.2rem; }
  .about-creds { margin-top: 2.6rem; }

  .closing { padding: 14vh 1.3rem 15vh 3rem; }
  .cta-row { flex-direction: column; gap: 2.8rem; margin-top: 2.8rem; }
  .closing-text { margin-top: 1.3rem; }
}

/* Bei reduzierter Bewegung steht das Logo als Standbild, die Seite wartet. */
@media (prefers-reduced-motion: reduce) {
  main, .nav, footer { transition: opacity .38s linear; }
  body.intro-hold main,
  body.intro-hold .nav,
  body.intro-hold footer { opacity: 0; }
  body.intro-hold .intro-word { transition: none; }
}
