/* =====================================================
   MENTARISMA · PREMIUM LAYER  (v2)
   Cinematic · zurückhaltend · editorial
   ---------------------------------------------------
   Liegt ÜBER style.css — ergänzt, ersetzt nichts.
   Drop-in-Ersatz: gleiche Klassennamen, gleiches
   Vorrang-Modell (Quellreihenfolge + gezielte !important).

   Neu in v2
   • Zentrale Design-Tokens (Easing, Timing, Akzentfarben)
     → ein Ort statt 40× dieselbe cubic-bezier / rgba-Zahl
   • Doppelte Regeln zusammengeführt (Footer-Links)
   • Scroll-Fortschritt rein per CSS (scroll-driven),
     mit JS-Fallback für ältere Browser
   • Mehr Barrierefreiheit: reduzierte Transparenz,
     forced-colors, sauberer Fokus
   • Editoriale Feinheiten: ::selection, Scrollbar
   • CSS-Nesting für lesbarere, wartbare Blöcke
   ===================================================== */
/* =====================================================
   0 · DESIGN-TOKENS  (nur dieser Layer, Prefix --mp-)
   Alle Werte 1:1 aus der bisherigen Datei abgeleitet —
   rein organisatorisch, optisch identisch, aber an
   EINER Stelle justierbar.
   ===================================================== */
:root {
  /* Bewegung — an die Basis-Kurve aus style.css gekoppelt */
  --mp-ease:        var(--ease, cubic-bezier(0.22, 1, 0.36, 1));  /* Standard-Auftritt */
  --mp-ease-clip:   cubic-bezier(0.16, 1, 0.3, 1);                /* Bild-Reveals, Linien */
  --mp-dur-ui:      0.45s;
  --mp-dur-reveal:  1.15s;

  /* Kupfer-Akzente — leiten sich jetzt direkt aus --copper-600 ab.
     Brand-Ton EINMAL in style.css ändern → alle Akzente ziehen mit.
     (color-mix: Baseline 2023; rgba-Fallback unten für ältere Browser.) */
  --mp-copper-line:      rgba(180, 110, 77, 0.38);
  --mp-copper-line:      color-mix(in srgb, var(--copper-600) 38%, transparent);
  --mp-copper-line-soft: rgba(180, 110, 77, 0.30);
  --mp-copper-line-soft: color-mix(in srgb, var(--copper-600) 30%, transparent);
  --mp-copper-glow:      rgba(180, 110, 77, 0.40);
  --mp-copper-glow:      color-mix(in srgb, var(--copper-600) 40%, transparent);
  --mp-copper-wash:      rgba(180, 110, 77, 0.08);
  --mp-copper-wash:      color-mix(in srgb, var(--copper-600)  8%, transparent);
  --mp-copper-tint:      rgba(180, 110, 77, 0.05);
  --mp-copper-tint:      color-mix(in srgb, var(--copper-600)  5%, transparent);

  /* Forest / Tinte für Scrims & Schatten — aus --forest-950 / --forest-900 */
  --mp-ink-900:     rgba(6, 15, 11, 0.74);
  --mp-ink-900:     color-mix(in srgb, var(--forest-950) 74%, transparent);
  --mp-ink-600:     rgba(6, 15, 11, 0.55);
  --mp-ink-600:     color-mix(in srgb, var(--forest-950) 55%, transparent);
  --mp-ink-400:     rgba(6, 15, 11, 0.35);
  --mp-ink-400:     color-mix(in srgb, var(--forest-950) 35%, transparent);
  --mp-ink-200:     rgba(6, 15, 11, 0.22);
  --mp-ink-200:     color-mix(in srgb, var(--forest-950) 22%, transparent);
  --mp-forest-hair: rgba(22, 41, 38, 0.10);
  --mp-forest-hair: color-mix(in srgb, var(--forest-900) 10%, transparent);
}
/* =====================================================
   0b · EDITORIALE GRUNDIERUNG  (neu, additiv)
   Markierungsfarbe + Scrollbar in Markenton — kleine
   Details, die das „Premium"-Gefühl konsistent machen.
   ===================================================== */
::selection {
  background: var(--copper-600);
  color: #fff;
}
::-moz-selection {
  background: var(--copper-600);
  color: #fff;
}
@supports (scrollbar-color: auto) {html {
    scrollbar-color: var(--copper-600) transparent;
    scrollbar-width: thin;
  }}
@supports selector(::-webkit-scrollbar) {::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: var(--mp-copper-line);
    border: 3px solid transparent;
    border-radius: 999px;
    background-clip: content-box;
  }
::-webkit-scrollbar-thumb:hover { background: var(--copper-600); background-clip: content-box; }}
/* =====================================================
   1 · LENIS SMOOTH SCROLL
   ===================================================== */
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
/* =====================================================
   2 · SCROLL-FORTSCHRITT
   Wird wie bisher per JS getrieben (transform: scaleX(…)).
   Bewusst KEINE zweite, CSS-getriebene Animation auf derselben
   transform-Eigenschaft → kein Konflikt mit dem vorhandenen Skript.
   ===================================================== */
.mp-progress {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  z-index: 1100;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--copper-700), var(--copper-400) 60%, var(--copper-300));
  will-change: transform;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {.mp-progress { display: none; }}
@media (forced-colors: active) {.mp-progress { background: CanvasText; }}
/* =====================================================
   3 · CURSOR-BEGLEITER  (dezenter Punkt + Ring)
   ===================================================== */
.mp-cursor,
.mp-cursor-ring {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1200;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}
.mp-cursor {
  width: 5px;
  height: 5px;
  background: var(--copper-600);
  transform: translate(-50%, -50%);

  &.is-hovering {
    background: var(--copper-700);
    transform: translate(-50%, -50%) scale(1.3);
  }
}
.mp-cursor-ring {
  width: 26px;
  height: 26px;
  border: 1px solid var(--mp-copper-line);
  transform: translate(-50%, -50%);
  transition:
    opacity 0.4s ease,
    width var(--mp-dur-ui) var(--mp-ease),
    height var(--mp-dur-ui) var(--mp-ease),
    border-color 0.4s ease,
    background 0.4s ease;

  &.is-hovering {
    width: 42px;
    height: 42px;
    border-color: rgba(180, 110, 77, 0.6);
    background: var(--mp-copper-tint);
  }
}
body.mp-cursor-ready .mp-cursor,
body.mp-cursor-ready .mp-cursor-ring { opacity: 1; }
@media (hover: none), (pointer: coarse) {.mp-cursor, .mp-cursor-ring { display: none !important; }}
@media (prefers-reduced-motion: reduce), (forced-colors: active) {.mp-cursor, .mp-cursor-ring { display: none !important; }}
@view-transition { navigation: auto; }
::view-transition-group(root) { background: var(--cream-100); }
::view-transition-old(root) { animation: none; opacity: 1; }
::view-transition-new(root) {
  animation: pageFadeIn 0.5s var(--mp-ease) both;
}
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {@view-transition { navigation: none; }}
/* Übergangs-Overlay aus dem Alt-System bleibt deaktiviert */
.mp-transition { display: none !important; }
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-cine-title,    .hero-cine-kicker,    .hero-cine-sub,    .hero-cine-actions,    .hero-cine-scroll,
.page-intro h1,      .page-intro .eyebrow, .page-intro .lead, .page-intro .tag-list,
.aw-hero h1,         .aw-hero .eyebrow,    .aw-hero-intro p,  .aw-hero-meta,
.ang-hero h1,        .ang-hero-mark,       .ang-hero-lead,    .ov-hero-actions,
.ang-subhero h1 {
  opacity: 0;
  animation: heroEnter 0.9s var(--mp-ease) forwards;
  animation-delay: var(--enter, 0s);
  will-change: opacity, transform;
}
/* Staffelung: Eyebrow → Headline → Lead → Aktionen.
   Bewusst kleine Werte → wirkt wie EINE Bewegung. */
.hero-cine-kicker,  .page-intro .eyebrow, .aw-hero .eyebrow, .ang-hero-mark { --enter: 0.05s; }
.hero-cine-title,   .page-intro h1,       .aw-hero h1,       .ang-hero h1, .ang-subhero h1 { --enter: 0.15s; }
.hero-cine-sub,     .page-intro .lead,    .aw-hero-intro p,  .ang-hero-lead { --enter: 0.28s; }
.hero-cine-actions, .page-intro .tag-list,.aw-hero-meta,     .ov-hero-actions { --enter: 0.40s; }
.hero-cine-scroll { --enter: 0.55s; }
@media (prefers-reduced-motion: reduce) {.hero-cine-title,    .hero-cine-kicker,    .hero-cine-sub,    .hero-cine-actions,    .hero-cine-scroll,
  .page-intro h1,      .page-intro .eyebrow, .page-intro .lead, .page-intro .tag-list,
  .aw-hero h1,         .aw-hero .eyebrow,    .aw-hero-intro p,  .aw-hero-meta,
  .ang-hero h1,        .ang-hero-mark,       .ang-hero-lead,    .ov-hero-actions,
  .ang-subhero h1 {
    opacity: 1; animation: none;
  }}
/* =====================================================
   6 · LINE-REVEAL  (zeilenweise Headlines)
   ===================================================== */
.rl-line { display: block; overflow: visible; }
.rl-inner {
  display: block;
  transform: translateY(16px);
  opacity: 0;
  transition:
    transform 1s var(--mp-ease),
    opacity 0.9s ease;
  transition-delay: var(--rl-delay, 0s);
  will-change: transform, opacity;
}
.rl-ready .rl-inner,
.is-visible .rl-inner,
.rl-line.is-visible .rl-inner {
  transform: translateY(0);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {.rl-inner { transform: none !important; opacity: 1 !important; transition: none !important; }}
/* .hero-fade ist nur noch ein neutraler Marker (keine
   eigene Opacity-Steuerung) — siehe heroEnter oben. */
/* =====================================================
   7 · MAGNETISCHE BUTTONS / LINKS
   ===================================================== */
[data-magnetic] {
  will-change: transform;
  transition: transform 0.4s var(--mp-ease);
}
@media (prefers-reduced-motion: reduce) {[data-magnetic] { transform: none !important; }}
/* =====================================================
   8 · CINEMATISCHES VOLLBILD-HERO  (Startseite)
   ===================================================== */
.hero-cine {
  position: relative;
  min-height: 100svh;
  display: flex;
  /* Desktop: Titel ruht auf der linken Mittelachse (cinematic),
     Mobile setzt unten auf (Override im 760px-Block). */
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  /* Warmer Forest-Verlauf als Platzhalter, falls das
     Hero-Bild noch nicht dekodiert ist → kein harter Flash. */
  background:
    radial-gradient(ellipse 90% 70% at 30% 80%, var(--forest-800), transparent 70%),
    linear-gradient(160deg, var(--forest-900), var(--forest-950));

  .hero-cine-media {
    position: absolute;
    inset: -8% 0 0 0;
    height: 116%;
    z-index: 0;
    will-change: transform;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 42%;
      transform: scale(1.06);
      animation: heroKenBurns 22s ease-out forwards;
      filter: saturate(0.98) contrast(1.04);
    }
  }

  .hero-cine-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Links betonter Verlauf: gibt dem Titel eine ruhige, dunkle Bühne,
       rechts bleibt das Schachmotiv präsent. */
    background:
      linear-gradient(90deg,
        rgba(6, 15, 11, 0.62) 0%,
        rgba(6, 15, 11, 0.40) 36%,
        rgba(6, 15, 11, 0.10) 64%,
        rgba(6, 15, 11, 0.16) 100%),
      linear-gradient(180deg,
        var(--mp-ink-600) 0%,
        rgba(6, 15, 11, 0) 30%,
        rgba(6, 15, 11, 0) 62%,
        var(--mp-ink-900) 100%);
  }
}
@keyframes heroKenBurns {
  from { transform: scale(1.16); }
  to   { transform: scale(1.02); }
}
@media (prefers-reduced-motion: reduce) {.hero-cine-media img { animation: none; transform: scale(1.02); }}
.hero-cine-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
  max-width: 1180px;
  padding-block-start: calc(var(--header-h) + 24px);
  /* End-Padding > Start-Padding hebt den Block leicht über die
     geometrische Mitte — optisches Zentrum. */
  padding-block-end: clamp(120px, 16vh, 200px);
}
.hero-cine-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--copper-200);
  font-family: var(--text);
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-block-end: clamp(1.4rem, 2.4vw, 2rem);

  &::before {
    content: "";
    width: 60px;
    height: 2px;
    background: currentColor;
    flex-shrink: 0;
  }
}
.hero-cine-title {
  color: #fff;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(3.4rem, 7.4vw, 7.8rem);
  line-height: 0.98;
  letter-spacing: -0.018em;
  margin: 0 0 clamp(1.6rem, 2.8vw, 2.4rem);
  /* Dezenter Kontaktschatten statt grossem Halo — sitzt im Bild, klebt nicht */
  text-shadow: 0 2px 18px rgba(6, 15, 11, 0.40);
  max-width: 22ch;
  text-wrap: balance;
}
/* Desktop: zwei Zeilen („Verstehen, / bevor bewertet wird.") —
   Mobile bricht „wird." auf die dritte Zeile (schmale Viewports). */
.hero-cine-title .br-m { display: none; }
@media (max-width: 760px) { .hero-cine-title .br-m { display: inline; } }
.hero-cine-sub {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.18rem, 1.6vw, 1.5rem);
  line-height: 1.62;
  max-width: 44ch;
  margin: 0 0 clamp(2.4rem, 3.6vw, 3rem);
  font-weight: 400;
  text-wrap: pretty;
}
.hero-cine-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;

  .btn { min-width: 210px; }
}
/* Scroll-Hinweis */
.hero-cine-scroll {
  position: absolute;
  z-index: 3;
  inset-inline-end: clamp(24px, 5vw, 72px);
  inset-block-end: clamp(40px, 7vh, 88px);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-decoration: none;
  transition: color 0.4s ease;

  &:hover { color: #fff; }
}
.hero-cine-scroll-line {
  position: relative;
  width: 1.5px;
  height: 64px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
  writing-mode: horizontal-tb;

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--copper-300);
    transform: translateY(-100%);
    animation: scrollCue 2.4s var(--mp-ease) infinite;
  }
}
@keyframes scrollCue {
  0%   { transform: translateY(-100%); }
  45%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}
@media (prefers-reduced-motion: reduce) {.hero-cine-scroll-line::after { animation: none; }}
@media (max-width: 640px) {.hero-cine-scroll { display: none; }
.hero-cine-actions { flex-direction: column; }
.hero-cine-actions .btn { min-width: 0; width: 100%; }}
/* =====================================================
   9 · HEADER · Hairline-Glow beim Scrollen
   ===================================================== */
.site-header::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mp-copper-glow), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.site-header.scrolled::after { opacity: 1; }
/* Logo schrumpft beim Scrollen elegant (trotz Inline-Größe) */
.site-header.scrolled .brand-logo {
  height: 84px !important;
  width: auto !important;
}
/* =====================================================
   10 · BUTTON · Fokus / Aktiv / Schliff
   ===================================================== */
.btn { letter-spacing: 0.01em; }
.btn:active { transform: translateY(0) scale(0.985); }
.btn-primary {
  box-shadow:
    0 8px 24px -10px rgba(180, 110, 77, 0.42),
    0 1px 3px rgba(180, 110, 77, 0.16) !important;
}
/* =====================================================
   11 · BILD-REVEAL  (Clip-Path-Wisch + sanftes Auszoomen)
   ===================================================== */
.reveal-img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s var(--mp-ease-clip);

  img {
    transform: scale(1.12);
    transition: transform 1.6s var(--mp-ease-clip);
  }
  &.is-visible { clip-path: inset(0 0 0 0); }
  &.is-visible img { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {.reveal-img { clip-path: none; }
.reveal-img img { transform: none; }}
/* =====================================================
   12 · FOOTER-LINKS · animierter Unterstrich
   (zusammengeführt: vorher zweimal definiert)
   ===================================================== */
.footer-nav a,
.footer-legal a {
  position: relative;
  display: inline-block;
  width: fit-content;

  &::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    inset-block-end: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--mp-dur-ui) var(--mp-ease);
  }
  &:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media (prefers-reduced-motion: reduce) {.footer-nav a::after, .footer-legal a::after { transition: none; }}
/* =====================================================
   13 · „NACH OBEN" · dezenter Glas-Button
   ===================================================== */
.mp-top {
  position: fixed;
  inset-inline-end: clamp(20px, 3vw, 36px);
  inset-block-end: clamp(20px, 3vw, 36px);
  z-index: 1050;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.7);
  border: 1px solid var(--mp-copper-line-soft);
  color: var(--forest-900);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 10px 30px -10px var(--mp-ink-200);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
  transition:
    opacity 0.55s var(--mp-ease),
    transform 0.55s var(--mp-ease),
    background 0.4s ease,
    border-color 0.4s ease,
    color 0.4s ease;

  &.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  &:hover {
    background: var(--copper-600);
    border-color: var(--copper-600);
    color: #fff;
    transform: translateY(-3px) scale(1.04);
  }
  svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--mp-dur-ui) var(--mp-ease);
  }
  &:hover svg { transform: translateY(-2px); }
}
@media (prefers-reduced-motion: reduce) {.mp-top { transition: opacity 0.3s ease; transform: none; }
.mp-top.is-visible { transform: none; }}
@media (max-width: 640px) {.mp-top { width: 46px; height: 46px; inset-inline-end: 16px; inset-block-end: 18px; }}
/* =====================================================
   14 · SEKTIONSTRENNUNG — atmosphärischer Schein (keine Linie)
   Weicher Kupfer-Lichtschein am Sektionsanfang, der beim
   Eintreten sanft aufblendet & aufgeht. Trennt Bereiche
   spürbar, ohne harten Strich.
   ===================================================== */
.home-section::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 50%;
  width: clamp(260px, 46vw, 640px);
  height: 170px;
  background: radial-gradient(58% 100% at 50% 0%, rgba(180, 110, 77, 0.17), transparent 72%);
  transform: translateX(-50%) scaleX(0.5);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition:
    opacity 1.1s ease,
    transform 1.3s var(--mp-ease-clip);
}
.home-section.sec-in::before { opacity: 1; transform: translateX(-50%) scaleX(1); }
.home-section::after { content: none; }
.home-section.final-cta::before {
  background: radial-gradient(58% 100% at 50% 0%, rgba(208, 139, 104, 0.18), transparent 72%);
}
@media (prefers-reduced-motion: reduce) {
  .home-section::before { opacity: 1; transform: translateX(-50%) scaleX(1); transition: none; }
}
/* Eigenständiger Premium-Divider (für Inhaltsseiten) */
.mp-divider {
  position: relative;
  height: 1px;
  width: min(var(--container), 100% - 48px);
  margin: clamp(8px, 2vw, 24px) auto;
  background: linear-gradient(90deg, transparent, var(--mp-copper-line-soft) 25%, var(--mp-copper-line-soft) 75%, transparent);
  opacity: 0;
  transition: opacity 1s ease;

  &::after {
    content: "";
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    width: 8px;
    height: 8px;
    background: var(--cream-100);
    border: 1.5px solid var(--copper-600);
    border-radius: 1px;
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transition: transform 0.7s var(--mp-ease-clip) 0.15s;
  }
  &.is-visible { opacity: 1; }
  &.is-visible::after { transform: translate(-50%, -50%) rotate(45deg) scale(1); }
}
/* =====================================================
   15 · REVEAL-VERFEINERUNG  (crisp statt Blur)
   ===================================================== */
.reveal {
  transition-duration: var(--mp-dur-reveal) !important;
  filter: none !important;
  transform: translateY(32px);
}
.reveal.is-visible {
  transform: translateY(0);
  filter: none !important;
}
/* Karten in Grids: weicher Auftrieb + Tiefe bei Hover */
.home-access-card,
.ang-path-card,
.price-card,
.orientation-card,
.aw-pillar,
.aw-principle,
.sub-support-card,
.aw-outcome {
  transition:
    transform 0.55s var(--mp-ease),
    box-shadow 0.55s var(--mp-ease),
    border-color var(--mp-dur-ui) ease,
    background var(--mp-dur-ui) ease !important;
}
/* =====================================================
   16 · EXPERIENCE POLISH · editorial micro-craft
   ===================================================== */
/* Eyebrow-Linien zeichnen sich beim Reveal */
.reveal .home-section-label::before,
.reveal .eyebrow::before,
.reveal .ang-paths-tag::before,
.reveal .ang-offer-mark::before {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1s var(--mp-ease-clip) 0.2s;
}
.reveal.is-visible .home-section-label::before,
.reveal.is-visible .eyebrow::before,
.reveal.is-visible .ang-paths-tag::before,
.reveal.is-visible .ang-offer-mark::before {
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {.reveal .home-section-label::before,
  .reveal .eyebrow::before,
  .reveal .ang-paths-tag::before,
  .reveal .ang-offer-mark::before { transform: scaleX(1); transition: none; }}
/* Editoriales Lesemaß */
.hero-cine-sub,
.page-intro .lead,
.aw-hero-intro p,
.section-heading p,
.aw-section-head p { text-wrap: pretty; }
.about-content > p,
.split p,
.quote-block p { max-width: 62ch; }
/* Feinere Headline-Optik */
h1, h2, h3 { font-feature-settings: "liga" 1, "calt" 1; }
.hero-cine-title, .home-section-title,
.aw-section-head h2, .ang-hero h1, .ang-subhero h1 { text-wrap: balance; }
/* Tonwert-Übergänge zwischen hellen Sektionen */
.section-light + .section-cream,
.section-cream + .section-light { position: relative; }
@media (min-width: 1200px) {.hero-cine-title { letter-spacing: -0.015em; }}
@media (max-width: 760px) {body { font-size: 17.5px; line-height: 1.72; }
p { line-height: 1.72; }
.hero-cine { min-height: 92svh; align-items: flex-end; }
.hero-cine-inner { padding-block-end: clamp(56px, 12vh, 96px); }
/* Schrift so bemessen, dass „bevor bewertet" einzeilig bleibt (3-Zeilen-Lockup) */
.hero-cine-title { font-size: clamp(2.5rem, 12vw, 3.2rem); line-height: 1.02; letter-spacing: -0.012em; }
.hero-cine-sub { font-size: 1.12rem; line-height: 1.6; }
.home-section.sec-in::before { height: 56px; }
.home-section::after { inset-block-start: 27px; }
.home-section-head { margin-block-end: clamp(28px, 7vw, 44px); }}
@media (max-width: 420px) {.hero-cine-actions { gap: 12px; }}
/* =====================================================
   18 · KOMPONENTEN-VEREDELUNG · kohärent & ruhig
   ===================================================== */
/* Karten — moderner Radius + gezeichneter Kupfer-Akzent bei Hover */
.orientation-card,
.price-card,
.method-card,
.offer-card {
  border-radius: 18px !important;
  position: relative;
  overflow: hidden;

  &::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, var(--copper-600), var(--copper-300));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--mp-ease);
    z-index: 3;
  }
  &:hover::after { transform: scaleX(1); }
}
/* Mehr Atem in den Karten-Grids */
/* Eyebrow — ruhigeres Tracking */
.eyebrow,
.home-section-tag,
.ang-paths-tag,
.aw-hero .eyebrow { letter-spacing: 0.2em; }
h3 { line-height: 1.08; }
/* Karten-Hover global eine Spur tiefer */
.orientation-card:hover,
.price-card:hover,
.method-card:hover,
.offer-card:hover,
.soft-card:hover {
  box-shadow: 0 22px 52px -22px var(--mp-ink-200) !important;
}
/* =====================================================
   19 · FACHLICHE ERFAHRUNG · hell, ruhig, übersichtlich
   ===================================================== */
/* =====================================================
   20 · EDITORIAL REFINEMENT · Fokus, Mikroanimation
   ===================================================== */
/* Einheitlicher Fokus-Stil (Tastatur-Navigation + A11y) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--copper-600);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Karten-Pfeile (→) ziehen beim Hover sanft mit */
.home-access-card .home-access-go svg,
.home-situation .home-situation-go svg,
.home-explore-card .home-explore-go svg,
.ang-jump-chip svg {
  transition: transform 0.4s var(--mp-ease);
}
.home-access-card:hover .home-access-go svg,
.home-situation:hover .home-situation-go svg,
.home-explore-card:hover .home-explore-go svg {
  transform: translateX(3px);
}
@media (prefers-reduced-motion: reduce) {.home-access-card:hover .home-access-go svg,
  .home-situation:hover .home-situation-go svg,
  .home-explore-card:hover .home-explore-go svg { transform: none; }}
/* Eyebrow-Typo: einheitliche Ziffern */
.eyebrow, .home-section-tag, .ang-paths-tag, .st-eyebrow {
  font-feature-settings: "tnum" 1;
}
@media (min-width: 1400px) {.section { padding-block: clamp(84px, 7vw, 120px); }}
@media (prefers-reduced-transparency: reduce) {.mp-top {
    background: var(--cream-100);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }}
@media (forced-colors: active) {.mp-top { border-color: CanvasText; }
.orientation-card::after,
  .price-card::after,
  .method-card::after,
  .offer-card::after { background: Highlight; }}

/* ÜBER MICH · Hero-Grundlayout (2026-06-04 wiederhergestellt) */
body[data-active="ueber"] .about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) 1.08fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
body[data-active="ueber"] .about-hero-copy { max-width: 640px; }
body[data-active="ueber"] .about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(1.8rem, 2.4vw, 2.4rem);
}
@media (max-width: 1050px) {body[data-active="ueber"] .about-hero-grid,
  body[data-active="ueber"] .about-split,
  body[data-active="ueber"] .about-path-layout { grid-template-columns: minmax(0, 1fr) !important; }}
@media (max-width: 640px) {body[data-active="ueber"] .about-hero-premium {
    min-height: auto;
    padding-top: calc(var(--header-h) + 54px);
    padding-bottom: 44px;
  }
body[data-active="ueber"] main > .section { padding-block: 46px; }
body[data-active="ueber"] .about-hero-grid,
  body[data-active="ueber"] .about-split,
  body[data-active="ueber"] .about-path-layout { gap: 30px !important; }
body[data-active="ueber"] .about-hero-copy h1 {
    font-size: clamp(2.85rem, 13vw, 4.65rem);
    line-height: 0.94;
  }
body[data-active="ueber"] .about-hero-copy .lead,
  body[data-active="ueber"] .about-copy-block p,
  body[data-active="ueber"] .about-path-intro p,
  body[data-active="ueber"] .about-access p,
  body[data-active="ueber"] .about-why .lead {
    font-size: 1.02rem;
    line-height: 1.68;
  }
body[data-active="ueber"] .about-hero-actions { flex-direction: column; margin-top: 1.25rem; }
body[data-active="ueber"] .about-hero-actions .btn,
  body[data-active="ueber"] .about-hero-actions .btn-secondary { width: 100%; }
body[data-active="ueber"] .about-hero-portrait { min-height: 300px !important; }}
/* =====================================================
   ÜBER MICH · HERO MIT FOTO  (2026-06)
   Der Rahmen bleibt als editoriales Passepartout; das Foto
   füllt das Innenfeld. Sobald ein Foto vorliegt:
     1) `has-photo` zum .about-hero-portrait hinzufügen,
     2) das <img> im Rahmen aktivieren (Pfad + alt setzen).
   Ohne `has-photo` bleibt das Monogramm als ruhiger Platzhalter.
   ===================================================== */
body[data-active="ueber"] .about-hero-portrait {
  position: relative;
  align-self: stretch;
  min-height: 460px;
}
body[data-active="ueber"] .about-portrait-frame {
  position: relative;          /* Anker für das Foto */
  height: 100%;
  min-height: 460px;
  margin: 0;
  display: grid;
  place-content: center;
  gap: 14px;
  text-align: center;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 22%, rgba(180, 110, 77, 0.18), transparent 60%),
    linear-gradient(150deg, var(--forest-800), var(--forest-950));
  border: 1px solid rgba(180, 110, 77, 0.20);
  box-shadow: var(--shadow-lg);
}
body[data-active="ueber"] .about-portrait-frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(208, 139, 104, 0.22);
  border-radius: calc(var(--r-lg) - 14px);
  pointer-events: none;
}
body[data-active="ueber"] .about-portrait-frame figcaption {
  font-family: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(235, 185, 157, 0.85);
}
body[data-active="ueber"] .about-portrait-frame img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow:
    0 36px 90px rgba(6, 15, 11, 0.20),
    0 12px 32px rgba(6, 15, 11, 0.12);
}
body[data-active="ueber"] .about-hero-portrait.has-photo .portrait-mark,
body[data-active="ueber"] .about-hero-portrait.has-photo figcaption { display: none; }
body[data-active="ueber"] .about-hero-portrait.has-photo .about-portrait-frame::after { display: none; }
/* Foto vollständig, rahmenlos, schwebend: natürliches Format (kein Beschnitt),
   weicher Schein hinter dem Bild, wächst auf Desktop sanft über den Container hinaus */
body[data-active="ueber"] .about-hero-portrait.has-photo {
  min-height: 0 !important;
  align-self: center;
}
body[data-active="ueber"] .about-hero-portrait.has-photo .about-portrait-frame {
  height: auto;
  min-height: 0;
  display: block;
  background: none;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  position: relative;
  width: calc(100% + clamp(0px, 5vw, 72px));
}
body[data-active="ueber"] .about-hero-portrait.has-photo .about-portrait-frame::before {
  content: "";
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(58% 62% at 50% 58%, rgba(180, 110, 77, 0.14), rgba(22, 41, 38, 0.05) 55%, transparent 76%);
  pointer-events: none;
}
@media (max-width: 1050px) {
  body[data-active="ueber"] .about-hero-portrait.has-photo .about-portrait-frame { width: 100%; }
}
/* Headline minimal kompakter (Desktop), damit das Foto die Bühne bekommt */
@media (min-width: 1051px) {
  body[data-active="ueber"] .about-hero-copy h1 { font-size: clamp(2.9rem, 4.4vw, 4.1rem); }
}

/* Beratungssprachen — sichtbare Pills */
.um-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(1.4rem, 2vw, 1.9rem);
}
.um-lang {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 0%, rgba(208, 139, 104, 0.20), transparent 60%),
    linear-gradient(148deg, var(--forest-800), var(--forest-950));
  border: 1px solid rgba(180, 110, 77, 0.40);
  box-shadow: 0 12px 30px rgba(6, 15, 11, 0.18);
  font-family: var(--text);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cream-100);
}
.um-lang::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--copper-400);
  box-shadow: 0 0 10px rgba(208, 139, 104, 0.7);
}
@media (max-width: 1050px) {body[data-active="ueber"] .about-hero-portrait.has-photo { order: -1; }}
/* =====================================================
   ÜBER MICH · REDESIGN 2026
   Einheitlich mit der Tarife-Seite: ruhige Icon-Cards,
   Icon-Timeline, Pull-Quote, klare Grids ohne Leerraum.
   Lädt nach dem älteren Über-mich-Block → gewinnt die Kaskade.
   ===================================================== */
body[data-active="ueber"] {

  /* ---- Profil: Pull-Quote links, erläuternder Text rechts ---- */
  .um-profil-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
  }
  .um-profil-lead h2 {
    margin: 0.6rem 0 0;
    font-size: clamp(2.6rem, 4.6vw, 4.6rem);
    line-height: 1;
    letter-spacing: -0.045em;
  }
  .um-profil-name {
    margin: clamp(1.2rem, 2vw, 1.6rem) 0 0;
    font-family: var(--text);
    font-weight: 700;
    font-size: clamp(1.35rem, 1.7vw, 1.7rem);
    letter-spacing: -0.015em;
    color: var(--forest-900);
  }
  /* Qualifikationen — premium "Spec-Block": getöntes Panel, Kupfer-Label + Fraunces-Wert */
  .um-quals {
    margin: clamp(1.7rem, 2.8vw, 2.3rem) 0 0;
    list-style: none;
    background: var(--cream-50);
    border: 1px solid rgba(22, 41, 38, 0.10);
    border-radius: clamp(12px, 1.4vw, 16px);
    box-shadow: 0 1px 2px rgba(22, 41, 38, 0.04);
    padding: clamp(0.2rem, 0.7vw, 0.5rem) clamp(1.2rem, 2vw, 1.7rem);
  }
  .um-qual {
    padding: clamp(0.95rem, 1.45vw, 1.2rem) 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .um-qual + .um-qual { border-top: 1px solid rgba(22, 41, 38, 0.09); }
  .um-qual-label {
    font-family: var(--text);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--copper-600);
  }
  .um-qual-value {
    font-family: var(--display);
    font-size: clamp(1.18rem, 1.35vw, 1.35rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--forest-900);
  }
  .um-profil-body { padding-top: 0.4rem; }
  .um-profil-body p {
    font-size: clamp(1.08rem, 1.25vw, 1.22rem);
    line-height: 1.78;
    color: var(--stone-600);
  }
  .um-profil-body p + p { margin-top: 1.1rem; }
  .um-profil-body .um-langs-lead { margin-top: clamp(1.7rem, 2.6vw, 2.2rem); }

  /* ---- Schwerpunkte: ruhige Icon-Cards (Tarife-Stil) ---- */
  .um-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2vw, 26px);
  }
  .um-focus-card {
    position: relative;
    padding: clamp(28px, 3vw, 40px);
    border-radius: 18px;
    background: var(--cream-50);
    border: 1px solid rgba(22, 41, 38, 0.08);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition:
      transform 0.55s var(--mp-ease),
      box-shadow 0.55s var(--mp-ease),
      border-color 0.4s ease;
  }
  .um-focus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(180, 110, 77, 0.20);
  }
  .um-focus-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, var(--copper-600), var(--copper-300));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--mp-ease);
  }
  .um-focus-card:hover::after { transform: scaleX(1); }
  .um-focus-card h3 {
    margin: 1.4rem 0 0.8rem;
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(1.4rem, 1.8vw, 1.75rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--forest-900);
    text-wrap: balance;
  }
  .um-focus-card p {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.66;
    color: var(--stone-600);
  }

  /* Icon-Kreis (einheitlich mit Tarife) */
  .um-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(180, 110, 77, 0.30);
    color: var(--copper-700);
    box-shadow: 0 6px 18px rgba(6, 15, 11, 0.07);
    transition: background 0.4s var(--mp-ease), color 0.4s var(--mp-ease), border-color 0.4s var(--mp-ease);
  }
  .um-icon svg { width: 26px; height: 26px; }
  .um-focus-card:hover .um-icon {
    background: var(--copper-600);
    border-color: var(--copper-600);
    color: #fff;
  }

  /* ---- Werdegang: vertikale Icon-Timeline (Tarife-Journey-Stil) ---- */
  .um-timeline {
    position: relative;
    display: grid;
    gap: 16px;
    max-width: 780px;
  }
  .um-timeline.reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  /* Altes durchgehendes Linien-Element wird nicht mehr gebraucht */
  .um-timeline-line { display: none; }
  /* Verbindungssegment: jeder Schritt (ausser dem letzten) zeichnet die Linie
     zum nächsten Knoten — endet damit exakt am letzten Icon. */
  .um-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 31px;
    top: 50px;
    width: 2px;
    height: calc(100% + 16px);
    background: linear-gradient(180deg, var(--copper-500), var(--copper-200));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.7s var(--mp-ease);
    z-index: 0;
  }
  .um-timeline.is-visible .um-step:not(:last-child)::before { transform: scaleY(1); }

  .um-step {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(18px, 2vw, 28px);
    align-items: start;
    min-height: 116px;
    padding-block: 18px;
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.7s var(--mp-ease),
      transform 0.7s var(--mp-ease);
  }
  .um-timeline.is-visible .um-step { opacity: 1; transform: none; }

  .um-node {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--cream-50);
    border: 1.5px solid rgba(22, 41, 38, 0.14);
    color: var(--stone-400);
    transform: scale(0.92);
    transition:
      border-color 0.6s var(--mp-ease),
      box-shadow 0.6s var(--mp-ease),
      color 0.6s var(--mp-ease),
      transform 0.6s var(--mp-ease);
  }
  .um-node svg { width: 27px; height: 27px; }
  .um-node::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid var(--copper-500);
    opacity: 0;
    pointer-events: none;
  }
  .um-timeline.is-visible .um-node {
    border-color: var(--copper-600);
    box-shadow: 0 6px 22px -10px rgba(180, 110, 77, 0.55);
    color: var(--copper-700);
    transform: scale(1);
  }
  .um-timeline.is-visible .um-node::after {
    animation: procPing 0.95s var(--mp-ease) forwards;
  }

  .um-step-body { padding-top: 9px; }
  .um-step-body h3 {
    margin: 0 0 0.4rem;
    font-size: clamp(1.5rem, 1.9vw, 2rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
  }
  .um-step-body p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.6;
    color: var(--stone-600);
    max-width: 54ch;
  }

  /* Timeline: Knoten & Text laufen synchron von oben nach unten ein */
  .um-timeline.is-visible .um-step:nth-child(2),
  .um-timeline.is-visible .um-step:nth-child(2) .um-node,
  .um-timeline.is-visible .um-step:nth-child(2) .um-node::after { transition-delay: 0.20s; animation-delay: 0.20s; }
  .um-timeline.is-visible .um-step:nth-child(3),
  .um-timeline.is-visible .um-step:nth-child(3) .um-node,
  .um-timeline.is-visible .um-step:nth-child(3) .um-node::after { transition-delay: 0.73s; animation-delay: 0.73s; }
  .um-timeline.is-visible .um-step:nth-child(4),
  .um-timeline.is-visible .um-step:nth-child(4) .um-node,
  .um-timeline.is-visible .um-step:nth-child(4) .um-node::after { transition-delay: 1.27s; animation-delay: 1.27s; }
  .um-timeline.is-visible .um-step:nth-child(5),
  .um-timeline.is-visible .um-step:nth-child(5) .um-node,
  .um-timeline.is-visible .um-step:nth-child(5) .um-node::after { transition-delay: 1.80s; animation-delay: 1.80s; }

}
@media (max-width: 1024px) {body[data-active="ueber"] .um-profil-grid { grid-template-columns: 1fr; gap: clamp(24px, 4vw, 36px); }
body[data-active="ueber"] .um-focus-grid { grid-template-columns: 1fr; }}
@media (prefers-reduced-motion: reduce) {body[data-active="ueber"] .um-step { opacity: 1; transform: none; transition: none; }
body[data-active="ueber"] .um-step:not(:last-child)::before { transform: scaleY(1); transition: none; }
body[data-active="ueber"] .um-node { transition: none; transform: scale(1); }
body[data-active="ueber"] .um-node::after { animation: none; }}
/* =====================================================
   KONTAKT — Premium Redesign (eigenständig, tokenbasiert)
   ===================================================== */
.kontakt-section { position: relative; overflow: hidden; }
/* ruhiger, atmosphärischer Lichtschein oben rechts */
.kontakt-section::before {
  content: "";
  position: absolute;
  top: -18%;
  right: -8%;
  width: 46vw;
  max-width: 620px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(180,110,77,0.10), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.kontakt-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: clamp(40px, 6vw, 92px);
  align-items: start;
}
/* ---------- Linke Spalte ---------- */
.kontakt-aside { position: sticky; top: calc(var(--header-h) + 40px); }
.kontakt-aside h2 { margin-bottom: 1.4rem; }
.kontakt-aside-lead { font-size: 1.06rem; max-width: 44ch; margin-bottom: 0; }
.kontakt-channels {
  list-style: none;
  margin: clamp(2rem, 3.2vw, 2.8rem) 0 0;
  padding: 0;
}
.kontakt-channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(22, 41, 38, 0.10);
}
.kontakt-channel:last-child { border-bottom: 1px solid rgba(22, 41, 38, 0.10); }
.kontakt-channel-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(31, 58, 54, 0.06);
  color: var(--copper-600);
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
.kontakt-channel-icon svg { width: 21px; height: 21px; }
.kontakt-channel:hover .kontakt-channel-icon {
  background: var(--forest-800);
  color: var(--copper-200);
  transform: translateY(-2px);
}
.kontakt-channel-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.kontakt-channel-label {
  font-family: var(--text);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-400);
}
.kontakt-channel-value {
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--forest-900);
  text-decoration: none;
  line-height: 1.4;
}
a.kontakt-channel-value { color: var(--copper-700); transition: color 0.25s ease; width: fit-content; }
a.kontakt-channel-value:hover { color: var(--copper-500); }
/* ---------- Ablauf-Schritte ---------- */
.kontakt-steps-block { margin-top: clamp(2.6rem, 4vw, 3.4rem); }
.kontakt-steps-title {
  font-family: var(--text);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 1.5rem;
}
.kontakt-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.3rem;
}
.kontakt-step { display: flex; gap: 18px; align-items: baseline; }
.kontakt-step-num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--copper-500);
  flex-shrink: 0;
  width: 34px;
  font-variant-numeric: tabular-nums;
}
.kontakt-step-text {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--stone-600);
}
/* ---------- Rechte Spalte: Formular ---------- */
.kontakt-form {
  position: relative;
  display: grid;
  gap: 1.05rem;
  padding: clamp(30px, 4vw, 52px);
  border-radius: var(--r-md);
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
/* feiner Kupfer-Akzent an der Oberkante */
.kontakt-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper-600), var(--copper-300));
}
.kontakt-form-head { margin-bottom: 0.4rem; }
.kontakt-form-head .eyebrow { margin-bottom: 0.7rem; }
.kontakt-form-title { font-size: clamp(1.6rem, 2.4vw, 2rem); margin: 0; }
.kontakt-field { display: grid; gap: 0.5rem; }
.kontakt-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest-800);
  letter-spacing: 0.01em;
}
.kontakt-field input,
.kontakt-field select,
.kontakt-field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1.5px solid rgba(22, 41, 38, 0.12);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--forest-900);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}
.kontakt-field input::placeholder,
.kontakt-field textarea::placeholder { color: var(--stone-400); }
.kontakt-field input:focus,
.kontakt-field select:focus,
.kontakt-field textarea:focus {
  outline: none;
  border-color: var(--copper-600);
  box-shadow: 0 0 0 3px rgba(180, 110, 77, 0.12);
}
.kontakt-field textarea { resize: vertical; min-height: 150px; }
/* eleganter Select mit eigenem Chevron */
.kontakt-select { position: relative; }
.kontakt-select select { padding-right: 2.8rem; cursor: pointer; }
.kontakt-select-chevron {
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  color: var(--copper-600);
  pointer-events: none;
}
.kontakt-submit { width: 100%; justify-content: center; margin-top: 0.4rem; }
.kontakt-form .form-hint {
  text-align: center;
  font-size: 0.88rem !important;
  color: var(--stone-400) !important;
  margin: 0.3rem 0 0 !important;
  line-height: 1.6;
}
.kontakt-form .form-hint a { color: var(--copper-600); font-weight: 600; }
/* ---------- Abschluss ---------- */
.kontakt-final { text-align: center; }
.kontakt-final-mark {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  border: 1px solid rgba(208, 139, 104, 0.4);
  color: var(--copper-200);
}
.kontakt-final-mark svg { width: 26px; height: 26px; }
.kontakt-final .eyebrow { justify-content: center; }
.kontakt-final h2 { color: var(--white); max-width: 760px; margin-inline: auto; }
.kontakt-final .lead {
  color: rgba(255, 255, 255, 0.74);
  max-width: 560px;
  margin: 1.6rem auto 0;
  font-size: 1.1rem;
}
@media (max-width: 980px) {.kontakt-grid { grid-template-columns: 1fr; gap: clamp(40px, 8vw, 60px); }
.kontakt-aside { position: static; }
.kontakt-aside-lead { max-width: none; }}
@media (max-width: 560px) {.kontakt-channel-icon { width: 42px; height: 42px; }
.kontakt-channel-value { font-size: 1rem; }
.kontakt-form { padding: 26px 20px; }}
/* =====================================================
   FOOTER — Telefon neben E-Mail
   ===================================================== */
.footer-phone {
  display: inline-block;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--copper-600);
  transition: color 0.3s ease;
}
.footer-phone::before {
  content: "·";
  margin: 0 0.7em;
  color: var(--stone-400);
  font-weight: 400;
}
.footer-phone:hover { color: var(--copper-700); }
.footer-linkedin {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 0.65rem;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--copper-600);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-linkedin svg { width: 17px; height: 17px; flex-shrink: 0; }
.footer-linkedin:hover { color: var(--copper-700); }
@media (max-width: 480px) {.footer-mail, .footer-phone { display: block; }
.footer-phone { margin-top: 0.35rem; }
.footer-phone::before { display: none; }}
/* =====================================================
   RECHTLICHE SEITEN — Impressum / Datenschutz
   ===================================================== */
.legal-info { margin: 0 0 2.2rem; }
.legal-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(22, 41, 38, 0.10);
}
.legal-row:last-child { border-bottom: 1px solid rgba(22, 41, 38, 0.10); }
.legal-info dt {
  font-family: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-700);
  padding-top: 5px;
}
.legal-info dd {
  margin: 0;
  color: var(--forest-900);
  font-size: 1.05rem;
  line-height: 1.7;
}
.legal-info dd a { color: var(--copper-600); font-weight: 600; transition: color 0.25s ease; }
.legal-info dd a:hover { color: var(--copper-700); }
.legal-placeholder { color: var(--stone-400); font-style: italic; }
.legal-note {
  margin-top: 1.4rem;
  font-size: 1.02rem;
  color: var(--stone-600);
  line-height: 1.85;
}
.legal-note p { margin: 0 0 1.15rem; }
.legal-note p:last-child { margin-bottom: 0; }
.legal-note ul { margin: 0.4rem 0 1.35rem; padding-left: 1.35rem; }
.legal-note li { margin-bottom: 0.45rem; padding-left: 0.2rem; }
.legal-note li::marker { color: var(--copper-600); }
.legal-note strong { color: var(--forest-900); font-weight: 700; }
.legal-note a { color: var(--copper-600); font-weight: 600; transition: color 0.25s ease; }
.legal-note a:hover { color: var(--copper-700); }
/* Kleine Meta-Zeile (Stand der Erklärung) */
.legal-stand {
  font-size: 0.8rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-700) !important;
  margin: 0 0 clamp(1.6rem, 3vw, 2.4rem) !important;
}
@media (max-width: 640px) {.legal-row { grid-template-columns: 1fr; gap: 6px; padding: 1.1rem 0; }
.legal-info dt { padding-top: 0; }}
/* Datenschutz: ruhigere Überschriftengrösse für Fliesstext-Dokument */
.legal-page .section-light h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--forest-900);
  margin-top: clamp(2.6rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
  padding-top: clamp(1.5rem, 2.6vw, 2.2rem);
  border-top: 1px solid rgba(22, 41, 38, 0.10);
}
.legal-page .section-light h2:first-of-type {
  margin-top: 0.4rem;
  padding-top: 0;
  border-top: 0;
}
/* Hero & Inhalt exakt gleich breit (feste px, da ch je Schriftgrösse variiert)
   → linksbündig untereinander, kein Rechts-Versatz */
.legal-page .page-intro .container,
.legal-page .section-light .container {
  max-width: 700px;
}
/* Hero-Headline kleiner, damit lange Wörter (z. B. „Datenschutzerklärung")
   in die 700px-Spalte passen und nicht überlaufen */
.legal-page .page-intro h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  overflow-wrap: break-word;
  hyphens: auto;
}
/* Kompakter Anschluss: Hero rückt näher an die nummerierten Abschnitte */
.legal-page .page-intro { padding-bottom: clamp(18px, 2.6vw, 34px); }
.legal-page .section-light { padding-top: clamp(10px, 1.6vw, 20px); }
/* =====================================================
   MEDIA-PLATZHALTER (Bilder folgen)
   Wiederverwendbarer Rahmen. Sobald ein Bild vorliegt:
     1) Klasse "has-media" an <figure class="media-frame"> ergänzen,
     2) das auskommentierte <img> aktivieren (Pfad + alt setzen).
   ===================================================== */
.media-frame {
  position: relative;
  display: grid;
  place-content: center;
  gap: 14px;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(180, 110, 77, 0.16), transparent 60%),
    linear-gradient(150deg, var(--forest-800), var(--forest-950));
  border: 1px solid rgba(180, 110, 77, 0.18);
  box-shadow: var(--shadow-md);
  color: var(--copper-200);
  text-align: center;
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(208, 139, 104, 0.22);
  border-radius: calc(var(--r-md) - 12px);
  pointer-events: none;
}
.media-frame-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(208, 139, 104, 0.35);
  color: var(--copper-200);
}
.media-frame-mark svg { width: 28px; height: 28px; }
.media-frame figcaption {
  font-family: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(235, 185, 157, 0.85);
}
.media-frame--wide { aspect-ratio: 21 / 9; }
/* Bild-Zustand */
.media-frame.has-media { background: var(--forest-950); }
.media-frame.has-media .media-frame-mark,
.media-frame.has-media figcaption { display: none; }
.media-frame.has-media::after { inset: 0; border: 0; }
.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Beratung in der Praxis — Bild + Text */
.aw-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.aw-media-text h2 { margin-bottom: 1.2rem; }
.aw-media-text p { font-size: 1.06rem; max-width: 46ch; }
/* Schach-Motiv — atmosphärisches Band */
.aw-chess-band {
  padding-block: clamp(56px, 8vw, 104px);
  background: linear-gradient(180deg, var(--cream-100), var(--cream-200));
}
.aw-chess-band .media-frame--wide { max-width: 1000px; margin: 0 auto; }
/* Medien-Zitat: editorial, ruhig, mit Kupfer-Zäsur und Absender */
.media-quote {
  position: relative;
  margin: clamp(44px, 5vw, 64px) auto 0;
  max-width: 760px;
  padding-top: clamp(30px, 3.4vw, 42px);
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 460;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--forest-900);
  text-wrap: balance;
}
.media-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper-600), var(--copper-400));
}
.media-quote cite {
  display: block;
  margin-top: clamp(1rem, 1.6vw, 1.4rem);
  font-family: var(--text);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-700);
}
@media (max-width: 860px) {.aw-media-grid { grid-template-columns: 1fr; gap: 32px; }
.aw-media-text { order: -1; }
.media-frame { aspect-ratio: 3 / 2; }
.media-frame--wide { aspect-ratio: 16 / 9; }}

/* =====================================================
   DIFFERENZIERTE ABSCHLUSS-CTAs
   Start behält den grossen dunklen final-cta (stärkster CTA).
   Andere Seiten erhalten eigenständige, ruhigere Kompositionen,
   damit nicht jede Seite gleich endet.
   ===================================================== */

/* ANGEBOTE · asymmetrisch — Text links, CTA rechts, geringe Höhe */
.cta-split { padding-block: clamp(52px, 6vw, 88px); }
.cta-split-inner {
  display: grid;
  grid-template-columns: 1.5fr auto;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}
.cta-split-text h2 {
  font-size: clamp(1.9rem, 2.9vw, 2.9rem);
  line-height: 1.05;
  margin-bottom: 0.9rem;
}
.cta-split-text p { max-width: 46ch; font-size: 1.06rem; margin: 0; }
.cta-split-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}
.cta-split-note { font-size: 0.9rem; color: var(--stone-400); letter-spacing: 0.01em; }
@media (max-width: 820px) {
  .cta-split-inner { grid-template-columns: 1fr; gap: 26px; }
}

/* TARIFE · zweitstärkster CTA — klarer Erstgespräch-Fokus, hell-premium */
.cta-offer-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cta-offer-panel h2 { font-size: clamp(2rem, 3.1vw, 3rem); margin-bottom: 1rem; }
.cta-offer-text { max-width: 50ch; margin: 0 auto 1.6rem; }
.cta-offer-points {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 2rem;
  padding: 0;
}
.cta-offer-points li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--cream-50);
  border: 1px solid rgba(180, 110, 77, 0.30);
  font-family: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--forest-900);
}
.cta-offer-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--copper-600);
}

/* =====================================================
   STARTSEITE · Manifest-Moment + Warum-MENTARISMA-Streifen
   (Strategie-Pass 2026-06: Zweck + Differenzierung sichtbar machen,
    ruhig/premium — Lehre aus Wettbewerbsanalyse, nicht dessen Lautstärke)
   ===================================================== */
.home-manifest-statement {
  margin: clamp(0.8rem, 1.6vw, 1.2rem) 0 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.4vw, 3.9rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--forest-900);
  text-wrap: balance;
}
.home-manifest-sub {
  margin: clamp(1.4rem, 2.4vw, 2rem) auto 0;
  max-width: 48ch;
  font-size: clamp(1.1rem, 1.3vw, 1.25rem);
  line-height: 1.7;
  color: var(--stone-600);
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.home-why-item {
  position: relative;
  padding: clamp(26px, 2.8vw, 38px) clamp(22px, 2.4vw, 32px);
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.55s var(--mp-ease),
    box-shadow 0.55s var(--mp-ease),
    border-color 0.4s ease;
}
.home-why-item::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper-600), var(--copper-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--mp-ease);
}
.home-why-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(180, 110, 77, 0.22);
}
.home-why-item:hover::after { transform: scaleX(1); }
.home-why-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: clamp(1.1rem, 1.6vw, 1.4rem);
  background: #fff;
  border: 1px solid rgba(180, 110, 77, 0.30);
  color: var(--copper-700);
  box-shadow: 0 6px 18px rgba(6, 15, 11, 0.07);
  transition: background 0.4s var(--mp-ease), color 0.4s var(--mp-ease), border-color 0.4s var(--mp-ease);
}
.home-why-item:hover .home-why-icon {
  background: var(--copper-600);
  border-color: var(--copper-600);
  color: #fff;
}
.home-why-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-why-item h3 {
  margin: 0 0 0.6rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.45vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--forest-900);
  text-wrap: balance;
}
.home-why-item p {
  margin: 0;
  font-size: clamp(0.98rem, 1.05vw, 1.05rem);
  line-height: 1.62;
  color: var(--stone-600);
}
@media (max-width: 920px) {
  .home-why-grid { grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 44px); }
}
@media (max-width: 540px) {
  .home-why-grid { grid-template-columns: 1fr; }
}
.home-clarity {
  padding-block: clamp(76px, 9.5vw, 140px);
}

/* Ruhiges, zentriertes Manifest — premium Atempause nach dem Hero */
.home-clarity-inner {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-clarity-inner .home-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.home-clarity-inner .home-section-tag::before,
.home-clarity-inner .home-section-tag::after {
  content: "";
  width: 44px;
  height: 2px;
  background: currentColor;
  opacity: 0.5;
  flex-shrink: 0;
}

.home-clarity-lead {
  margin: clamp(30px, 4vw, 48px) auto 0;
  max-width: 30ch;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.95rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--forest-900);
  text-wrap: balance;
}

.home-clarity-text {
  margin: clamp(15px, 1.8vw, 22px) auto 0;
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  line-height: 1.74;
  color: var(--stone-600);
  text-wrap: pretty;
}

@media (max-width: 640px) {
  .home-clarity {
    padding-block: 60px;
  }
}
/* =====================================================
   KONTAKTFORMULAR · Honeypot + Statusmeldung
   ===================================================== */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.kontakt-form-status {
  margin: 1rem 0 0;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-size: 0.98rem;
  line-height: 1.55;
}
.kontakt-form-status.is-ok {
  background: rgba(31, 58, 54, 0.06);
  border: 1px solid rgba(31, 58, 54, 0.20);
  color: var(--forest-900, #1F3A36);
}
.kontakt-form-status.is-error {
  background: rgba(150, 55, 45, 0.07);
  border: 1px solid rgba(150, 55, 45, 0.30);
  color: #8a2e22;
}

/* =====================================================
   ÜBER MICH · Atmosphärisches Bildband (2026-06-11)
   Warmes Praxis-Foto zwischen Profil und Schwerpunkten
   ===================================================== */
.um-media-band {
  padding-block: clamp(40px, 6vw, 88px);
  background: linear-gradient(180deg, var(--cream-100), var(--cream-200));
}

/* =====================================================
   FOTO-INSZENIERUNG · rahmenlos & schwebend (2026-06-12)
   Bilder in natürlichem Format (nie beschnitten), ohne
   Kasten/Border — weicher Schein + tiefer Schatten lassen
   sie über der Seite schweben und mit ihr verschmelzen.
   ===================================================== */
.photo-float {
  position: relative;
  margin: 0;
}
.photo-float::before {
  content: "";
  position: absolute;
  inset: -8% -10%;
  background: radial-gradient(58% 62% at 50% 58%, rgba(180, 110, 77, 0.14), rgba(22, 41, 38, 0.05) 55%, transparent 76%);
  pointer-events: none;
}
.photo-float img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow:
    0 36px 90px rgba(6, 15, 11, 0.20),
    0 12px 32px rgba(6, 15, 11, 0.12);
}
.aw-chess-band .photo-float,
.um-media-band .photo-float { max-width: 1000px; margin-inline: auto; }
/* Kleine Screens: Schein seitlich begrenzen (Seitenrand = 24px, kein Overflow) */
@media (max-width: 760px) {
  .photo-float::before { left: -14px; right: -14px; }
  body[data-active="ueber"] .about-hero-portrait.has-photo .about-portrait-frame::before { left: -14px; right: -14px; }
}

/* =====================================================
   THEMENBILDER (2026-06-12) · Angebote-Begleitbilder in
   der Sticky-Spalte + Brücken-Band auf Kontakt
   ===================================================== */
/* Begleitbild unter der Block-Headline — wandert sticky mit */
.st-photo {
  margin-top: clamp(28px, 3.2vw, 44px);
}
.st-photo img { border-radius: 10px; }
/* Startseite: atmosphärisches Bildband zwischen Lebenssituationen & Warum */
.home-media-band {
  padding-block: clamp(52px, 8vw, 116px);
  background: linear-gradient(180deg, var(--cream-50), var(--cream-200));
}
.home-media-band .photo-float { max-width: 1180px; margin-inline: auto; }
/* „Warum MENTARISMA" als fokales Kapitel — wärmerer Grund, helle Karten schweben darauf */
.home-why { background: var(--cream-200); }
/* Kontakt: Brücken-Band (Region) */
.kontakt-media-band {
  padding-block: clamp(48px, 6vw, 96px);
  background: linear-gradient(180deg, var(--cream-100), var(--cream-200));
}
.kontakt-media-band .photo-float { max-width: 1000px; margin-inline: auto; }
.kontakt-media-caption {
  margin: clamp(20px, 2.6vw, 30px) auto 0;
  max-width: 1000px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--stone-600);
}
