/* =========================================================================
   FLOORITH Betonbodenbau · Startseite (Pitch-Teaser)
   Vanilla-CSS, mobile-first, Token-System.
   Design-Quelle: Figma „Pitch-Websites“, Frame 561:2. Tokens 1:1 aus
   get_variable_defs (Kollektion „Floorith Tokens“).
   Motion-Startzustände stehen ausschließlich unter .is-animating, damit die
   Seite ohne JS, ohne GSAP und bei reduzierter Bewegung vollständig lesbar ist.
   ========================================================================= */

/* ---- Reset (schmal) ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, p, figure, blockquote, dl, dd, dt, ol, ul { margin: 0; }
ol, ul { padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--hazard); outline-offset: 3px; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Sprungziele unter dem Sticky-Header freihalten */
#main, #hero, #leistungen, #kennzahlen, #referenzen {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
#main:focus { outline: none; }

/* ---- Tokens ------------------------------------------------------------ */
:root {
  /* Farben (Figma: Floorith Tokens) */
  --paper: #f4f4f0;
  --white: #ffffff;
  --ink: #0a0a0a;
  --ink-2: #52524c;
  --hazard: #fe2500;
  --ink-inv: #f4f4f0;
  --ink-inv-2: #b0b0a8;
  --line-carbon: #3e3e3a;
  /* Abgeleitete Akzentstufen, damit Rot als Textfarbe kontrastsicher bleibt:
     --hazard-light 7,0:1 auf Carbon, --hazard-ink 4,65:1 auf Papier.
     Reines --hazard erreicht auf Papier nur 3,48:1 und ist deshalb
     ausschließlich Flächen-, Linien- und Großschriftfarbe. */
  --hazard-light: #ff6a4d;
  --hazard-ink: #d81d00;
  /* Ruhezustand der inaktiven Prozessschritte: 4,9:1 auf Papier */
  --ink-ruhe: #6a6a65;

  /* Schrift-Stacks */
  --font-display: "Archivo Black", "Archivo", Impact, "Haettenschweiler", sans-serif;
  --font-sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Type-Scale (fluid; Max = Figma-Wert bei 1440, Min bei 375) */
  --fs-display: clamp(2.75rem, 1.254rem + 6.385vw, 7rem);        /* 44 -> 112 */
  --fs-titel-l: clamp(2rem, 1.384rem + 2.629vw, 3.75rem);        /* 32 -> 60 */
  --fs-num:     clamp(2.25rem, 1.542rem + 3.774vw, 5.25rem);     /* 36 -> 84 */
  --fs-pitch:   clamp(1.5rem, 1.368rem + 0.563vw, 1.875rem);     /* 24 -> 30 */
  --fs-h3:      clamp(1.25rem, 1.162rem + 0.376vw, 1.5rem);      /* 20 -> 24 */
  --fs-lead:    clamp(1.0625rem, 1.019rem + 0.188vw, 1.1875rem); /* 17 -> 19 */
  --fs-body:    1rem;         /* 16 */
  --fs-small:   0.875rem;     /* 14 */
  --fs-mono:    0.8125rem;    /* 13 */
  --fs-label:   0.75rem;      /* 12 */

  /* Layout */
  --maxw: 1440px;
  --page-pad: clamp(1.25rem, 5.556vw, 5rem);   /* max 80px wie im Layout */
  --header-h: 4.75rem;                          /* 76px */
  --hairline: 1px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Basis ------------------------------------------------------------- */
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -3.5rem;
  z-index: 200;
  background: var(--ink);
  color: var(--ink-inv);
  padding: 0.6rem 1rem;
  text-decoration: none;
  font-size: var(--fs-small);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---- Typo-Bausteine ---------------------------------------------------- */
.mono-label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--fs-label);
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--ink-2);
}
.lead--invers { color: var(--ink-inv-2); }

.titel-l {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-titel-l);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
  /* Lange deutsche Komposita in Display-Versalien sind auf 320 px breiter
     als der Viewport. lang="de" ist gesetzt, die Trennung greift also. */
  hyphens: auto;
  overflow-wrap: break-word;
}
.titel-l--invers { color: var(--ink-inv); }
.nocaps { text-transform: none; }

/* Schaltflächen */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-body);
  line-height: 1.2;
  letter-spacing: 0.01em;
  padding: 1.25rem 2.25rem;
  text-decoration: none;
}
.btn--solid {
  background: var(--ink);
  color: var(--ink-inv);
  transition: background-color 0.25s var(--ease);
}
.btn--solid:hover, .btn--solid:focus-visible { background: var(--hazard-ink); }
.btn--outline {
  border: var(--hairline) solid var(--ink);
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: var(--fs-mono);
  letter-spacing: 0.02em;
  padding: 1rem clamp(0.75rem, 4vw, 1.75rem);
  overflow-wrap: anywhere;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn--outline:hover, .btn--outline:focus-visible { background: var(--ink); color: var(--ink-inv); }
.btn__icon { width: 1.125rem; height: 1.125rem; fill: currentColor; flex: none; }

.textlink {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.textlink--offen { color: var(--ink-2); text-decoration-style: dashed; }

/* ---- Header ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: var(--hairline) solid var(--ink);
}
.site-header.is-scrolled { box-shadow: 0 1px 0 rgb(10 10 10 / 0.12), 0 10px 24px rgb(10 10 10 / 0.06); }

.site-header__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--page-pad);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { display: block; flex: none; }
.logo img { width: 6.5rem; height: auto; }

.site-header__tel {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  /* Touchziel: mindestens 44 px Höhe */
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}
.site-header__tel:hover, .site-header__tel:focus-visible { text-decoration: underline; text-underline-offset: 0.25em; }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 0;
  padding: 0.75rem 0.25rem;
  min-height: 2.75rem;
  cursor: pointer;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__toggle-bars { display: block; width: 1.25rem; }
.nav__toggle-bars span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin-block: 3px;
}

.nav {
  display: none;
  position: absolute;
  inset-inline: 0;
  top: 100%;
  background: var(--paper);
  border-bottom: var(--hairline) solid var(--ink);
  padding: 0.5rem var(--page-pad) 1.5rem;
  /* Querformat: Panel darf den Viewport nicht überlaufen */
  max-height: calc(100svh - var(--header-h));
  overflow-y: auto;
}
.site-header.is-nav-open .nav { display: block; }
.nav__list { display: flex; flex-direction: column; }
.nav__link {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--fs-label);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: var(--hairline) solid rgb(10 10 10 / 0.12);
}
a.nav__link:hover, a.nav__link:focus-visible {
  color: var(--hazard-ink);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.nav__link--offen { color: var(--ink-2); }
.nav .site-header__tel { margin-top: 0.75rem; }

@media (min-width: 62rem) {
  .nav__toggle { display: none; }
  .nav {
    display: flex;
    position: static;
    inset: auto;
    align-items: center;
    gap: 2.5rem;
    background: none;
    border: 0;
    padding: 0;
    max-height: none;
    overflow: visible;
    flex: 1;
    justify-content: space-between;
    margin-left: 3rem;
  }
  /* Offenes Mobilmenü darf beim Breakpoint-Wechsel den Header nicht zerlegen */
  .site-header.is-nav-open .nav { display: flex; }
  .nav__list { flex-direction: row; gap: 1.75rem; }
  .nav__link { border: 0; min-height: 1.75rem; }
  .nav .site-header__tel { margin-top: 0; }
}

/* ---- Hero -------------------------------------------------------------- */
.hero {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(2.5rem, 4vw, 4rem) var(--page-pad) 0;
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.75rem);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-display);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.hero__title .line {
  display: block;
  /* Rand für die Zeilenmaske, damit das Komma nicht beschnitten wird */
  padding-bottom: 0.09em;
  margin-bottom: -0.09em;
}
.hero__title .line__in { display: block; }
.hero__title .line__in--akzent { color: var(--hazard); }

.hero__foot { display: grid; gap: 1.75rem; }
.hero__lead { max-width: 38.75rem; }   /* 620px */
.hero__cta { display: flex; }

@media (min-width: 62rem) {
  .hero__foot {
    grid-template-columns: minmax(0, 38.75rem) auto;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
  .hero__cta { justify-content: flex-end; }
}

/* Signatur-Bereich: trägt die durchlaufende rote Gusslinie */
.signatur { position: relative; }
.signatur__linie { display: none; }
@media (min-width: 62rem) {
  .signatur__linie {
    display: block;
    position: absolute;
    /* An den zentrierten Satzspiegel gebunden, damit die Linie oberhalb
       1440 px nicht im Rand hängen bleibt. */
    left: max(2.5rem, calc(50% - var(--maxw) / 2 + 2.5rem));
    top: 3.75rem;
    bottom: 0;
    width: 2px;
    background: var(--hazard);
    z-index: 1;
    pointer-events: none;
  }
}

/* overflow: hidden fängt den Zoom der Einblend-Animation ab, sonst entsteht
   für die Dauer des Tweens ein horizontaler Überlauf. */
.hero__media { position: relative; overflow: hidden; }
.hero__band { height: 0.875rem; background: var(--hazard); }
.hero__media img {
  width: 100%;
  height: clamp(14rem, 34.7vw, 31.25rem);   /* max 500px */
  object-fit: cover;
}

/* ---- Leistungen: Scroll-Sequenz --------------------------------------- */
.leistungen {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(3.5rem, 6.7vw, 6rem) var(--page-pad);
  display: grid;
  gap: clamp(1.75rem, 2.8vw, 2.5rem);
}

.sequenz { display: grid; gap: clamp(2rem, 4.4vw, 4rem); }
@media (min-width: 62rem) {
  .sequenz {
    grid-template-columns: minmax(0, 616fr) minmax(0, 600fr);
    align-items: start;
  }
}

.schritt {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.5rem;
  padding-block: clamp(1.5rem, 2.8vw, 2.5rem);
  border-top: var(--hairline) solid var(--ink);
}
.schritte > .schritt:last-of-type { border-bottom: var(--hairline) solid var(--ink); }

.schritt__icon {
  width: 2.125rem; height: 2.125rem;    /* 34px */
  fill: var(--ink);
  flex: none;
  transition: fill 0.35s var(--ease), opacity 0.35s var(--ease);
}
.schritt__text { display: grid; gap: 0.625rem; }
.schritt__nr { color: var(--ink); transition: opacity 0.35s var(--ease); }
.schritt__titel {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.15;
}
.schritt__body { color: var(--ink-2); transition: color 0.35s var(--ease); }

/* Ruhezustand der noch nicht erreichten Schritte. Bewusst NICHT über
   opacity auf dem ganzen Block: 40 % Deckkraft drückt den Fließtext auf
   1,9:1 Kontrast. Gedimmt werden nur die redundanten Elemente (Icon ist
   aria-hidden, die Schrittnummer steckt schon in der Listenordnung), der
   Textkörper wird über eine Farbe mit 4,9:1 abgesetzt. */
.sequenz.is-seq .schritt:not(.is-aktiv) .schritt__icon,
.sequenz.is-seq .schritt:not(.is-aktiv) .schritt__nr { opacity: 0.4; }
.sequenz.is-seq .schritt:not(.is-aktiv) .schritt__body { color: var(--ink-ruhe); }
.sequenz.is-seq .schritt.is-aktiv .schritt__icon { fill: var(--hazard); }

.sequenz__media { display: grid; gap: 1rem; }
@media (min-width: 62rem) {
  .sequenz__media {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
  }
  /* Die Schritte brauchen echte Höhe, sonst hat die Sticky-Spalte keinen
     Weg und das Bild bleibt nicht stehen. Jeder Schritt ist ein Stop. */
  .schritt { min-height: 44vh; align-content: center; }
}

.seqbild {
  position: relative;
  aspect-ratio: 600 / 735;
  background: var(--ink);
  overflow: hidden;
  /* Auf kurzen Viewports darf das Hochformat nicht unter die Kante laufen */
  max-height: calc(100svh - var(--header-h) - 5rem);
}
@media (max-width: 61.999rem) {
  /* Zwischenzone Tablet: die volle Spaltenbreite würde das Hochformat auf
     über 1000 px Höhe aufziehen. */
  .seqbild { max-height: 64svh; }
}
.seqbild__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
}
.seqbild__img.is-aktiv { opacity: 1; }
/* Im JS-Pfad steuert GSAP die Bilder per clip-path (Schichtwechsel). Es gibt
   deshalb bewusst keine CSS-Transition, die dagegen arbeiten könnte. */

.seqmeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.02em;
}
.seqmeta__stops { display: flex; gap: 0.375rem; }
.stop {
  display: block;
  width: 2rem; height: 3px;
  background: var(--ink);
  opacity: 0.25;
  transition: opacity 0.35s var(--ease), background-color 0.35s var(--ease);
}
.stop.is-aktiv { background: var(--hazard); opacity: 1; }

/* Unter 62rem gibt es keine Sequenz: Wechselbilder nicht laden, und
   Zähler samt Stop-Marken nicht anzeigen, damit sie keinen Zustandswechsel
   versprechen, den es dort nicht gibt. */
@media (max-width: 61.999rem) {
  .seqbild__img:not(.is-aktiv) { display: none; }
  .seqmeta { display: none; }
}

.leistungen__link { display: flex; justify-content: flex-end; }

/* ---- Trenner ----------------------------------------------------------- */
.divider { height: 4px; background: var(--hazard); }

/* ---- Kennzahlen (Carbon-Bühne) ---------------------------------------- */
.kennzahlen {
  background: var(--ink);
  color: var(--ink-inv);
  padding-block: clamp(3rem, 6.1vw, 5.5rem) clamp(3.5rem, 6.7vw, 6rem);
}
.kennzahlen__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--page-pad);
  display: grid;
  gap: clamp(1.25rem, 2.8vw, 2.5rem);
}
.kennzahlen__intro { max-width: 41.25rem; }   /* 660px */

.kz { display: grid; }
.kz__row {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
  padding: clamp(1rem, 1.7vw, 1.125rem) 0;
  border-top: var(--hairline) solid var(--line-carbon);
}
.kz__row:last-child { border-bottom: var(--hairline) solid var(--line-carbon); }

.kz__label {
  font-size: var(--fs-small);
  line-height: 1.45;
  color: var(--ink-inv-2);
}
.kz__value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;      /* auf 320 px darf die Einheit umbrechen */
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.02em;
}
.kz__qual { color: var(--ink-inv-2); }
/* Zeilen ohne Qualifier: der leere Span würde mobil einen Versatz erzeugen */
.kz__qual:empty { display: none; }
.kz__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-num);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink-inv);
  font-variant-numeric: tabular-nums;
}
.kz__unit { color: var(--ink-inv); }

@media (min-width: 62rem) {
  .kz {
    background: var(--line-carbon);
    padding: var(--hairline);
    gap: var(--hairline);
  }
  .kz__row {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    background: var(--ink);
    border: 0;
    padding: 1.125rem 1.75rem;
    min-height: 7.5rem;    /* 120px */
  }
  .kz__row:last-child { border: 0; }
  .kz__label { width: 20rem; flex: none; }         /* 320px */
  .kz__qual { width: 2.875rem; flex: none; }       /* 46px, hält die Ziffern auf einer Achse */
  .kz__qual:empty { display: block; }
}

/* ---- Laufband (Marquee, randlos) -------------------------------------- */
.laufband {
  position: relative;
  background: var(--hazard);
  color: var(--ink);
  overflow: hidden;
  padding-block: 1.125rem;
}
.laufband__track {
  display: flex;
  width: max-content;
  animation: laufband 69s linear infinite;
}
.laufband.is-pausiert .laufband__track { animation-play-state: paused; }
.laufband__cycle {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--fs-label);
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: pre;
}
@keyframes laufband {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-16.6667%, 0, 0); }
}
/* Pausenschalter: WCAG 2.2.2 verlangt für automatisch startende Bewegung
   von Inhalt eine Bedienmöglichkeit in der Seite selbst. */
.laufband__pause {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hazard);
  border: 0;
  border-left: var(--hairline) solid rgb(10 10 10 / 0.35);
  cursor: pointer;
}
.laufband__pause svg { width: 0.875rem; height: 0.875rem; fill: var(--ink); }
.laufband__pause .ic-play { display: none; }
.laufband__pause[aria-pressed="true"] .ic-play { display: block; }
.laufband__pause[aria-pressed="true"] .ic-pause { display: none; }

/* ---- Referenzen -------------------------------------------------------- */
.referenzen {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--page-pad);
  display: grid;
  gap: 1.25rem;
}
.reflogos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hairline);
  background: var(--ink);
  padding: var(--hairline);
}
@media (min-width: 48rem) {
  .reflogos { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.reflogos__zelle {
  background: var(--white);
  min-height: 6.5rem;    /* 104px */
  display: flex;
  align-items: center;
  justify-content: center;
  /* schmale Viewports: weniger Seitenluft, sonst schrumpfen die breiten
     Wortmarken (DHL, WOLFF & MÜLLER) unter ihre Lesbarkeitsgrenze */
  padding: 1.5rem 1rem;
}
@media (min-width: 62rem) {
  .reflogos__zelle { padding: 1.75rem 2rem; }
}
/* Höhe je Logo explizit setzen. Ohne das gewinnt der Reset (img{height:auto})
   gegen die HTML-Attribute und alle breiten Wortmarken laufen auf denselben
   Anschlag, womit die optische Balance des Layouts verloren geht. */
.reflogos__zelle img {
  height: var(--logo-h, 2.375rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
/* Schnittkante des Fugenschnitts: existiert nur im JS-Pfad, deshalb per
   Default unsichtbar. GSAP setzt Position und Deckkraft. */
.reflogos__schnitt {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 2px;
  background: var(--hazard);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

/* ---- Vorschau-Fade ----------------------------------------------------- */
.handoff {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.handoff__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(3rem, 6.1vw, 5.5rem) var(--page-pad) 0;
  display: grid;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  opacity: 0.75;
}
.handoff__line { height: var(--hairline); background: var(--ink); }
.handoff__media { height: clamp(7rem, 11vw, 10rem); overflow: hidden; }
.handoff__media img { width: 100%; height: 100%; object-fit: cover; }

.handoff__veil {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 62%;
  background: linear-gradient(to bottom, rgb(244 244 240 / 0), var(--paper) 88%);
}
.handoff__hinweis {
  position: absolute;
  inset-inline: 0;
  bottom: clamp(1.25rem, 2.4vw, 2rem);
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.02em;
}

/* ---- Pflicht-Abschluss: Silberschmidt Media --------------------------- */
.pitch {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(3rem, 5.6vw, 5rem) var(--page-pad) clamp(3.5rem, 6.7vw, 6rem);
  border-top: var(--hairline) solid var(--ink);
  display: grid;
  gap: clamp(2rem, 4.4vw, 4rem);
}
@media (min-width: 48rem) {
  .pitch { grid-template-columns: 15rem minmax(0, 1fr); align-items: center; }
}
.pitch__photo { display: grid; gap: 0.75rem; justify-items: start; }
.pitch__photo img { width: 100%; max-width: 15rem; aspect-ratio: 1; object-fit: cover; }
.pitch__photo figcaption {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.02em;
}
.pitch__body { display: grid; gap: 1.125rem; justify-items: start; }
.pitch__eyebrow-link { text-decoration: underline; text-underline-offset: 0.25em; }
.pitch__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--fs-pitch);
  line-height: 1.2;
}
.pitch__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.pitch__fine { font-size: var(--fs-small); line-height: 1.45; color: var(--ink-2); }

/* =========================================================================
   Motion-Startzustände: NUR unter .is-animating (wird von main.js gesetzt,
   wenn GSAP vorhanden ist, keine reduzierte Bewegung gilt und die Seite
   noch nicht gerendert war).
   ========================================================================= */
.is-animating .hero__title .line { overflow: hidden; }
.is-animating [data-hero-el] { opacity: 0; }
.is-animating [data-reveal] { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .laufband__track { animation: none; }
  .skip-link, .btn--outline, .btn--solid, .stop, .schritt__icon, .schritt__nr,
  .schritt__body, .seqbild__img { transition: none; }
}
