/* ============================================================
   VONDERBANK VISUALS · One-Pager
   Gestaltung: redaktionell / filmisch. Haarlinien statt Karten,
   asymmetrisches Raster, grosse Typo-Kontraste.
   Aufbau dieser Datei:
     01 Schriften
     02 Tokens
     03 Reset & Grundlagen
     04 Raster & Hilfsklassen
     05 Typografie
     06 Film-Look (Grain, Vignette, Bildlook)
     07 Bewegung (Reveals)
     08 Kopfzeile & Navigation
     09 Seitenschiene
     10 Buttons & Links
     11 Sektionen
     12 Fusszeile
     13 Mobil
   ============================================================ */

/* ---------- 01 Schriften (lokal, kein CDN, DSGVO-freundlich) ---------- */
@font-face {
  font-family: "Anybody";
  src: url("../fonts/anybody.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 50% 150%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-italic.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono.woff2") format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- 02 Tokens ---------- */
:root {
  /* Farben */
  --bg:          #0c0c0c;
  --bg-lift:     #131313;   /* minimal abgesetzte Flaeche */
  --ink:         #f0ece4;   /* Haupttext hell */
  --ink-2:       #b5b0a7;   /* Fliesstext, ruhiger */
  --muted:       #888888;   /* Sekundaertext laut Brief */
  --line:        rgba(240, 236, 228, 0.14);
  --line-soft:   rgba(240, 236, 228, 0.07);

  /* Akzent: Gruen, sehr sparsam.
     Zu den Kontrasten: Das Marken-Gruen #1f6b00 ist auf Schwarz zu dunkel fuer
     Text (2,9:1). Es wird deshalb nur als Flaeche benutzt, nie als Schriftfarbe.
     Fuer kleine Texte auf Dunkel gibt es --accent-lift, fuer den Button-Hover
     einen Ton, der hinter der kleinen Schrift noch 4,9:1 erreicht. */
  --accent:      #1f6b00;   /* Flaechen, Buttons, Regeln */
  --accent-hi:   #2d8c00;   /* helles Gruen, nur dekorativ (Linien, Raender) */
  --accent-btn:  #227500;   /* Button-Hover: heller als Basis, aber noch lesbar */
  --accent-lift: #5bbd2e;   /* NUR fuer kleine Texte auf Dunkel (Kontrast) */

  /* Schrift-Rollen */
  --f-display: "Anybody", "Helvetica Neue", Arial, sans-serif;
  --f-text:    "Newsreader", Georgia, "Times New Roman", serif;
  --f-accent:  "Bodoni Moda", Georgia, serif;
  --f-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Groessen */
  --t-display: clamp(2.6rem, 8.2vw, 7.75rem);
  --t-h2:      clamp(2.1rem, 5.4vw, 4.5rem);
  --t-h3:      clamp(1.45rem, 2.5vw, 2.3rem);
  --t-lead:    clamp(1.1rem, 1.55vw, 1.4rem);
  --t-body:    clamp(1rem, 1.05vw, 1.09rem);
  --t-meta:    clamp(0.66rem, 0.78vw, 0.75rem);
  --t-numeral: clamp(3.5rem, 9vw, 8.5rem);

  /* Raster */
  --maxw: 1560px;
  --pad:  clamp(1.25rem, 5vw, 5.5rem);
  --rail: clamp(0px, 4.5vw, 86px);   /* linke Schiene */
  --gap:  clamp(1.5rem, 3vw, 3.5rem);

  /* Rhythmus */
  --sec-y: clamp(6rem, 14vh, 12rem);

  /* Kurven */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Filmkorn als SVG-Rauschen, inline. Keine zusaetzliche Datei, kein Request. */
  --grain-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 03 Reset & Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Ankersprung nicht unter die feste Kopfzeile laufen lassen */
  scroll-padding-top: clamp(5.5rem, 11vh, 8rem);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-text);
  font-size: var(--t-body);
  line-height: 1.66;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-variant-ligatures: common-ligatures;
}

img, video { max-width: 100%; display: block; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--ink); }

/* Sichtbarer Fokus, aber nur bei Tastaturbedienung */
:focus-visible {
  outline: 2px solid var(--accent-lift);
  outline-offset: 3px;
  border-radius: 1px;
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 999;
  background: var(--ink);
  color: var(--bg);
  padding: 0.7rem 1.2rem;
  font-family: var(--f-mono);
  font-size: 0.8rem;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

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

/* ---------- 04 Raster & Hilfsklassen ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* 12 Spalten. Inhalte sitzen bewusst auf ungeraden Spannen. */
.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
}

.section {
  position: relative;
  padding-block: var(--sec-y);
}

/* Vollflaechig, bricht aus dem Container aus */
.bleed {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* Kicker: kleines Mono-Label ueber jeder Sektion */
.kicker {
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.75rem);
}
.kicker::before {
  content: "";
  width: clamp(24px, 4vw, 56px);
  height: 1px;
  background: var(--accent-lift);
  flex: none;
}

/* Kleine Bild-/Meta-Unterschrift wie ein Film-Still-Credit */
.caption {
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  letter-spacing: 0.11em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.9rem;
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
}
.caption span { color: var(--accent-lift); flex: none; }

/* ---------- 05 Typografie ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 600;
  font-stretch: 112%;
  font-size: var(--t-display);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-stretch: 108%;
  font-size: var(--t-h2);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.h3 {
  font-family: var(--f-display);
  font-weight: 550;
  font-stretch: 104%;
  font-size: var(--t-h3);
  line-height: 1.1;
  letter-spacing: -0.012em;
}

/* Akzentwort in Bodoni-Kursiv: der redaktionelle Gegenklang */
.em {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
  font-stretch: normal;
  letter-spacing: -0.005em;
  /* Bodoni laeuft optisch kleiner, deshalb leicht hochskaliert */
  font-size: 1.1em;
}

.lead {
  font-size: var(--t-lead);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 350;
  text-wrap: pretty;
}

.body { color: var(--ink-2); text-wrap: pretty; }
.body + .body { margin-top: 1.35em; }

.mono {
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Uebergrosse Ziffer, redaktionell */
.numeral {
  font-family: var(--f-display);
  font-weight: 200;
  font-stretch: 118%;
  font-size: var(--t-numeral);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  display: block;
}

/* ---------- 06 Film-Look ---------- */
/* Kornschicht ueber der ganzen Seite. Sehr subtil. */
.grain {
  position: fixed;
  inset: -150%;
  z-index: 60;
  pointer-events: none;
  opacity: 0.028;
  background-image: var(--grain-img);
  background-size: 220px 220px;
  animation: grain 6s steps(6) infinite;
  will-change: transform;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3%, 2%); }
  40%  { transform: translate(2%, -3%); }
  60%  { transform: translate(-2%, -2%); }
  80%  { transform: translate(3%, 1%); }
  100% { transform: translate(0, 0); }
}

/* Vignette: zieht die Raender ab, wie eine Projektion */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 55;
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% 45%, transparent 42%, rgba(0, 0, 0, 0.55) 100%);
}

/* Einheitlicher Bildlook. Liegt in CSS, nicht in den Dateien,
   damit eigenes Material von Patrick automatisch gleich aussieht. */
.figure {
  position: relative;
  overflow: hidden;
  background: #101010;
}
.figure img,
.figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.12) brightness(0.72);
  transition: filter 0.9s var(--ease), transform 1.2s var(--ease);
}
/* Kuehler Grundton plus eine Spur Gruen: bindet alle Bilder zusammen */
.figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.22) 0%, transparent 35%, rgba(12, 12, 12, 0.45) 100%),
    linear-gradient(140deg, rgba(31, 107, 0, 0.10), rgba(10, 14, 20, 0.28));
  mix-blend-mode: normal;
  transition: opacity 0.4s var(--ease);
}
.figure:hover img { filter: saturate(0.75) contrast(1.06) brightness(0.88); }

.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-4-3  { aspect-ratio: 4 / 3; }
.ratio-3-2  { aspect-ratio: 3 / 2; }
.ratio-2-3  { aspect-ratio: 2 / 3; }
.ratio-1-1  { aspect-ratio: 1 / 1; }
.ratio-9-16 { aspect-ratio: 9 / 16; }

/* ---------- 07 Bewegung ---------- */
/* Reveal wie ein Schnitt: Maske faehrt auf, Inhalt kommt minimal nach.
   WICHTIG: Der versteckte Zustand haengt an .js am <html>. Ohne JavaScript
   ist die Seite dadurch ganz normal lesbar statt unsichtbar. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity 1s var(--ease-out),
    transform 1.1s var(--ease-out),
    clip-path 1.15s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.js .reveal.in {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 -20% 0);
}

/* Bild faehrt zusaetzlich leicht heran */
.js .reveal-img .figure img { transform: scale(1.08); }
.js .reveal-img.in .figure img { transform: scale(1); }

/* Linie zieht sich auf */
.js .reveal-line {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.js .reveal-line.in { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; clip-path: none; }
  .js .reveal-line { transform: none; }
  .js .reveal-img .figure img { transform: none; }
  .grain { animation: none; }
  .parallax { transform: none !important; }
}

/* ---------- 08 Kopfzeile & Navigation ---------- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-block: clamp(1rem, 2vw, 1.6rem);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-head.stuck {
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
  padding-block: 0.85rem;
}
.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.brand img { width: clamp(112px, 12vw, 152px); height: auto; }

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2.1rem); }
.nav a {
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-block: 0.35rem;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent-lift);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav a:hover, .nav a[aria-current="true"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Menue-Schalter nur mobil */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 0.55rem 0.9rem;
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  gap: 0.3rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease-out);
  visibility: hidden;
}
.nav-overlay.open { clip-path: inset(0 0 0 0); visibility: visible; }
.nav-overlay a {
  font-family: var(--f-display);
  font-stretch: 108%;
  font-weight: 500;
  font-size: clamp(1.9rem, 8vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-overlay a i {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--accent-lift);
}

/* Lesefortschritt: haarfeine Linie am oberen Rand */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  z-index: 70;
}

/* ---------- 09 Seitenschiene ---------- */
/* Feine Linie links mit gedrehtem Sektionslabel. Redaktionelle Signatur. */
.rail {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: var(--rail);
  z-index: 40;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rail::after {
  content: "";
  position: absolute;
  right: 0; top: 12vh; bottom: 12vh;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-soft) 18%, var(--line-soft) 82%, transparent);
}
.rail-label {
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  transition: opacity 0.4s var(--ease);
}
.rail-label b { color: var(--accent-lift); font-weight: 500; }

@media (max-width: 1100px) { .rail { display: none; } }

/* ---------- 10 Buttons & Links ---------- */
/* Bewusst KEINE zwei gleich aussehenden Pillen. */
.btn {
  --btn-bg: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.05rem 1.9rem;
  background: var(--btn-bg);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--btn-bg);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
  white-space: nowrap;
}
.btn:hover { --btn-bg: var(--accent-btn); transform: translateY(-2px); }
.btn i {
  font-style: normal;
  transition: transform 0.4s var(--ease);
  display: inline-block;
}
.btn:hover i { transform: translateX(4px); }

/* Sekundaer: reiner Textlink mit Haarlinie. Anderer Typ, nicht dieselbe Form. */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line);
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn-text:hover { color: var(--accent-lift); border-bottom-color: var(--accent-lift); }
.btn-text i { font-style: normal; transition: transform 0.4s var(--ease); }
.btn-text:hover i { transform: translate(3px, -3px); }

.actions {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

/* Inline-Textlink */
.link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link:hover { color: var(--accent-lift); border-bottom-color: var(--accent-lift); }

/* Eigener Zeiger, nur bei Maus */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 26px; height: 26px;
  border: 1px solid rgba(240, 236, 228, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 80;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
              background 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
  opacity: 0;
  mix-blend-mode: difference;
}
.cursor.on { opacity: 1; }
.cursor.hot {
  width: 54px; height: 54px;
  background: rgba(240, 236, 228, 0.12);
  border-color: rgba(240, 236, 228, 0.85);
}
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ============================================================
   11 SEKTIONEN
   ============================================================ */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: clamp(7rem, 15vh, 11rem);
  padding-bottom: clamp(2.5rem, 7vh, 5.5rem);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: -8% 0 -8% 0;   /* Reserve fuer Parallaxe */
  z-index: -2;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) contrast(1.12) brightness(0.6);
}
/* Video liegt ueber dem Standbild. Fehlt es, bleibt das Bild sichtbar. */
.hero-media video { position: absolute; inset: 0; }
.hero-media video[hidden] { display: none; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.72) 0%, rgba(12, 12, 12, 0.28) 38%, rgba(12, 12, 12, 0.94) 92%),
    linear-gradient(96deg, rgba(12, 12, 12, 0.88) 8%, rgba(12, 12, 12, 0.25) 62%, transparent 100%);
}

.hero-inner { width: 100%; }

/* Headline sitzt bewusst links unten, nicht mittig */
.hero-head { grid-column: 1 / span 11; }
.hero h1 { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

.hero-foot {
  grid-column: 1 / span 12;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  align-items: end;
  row-gap: 2.5rem;
  margin-top: clamp(1rem, 3vh, 2.5rem);
}
/* Subline steht versetzt, nicht unter der Headline zentriert */
.hero-sub { grid-column: 1 / span 5; }
.hero-cta { grid-column: 7 / span 6; }

.hero-meta {
  position: absolute;
  right: var(--pad);
  top: 42%;
  writing-mode: vertical-rl;
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.hero-meta::after {
  content: "";
  width: 1px;
  height: clamp(40px, 8vh, 90px);
  background: linear-gradient(180deg, var(--accent-lift), transparent);
  animation: drop 2.6s var(--ease) infinite;
}
@keyframes drop {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: top; }
  50%      { opacity: 1;    transform: scaleY(1);   transform-origin: top; }
}

/* ---------- Manifest ---------- */
.manifest-head { grid-column: 1 / span 6; }
.manifest-body {
  grid-column: 8 / span 5;
  padding-top: clamp(1rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}
.manifest-body .body:first-child { margin-top: 0; }

/* Standbild bricht rechts aus dem Satzspiegel */
.manifest-still {
  grid-column: 7 / span 6;
  margin-top: clamp(3rem, 7vw, 6rem);
  margin-right: calc(var(--pad) * -1);
}

/* ---------- Zwei Hebel ---------- */
.levers {
  grid-column: 1 / span 12;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  row-gap: clamp(3rem, 7vw, 6rem);
  margin-top: clamp(1rem, 4vw, 3rem);
}
.lever { position: relative; padding-top: 2rem; border-top: 1px solid var(--line); }
/* Versatz: der zweite Block sitzt tiefer und weiter rechts */
.lever--1 { grid-column: 1 / span 5; }
.lever--2 { grid-column: 7 / span 5; margin-top: clamp(0rem, 9vw, 8rem); }
.lever .numeral { margin-bottom: 1.25rem; }
.lever .h3 { margin-bottom: 1rem; }
.lever-tag {
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-lift);
  display: block;
  margin-bottom: 0.9rem;
}

/* ---------- Ablauf ---------- */
.steps { grid-column: 1 / span 12; margin-top: clamp(1rem, 4vw, 2.5rem); }
.step {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 3fr) minmax(0, 5fr);
  column-gap: var(--gap);
  align-items: start;
  padding-block: clamp(1.8rem, 3.5vw, 3rem);
  border-top: 1px solid var(--line);
  transition: background 0.5s var(--ease);
}
.step:last-child { border-bottom: 1px solid var(--line); }
/* Treppe: jeder Schritt rueckt weiter ein */
.step--2 { padding-left: clamp(0px, 3vw, 3.5rem); }
.step--3 { padding-left: clamp(0px, 6vw, 7rem); }
.step--4 { padding-left: clamp(0px, 9vw, 10.5rem); }
.step:hover { background: linear-gradient(90deg, rgba(31, 107, 0, 0.07), transparent 60%); }
.step:hover .numeral { -webkit-text-stroke-color: var(--accent-lift); }
.step .numeral { transition: -webkit-text-stroke-color 0.5s var(--ease); }
.step .h3 { padding-top: 0.4rem; }
.step .body { padding-top: 0.55rem; }

/* ---------- Arbeiten ---------- */
.reel {
  grid-column: 1 / span 12;
  position: relative;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
/* .play ist bei den Video-Vorschaubildern ein echter <button>, kein <span>.
   Reset der Browser-Grundstile, damit er optisch identisch bleibt. */
button.play {
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.play span {
  width: clamp(76px, 9vw, 118px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 236, 228, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  backdrop-filter: blur(3px);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
button.play:hover span,
button.play:focus-visible span {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.06);
}

/* ---------- YouTube-Facade (Zwei-Klick-Loesung) ----------
   Vor dem Klick nur Standbild + Button, danach ersetzt das iFrame
   den kompletten Inhalt des Containers (siehe js/script.js). */
.yt-facade-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Sobald das Video laeuft, verschwindet der Farbgrade-Filter der Seite,
   damit die eigentliche Aufnahme unverfaelscht zu sehen ist. */
.yt-facade.is-playing::after { opacity: 0; }

.yt-note {
  margin-top: 0.9rem;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.yt-note a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.yt-note a:hover { color: var(--accent-lift); border-color: var(--accent-lift); }

/* Versetzte Still-Reihe: unterschiedliche Groessen und Hoehen.
   align-items:start verhindert, dass ein hoher Hochformat-Nachbar die
   flacheren Kacheln in seiner Reihe nach unten aufblaeht (CSS-Grid wuerde
   sie sonst per Default auf die Zeilenhoehe strecken). */
.stills {
  grid-column: 1 / span 12;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  column-gap: var(--gap);
  row-gap: clamp(2rem, 4vw, 3.5rem);
}
/* Reihe 1: breites Querformat links, Hochformat-Reel rechts daneben */
.still--a { grid-column: 1 / span 8; }
.still--b { grid-column: 9 / span 4; margin-top: clamp(0rem, 3vw, 2rem); }
/* Reihe 2: zweites Hochformat-Reel links, zwei quadratische Fotos rechts */
.still--c { grid-column: 1 / span 4; }
.still--d { grid-column: 5 / span 4; margin-top: clamp(0rem, 5vw, 4rem); }
.still--e { grid-column: 9 / span 4; margin-top: clamp(0rem, 2vw, 1.5rem); }

/* Vollflaechiger Streifen als Trenner */
.strip { position: relative; height: clamp(46vh, 62vh, 80vh); overflow: hidden; }
.strip .figure { position: absolute; inset: -12% 0; }
.strip-quote {
  position: absolute;
  inset: auto 0 clamp(2rem, 6vw, 4.5rem) 0;
  z-index: 2;
}

/* ---------- Was mich auszeichnet ---------- */
.traits { grid-column: 1 / span 12; }
.trait {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 3.4fr) minmax(0, 5fr);
  column-gap: var(--gap);
  align-items: baseline;
  padding-block: clamp(1.6rem, 3vw, 2.6rem);
  border-top: 1px solid var(--line);
}
.trait:last-child { border-bottom: 1px solid var(--line); }
.trait-idx {
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  letter-spacing: 0.14em;
  color: var(--accent-lift);
}

/* ---------- Leistungen ---------- */
.svc-head { grid-column: 1 / span 5; }
.svc-list { grid-column: 7 / span 6; }
.svc {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: baseline;
  padding-block: clamp(1.3rem, 2.6vw, 2rem);
  border-top: 1px solid var(--line);
  transition: padding-left 0.5s var(--ease), color 0.4s var(--ease);
  font-size: var(--t-lead);
  line-height: 1.4;
  color: var(--ink);
  text-wrap: pretty;
}
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc:hover { padding-left: clamp(0.5rem, 1.5vw, 1.4rem); }
.svc i {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: var(--t-meta);
  letter-spacing: 0.14em;
  color: var(--muted);
  flex: none;
  transition: color 0.4s var(--ease);
}
.svc:hover i { color: var(--accent-lift); }

/* ---------- Kostenlos lernen ---------- */
.free-head { grid-column: 1 / span 7; }
.guides {
  grid-column: 1 / span 12;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  row-gap: clamp(2.5rem, 5vw, 4rem);
  margin-top: clamp(2.5rem, 6vw, 5rem);
}
/* Dossier statt Karte: nur Linien, gestaffelte Hoehen */
.guide {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  position: relative;
}
.guide--2 { margin-top: clamp(0rem, 3.5vw, 3rem); }
.guide--3 { margin-top: clamp(0rem, 7vw, 6rem); }
.guide::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-lift);
  transition: width 0.7s var(--ease);
}
.guide:hover::before, .guide:focus-within::before { width: 100%; }
.guide-idx {
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  letter-spacing: 0.18em;
  color: var(--muted);
}
.guide .body { flex: 1; font-size: 0.98rem; }

/* E-Mail-Feld: nur eine Haarlinie, kein Kasten */
/* flex-wrap statt einer starren Reihe: E-Mail-Feld und Button passen bei
   genug Platz nebeneinander, die Einwilligung (flex-basis 100%) erzwingt
   aber immer eine eigene Zeile dazwischen, auf jeder Bildschirmgroesse. */
.optin { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: stretch; margin-top: 0.5rem; }
.optin input[type="email"] {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.7rem 0.1rem;
  transition: border-color 0.35s var(--ease);
}
.optin input[type="email"]::placeholder { color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; }
.optin input[type="email"]:focus { outline: none; border-bottom-color: var(--accent-lift); }
.optin input[type="email"]:focus-visible { outline: none; }
.optin button {
  flex: 1 1 100%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.7rem 1.1rem;
  cursor: pointer;
  font-family: var(--f-mono);
  font-size: 0.85rem;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.optin button:hover { background: var(--accent); border-color: var(--accent); }
/* Honeypot gegen Bots */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* Pflicht-Einwilligung (Brevo verlangt OPT_IN). Eigene Zeile zwischen
   E-Mail-Feld und Button, kleine Schrift wie .optin-note, aber mit
   grosszuegiger Klickflaeche: das ganze <label> reagiert, nicht nur das
   winzige Kaestchen. Checkbox komplett eigen gestaltet (appearance:none),
   damit sie zur linienbasierten Optik der Seite passt statt nach
   Browser-Standard auszusehen. */
.optin-consent {
  flex: 1 1 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding-block: 0.4rem;
  cursor: pointer;
}
.optin-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  border: 1px solid var(--line);
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.optin-consent input[type="checkbox"]:hover { border-color: var(--accent-lift); }
.optin-consent input[type="checkbox"]:focus-visible { outline: 2px solid var(--accent-lift); outline-offset: 2px; }
.optin-consent input[type="checkbox"]:checked { background: var(--accent); border-color: var(--accent); }
.optin-consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px; top: 1px;
  width: 5px; height: 9px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(40deg);
}
.optin-consent span {
  font-family: var(--f-mono);
  font-size: 0.63rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
  color: var(--muted);
  text-transform: none;
}
.optin-consent span a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.optin-consent span a:hover { color: var(--accent-lift); border-bottom-color: var(--accent-lift); }

/* Noch nicht veroeffentlichte Leitfaeden: Inhalt unscharf, Label darueber.
   Der unscharfe Teil ist bewusst nicht bedienbar und fuer Screenreader
   ausgeblendet, damit niemand ein totes Formular abschickt. */
.guide-locked {
  position: relative;
  flex: 1;
  display: flex;
}
.guide-veil {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  filter: blur(11px);
  opacity: 0.32;
  pointer-events: none;
  user-select: none;
}
.guide-soon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.guide-soon span {
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--line);
  background: rgba(12, 12, 12, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  white-space: nowrap;
}
/* Gesperrte Karten sollen nicht so tun, als waeren sie anklickbar */
.guide--soon:hover::before,
.guide--soon:focus-within::before { width: 0; }
.optin-note {
  font-family: var(--f-mono);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.6;
  text-transform: none;
}
.optin-ok { color: var(--accent-lift); }

/* ---------- Beweis ---------- */
/* Mehrere Stimmen im gebrochenen Raster, wie schon bei .levers und .stills.
   Bewusst KEIN gleichfoermiges 3-Spalten-Kartenraster mit Icons, das
   widerspraeche dem redaktionellen Look der restlichen Seite. */
.quotes {
  grid-column: 1 / span 12;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  column-gap: var(--gap);
  row-gap: clamp(3rem, 6vw, 5rem);
}
.quote--1 { grid-column: 1 / span 7; }
.quote--2 { grid-column: 9 / span 4; margin-top: clamp(0rem, 5vw, 3.5rem); }
.quote--3 { grid-column: 2 / span 4; }
.quote--4 { grid-column: 7 / span 6; margin-top: clamp(0rem, 3vw, 2rem); }

/* War Bodoni kursiv, auf Wunsch auf Anybody (Hausschrift) umgestellt, besser lesbar.
   Anybody hat keinen eigenen Kursiv-Schnitt (siehe @font-face oben), deshalb hier
   wie bei .h2/.h3 normal + font-stretch statt italic. */
.quote blockquote {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 480;
  font-stretch: 104%;
  font-size: clamp(1.05rem, 1.9vw, 1.55rem);
  line-height: 1.34;
  letter-spacing: -0.008em;
  color: var(--ink);
  text-wrap: pretty;
}
/* Der erste, laengste Beleg bleibt der groesste, wie im Original */
.quote--1 blockquote {
  font-weight: 520;
  font-size: clamp(1.35rem, 3.1vw, 2.65rem);
  line-height: 1.24;
  letter-spacing: -0.014em;
  text-wrap: balance;
}
.quote figcaption {
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: clamp(1.5rem, 2.5vw, 2.25rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  line-height: 1.9;
}
.quote figcaption b { color: var(--ink); font-weight: 500; display: block; }

/* Name als Link: gleicher dezente Stil wie .link, aber weiterhin fett
   und blockweise wie der unverlinkte Name daneben (Franziska, Andrés) */
.quote figcaption a.quote-link {
  color: var(--ink);
  font-weight: 500;
  display: block;
  width: fit-content;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.quote figcaption a.quote-link:hover,
.quote figcaption a.quote-link:focus-visible {
  color: var(--accent-lift);
  border-bottom-color: var(--accent-lift);
}

/* ---------- Kontakt ---------- */
.contact-head { grid-column: 1 / span 8; }
.contact-body { grid-column: 9 / span 4; align-self: end; }
.contact-list { margin-top: clamp(2rem, 4vw, 3rem); }
.contact-list li { border-top: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list a,
.contact-list span {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: baseline;
  padding-block: 1rem;
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.35s var(--ease), padding-left 0.4s var(--ease);
}
.contact-list a:hover { color: var(--accent-lift); padding-left: 0.6rem; }
.contact-list em {
  font-style: normal;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: var(--t-meta);
  flex: none;
}

/* ---------- 12 Fusszeile ---------- */
.site-foot {
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
  justify-content: space-between;
}
.foot-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.site-foot a {
  font-family: var(--f-mono);
  font-size: var(--t-meta);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.site-foot a:hover { color: var(--ink); }
.foot-mark { display: flex; align-items: center; gap: 0.85rem; }
.foot-mark img { width: 30px; height: 30px; }

/* ============================================================
   13 MOBIL
   ============================================================ */
@media (max-width: 1000px) {
  :root { --sec-y: clamp(4.5rem, 11vh, 7rem); }

  .nav { display: none; }
  .nav-toggle { display: inline-block; }

  .hero { padding-top: 26vh; }
  .hero-head,
  .hero-foot,
  .hero-sub,
  .hero-cta { grid-column: 1 / span 12; }
  .hero-meta { display: none; }

  .manifest-head,
  .manifest-body,
  .manifest-still,
  .svc-head,
  .svc-list,
  .free-head,
  .contact-head,
  .contact-body { grid-column: 1 / span 12; }

  .manifest-body { margin-top: 2.5rem; padding-top: 2rem; }
  .manifest-still { margin-top: 2.5rem; margin-right: calc(var(--pad) * -1); }

  .lever--1, .lever--2 { grid-column: 1 / span 12; }
  .lever--2 { margin-top: 0; }

  .step,
  .trait {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0.6rem;
  }
  .step--2, .step--3, .step--4 { padding-left: 0; }
  .step .numeral { font-size: clamp(2.6rem, 14vw, 4.5rem); }

  .still--a, .still--b, .still--c, .still--d, .still--e { grid-column: 1 / span 12; margin-top: 0; }

  .quote--1, .quote--2, .quote--3, .quote--4 { grid-column: 1 / span 12; margin-top: 0; }
  .quote--1 blockquote { font-size: clamp(1.5rem, 6vw, 2rem); }

  .guide { grid-column: 1 / span 12; }
  .guide--2, .guide--3 { margin-top: 0; }

  .contact-body { margin-top: 2.5rem; }
}

@media (max-width: 560px) {
  /* Buttons duerfen umbrechen, sonst schiebt der lange Text die Seite auf */
  .btn { white-space: normal; padding: 0.95rem 1.35rem; }
  .actions { gap: 1.25rem; }
  /* .optin ist inzwischen auf jeder Breite gestapelt (E-Mail, Einwilligung,
     Button je eigene Zeile), eine gesonderte Mobile-Regel braucht es dafuer
     nicht mehr. */
  .foot-inner { flex-direction: column; align-items: flex-start; }
}
