/* =============================================================
   3werbung · plain-HTML site styles
   ============================================================= */

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Variable.woff2") format("woff2-variations"),
       url("assets/fonts/Satoshi-Variable.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;

  /* ─── Flächen ─── */
  --paper:   #ffffff;
  --paper-2: #f5f6f6;
  --line:    #d8dedd;

  /* ─── Text auf hellen Flächen ─── */
  --ink:     #15201f;   /* primär   — ~16:1 auf #fff */
  --ink-2:   #2a3a3c;   /* sekundär — ~11:1 auf #fff */
  --muted:   #4a6062;   /* tertiär  — ~6.0:1 auf #fff (AA für Fließtext) */

  /* ─── Text auf dunklen Flächen ─── nur Weiß / Off-White, keine Grautöne */
  --on-dark-1: #ffffff; /* primär   — Headlines / Hero */
  --on-dark-2: #f4f7f6; /* sekundär — Body / Lede */
  --on-dark-3: #f4f7f6; /* tertiär  — Labels / Kicker */
  --on-dark-4: #f4f7f6; /* dezent   — Deko-Texte */
  --line-dark: rgba(255, 255, 255, 0.14);

  /* ─── Akzent ─── */
  --accent: #00fec2;  /* Mint — die Markenfarbe (wie in „Kein Umweg.") */

  --nav-h: 72px;
  --gutter: clamp(24px, 6vw, 112px);
  --container: 1320px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; color: var(--ink); }

/* Globale Akzent-Hervorhebung (Mint) — überall verwendbar in Headings & Fließtext */
.accent { color: var(--accent); }

/* Auf der dunklen Hauptseite: keine Grautöne — alles weiß oder off-white.
   Das Light-Theme (Impressum / Datenschutz) behält die Original-Variablen. */
body:not(.theme-light) {
  --ink-2: #ffffff;
  --muted: #f4f7f6;
}

/* Scrollbar visuell ausblenden, Scrollen bleibt erhalten */
html { scrollbar-width: none; -ms-overflow-style: none; scroll-padding-top: var(--nav-h); scroll-behavior: smooth; }
html::-webkit-scrollbar,
body::-webkit-scrollbar { width: 0; height: 0; display: none; }

/* ===== Statischer Body-Hintergrund =====
   Ein konstanter Ton über das ganze Dokument — kein vertikaler Verlauf mehr,
   damit der Hintergrund beim Scrollen nicht „wandert". Tiefe + Mint-Schimmer
   kommen weiterhin aus den viewport-fixen Glühpunkten (body::before) und dem
   Grain (body::after); beide ändern sich beim Scrollen nicht. So sieht die
   ganze Seite überall gleich aus wie im „Vier Schritte"-Abschnitt. */
body {
  position: relative;
  font-family: "Satoshi", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  min-height: 100vh;
  background: #272f2d;
}

/* Mint-Akzente: viewport-fixed, sehr dezent, hinter allem Inhalt.
   Drei radiale Glühpunkte in komplementärer Anordnung erzeugen Tiefe,
   ohne Lesbarkeit zu kosten (Opazitäten ≤14%, weit weichgezeichnet). */
body::before {
  content: "";
  position: fixed;
  inset: -10vh -10vw;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60vw 50vh at 88% 12%,
      rgba(0, 254, 194, 0.14), transparent 62%),
    radial-gradient(ellipse 55vw 45vh at 8% 88%,
      rgba(0, 254, 194, 0.11), transparent 65%),
    radial-gradient(ellipse 50vw 40vh at 50% 50%,
      rgba(0, 201, 155, 0.08), transparent 70%),
    radial-gradient(ellipse 40vw 30vh at 15% 25%,
      rgba(0, 254, 194, 0.07), transparent 68%),
    radial-gradient(ellipse 45vw 30vh at 80% 70%,
      rgba(0, 201, 155, 0.06), transparent 70%),
    radial-gradient(ellipse 35vw 25vh at 35% 90%,
      rgba(0, 254, 194, 0.05), transparent 72%);
  filter: blur(40px);
}

/* Sehr feines Grain über allem — bricht den glatten Gradient leicht auf,
   ohne erkennbares Muster. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Everything that holds content sits above the grain overlay */
.nav, .hero, .welten-intro,
.section-reviews, .reviews-arc, .section-process, .section-contact-teaser,
.about-portrait,
.contact-section, .contact-grid, .legal, .footer {
  position: relative;
  z-index: 2;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── Nav ─── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--gutter);
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 280ms ease,
    border-color 280ms ease,
    backdrop-filter 280ms ease;
  color: #fff;
}
.nav.is-scrolled {
  background: rgba(13, 20, 21, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* ── Logo ── */
.nav-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

/* Werbung³ Hover Animation (Sprite Pulse) — white mark for dark nav */
.werbung3-hover {
  width: 100%;
  max-width: 44px;
  height: auto;
  overflow: visible;
  display: block;
  cursor: pointer;
}
.werbung3-hover .p {
  fill: #fff;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transition:
    transform 0.28s cubic-bezier(0.34, 1.5, 0.5, 1),
    fill 0.28s ease;
}
.nav-logo:hover .werbung3-hover .p,
.werbung3-hover:hover .p { fill: var(--accent); }
.werbung3-hover .p1 { transition-delay: 0s;    }
.werbung3-hover .p2 { transition-delay: 0.06s; }
.werbung3-hover .p3 { transition-delay: 0.12s; }
.nav-logo:hover .werbung3-hover .p,
.werbung3-hover:hover .p { transform: scale(1.10); }
.werbung3-hover:not(:hover) .p1 { transition-delay: 0.12s; }
.werbung3-hover:not(:hover) .p2 { transition-delay: 0.06s; }
.werbung3-hover:not(:hover) .p3 { transition-delay: 0s;    }
@media (prefers-reduced-motion: reduce) {
  .werbung3-hover .p { transition: none; }
  .werbung3-hover:hover .p,
  .nav-logo:hover .werbung3-hover .p { transform: none; }
}

/* ── Welt links (centered) ── */
.nav-welten {
  display: none;
  justify-self: center;
  align-items: center;
  gap: 64px;
}
@media (min-width: 760px) {
  .nav-welten { display: flex; }
}
.nav-welten a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--on-dark-2);
  transition: color 200ms ease;
}
.nav-welten a:hover { color: var(--accent); }
.nav-welten a.is-active { color: var(--accent); }

/* ── CTA cluster (right) with peek-out sub-button ──
   On hover the cluster grows its right padding → Anfrage slides LEFT,
   freeing the right slot where the Über-uns button fades in. */
.nav-cluster {
  position: relative;
  justify-self: end;
  display: none;
  padding-right: 0;
  /* Ruheposition näher am rechten Seitenrand. */
  margin-right: 0;
  transition:
    opacity 280ms ease,
    transform 280ms ease,
    padding-right 560ms cubic-bezier(0.32, 0.72, 0.24, 1);
}
@media (min-width: 760px) {
  .nav-cluster { display: inline-flex; }
}
/* Hover-Padding entfernt: der Anfrage-Button soll sich beim Drüberfahren
   nicht bewegen. Der Sub-Button ist absolut positioniert und braucht
   diesen Layout-Shift nicht. */
.nav-cluster.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: transparent;
  color: var(--on-dark-1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}

.nav-subcta-wrap {
  /* Endposition liegt weit rechts in der Gutter — bündig 24px vom
     Seitenrand, unabhängig von der aktuellen Gutter-Breite. Startet
     hinter dem Anfrage-Button und gleitet von dort nach rechts heraus,
     damit es sich wie ein „Erscheinen" anfühlt. */
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(-8px - var(--gutter));
  display: flex;
  align-items: center;
  /* Linker Hover-Brückenbereich, damit die Maus vom Anfrage-Button
     ohne Lücke auf den Über-uns-Button gleiten kann. */
  padding-left: 40px;
  opacity: 0;
  transform: translateX(-90px);
  pointer-events: none;
  /* Beim Schließen 260ms Verzögerung, damit der Nutzer Zeit hat,
     den Sub-Button anzusteuern, bevor er wegfadet. */
  transition:
    opacity 320ms ease 260ms,
    transform 540ms cubic-bezier(0.22, 1, 0.32, 1) 260ms;
}
.nav-cluster:hover .nav-subcta-wrap,
.nav-cluster:focus-within .nav-subcta-wrap,
.nav-subcta-wrap:hover,
.nav-subcta-wrap:focus-within {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  transition:
    opacity 320ms ease 40ms,
    transform 620ms cubic-bezier(0.22, 1, 0.32, 1) 40ms;
}
.nav-subcta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--on-dark-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 200ms ease, background 200ms ease;
}
.nav-subcta:hover { color: #fff; }

/* When hovering the Über-uns sub-button, fade the Anfrage button so
   it's clear the focus shifted to the secondary target. */
.nav-cluster:has(.nav-subcta:hover) .nav-cta {
  background: transparent;
  color: var(--on-dark-3);
}

/* ─── Hero ─── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 120px) var(--gutter) 96px;
  background: transparent;
  color: #fff;
}
.hero h1 { color: #fff; }
.hero p, .hero .hero-sub { color: var(--on-dark-2); }
.hero-eyebrow { color: var(--on-dark-2); }
.hero-inner { max-width: var(--container); margin: 0 auto; width: 100%; }
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.hero h1 {
  margin: 0 0 32px;
  font-size: clamp(44px, 7vw, 108px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 18ch;
}
.hero p, .hero .hero-sub {
  margin: 0 0 48px;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--muted);
  max-width: 60ch;
  font-weight: 400;
  letter-spacing: 0;
  line-height: inherit;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  background: transparent;
  color: var(--on-dark-1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.hero-cta:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.hero-cta .arrow { transition: transform 220ms ease; }
.hero-cta:hover .arrow { transform: translateX(6px); }

/* ─── Welt section header ─── */
.welten-intro {
  max-width: var(--container);
  margin: 0 auto;
  padding: 220px var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.welten-intro h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
  white-space: nowrap;
  color: var(--on-dark-1);
}
.welten-intro p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--on-dark-2);
  max-width: 48ch;
}

/* =============================================================
   Additional sections
   ============================================================= */

/* ─── Hero typewriter ─── */
.hero-tw {
  position: relative;
  display: inline-block;
  color: var(--accent);
  white-space: nowrap;
}
.hero-tw-ghost {
  visibility: hidden;
  white-space: nowrap;
}
.hero-tw-text {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.hero-tw-cursor {
  display: inline-block;
  width: 0.06em;
  height: 0.9em;
  margin-left: 0.06em;
  background: currentColor;
  vertical-align: -0.05em;
}
.hero-tw-cursor.is-on {
  animation: hero-tw-blink 950ms steps(2, end) infinite;
}
@keyframes hero-tw-blink {
  50%, 100% { opacity: 0.15; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-tw-cursor { animation: none; }
}

/* =============================================================
   Reviews — Google Rezensionen (statisches Karten-Layout)
   ============================================================= */
.reviews-arc {
  position: relative;
  background: transparent;
  color: #fff;
}

.reviews-arc-stage {
  position: relative;
  padding: clamp(72px, 12vh, 140px) var(--gutter) clamp(180px, 30vh, 320px);
}
.reviews-arc-header {
  position: relative;
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.reviews-arc-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.reviews-arc-meta {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.reviews-arc-meta .rstars {
  color: #FBBC05;
  letter-spacing: 0.1em;
  font-size: 13px;
}
.reviews-arc-track {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.reviews-arc-card {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
.rcard {
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.reviews-arc-card:hover .rcard {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 32px 72px -28px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.reviews-arc-card:focus-visible {
  outline: none;
}
.reviews-arc-card:focus-visible .rcard {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Minimalistisches Fade-in: leichtes Aufsteigen + Einblenden,
   gestaffelt, ausgelöst beim Scrollen in den Viewport (.is-in via JS). */
.reviews-arc-header,
.reviews-arc-card {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reviews-arc-card:nth-child(2) { transition-delay: 0.09s; }
.reviews-arc-card:nth-child(3) { transition-delay: 0.18s; }
.reviews-arc-header.is-in,
.reviews-arc-card.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reviews-arc-header,
  .reviews-arc-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.rcard {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(20, 28, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 30px 30px 26px;
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  box-shadow:
    0 24px 64px -24px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.rcard-head { display: flex; align-items: center; gap: 14px; }
.rcard-meta { display: flex; flex-direction: column; gap: 5px; }
.rcard-name { font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.rcard-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-3);
}
.rcard-quote {
  margin: 24px 0 28px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--on-dark-1);
  text-wrap: pretty;
}
.rcard-foot {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; gap: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-3);
}
.rcard-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; letter-spacing: 0.04em;
}
.rcard-stars { display: inline-flex; gap: 2px; }

/* ─── Section: Process (pinned scroll) ─── */
.section-process {
  background: transparent;
  color: var(--paper);
  --proc-ease: cubic-bezier(.22,.61,.36,1);
  --proc-ease-out-expo: cubic-bezier(.16,1,.3,1);
}

/* Pinned-Bühne */
.process {
  position: relative;
  height: 280vh;
}
.process__pin {
  position: sticky; top: 0;
  height: 100vh; width: 100%;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.process__head {
  flex: 0 0 auto;
  padding: clamp(72px, 12vh, 128px) var(--gutter) 0;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
.process__head h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  text-wrap: balance;
  color: var(--on-dark-1);
}
.process__stage {
  flex: 1; position: relative;
  display: flex; align-items: center;
  padding: 0 var(--gutter);
}
.ghost {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: flex-end;
  pointer-events: none; z-index: 0;
  padding-right: var(--gutter);
  font-weight: 700;
  font-size: clamp(280px, 42vw, 560px);
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.05);
  user-select: none;
  will-change: transform;
}
.ghost__slot {
  display: inline-block; overflow: hidden;
  height: 1em; width: 0.62em; vertical-align: top;
}
.ghost__roll {
  display: flex; flex-direction: column;
  transition: transform 1.1s var(--proc-ease-out-expo);
  will-change: transform;
}
.ghost__roll span { display: block; height: 1em; line-height: 1; }

.process-grid {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px 56px;
}
.step {
  position: relative;
  display: flex; flex-direction: column; gap: 18px;
  padding: 8px 0;
  opacity: 0;
  transition: opacity .6s ease;
}
.step.is-revealed { opacity: 1; }

.step__kicker {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-dark-3);
  transition: color .9s var(--proc-ease);
}

.step__title {
  font-weight: 700;
  font-size: clamp(34px, 3.4vw, 46px);
  letter-spacing: -0.03em; line-height: 0.98;
  color: var(--paper);
  transform-origin: left center;
  transition: color .9s var(--proc-ease),
              transform .9s var(--proc-ease-out-expo);
}

.step__body {
  font-size: 14.5px; line-height: 1.6;
  color: var(--on-dark-2);
  max-width: 34ch;
  transition: color .9s var(--proc-ease);
}

.step.is-active .step__title,
.step.is-active .step__kicker { color: var(--accent); }
.step.is-active .step__title { transform: translateX(6px); }

@media (max-width: 960px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 40px; }
  .ghost { font-size: clamp(220px, 60vw, 420px); justify-content: center; padding-right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .process { height: auto; }
  .process__pin { position: relative; height: auto; }
  .step, .step__body, .ghost { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ─── Section: Contact Teaser ─── */
.section-contact-teaser {
  background: transparent;
  color: #fff;
  padding: 128px var(--gutter);
}
.section-contact-teaser h2 { color: #fff; }
.section-contact-teaser .contact-row .label { color: var(--on-dark-3); }
.section-contact-teaser .contact-row .value { color: #fff; }
.section-contact-teaser .contact-row { border-top-color: rgba(255, 255, 255, 0.15); }
.section-contact-teaser .contact-rows {
  border-top-color: rgba(255, 255, 255, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.section-contact-teaser-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 48px;
}
@media (min-width: 900px) {
  .section-contact-teaser-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 80px;
  }
}
.section-contact-teaser h2 {
  margin: 0;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
  text-wrap: balance;
}
.contact-rows {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.contact-row {
  display: flex; flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.contact-row:first-child { border-top: none; }
.contact-row .label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}
.contact-row .value {
  font-size: 20px; font-weight: 600; color: var(--ink);
}
.contact-row a.value:hover { text-decoration: underline; }
.dark-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: transparent;
  color: var(--on-dark-1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
  margin-top: 28px;
}
.dark-cta:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.dark-cta:hover .arrow { transform: translateX(6px); }
.dark-cta .arrow { transition: transform 220ms ease; }

.accent-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: transparent;
  color: var(--on-dark-1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
  margin-top: 32px;
}
.accent-cta:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.accent-cta:hover .arrow { transform: translateX(6px); }
.accent-cta .arrow { transition: transform 220ms ease; }

/* =============================================================
   Über / Kontakt page
   ============================================================= */
.about-portrait {
  padding: 48px var(--gutter) 128px;
  color: var(--on-dark-1);
}
.about-portrait-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; gap: 64px;
}
@media (min-width: 1000px) {
  .about-portrait-inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 96px;
  }
}
.about-portrait-img {
  position: relative;
  aspect-ratio: 5896 / 7470;
  --mx: 0;
  --my: 0;
}
.about-portrait-img .shadow,
.about-portrait-img .img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.about-portrait-img .shadow {
  transform: translate(
    calc(8px + var(--mx) * 10px),
    calc(8px + var(--my) * 10px)
  );
}
.about-portrait-img .img {
  z-index: 2;
  transform: translate(
    calc(var(--mx) * -25px),
    calc(var(--my) * -25px)
  );
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease;
}

/* =============================================================
   Bild-Lazy-Loader — pulsierendes Werbung³-Logo, solange ein Foto
   noch lädt (oder nicht laden kann). JS setzt .media-loading /
   .media-loaded; ohne JS sind die Bilder ganz normal sichtbar.
   ============================================================= */
.media-loader {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.media-loaded .media-loader { opacity: 0; }

.welt-rail__card-media img { transition: opacity 0.6s ease; }
.welt-rail__card-media.media-loading img,
.about-portrait-img.media-loading .img { opacity: 0; }

.werbung3-loader {
  width: 34%;
  min-width: 44px;
  max-width: 84px;
  height: auto;
  overflow: visible;
  display: block;
}
.werbung3-loader .p {
  fill: #fff;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: werbung3-pulse 1.4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.werbung3-loader .p1 { animation-delay: 0s; }
.werbung3-loader .p2 { animation-delay: 0.16s; }
.werbung3-loader .p3 { animation-delay: 0.32s; }
@keyframes werbung3-pulse {
  0%, 60%, 100% { transform: scale(1); opacity: 0.42; }
  20% { transform: scale(1.12); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .werbung3-loader .p { animation: none; opacity: 0.85; }
}

.about-portrait p {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--on-dark-2);
}
.about-portrait p.lead {
  font-size: 20px;
  color: var(--on-dark-1);
}
.portrait-headline {
  margin: 0 0 28px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--on-dark-1);
  text-wrap: balance;
}
.about-portrait blockquote {
  margin: 40px 0 0;
  padding: 0 0 0 24px;
  border-left: 2px solid var(--accent);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--on-dark-1);
}

.contact-section {
  padding: 128px var(--gutter) 64px;
  scroll-margin-top: 96px;
  color: var(--on-dark-1);
}
.contact-section-inner { max-width: var(--container); margin: 0 auto; }
.contact-section h2 {
  margin: 0 0 32px;
  font-size: clamp(40px, 5.4vw, 80px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--on-dark-1);
}
.contact-section .lead {
  margin: 0 0 64px;
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--on-dark-3);
}

.contact-grid {
  padding: 0 var(--gutter) 128px;
}
.contact-grid-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; gap: 48px;
}
@media (min-width: 1000px) {
  .contact-grid-inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
  }
}
.contact-card {
  background: transparent;
  border: none;
  padding: 0;
  color: #ffffff;
}
.contact-card h3 {
  margin: 0 0 32px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #ffffff;
}
.contact-card .sub {
  margin: 0 0 32px;
  font-size: 15px;
  color: var(--on-dark-2);
}
.contact-card .list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-card .list li {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-card .list li:first-child { border-top: none; }
.contact-card .list .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-card .list .val {
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
}
.contact-card .list a.val {
  color: #ffffff;
  text-decoration: none;
  transition: color 200ms ease;
}
.contact-card .list a.val:hover { color: var(--accent); }

.contact-map {
  margin-top: 32px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 5 / 4;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.25);
}
.contact-map iframe {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 0;
  border: 0;
  filter: grayscale(0.4) contrast(0.95) brightness(0.9);
}
.contact-map-addr {
  display: block;
  flex: 0 0 auto;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  transition: background 220ms ease, color 220ms ease;
}
.contact-map-addr:hover { background: var(--accent); color: #15201f; }

/* ─── Anfrage / Contact form (stepped) ─── */
.anfrage {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.anfrage-step {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.anfrage-step[hidden] { display: none; }
.anfrage-step legend {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 12px;
  padding: 0;
}
.anfrage-step legend .step-nr {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  color: var(--accent);
}

.picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.picker button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.picker button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.picker button.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #15201f;
}

.anfrage-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.anfrage-fields .field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.anfrage-fields .field-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.anfrage-fields .quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.anfrage-fields .quick button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--on-dark-2);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.anfrage-fields .quick button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-row > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.anfrage input,
.anfrage textarea {
  padding: 14px 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  color: #ffffff;
  transition: border-color 220ms ease;
  width: 100%;
}
.anfrage input::placeholder,
.anfrage textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.anfrage input:focus,
.anfrage textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.anfrage textarea {
  resize: vertical;
  min-height: 120px;
  padding: 14px 16px;
}

.anfrage-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: transparent;
  color: var(--on-dark-1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.anfrage-submit:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.anfrage-submit .arrow { transition: transform 220ms ease; }
.anfrage-submit:hover .arrow { transform: translateX(6px); }

/* =============================================================
   Impressum
   ============================================================= */
.legal {
  padding: calc(var(--nav-h) + 80px) var(--gutter) 128px;
}
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal h1 {
  margin: 0 0 48px;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.legal-block { margin-bottom: 40px; }
.legal-block h2 {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal-block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-block a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Footer ─── */
.footer {
  background: transparent;
  color: var(--on-dark-2);
  padding: 96px var(--gutter) 32px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 56px;
}
@media (min-width: 760px) {
  .footer-inner {
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}
.footer-logo sup {
  color: var(--accent);
  font-size: 0.7em;
}
.footer-brand p {
  margin: 0;
  font-size: 13px;
  color: var(--on-dark-3);
  max-width: 28ch;
}

.footer-nav {
  display: grid;
  gap: 40px;
}
@media (min-width: 540px) {
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer-col h4 {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark-3);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li { line-height: 1.4; }
.footer-col a {
  color: var(--on-dark-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 200ms ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-col .muted {
  color: var(--on-dark-3);
  font-size: 14px;
}

.footer-bottom {
  max-width: var(--container);
  margin: 64px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--on-dark-3);
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--on-dark-2); }
.footer-legal { display: inline-flex; gap: 20px; }

.footer-credit {
  max-width: var(--container);
  margin: 24px auto 0;
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--on-dark-3);
}
.footer-credit__heart {
  display: inline-block;
  margin: 0 0.25em;
  color: var(--accent);
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 200ms ease, border-color 200ms ease;
}
.footer-credit a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

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

/* =============================================================
   Globale Rundungen — Bilder, Karten, Listen-Container.
   Konsistent mit den Google-Review-Karten (.rcard → 20px).
   ============================================================= */

/* Bild-/Medien-Container */
.about-portrait-img {
  border-radius: 8px;
}

.contact-card {
  border-radius: 8px;
}

/* Form-Felder etwas dezenter (proportional zur Größe) */
.anfrage input,
.anfrage textarea {
  border-radius: 6px;
}

/* =============================================================
   Theme: Light — für Impressum / Datenschutz
   Helle Fläche statt Body-Gradient, dunkler Text durchgängig.
   ============================================================= */
body.theme-light {
  background: #f0f2f1;
  color: #000;
}
body.theme-light::before { display: none; }
body.theme-light::after { opacity: 0.05; mix-blend-mode: multiply; }

/* Nav auf hellem Hintergrund */
body.theme-light .nav { color: var(--ink); }
body.theme-light .nav.is-scrolled {
  background: rgba(240, 242, 241, 0.85);
  border-bottom-color: var(--line);
}
body.theme-light .nav-welten a { color: var(--ink); }
body.theme-light .nav-cta {
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.25);
}
body.theme-light .nav-cta:hover { color: var(--ink); }
body.theme-light .nav-subcta { color: var(--ink-2); }
body.theme-light .nav-subcta:hover { color: var(--ink); }
body.theme-light .nav-cluster:has(.nav-subcta:hover) .nav-cta {
  background: transparent;
  color: var(--muted);
}

/* Legal-Texte komplett schwarz */
body.theme-light .legal h1,
body.theme-light .legal-block h2,
body.theme-light .legal-block h3,
body.theme-light .legal-block p,
body.theme-light .legal-block ul,
body.theme-light .legal-block li,
body.theme-light .legal-block strong { color: #000; }
body.theme-light .legal-block a { color: #000; }

/* Footer auf hellem Hintergrund */
body.theme-light .footer {
  color: var(--ink-2);
  border-top-color: var(--line);
}
body.theme-light .footer-logo { color: var(--ink); }
body.theme-light .footer-brand p { color: var(--muted); }
body.theme-light .footer-col h4 { color: var(--muted); }
body.theme-light .footer-col a { color: var(--ink-2); }
body.theme-light .footer-col a:hover { color: var(--accent); }
body.theme-light .footer-col .muted { color: var(--muted); }
body.theme-light .footer-bottom {
  color: var(--muted);
  border-top-color: var(--line);
}
body.theme-light .footer-bottom a:hover { color: var(--ink); }

/* =============================================================
   Welt-Rail · Horizontaler Disziplin-Scroll im sticky Welt-Header
   - .welt-rail ist eine hohe Sektion; .welt-rail__sticky pinnt
     den Inhalt unter dem Nav. Vertikaler Scroll wird per JS
     auf eine horizontale Translation des Track gemappt.
   ============================================================= */
.welt-rail {
  --card-count: 3;
  position: relative;
  z-index: 2;
  height: calc(var(--card-count) * 95vh + 40vh);
}

.welt-rail + .welt-rail {
  margin-top: clamp(120px, 22vh, 280px);
}

@media (max-width: 899px) {
  .welt-rail + .welt-rail {
    margin-top: clamp(64px, 10vh, 128px);
  }
}

.welt-rail__sticky {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  /* Boden gegen das Zusammenquetschen auf kurzen Fenstern: nie schmaler als
     hier, damit Bild + Text auch bei niedriger Fensterhöhe Platz haben. */
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.welt-rail__head {
  flex: none;
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin: 0 auto;
  padding: clamp(48px, 7vh, 96px) var(--gutter) clamp(40px, 5vh, 64px);
}

.welt-rail__head-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.welt-rail__title {
  margin: 0;
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--accent);
}

.welt-rail__tagline {
  margin: 0;
  max-width: 560px;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.55;
  letter-spacing: 0.005em;
  color: var(--on-dark-3, var(--muted));
}

.welt-rail__viewport {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
  /* Weiche Fade-Kanten links/rechts: Karten, die am Rand ein- bzw.
     auslaufen, blenden sanft aus statt hart abgeschnitten zu werden.
     Der Fade lebt im Gutter-Bereich, die ruhende Karte bleibt voll sichtbar. */
  --rail-fade: clamp(40px, 5vw, 88px);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--rail-fade),
    #000 calc(100% - var(--rail-fade)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--rail-fade),
    #000 calc(100% - var(--rail-fade)),
    transparent 100%
  );
}

.welt-rail__track {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  will-change: transform;
  /* Kein CSS-Transition: die weiche Bewegung kommt aus dem rAF-Lerp im JS
     (1:1 am Scroll, framerate-unabhängig). transform bleibt rein GPU. */
  transform: translate3d(var(--tx, 0px), 0, 0);
}

.welt-rail__card {
  flex: 0 0 auto;
  /* Breite = Inhalt (Bild + Textspalte), nicht fix. So entsteht nie ein
     leerer Raum, egal wie breit/hoch das Fenster ist. */
  width: auto;
  max-width: min(94vw, 1080px);
  margin-right: clamp(64px, 10vw, 200px);
  padding: 0;
  display: grid;
  /* Bildspalte folgt dem Bild (auto), Textspalte ist eine eigene, ruhige
     Breite — nicht mehr an 21vw gekoppelt, das vorher gequetscht hat. */
  grid-template-columns: auto clamp(260px, 30vw, 400px);
  gap: clamp(28px, 3.2vw, 64px);
  /* Bild und Text zueinander vertikal mittig — wirkt in jeder Höhe ruhig. */
  align-items: center;
  opacity: 0.4;
  transition: opacity 700ms cubic-bezier(.16,1,.3,1);
}
.welt-rail__card.is-active { opacity: 1; }
.welt-rail__card:last-child { margin-right: 0; }

.welt-rail__card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  /* Bildhöhe NICHT mehr an die Fensterhöhe gekoppelt (das war die Ursache für
     das Schrumpfen auf kurzen Fenstern). Eigener Boden + Deckel, sanft mit der
     Höhe skalierend. Breite folgt aus dem Seitenverhältnis. */
  height: clamp(300px, 52vh, 600px);
  width: auto;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 14px;
}
.welt-rail__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.welt-rail__card-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
  /* Breite kommt jetzt aus der Grid-Spalte der Karte, nicht mehr aus einer
     vw-Klammer — dadurch kein Quetschen mehr auf mittleren Breiten. */
  padding-right: 0;
}
.welt-rail__card-name,
.welt-rail__card-sub,
.welt-rail__card-text,
.welt-rail__card-list {
  width: 100%;
}

.welt-rail__card-name {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.welt-rail__card-sub {
  margin: -16px 0 0;
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: #fff;
}

.welt-rail__card-text {
  margin: 0;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
  letter-spacing: 0.005em;
  color: var(--on-dark-2, var(--ink-2));
}

.welt-rail__card-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(20px, 2.5vw, 48px);
  row-gap: 28px;
}
.welt-rail__card-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--on-dark-2);
}
.welt-rail__card-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 599px) {
  .welt-rail__card-list { grid-template-columns: 1fr; row-gap: 18px; }
}

/* Mobile-Fallback: vertikal stacked, kein sticky, kein horizontal */
@media (max-width: 899px) {
  .welt-rail { height: auto; }
  .welt-rail__sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
  }
  .welt-rail__head {
    padding: 56px var(--gutter) 24px;
  }
  .welt-rail__viewport {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .welt-rail__track {
    flex-direction: column;
    padding: 16px var(--gutter) 56px;
    gap: 72px;
    transform: none !important;
  }
  .welt-rail__card {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
    opacity: 1;
  }
  /* Mobil das Bild wieder voll-breit im Hochformat (nicht die Desktop-Höhe
     erzwingen, sonst würde es zu Querformat beschnitten). */
  .welt-rail__card-media {
    height: auto;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .welt-rail__card { transition: none; }
}

/* =============================================================
   Intro: Logo-Animation beim Page-Load
   ============================================================= */
body.intro-lock { overflow: hidden; }
body.intro-lock .nav-logo { visibility: hidden; }

.intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #1c2422;
  pointer-events: auto;
  will-change: opacity;
  transform: translateZ(0);
}
.intro.is-hidden {
  pointer-events: none;
}

.intro-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80vw;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: 14.5% 50%;
  z-index: 201;
  pointer-events: none;
  will-change: transform, top, left;
}

.intro .werbung3-anim {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  transform-origin: 14.5% 50%;
  transform: translateX(35.4%) scale(2.5);
  animation: w3-cam 0.42s cubic-bezier(0.65, 0, 0.35, 1) 1.10s forwards;
}
.intro .werbung3-anim .p,
.intro .werbung3-anim .w {
  fill: #fff;
  transform-box: fill-box;
}

@keyframes w3-cam {
  to { transform: translateX(0) scale(1); }
}

.intro .werbung3-anim .p3 {
  opacity: 0;
  transform: translateY(26%);
  animation: w3-p3 1.05s 0.02s linear forwards;
}
.intro .werbung3-anim .p2 {
  opacity: 0;
  transform: translate(3000px, 26%);
  animation: w3-p2 1.05s 0.02s linear forwards;
}
.intro .werbung3-anim .p1 {
  opacity: 0;
  transform: translate(5950px, 26%);
  animation: w3-p1 1.05s 0.02s linear forwards;
}
@keyframes w3-p3 {
  0%   { opacity: 0; transform: translateY(26%);
         animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1); }
  20%  { opacity: 1; animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1); }
  44%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes w3-p2 {
  0%   { opacity: 0; transform: translate(3000px, 26%); }
  44%  { opacity: 0; transform: translate(3000px, 0); }
  54%  { opacity: 0; transform: translate(3000px, 0);
         animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1); }
  62%  { opacity: 1; }
  100% { opacity: 1; transform: translate(0, 0); }
}
@keyframes w3-p1 {
  0%   { opacity: 0; transform: translate(5950px, 26%); }
  44%  { opacity: 0; transform: translate(5950px, 0); }
  60%  { opacity: 0; transform: translate(5950px, 0);
         animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1); }
  68%  { opacity: 1; }
  100% { opacity: 1; transform: translate(0, 0); }
}

.intro .werbung3-anim .w {
  opacity: 0;
  transform: translateY(500px);
  animation: w3-letter 0.24s cubic-bezier(0.34, 1.3, 0.64, 1) forwards;
}
.intro .werbung3-anim .w1 { animation-delay: 1.42s; }
.intro .werbung3-anim .w2 { animation-delay: 1.45s; }
.intro .werbung3-anim .w3 { animation-delay: 1.48s; }
.intro .werbung3-anim .w4 { animation-delay: 1.51s; }
.intro .werbung3-anim .w5 { animation-delay: 1.54s; }
.intro .werbung3-anim .w6 { animation-delay: 1.57s; }
.intro .werbung3-anim .w7 { animation-delay: 1.60s; }
@keyframes w3-letter {
  to { opacity: 1; transform: translateY(0); }
}

.intro .werbung3-anim .w8 {
  opacity: 0;
  transform-origin: 0% 100%;
  transform: translateY(500px) scale(1.4);
  animation:
    w3-letter-3 0.24s cubic-bezier(0.34, 1.3, 0.64, 1) 1.63s forwards,
    w3-3-pop    0.40s cubic-bezier(0.34, 1.5, 0.5, 1)  2.00s forwards;
}
@keyframes w3-letter-3 {
  to { opacity: 1; transform: translateY(0) scale(1.4); }
}
@keyframes w3-3-pop {
  0%   { fill: #fff;     transform: translateY(0) scale(1.4); }
  25%  { fill: #fff;     transform: translateY(0) scale(1.50); }
  45%  { fill: #00FEC2;  transform: translateY(0) scale(1.78); }
  100% { fill: #00FEC2;  transform: translateY(0) scale(1.4); }
}

@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
}

/* =============================================================
   Mobile (≤768px) — Burger-Nav + ruhiges Layout ohne Animationen
   Desktop bleibt unverändert; alle Anpassungen sitzen in einem
   einzigen Mobile-Block. Inhaltsbreite, Sticky-Effekte und
   großzügige Paddings werden auf Phone-Format runtergebrochen.
   ============================================================= */

/* Burger-Button — Standardmäßig versteckt, auf Mobile sichtbar */
.nav-burger {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
  position: relative;
  z-index: 110;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 240ms ease, opacity 200ms ease, background 200ms ease;
  transform-origin: center;
}
.nav-burger span + span { margin-top: 5px; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.theme-light .nav-burger span { background: var(--ink); }
body.theme-light .nav-burger.is-open span { background: var(--ink); }

/* Mobile-Menü-Drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(13, 20, 21, 0.97);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: calc(var(--nav-h) + 16px) 24px 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
body.theme-light .mobile-menu {
  background: rgba(240, 242, 241, 0.98);
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.mobile-menu__nav a {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  text-decoration: none;
}
body.theme-light .mobile-menu__nav a { color: var(--ink); }
.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #15201f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Body-Lock, wenn Drawer offen ist (verhindert Background-Scroll) */
body.menu-open { overflow: hidden; }

/* ─── Mobile-Layout (≤768px) ─── */
@media (max-width: 768px) {
  :root {
    --gutter: 20px;
    --nav-h: 64px;
  }

  /* Nav: nur Logo + Burger sichtbar */
  .nav { grid-template-columns: 1fr auto; }
  .nav-welten,
  .nav-cluster { display: none !important; }
  .nav-burger { display: block; }

  /* Intro-Overlay komplett aus — Body sofort scrollbar */
  body.intro-lock { overflow: auto !important; }
  body.intro-lock .nav-logo { visibility: visible !important; }
  .intro { display: none !important; }

  /* Hero kompakter, Headline lesbar */
  .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 56px) var(--gutter) 72px;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: clamp(36px, 9.5vw, 56px);
    margin-bottom: 24px;
    max-width: none;
  }
  .hero p, .hero .hero-sub {
    margin-bottom: 32px;
    font-size: 16px;
  }
  .hero-cta { padding: 14px 24px; font-size: 12px; }

  /* Hero-Typewriter statisch (Cursor + Ghost-Reservierung weg) */
  .hero-tw { position: static; display: inline; white-space: normal; }
  .hero-tw-ghost { display: none; }
  .hero-tw-text { position: static; display: inline; white-space: normal; }
  .hero-tw-cursor { display: none !important; }

  /* Welten-Intro: Padding + Headline */
  .welten-intro {
    padding: 64px var(--gutter);
    gap: 20px;
  }
  .welten-intro h2 {
    font-size: clamp(30px, 8vw, 44px);
    white-space: normal;
  }
  .welten-intro p { font-size: 16px; }

  /* Welt-Rail: existing 899px Fallback nutzen, hier nur Feinarbeit */
  .welt-rail__head { padding: 72px var(--gutter) 32px; }
  .welt-rail__title { font-size: clamp(34px, 10vw, 56px); }
  .welt-rail__tagline { font-size: 15px; }
  .welt-rail__track { padding: 24px var(--gutter) 72px; gap: 88px; }
  .welt-rail__card {
    grid-template-columns: 1fr;
    gap: 20px;
    opacity: 1 !important;
  }
  .welt-rail__card-media { aspect-ratio: 4 / 3; }
  .welt-rail__card-body { max-width: none; gap: 18px; }
  .welt-rail__card-name { font-size: clamp(24px, 7vw, 32px); }
  .welt-rail__card-sub { font-size: 16px; margin-top: -8px; }
  .welt-rail__card-text { font-size: 15px; }
  .welt-rail__card-list {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
  .welt-rail__card-list li { font-size: 14px; }
  .welt-rail + .welt-rail { margin-top: 0; }

  /* Process: Pin aufheben, ein-spaltig, Ghost-Zahl weg */
  .process { height: auto !important; }
  .process__pin { position: relative; height: auto; overflow: visible; }
  .process__head { padding: 72px var(--gutter) 0; }
  .process__head h2 { font-size: clamp(30px, 8vw, 44px); }
  .process__stage { padding: 48px var(--gutter) 72px; }
  .ghost { display: none !important; }
  .process-grid { grid-template-columns: 1fr !important; gap: 56px !important; }
  .step {
    gap: 10px;
    opacity: 1 !important;
    transition: none !important;
  }
  .step__title {
    font-size: 28px;
    transform: none !important;
  }
  .step.is-active .step__title,
  .step.is-active .step__kicker { color: var(--paper); }
  .step.is-active .step__title { transform: none !important; }

  /* Reviews: kein Pin, vertikal stapeln, Karten ruhig */
  .reviews-arc {
    height: auto;
    overflow: visible;
  }
  .reviews-arc-stage {
    position: relative;
    height: auto;
    padding: 72px var(--gutter);
    overflow: visible;
  }
  .reviews-arc-track {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .reviews-arc-header {
    margin-bottom: 40px;
  }
  /* Mobile: kein Fade-in — alles sofort sichtbar, wie zuvor. */
  .reviews-arc-header,
  .reviews-arc-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* Über/Portrait: kein Parallax, einspaltig */
  .about-portrait { padding: 72px var(--gutter); }
  .about-portrait-inner { gap: 40px; }
  .about-portrait-img { --mx: 0 !important; --my: 0 !important; }
  .about-portrait-img .shadow,
  .about-portrait-img .img {
    transition: none !important;
    transform: none !important;
  }
  .about-portrait-img .shadow {
    transform: translate(6px, 6px) !important;
  }
  .portrait-headline { font-size: clamp(22px, 6vw, 30px); }
  .about-portrait p { font-size: 16px; }
  .about-portrait p.lead { font-size: 17px; }
  .about-portrait blockquote { font-size: 18px; margin-top: 28px; }

  /* Kontakt-Sektion */
  .contact-section { padding: 72px var(--gutter) 24px; }
  .contact-section h2 { font-size: clamp(32px, 8vw, 48px); }
  .contact-grid { padding: 0 var(--gutter) 72px; }
  .contact-grid-inner { gap: 56px; }
  .contact-card h3 { font-size: 24px; margin-bottom: 24px; }
  .contact-card .list li { padding: 16px 0; }
  .contact-card .list .val { font-size: 16px; }
  .contact-map { aspect-ratio: 4 / 3; margin-top: 24px; }
  .anfrage { gap: 32px; }
  .anfrage-step legend { font-size: 12px; }
  .picker { gap: 8px; }
  .picker button { padding: 10px 16px; font-size: 13px; }
  .anfrage input,
  .anfrage textarea { font-size: 16px; padding: 12px 14px; }
  .anfrage-submit { width: 100%; justify-content: center; padding: 16px 24px; }

  /* Kontakt-Teaser + Footer */
  .section-contact-teaser { padding: 72px var(--gutter); }
  .section-contact-teaser h2 { font-size: clamp(32px, 8.5vw, 52px); }
  .footer { padding: 72px var(--gutter) 24px; }
  .footer-inner { gap: 40px; }
  .footer-nav { gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 40px;
  }
  .footer-credit { margin-top: 16px; }

  /* Legal-Seiten (Impressum/Datenschutz) */
  .legal { padding: calc(var(--nav-h) + 48px) var(--gutter) 80px; }
  .legal h1 { margin-bottom: 32px; font-size: clamp(32px, 8vw, 48px); }

  /* Body-Atmosphäre auf Mobile entlasten (Performance + Klarheit) */
  body::before { filter: blur(60px); opacity: 0.55; }
  body::after { opacity: 0.18; }

  /* Hover-Logo-Animation auf Touch deaktivieren */
  .werbung3-hover .p { transition: none !important; }
  .nav-logo:hover .werbung3-hover .p,
  .werbung3-hover:hover .p { transform: none !important; }
}

/* Ganz schmale Phones — noch ein Hauch kompakter */
@media (max-width: 380px) {
  .hero h1 { font-size: clamp(30px, 9vw, 40px); }
  .mobile-menu__nav a { font-size: 22px; }
  .welten-intro h2,
  .process__head h2,
  .contact-section h2,
  .section-contact-teaser h2,
  .section-faq h2,
  .welt-rail__title { font-size: clamp(26px, 8.5vw, 36px); }
}

/* ─── Section: FAQ ─── */
.section-faq {
  background: transparent;
  color: #fff;
  padding: 128px var(--gutter);
}
.section-faq-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 900px) {
  .section-faq-inner { gap: 80px; }
}
.section-faq-head { display: flex; flex-direction: column; gap: 20px; }
.section-faq-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--on-dark-3);
  opacity: 0.7;
}
.section-faq h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: #fff;
  text-wrap: balance;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.faq-item details { width: 100%; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  color: #fff;
  transition: color 200ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
  border-radius: 2px;
}
.faq-q {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.faq-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1), background-color 200ms ease;
}
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item details[open] .faq-toggle,
.faq-item details.is-open .faq-toggle { color: var(--accent); }
.faq-item details[open] .faq-toggle::after,
.faq-item details.is-open .faq-toggle::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item details[open] summary .faq-q,
.faq-item details.is-open summary .faq-q { color: var(--accent); }
/* Wenn JS aktiv ist, gewinnt .is-open: schließt sich der Block, soll das Icon
   sofort zurückdrehen, obwohl [open] erst am Ende der Animation entfernt wird. */
.faq-item details[open]:not(.is-open) .faq-toggle { color: #fff; }
.faq-item details[open]:not(.is-open) .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item details[open]:not(.is-open) summary .faq-q { color: #fff; }

.faq-a {
  overflow: hidden;
  padding: 0;
  max-width: 60ch;
}
.faq-a-inner {
  padding: 4px 0 28px;
}
.faq-a p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--on-dark-2);
}

@media (max-width: 899px) {
  .section-faq { padding: 72px var(--gutter); }
  .section-faq-inner { gap: 40px; }
  .faq-item summary { padding: 22px 0; }
  .faq-a-inner { padding-bottom: 22px; }
}
