/* =========================================================================
   Alexander Weinzetl — Unternehmer-Coach
   Clean editorial system · White · greyscale · one restrained accent
   Typografie:  Fraunces (Display)  ·  Geist (Text / UI)
   Statisch, kein Build-Step. Self-hosted Fonts, kein Tracking.
   ========================================================================= */

/* ---------- Fonts (lokal, DSGVO-konform) ----------------------------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-Roman.woff2") format("woff2");
  font-weight: 300 640; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-Italic.woff2") format("woff2");
  font-weight: 300 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist-Roman.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

/* ---------- Tokens -------------------------------------------------- */
:root {
  /* Colour — near-black on white, greyscale surfaces, one lime CTA accent */
  --paper:          #FFFFFF;
  --paper-raised:   #F5F5F7;   /* light grey section / cards */
  --paper-sink:     #EEEEF0;
  --ink:            #1D1D1F;   /* near-black */
  --ink-soft:       #4B4B4E;   /* secondary body copy — AA on white */
  --ink-mute:       #6E6E73;   /* labels / meta — darker than Apple's for contrast */
  --line:           #E4E4E6;
  --line-2:         #D2D2D7;

  --accent:         #0071E3;   /* link / hover only */
  --lime:           #C6F24E;   /* CTA + Akzentmarker */
  --lime-bright:    #D2FF5E;
  --lime-deep:      #A9CE2E;   /* Lime auf Weiß, kontraststark */
  --lime-wash:      #F3FADF;   /* zarte Lime-Fläche */
  --on-lime:        #1D1D1F;

  --warn:           #9A6A12;   /* Platzhalter-Hinweise (nur Preview) */

  --night:          #101012;   /* dunkle Sektionen — echtes Schwarz, kein Navy */
  --night-raised:   #1B1B1E;
  --night-line:     #323235;
  --paper-on-night: #F5F5F7;
  --mute-on-night:  #9A9CA6;

  --focus:          #0071E3;

  /* Type scale — fluid */
  --step--2: clamp(0.72rem, 0.7rem + 0.08vw, 0.78rem);
  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.92rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step-1:  clamp(1.15rem, 1.05rem + 0.5vw, 1.42rem);
  --step-2:  clamp(1.4rem, 1.2rem + 1vw, 2rem);
  --step-3:  clamp(1.8rem, 1.45rem + 1.8vw, 2.8rem);
  --step-4:  clamp(2.2rem, 1.7rem + 2.6vw, 3.6rem);
  --step-5:  clamp(2.6rem, 1.9rem + 3.6vw, 4.6rem);
  --step-6:  clamp(3rem, 2rem + 5vw, 5.6rem);

  /* Space */
  --sp-2xs: 0.5rem;
  --sp-xs:  0.875rem;
  --sp-s:   1.25rem;
  --sp-m:   2rem;
  --sp-l:   3rem;
  --sp-xl:  clamp(3.5rem, 2.75rem + 3.75vw, 5.5rem);
  --sp-2xl: clamp(4.5rem, 3rem + 7.5vw, 8rem);

  --container: 76rem;
  --measure: 38rem;
  --radius: 8px;
  --radius-lg: 18px;
  /* distance from container content-edge to viewport edge */
  --edge: calc(max((100vw - var(--container)) / 2, 0px) + clamp(1.25rem, 5vw, 4rem));

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur: 0.5s;
}

/* ---------- Reset / base ------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
/* Anker-Ziele: scroll-margin-top addiert sich zum scroll-padding-top des
   Scrollers (html) – beide zusammen ergeben den Abstand zur fixierten
   Kopfzeile beim Sprung. Ein negativer Wert hier hätte diesen Abstand
   verkleinert statt vergrößert, wodurch die Eyebrow-Überschrift teils
   hinter der Kopfzeile verschwand (v.a. beim Sprung übers Mobile-Menü). */
#angebot, #reise, #erfolge, #faq, #gespraech { scroll-margin-top: 0.5rem; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: var(--step-0);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}

p { margin: 0 0 1.1em; max-width: var(--measure); }
figure { margin: 0; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
strong, b { font-weight: 600; }
::selection { background: var(--lime); color: var(--on-lime); }

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

.skip-link {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--ink); color: var(--paper);
  padding: 0.75rem 1.25rem; z-index: 300;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout helpers -------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}
.section { padding-block: var(--sp-xl); }
.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }
.section--grey { background: var(--paper-raised); }

/* 12-col grid */
.grid12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
}

.eyebrow {
  display: flex; align-items: baseline; gap: 0.7em;
  flex-wrap: wrap;
  font-family: "Geist";
  font-size: var(--step--2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  max-width: 52ch;
}
.eyebrow::before {
  content: "";
  width: 1.6rem; height: 1px;
  background: var(--ink);
  flex: none;
  transform: translateY(-0.25em);
}
.eyebrow[data-index]::after {
  content: attr(data-index);
  font-variant-numeric: tabular-nums;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

.lead {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 34rem;
}

.rule { height: 1px; background: var(--line); border: 0; margin: 0; transform-origin: left; }
.muted { color: var(--ink-mute); }

/* ---------- Buttons ------------------------------------------------ */
.btn {
  --bg: var(--lime);
  --fg: var(--on-lime);
  --bd: var(--lime);
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 1em 1.6em;
  background: var(--bg);
  color: var(--fg);
  font-family: "Geist";
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid var(--bd);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease),
              transform .2s var(--ease), color .2s var(--ease);
}
.btn:hover { background: var(--lime-bright); border-color: var(--lime-bright); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn__arrow { transition: transform .2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--ink {
  --bg: var(--ink); --fg: var(--paper); --bd: var(--ink);
}
.btn--ink:hover { background: #000; border-color: #000; }

.btn--ghost {
  --bg: transparent; --fg: var(--ink); --bd: var(--line-2);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn--on-night { --bg: var(--lime); --fg: var(--on-lime); --bd: var(--lime); }
.btn--ghost.btn--on-night { --bg: transparent; --fg: var(--paper-on-night); --bd: var(--night-line); }
.btn--ghost.btn--on-night:hover { background: var(--paper-on-night); color: var(--night); border-color: var(--paper-on-night); }

a.btn { color: var(--fg); }

.textlink {
  display: inline-flex; align-items: center; gap: 0.4em;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1.5px solid var(--line-2);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.textlink:hover { color: var(--accent); border-color: var(--accent); }
.textlink .a { transition: transform .2s var(--ease); }
.textlink:hover .a { transform: translateX(3px); }

/* ---------- Header ---------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header[data-scrolled="true"] { border-bottom-color: var(--line); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-m);
  min-height: 4.75rem;
}

.brand {
  display: inline-flex; align-items: center; gap: 0.75rem;
  text-decoration: none; color: var(--ink); white-space: nowrap;
}
/* Logo-Mark: exakte Vektor-Nachzeichnung der Wortmarke, fill="currentColor" */
.brand__mark {
  flex: none; height: 1.5rem; width: auto; aspect-ratio: 655.5 / 294;
  display: block; color: var(--ink);
  transition: opacity .2s var(--ease);
}
.brand:hover .brand__mark { opacity: 0.75; }
.brand__divider { flex: none; width: 1px; height: 1.9rem; background: var(--line-2); }
.brand__text { display: inline-flex; flex-direction: column; gap: 0.08em; line-height: 1.14; }
.brand__name {
  font-family: "Fraunces"; font-weight: 500;
  font-size: 1.06rem; letter-spacing: -0.01em;
}
.brand__role {
  font-family: "Geist"; font-weight: 600;
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.site-footer .brand__mark { color: var(--paper-on-night); }
.site-footer .brand__divider { background: var(--night-line); }
.site-footer .brand__role { color: var(--mute-on-night); }
@media (max-width: 22rem) {
  .brand__role { display: none; }
}

.nav { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 2rem); }
.nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding-block: 0.4rem;
  transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform .28s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav .btn { margin-left: 0.5rem; padding: 0.7em 1.2em; }

.nav-toggle {
  display: none;
  align-items: center; gap: 0.55rem;
  background: none; border: 1.5px solid var(--line-2);
  border-radius: 999px;
  padding: 0.5rem 0.9rem 0.5rem 1rem;
  font: 600 0.78rem/1 "Geist"; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle__bars { position: relative; width: 16px; height: 10px; flex: none; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars::after { top: 8px; }
[data-menu-open="true"] .nav-toggle__bars::before { top: 4px; transform: rotate(45deg); }
[data-menu-open="true"] .nav-toggle__bars::after { top: 4px; transform: rotate(-45deg); }

@media (max-width: 60rem) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 4.75rem 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper-raised);
    border-bottom: 1px solid var(--line);
    padding: var(--sp-xs) clamp(1.25rem, 5vw, 4rem) var(--sp-l);
    transform: translateY(-115%);
    transition: transform .42s var(--ease);
    box-shadow: 0 30px 50px -30px rgba(20,22,27,.3);
    max-height: calc(100dvh - 4.75rem);
    overflow-y: auto;
  }
  [data-menu-open="true"] .nav { transform: translateY(0); }
  .nav { min-height: calc(100dvh - 4.75rem); }
  .nav a { padding: 1.1rem 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; color: var(--ink); }
  .nav a::after { display: none; }
  .nav a[aria-current="page"] { color: var(--ink); }
  .nav a[aria-current="page"]::before { content: "→ "; color: var(--ink-mute); }
  .nav .btn { margin: var(--sp-s) 0 0; justify-content: center; padding: 1em 1.6em; }
}

/* ---------- Scroll progress ----------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  z-index: 300;
}

/* ---------- In-page sub-nav (Startseite) --------------------- */
.subnav {
  position: sticky; top: 4.75rem; z-index: 180;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.subnav__inner { display: flex; align-items: center; gap: var(--sp-m); min-height: 3.25rem; }
.subnav__label {
  flex: none; font-family: "Geist"; font-weight: 600; font-size: var(--step--2);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute);
}
.subnav__links {
  display: flex; align-items: center; gap: clamp(1rem, 2.6vw, 2.1rem);
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.subnav__links::-webkit-scrollbar { display: none; }
.subnav__links a {
  display: block; padding: 0.8rem 0; white-space: nowrap;
  font-size: 0.85rem; font-weight: 500; color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.subnav__links a:hover { color: var(--ink); }
.subnav__links a[aria-current="true"] { color: var(--ink); font-weight: 600; border-color: var(--ink); }
@media (max-width: 48rem) {
  .subnav__inner {
    gap: 0;
    -webkit-mask-image: linear-gradient(to right, #000 82%, transparent);
            mask-image: linear-gradient(to right, #000 82%, transparent);
  }
  .subnav__label { display: none; }
  .subnav__links a { font-size: 0.82rem; }
}
html:has(.subnav) { scroll-padding-top: 8.75rem; }

/* ---------- Hero --------------------------------------------- */
.hero { position: relative; padding-top: var(--sp-m); padding-bottom: var(--sp-l); }
.hero__grid { align-items: stretch; row-gap: var(--sp-m); }
/* Mobile (gestapelt): Reihenfolge folgt einfach der Dokumentreihenfolge –
   Überschrift/Intro, dann Foto, dann die Nutzen-Punkte + CTA. Auf Desktop
   teilen sich Intro und Punkte die linke Spalte (übereinander), das Foto
   spannt als eigene rechte Spalte über beide Zeilen. */
.hero__intro, .hero__points { grid-column: 1 / -1; }
.hero__media {
  grid-column: 1 / -1;
  position: relative;
  background: var(--line); overflow: hidden;
  aspect-ratio: 3 / 4;
  min-height: 20rem;                        /* Absicherung: Box darf nie auf
                                                0 kollabieren, falls aspect-ratio
                                                im Viewer nicht greift – das
                                                Bild selbst ist position:absolute
                                                und trägt sonst nichts zur Höhe bei */
  max-height: 26rem;                        /* keep hero shallow on mobile */
  margin-inline: calc(-1 * var(--edge));    /* full-bleed on mobile */
}

@media (min-width: 60rem) {
  .hero { padding-bottom: 0; }
  .hero__intro { grid-column: 1 / 7; grid-row: 1; padding-top: var(--sp-l); align-self: end; }
  .hero__points { grid-column: 1 / 7; grid-row: 2; padding-bottom: var(--sp-l); }
  .hero__media {
    grid-column: 7 / -1;
    grid-row: 1 / 3;
    align-self: stretch;
    aspect-ratio: auto;
    max-height: none;
    min-height: 28rem;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    margin-inline: 0 calc(-1 * var(--edge));  /* bleed right only */
  }
}

.hero h1 {
  font-size: clamp(2.05rem, 1.5rem + 2vw, 3.3rem);
  font-weight: 400;
  line-height: 1.07;
  margin: var(--sp-s) 0 var(--sp-m);
  max-width: 17ch;
}
.hero__sub { font-size: var(--step-1); line-height: 1.5; color: var(--ink-soft); max-width: 32rem; margin-bottom: var(--sp-m); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-s); align-items: center; }

.hero__checks { display: grid; gap: 0.7rem; margin: 0 0 var(--sp-m); max-width: 33rem; }
.hero__checks li { display: flex; align-items: flex-start; gap: 0.7rem; }
.hero__checks li span:last-child { font-size: var(--step-0); color: var(--ink-soft); line-height: 1.45; }
.hero__checks .check-ico {
  width: 1.3rem; height: 1.3rem; flex: none; margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--lime-deep) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D1D1F' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center/0.82rem no-repeat;
}

.hero__media img, .hero__media .ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 12%;
}
.hero__caption {
  position: absolute; left: 0; right: 0; bottom: 0; margin: 0;
  padding: var(--sp-m) var(--sp-m) var(--sp-s);
  padding-top: 3rem;
  background: linear-gradient(to top, rgba(15,16,20,.72), transparent);
  color: var(--paper-on-night);
  font-size: var(--step--1); font-weight: 500; letter-spacing: 0.01em;
}

/* ---------- Trust bar --------------------------------------- */
.trust-bar { border-block: 1px solid var(--line); background: var(--paper-raised); }
.trust-bar ul {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  padding-block: 0.95rem;
  font-size: var(--step--2);
  letter-spacing: 0.13em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-soft);
}
.trust-bar li { display: flex; align-items: center; gap: 1.5rem; }
.trust-bar li + li::before { content: ""; width: 3px; height: 3px; background: var(--line-2); border-radius: 50%; flex: none; }

/* ---------- Logo-Marquee (Unternehmen, endlos laufend) ------ */
.marquee { background: var(--paper); padding-block: var(--sp-l); }
.marquee__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex; align-items: center; width: max-content;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  animation: marquee-scroll 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track li { flex: none; display: flex; align-items: center; height: 3.4rem; }
.marquee__track img {
  height: 100%; width: auto; max-width: 12rem; object-fit: contain;
  filter: grayscale(1); opacity: 0.55;
  transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.marquee__track li:hover img { filter: none; opacity: 1; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee__viewport { overflow-x: auto; }
}
@media (max-width: 43rem) {
  .marquee__track img { max-width: 8.5rem; }
  .marquee__track { gap: 2rem; height: 2.6rem; }
  .marquee__track li { height: 2.6rem; }
}

/* ---------- Section head (centered, Apple-clean) ----------- */
.section-head { max-width: 44rem; margin: 0 auto var(--sp-l); text-align: center; }
.section-head .eyebrow { justify-content: center; margin-inline: auto; max-width: none; }
.section-head .eyebrow::before { display: none; }
.section-head h2 { font-size: var(--step-3); margin: var(--sp-s) 0 0; }
.section-head .lead { margin: var(--sp-s) auto 0; }
.section-head--wide { max-width: none; }
.section-tag { display: block; width: fit-content; margin: 0.4rem auto 0; font-size: var(--step-1); font-weight: 700; color: var(--lime-deep); text-align: center; }
.hl { color: var(--lime-deep); }
.section-cta { display: flex; justify-content: center; margin-top: var(--sp-l); }
/* left-aligned variant for the dark split section */
.dark .section-head { text-align: left; margin-inline: 0; }
.dark .section-head .eyebrow { justify-content: flex-start; }

/* ---------- Pain vertiefen — Problem/Lösung-Karten ---------- */
.pains { display: grid; gap: var(--sp-m); }
@media (min-width: 52rem) { .pains { grid-template-columns: repeat(3, 1fr); } }
.pain {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--sp-l) var(--sp-m) var(--sp-m);
  display: flex; flex-direction: column; gap: 0.65rem;
  transition: border-color .3s, box-shadow .3s var(--ease), transform .3s var(--ease);
}
.pain:hover { border-color: var(--line-2); box-shadow: 0 18px 44px -22px rgba(20,22,27,.16); transform: translateY(-3px); }
.pain h3 { margin: 0; font-family: "Fraunces"; font-weight: 400; font-size: var(--step-1); line-height: 1.2; }
.pain > p { margin: 0; font-size: var(--step-0); line-height: 1.5; color: var(--ink-soft); }
.pain__answer {
  margin-top: 0.2rem !important; padding-left: 0.9rem;
  border-left: 2px solid var(--lime-deep);
  font-style: italic; color: var(--ink) !important;
}

/* ---------- Mein Ansatz — 4D-Framework, vertieft -------------- */
.pillars { display: grid; gap: var(--sp-m); margin-top: var(--sp-l); }
@media (min-width: 52rem) { .pillars { grid-template-columns: repeat(2, 1fr); } }
.pillar {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--sp-l);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.pillar__head { display: flex; align-items: center; gap: 0.85rem; }
.pillar__ico {
  width: 2.4rem; height: 2.4rem; padding: 0.5rem; flex: none;
  display: grid; place-items: center;
  border-radius: 10px; background: var(--lime); color: var(--on-lime);
}
.pillar h3 { margin: 0; font-family: "Fraunces"; font-weight: 400; font-size: var(--step-1); }
.pillar p { margin: 0; font-size: var(--step-0); line-height: 1.55; color: var(--ink-soft); }
.pillars__closing {
  max-width: 44rem; margin: var(--sp-l) auto 0; text-align: center;
  font-size: var(--step-0); line-height: 1.55; color: var(--ink-soft);
}

/* ---------- Nutzen — Karten mit Icon ----------------------- */
.gains { display: grid; gap: var(--sp-m); }
@media (min-width: 52rem) { .gains { grid-template-columns: repeat(3, 1fr); } }
.gain {
  position: relative; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--sp-l) var(--sp-m) var(--sp-m);
  display: flex; flex-direction: column; gap: 0.65rem;
  transition: border-color .3s, box-shadow .3s var(--ease), transform .3s var(--ease);
}
.gain:hover { border-color: var(--line-2); box-shadow: 0 18px 44px -22px rgba(20,22,27,.16); transform: translateY(-3px); }
.gain__head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.2rem; }
.gain__ico {
  width: 2.5rem; height: 2.5rem; padding: 0.55rem; flex: none;
  display: grid; place-items: center;
  border-radius: 12px; background: var(--lime); color: var(--on-lime);
}
.gain__n {
  position: absolute; top: 0.85rem; right: 1.15rem;
  font-family: "Fraunces"; font-size: 2.1rem; font-weight: 400;
  color: var(--line-2); line-height: 1; pointer-events: none;
}
.gain__title { margin: 0; font-family: "Fraunces"; font-weight: 400; font-size: var(--step-2); line-height: 1.15; }
.gain__tag { margin: 0; font-size: var(--step-0); font-weight: 700; color: var(--lime-deep); }
.gain__body { margin: 0 0 0.3rem; font-size: var(--step-0); line-height: 1.5; color: var(--ink-soft); }
.gain__pill {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.8rem 0.4rem 0.6rem; border-radius: 999px;
  background: var(--lime-wash); color: var(--ink);
  font-size: var(--step--2); font-weight: 600;
}
.gain__pill .ico { width: 0.9rem; height: 0.9rem; color: var(--lime-deep); }

/* ---------- Full-bleed detail image (quiet chapter break) -- */
.detail-band { margin: 0; width: 100%; overflow: hidden; background: var(--paper-raised); }
.detail-band img {
  width: 100%; height: auto; display: block;
  max-height: 22rem; object-fit: cover; object-position: 50% 42%;
}
@media (max-width: 43rem) { .detail-band img { max-height: 12rem; } }

/* ---------- Stat band (earned facts) ----------------------- */
.stats {
  display: grid; gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--line);
  border-block: 1px solid var(--line);
}
@media (min-width: 64rem) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--paper); padding: clamp(1.5rem, 1rem + 3vw, 3rem) clamp(1.1rem, 0.8rem + 1.5vw, 2rem); }
.stat--hl { background: var(--paper-raised); }
.stat__value {
  font-family: "Fraunces"; font-weight: 400;
  font-size: var(--step-3); line-height: 0.95;
  letter-spacing: -0.02em;
  display: block;
}
.stat__label {
  margin-top: var(--sp-s);
  font-size: var(--step--1); color: var(--ink-soft);
  max-width: 15rem;
}
.stat--hl .stat__value { color: var(--ink); }

/* ---------- Icons ----------------------------------------- */
.ico { width: 100%; height: 100%; display: block; }
.icon-chip {
  width: 2.75rem; height: 2.75rem; flex: none;
  display: grid; place-items: center; padding: 0.6rem;
  border-radius: 12px; background: var(--lime); color: var(--on-lime);
}

/* ---------- Offer cards (icon-led) ------------------------ */
.offers { display: grid; gap: var(--sp-m); position: relative; }
@media (min-width: 56rem) { .offers { grid-template-columns: 1fr 1fr; } }
.offer {
  display: flex; flex-direction: column; gap: var(--sp-s);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-l);
  transition: border-color .3s, box-shadow .3s var(--ease), transform .3s var(--ease);
}
.offer:hover { border-color: var(--line-2); box-shadow: 0 12px 40px -18px rgba(0,0,0,.12); transform: translateY(-3px); }
.offer__head { display: flex; align-items: center; gap: 0.9rem; margin-top: 0.3rem; }
.offer__ico {
  width: 2.6rem; height: 2.6rem; padding: 0.5rem; flex: none;
  display: grid; place-items: center;
  border-radius: 12px; background: var(--lime); color: var(--on-lime);
}
.offer__kicker {
  align-self: flex-start;
  font-size: var(--step--2); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
  color: var(--ink); background: var(--lime-wash);
  padding: 0.32rem 0.7rem; border-radius: 999px;
}
.offer h3 { margin: 0; font-size: var(--step-2); font-weight: 400; }
.offers__or {
  display: none; position: absolute; top: 50%; left: 50%;
  /* !important: [data-stagger] > * setzt transform für den Reveal zurück
     (siehe unten) – die Zentrierung hier muss das überstimmen. */
  transform: translate(-50%, -50%) !important;
  width: 3.6rem; height: 3.6rem; z-index: 1;
  align-items: center; justify-content: center;
  border-radius: 50%; background: var(--lime); border: 4px solid var(--paper);
  box-shadow: 0 6px 20px -6px rgba(0,0,0,.25);
  font-family: "Geist"; font-size: var(--step--1); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--on-lime);
}
@media (min-width: 56rem) { .offers__or { display: flex; } }
.offer__who { font-size: var(--step-0); color: var(--ink-soft); margin: 0; }
.offer ul { display: grid; gap: 0.6rem; padding-top: var(--sp-s); border-top: 1px solid var(--line); }
.offer ul li { position: relative; padding-left: 1.5rem; font-size: var(--step--1); color: var(--ink-soft); }
.offer ul li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 5px; height: 5px; border-radius: 50%; background: var(--ink); }
.offer .textlink { align-self: flex-start; margin-top: auto; padding-top: var(--sp-s); }

/* ---------- Timeline (der Weg) ---------------------------- */
.tl { display: grid; gap: var(--sp-m); position: relative; }
@media (min-width: 52rem) {
  .tl { grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem,3vw,2.5rem); }
  .tl::before {
    content: ""; position: absolute; left: 1.35rem; right: 1.35rem; top: 1.35rem; height: 2px;
    background: linear-gradient(to right, var(--line-2), var(--line-2) 66%, var(--lime-deep));
  }
}
.tl__step {
  display: grid; gap: 0.35rem; position: relative;
  padding: 3.9rem 0 0; align-content: start;
}
@media (max-width: 52rem) { .tl__step { padding: 0 0 0 3.9rem; min-height: 2.8rem; } }
.tl__ico {
  position: absolute; top: 0; left: 0;
  width: 2.7rem; height: 2.7rem; padding: 0.62rem;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--lime); color: var(--on-lime);
  border: 2px solid var(--lime);
}
.tl__year { font-family: "Fraunces"; font-size: var(--step-2); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }
.tl__title { font-size: var(--step--2); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: var(--ink-mute); }
.tl__text { font-size: var(--step--1); color: var(--ink-soft); margin-top: 0.25rem; max-width: 20rem; }

/* ---------- Founder strip --------------------------------- */
.founder { align-items: start; }
.founder__media { grid-column: 1 / -1; }
.founder__body { grid-column: 1 / -1; }
@media (min-width: 56rem) {
  .founder__media { grid-column: 1 / 6; position: sticky; top: 6rem; }
  .founder__body { grid-column: 7 / -1; }
}
.founder__media figure {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 4.5; background: var(--line);
}
.founder__media img, .founder__media .ph { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
@media (max-width: 56rem) { .founder__media figure { max-width: 22rem; } }
.founder__body h2 { font-size: var(--step-3); margin: var(--sp-s) 0 var(--sp-s); font-weight: 400; }
.founder__body p { color: var(--ink-soft); }

/* ---------- Cases (proof) — Tabs mit Detail-Panel ---------- */
.case-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: var(--sp-l) 0; }
.case-tab {
  font-family: "Geist"; font-size: var(--step--1); font-weight: 600;
  padding: 0.65rem 1.15rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink-soft); cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.case-tab:hover { border-color: var(--line-2); color: var(--ink); }
.case-tab[aria-selected="true"] { border-color: var(--lime-deep); background: var(--lime-wash); color: var(--ink); }

.case-panel[hidden] { display: none; }
/* Mobile (gestapelt): erst Firma/Kennzahl, dann das Foto der Person, dann die
   Punkte – auf Desktop bleiben Firma+Punkte in der linken Spalte, Foto/Zitat
   rechts, wie zuvor. Drei eigene Grid-Areas statt nur zwei, damit sich Foto
   und Textblock auf Mobile unabhängig voneinander einsortieren lassen. */
.case-panel__grid {
  display: grid; gap: var(--sp-l);
  grid-template-areas: "header" "media" "body";
}
.case-panel__header { grid-area: header; }
.case-panel__header .case-panel__stat { margin-bottom: 0; }  /* Abstand kommt jetzt vom Grid-Gap */
.case-panel__media { grid-area: media; }
.case-panel__body { grid-area: body; }
@media (min-width: 60rem) {
  .case-panel__grid {
    grid-template-columns: 1.3fr 1fr;
    grid-template-areas: "header media" "body media";
    align-items: start;
  }
}

.case-panel__co {
  font-family: "Fraunces"; font-size: var(--step-1); font-weight: 400;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; margin: 0 0 var(--sp-s);
}
.case-panel__co-logo { height: 1.3rem; width: auto; max-width: 5.5rem; object-fit: contain; }
.case-panel__tag {
  font-family: "Geist"; font-size: var(--step--2); text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--ink-mute); font-weight: 600;
}
.case-panel__stat {
  font-family: "Fraunces"; font-weight: 400; line-height: 1.15; margin: 0 0 var(--sp-m);
  font-size: clamp(1.15rem, 0.75rem + 2vw, 1.7rem);
  white-space: nowrap; text-align: left; width: 100%;
}
.case-panel__stat .hl { color: var(--lime-deep); }

.case-panel__row { display: grid; grid-template-columns: 2.4rem 1fr; gap: var(--sp-s); padding: var(--sp-s) 0; border-top: 1px solid var(--line); }
.case-panel__row:first-of-type { margin-top: var(--sp-s); }
.case-panel__ico {
  width: 2.4rem; height: 2.4rem; padding: 0.5rem; flex: none;
  display: grid; place-items: center; border-radius: 10px;
  background: var(--lime); color: var(--on-lime);
}
.case-panel__row h3 { margin: 0 0 0.3rem; font-family: "Geist"; font-size: var(--step-0); font-weight: 600; }
.case-panel__row p { margin: 0; color: var(--ink-soft); }

.case-panel__media { display: grid; gap: var(--sp-m); }
.case-panel__avatar {
  aspect-ratio: 4 / 3; border-radius: var(--radius-lg);
  background: var(--night); color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-family: "Fraunces"; font-size: var(--step-4); letter-spacing: 0.02em;
}
.case-panel__logo {
  aspect-ratio: 4 / 3; border-radius: var(--radius-lg);
  background: var(--paper); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; padding: var(--sp-l);
}
.case-panel__logo img { max-width: 78%; max-height: 62%; width: auto; height: auto; object-fit: contain; }
.case-panel__photo { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: var(--line); }
.case-panel__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.case-panel__photo-caption {
  position: absolute; left: 0; right: 0; bottom: 0; margin: 0;
  padding: var(--sp-m) var(--sp-m) var(--sp-s); padding-top: 3.5rem;
  background: linear-gradient(to top, rgba(15,16,20,.82) 15%, transparent);
  display: flex; flex-direction: column; gap: 0.3rem;
}
.case-panel__photo-name {
  font-family: "Fraunces"; font-weight: 600; font-size: var(--step-1);
  line-height: 1.2; color: var(--paper-on-night);
}
.case-panel__photo-role {
  font-family: "Geist"; font-weight: 600; font-size: var(--step--2);
  text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.4;
  color: var(--mute-on-night);
}
.case-panel__quotebox { background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-m); }
.case-panel__quote { margin: 0; font-family: "Fraunces"; font-size: var(--step-0); line-height: 1.5; color: var(--ink); }
.case-panel__quote .mark { color: var(--lime-deep); font-size: 1.4em; line-height: 0; }
.case-panel__cite { display: block; margin-top: var(--sp-s); font-style: normal; font-size: var(--step--1); font-weight: 700; color: var(--lime-deep); }
.case-panel__cite span { display: block; font-weight: 400; color: var(--ink-mute); margin-top: 0.15rem; }

/* ---------- Dark section (with optional image) ----------- */
.dark { background: var(--night); color: var(--paper-on-night); }
.dark h2, .dark h3 { color: var(--paper-on-night); }
.dark .eyebrow { color: var(--mute-on-night); }
.dark .eyebrow::before { background: var(--mute-on-night); }
.dark .eyebrow[data-index]::after { color: var(--mute-on-night); }
.dark p { color: color-mix(in srgb, var(--paper-on-night) 82%, transparent); }
.dark .rule { background: var(--night-line); }

.dark--split { align-items: center; }
.dark--split .dark__body { grid-column: 1 / -1; }
.dark--split .dark__media { grid-column: 1 / -1; }
.dark__media {
  background: var(--night-raised); overflow: hidden; position: relative;
  aspect-ratio: 4 / 3; border-radius: var(--radius-lg);
  margin-inline: calc(-1 * var(--edge)); margin-top: var(--sp-m);
}
.dark__media img, .dark__media .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
@media (min-width: 60rem) {
  .dark--split .dark__body { grid-column: 1 / 7; padding-block: var(--sp-l); }
  .dark--split .dark__media {
    grid-column: 8 / -1; align-self: center;
    margin: 0 calc(-1 * var(--edge)) 0 0;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }
}

.pain-list { margin-top: var(--sp-l); border-top: 1px solid var(--night-line); }
.pain-list li {
  position: relative; padding: var(--sp-m) 0 var(--sp-m) 2.5rem;
  border-bottom: 1px solid var(--night-line);
  font-size: var(--step-1); line-height: 1.45;
  color: color-mix(in srgb, var(--paper-on-night) 88%, transparent);
}
.pain-list li::before { content: ""; position: absolute; left: 0; top: calc(var(--sp-m) + 0.6em); width: 1.1rem; height: 1px; background: var(--mute-on-night); }
.pain-list strong { color: var(--paper-on-night); font-weight: 600; }

/* ---------- Pull quote ---------------------------------- */
.pullquote { padding-block: var(--sp-2xl); }
.pullquote blockquote {
  margin: 0; max-width: 32ch;
  font-family: "Fraunces"; font-weight: 380;
  font-size: var(--step-4); line-height: 1.12;
}
.pullquote .mark { color: var(--ink-mute); }
.pullquote cite { display: block; margin-top: var(--sp-m); font-family: "Geist"; font-style: normal; font-size: var(--step--1); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); }

/* ---------- Full-width image band ---------------------- */
.band {
  position: relative; overflow: hidden;
  min-height: clamp(18rem, 42vw, 32rem);
  display: grid; align-items: end;
  background: var(--night);
}
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band__overlay {
  position: relative;
  padding: var(--sp-xl) 0;
  color: var(--paper-on-night);
  background: linear-gradient(to top, rgba(15,17,21,.78), rgba(15,17,21,.15) 70%, transparent);
}
.band__overlay p { color: var(--paper-on-night); font-family: "Fraunces"; font-size: var(--step-2); max-width: 24ch; margin: 0; }

/* ---------- Framework grid ----------------------------- */
.framework { display: grid; gap: var(--sp-m); }
@media (min-width: 46rem) { .framework { grid-template-columns: repeat(4, 1fr); } }
.framework > div {
  padding: var(--sp-m); display: flex; flex-direction: column; gap: 0.6rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.framework__ico {
  width: 2.5rem; height: 2.5rem; padding: 0.5rem; margin-bottom: 0.2rem;
  display: grid; place-items: center;
  border-radius: 12px; background: var(--lime); color: var(--on-lime);
}
.framework h3 { font-family: "Geist"; font-weight: 600; font-size: var(--step-0); letter-spacing: 0.06em; text-transform: uppercase; }
.framework p { font-size: var(--step--1); color: var(--ink-soft); margin: 0; }

/* ---------- Steps -------------------------------------- */
.steps { counter-reset: step; border-top: 1px solid var(--line); }
.steps li {
  counter-increment: step; position: relative;
  padding: var(--sp-m) 0 var(--sp-m) 3.5rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 46rem) { .steps li { padding-left: 8rem; } }
.steps__ico {
  position: absolute; left: 0; top: calc(var(--sp-m) + 0.1rem);
  width: 2.4rem; height: 2.4rem; padding: 0.5rem;
  display: grid; place-items: center;
  border-radius: 10px; background: var(--lime); color: var(--on-lime);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: "Geist"; font-weight: 600; font-size: var(--step--2);
  letter-spacing: 0.1em; color: var(--ink-mute);
  display: block; margin-bottom: 0.35rem;
}
@media (min-width: 46rem) {
  .steps li::before { position: absolute; left: 3.4rem; top: calc(var(--sp-m) + 0.6rem); margin: 0; }
}
.steps h3 { font-family: "Fraunces"; font-weight: 400; font-size: var(--step-1); margin-bottom: 0.3rem; }
.steps p { margin: 0; color: var(--ink-soft); max-width: 44rem; }

/* ---------- Prose / split ----------------------------- */
.split { align-items: start; }
.split__media { grid-column: 1 / -1; }
.split__body { grid-column: 1 / -1; }
@media (min-width: 60rem) {
  .split__media { grid-column: 1 / 6; position: sticky; top: 6rem; }
  .split__body { grid-column: 7 / -1; }
}
.split__media figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; background: var(--line); }
.split__media img, .split__media .ph { width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (max-width: 60rem) { .split__media figure { max-width: 22rem; } }

/* ---------- Über-mich Sidebar (unter dem Foto) --------- */
.about-sidebar { width: 100%; margin-top: var(--sp-m); max-width: 22rem; }
@media (min-width: 60rem) { .about-sidebar { max-width: none; } }
.about-sidebar__label {
  font-family: "Geist"; font-weight: 600; font-size: var(--step--2);
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-mute);
  margin: 0 0 0.7rem;
}
.about-card {
  width: 100%; box-sizing: border-box;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 24px 48px -30px rgba(20,22,27,.25);
}
.about-ext { display: inline-block; margin-left: 0.35em; color: var(--ink-mute); transition: transform .2s var(--ease), color .2s; }

.about-badge {
  display: flex; align-items: center; gap: 0.7rem;
  padding: var(--sp-m); border-bottom: 1px solid var(--line);
  background: var(--lime-wash);
  text-decoration: none; color: var(--ink); transition: background .2s;
}
.about-badge:hover { background: var(--lime); }
.about-badge:hover .about-ext { transform: translate(2px, -2px); color: var(--ink); }
.about-badge .about-badge__logo { flex: none; width: auto; height: 1.5rem; max-width: 6rem; object-fit: contain; }
.about-badge__text { font-size: var(--step--1); font-weight: 600; }

.about-events { padding: var(--sp-m); border-bottom: 1px solid var(--line); }
.about-events h4 { font-family: "Geist"; font-weight: 700; font-size: var(--step--2); text-transform: uppercase; letter-spacing: 0.1em; color: var(--lime-deep); margin: 0 0 var(--sp-s); }
.about-events ul { display: grid; gap: 0.6rem; }
.about-events li + li { padding-top: 0.6rem; border-top: 1px solid var(--line); }
.about-events a { display: grid; grid-template-columns: 1fr auto 1.1rem; align-items: center; column-gap: 0.6rem; text-decoration: none; color: var(--ink); font-size: var(--step--1); transition: color .2s; }
.about-events a:hover { color: var(--lime-deep); }
.about-events a:hover .about-ext { transform: translate(2px, -2px); color: var(--lime-deep); }
.about-events time { font-size: var(--step--2); color: var(--ink-mute); white-space: nowrap; }

.about-link {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: var(--step--1); font-weight: 600; color: var(--ink);
  text-decoration: none; padding: 0.85rem var(--sp-m); border-bottom: 1px solid var(--line);
  transition: color .2s, background .2s;
}
.about-link:last-child { border-bottom: 0; }
.about-link:hover { color: var(--lime-deep); background: var(--paper-raised); }
.about-link:hover .about-ext { transform: translate(2px, -2px); color: var(--lime-deep); }
.about-link__ico {
  flex: none; width: 1.9rem; height: 1.9rem; border-radius: 50%;
  display: grid; place-items: center; transition: background .2s, color .2s;
}
.about-link__ico svg { width: 1rem; height: 1rem; }
.about-link__ico--podcast { background: var(--lime-wash); color: var(--lime-deep); }
.about-link:hover .about-link__ico--podcast { background: var(--lime); color: var(--on-lime); }
.about-link__ico--linkedin {
  background: #0A66C2; color: #fff; font: 700 0.7rem/1 "Geist", sans-serif;
  border-radius: 6px; letter-spacing: -0.02em;
}

.prose > * + * { margin-top: 1.2em; }
.prose p { max-width: 40rem; color: var(--ink-soft); }
.prose p:first-of-type { color: var(--ink); font-size: var(--step-1); }
.prose h2 { font-size: var(--step-3); font-weight: 400; margin-bottom: 0.5em; }
.prose h3 { font-family: "Geist"; font-weight: 600; font-size: var(--step-1); margin-top: 1.6em; }

.legal h2 { font-family: "Geist"; font-weight: 700; font-size: var(--step-1); margin-top: 2em; letter-spacing: 0; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: var(--step-0); margin-top: 1.4em; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { list-style: none; display: grid; gap: 0.5em; margin-top: 1em; max-width: 40rem; }
.legal li { position: relative; padding-left: 1.4rem; }
.legal li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 5px; height: 5px; border-radius: 50%; background: var(--ink-mute); }
.legal a { word-break: break-word; }

/* ---------- Page intro (subpages) --------------------- */
.page-intro { padding-top: var(--sp-m); padding-bottom: var(--sp-l); }
.page-intro__body { grid-column: 1 / -1; }
.page-intro__media { grid-column: 1 / -1; }
@media (min-width: 60rem) {
  .page-intro--split .page-intro__body { grid-column: 1 / 7; align-self: center; }
  .page-intro--split .page-intro__media { grid-column: 8 / -1; align-self: center; }
}
.page-intro h1 { font-size: var(--step-3); font-weight: 400; line-height: 1.06; max-width: 20ch; margin-bottom: var(--sp-m); }
.page-intro .eyebrow { margin-bottom: var(--sp-s); }
.page-intro .lead { max-width: 40rem; }
.page-intro__media figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; background: var(--line); }
.page-intro__media img, .page-intro__media .ph { width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (max-width: 60rem) { .page-intro__media figure { margin-top: var(--sp-m); max-width: 22rem; } }

.benefits { display: grid; gap: 0.8rem; margin-top: var(--sp-l); }
.benefits li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); max-width: 42rem; }
.benefits li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }

/* ---------- Contact ---------------------------------- */
.contact { align-items: start; }
.contact__aside { grid-column: 1 / -1; }
.contact__main { grid-column: 1 / -1; }
@media (min-width: 62rem) {
  .contact__aside { grid-column: 1 / 5; }
  .contact__main { grid-column: 6 / -1; }
}
.contact-detail { border-top: 1px solid var(--line); }
.contact-detail div { padding-block: var(--sp-s); border-bottom: 1px solid var(--line); }
.contact-detail dt { font-size: var(--step--2); text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mute); font-weight: 600; }
.contact-detail dd { margin: 0.35rem 0 0; font-size: var(--step-1); }

.cal-embed { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-raised); display: flex; flex-direction: column; justify-content: center; min-height: 30rem; overflow: hidden; }
.cal-consent { padding: clamp(1.75rem, 4vw, 3rem); max-width: 34rem; }
.cal-consent h3 { font-family: "Fraunces"; font-weight: 400; font-size: var(--step-2); margin-bottom: 0.8rem; }
.cal-consent p { font-size: var(--step--1); color: var(--ink-soft); line-height: 1.6; }
.cal-embed:has(.cal-embed__mount:not(:empty)) { min-height: 0; justify-content: flex-start; }
.cal-embed__mount { width: 100%; }
.cal-embed__mount:not(:empty) { min-height: 34rem; padding: 0.4rem; }

/* ---------- Passt / Passt nicht (ICP-Selbstselektion) ------- */
.fit { display: grid; gap: var(--sp-m); }
@media (min-width: 46rem) { .fit { grid-template-columns: 1fr 1fr; } }
.fit__col {
  position: relative; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--sp-l);
}
.fit__col--yes { border-color: var(--lime-deep); background: var(--lime-wash); }
.fit__col--yes::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--lime-deep);
}
.fit__col--no { background: var(--paper-raised); }
.fit__col h3 {
  font-family: "Geist"; font-weight: 700; font-size: var(--step--1);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--sp-s);
  display: flex; align-items: center; gap: 0.55rem;
}
.fit__col h3 .m { width: 1.5rem; height: 1.5rem; flex: none; border-radius: 50%; }
.fit__col--yes h3 .m {
  background: var(--lime-deep) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D1D1F' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center/0.95rem no-repeat;
}
.fit__col--no h3 .m {
  background: var(--line-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E6E73' stroke-width='3.5' stroke-linecap='round'%3E%3Cpath d='M6 12h12'/%3E%3C/svg%3E") center/0.9rem no-repeat;
}
.fit__col ul { display: grid; gap: 0.7rem; }
.fit__col li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); font-size: var(--step-0); }
.fit__col--yes li { color: var(--ink); }
.fit__col li::before {
  content: ""; position: absolute; left: 0; top: 0.34em;
  width: 0.95rem; height: 0.95rem; border-radius: 50%;
  background: var(--lime-deep) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D1D1F' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center/0.62rem no-repeat;
}
.fit__col--no li::before {
  background: var(--line-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E6E73' stroke-width='3.5' stroke-linecap='round'%3E%3Cpath d='M6 12h12'/%3E%3C/svg%3E") center/0.6rem no-repeat;
}

/* ---------- FAQ (Einwand-Behandlung) ----------------------- */
.faq { max-width: 46rem; margin-inline: auto; display: grid; gap: 0.7rem; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--paper); overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq details:hover { border-color: var(--line-2); }
.faq details[open] {
  border-color: var(--lime-deep);
  box-shadow: 0 20px 44px -30px rgba(20,22,27,.22);
}
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: var(--sp-m);
  padding: var(--sp-m) clamp(1.15rem, 1rem + 0.8vw, 1.6rem);
  font-family: "Fraunces"; font-size: var(--step-1); font-weight: 400; line-height: 1.3;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq__toggle {
  flex: none; margin-left: auto; width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--paper-raised); display: grid; place-items: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.faq__toggle::after {
  content: ""; width: 0.55rem; height: 0.55rem;
  border-right: 1.5px solid var(--ink-mute); border-bottom: 1.5px solid var(--ink-mute);
  transform: rotate(45deg); transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.faq details[open] .faq__toggle { background: var(--lime); }
.faq details[open] .faq__toggle::after { transform: rotate(-135deg); border-color: var(--on-lime); }
.faq summary:hover .faq__toggle { background: var(--lime-wash); }
.faq summary:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 3px; }
.faq__a { padding: 0 clamp(1.15rem, 1rem + 0.8vw, 1.6rem) var(--sp-m) calc(2.1rem + clamp(1.15rem, 1rem + 0.8vw, 1.6rem) + var(--sp-m)); margin-top: -0.4rem; }
.faq__a p { margin: 0 0 0.8em; color: var(--ink-soft); max-width: 42rem; }
.faq__a p:last-child { margin-bottom: 0; }
@media (max-width: 30rem) {
  .faq__a { padding-left: clamp(1.15rem, 1rem + 0.8vw, 1.6rem); }
}

/* ---------- Verknappung (einmal, dezent) ------------------- */
.scarcity {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: var(--step--1); color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.6rem 1.1rem; width: fit-content; margin: var(--sp-m) auto 0;
  background: var(--paper);
}
.scarcity::before {
  content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--lime-deep); flex: none;
}
.cta__card .scarcity {
  margin: var(--sp-s) 0 0; padding: 0; border: 0; background: none;
  font-size: var(--step--2); color: var(--ink-mute);
}
.dark .scarcity { background: color-mix(in srgb, var(--paper) 12%, transparent); border-color: var(--night-line); color: var(--paper-on-night); }

/* ---------- Platzhalter für Alexander (im Preview sichtbar) - */
.todo {
  background: repeating-linear-gradient(-45deg, transparent 0 6px, color-mix(in srgb, var(--warn) 12%, transparent) 6px 7px), color-mix(in srgb, var(--warn) 9%, transparent);
  color: color-mix(in srgb, var(--warn) 82%, var(--ink));
  border: 1px dashed color-mix(in srgb, var(--warn) 55%, transparent);
  border-radius: 5px; padding: 0.1em 0.45em; font-style: normal;
  font-size: 0.92em;
}
.todo::before { content: "▸ von Alexander: "; font-weight: 700; letter-spacing: 0.01em; }
.todo-box {
  display: block; border: 1px dashed color-mix(in srgb, var(--warn) 55%, transparent);
  background: color-mix(in srgb, var(--warn) 8%, transparent);
  border-radius: var(--radius); padding: var(--sp-s) var(--sp-m); margin: var(--sp-m) 0;
  font-size: var(--step--1); color: color-mix(in srgb, var(--warn) 78%, var(--ink)); max-width: 42rem;
}
.todo-box b { font-weight: 700; }

/* ---------- CTA — image + card (card never covers Alexander) --------
   Mobile / small screens: image as a block, card sits below it and only
   overlaps the lower edge (brick, not face).
   Desktop (>=64rem): full-bleed image, frosted card floats in the empty
   brick wall on the left — Alexander stands clear on the right.        */
.cta { position: relative; overflow: hidden; background: var(--paper-raised); isolation: isolate; }
.cta__img {
  width: 100%; aspect-ratio: 3 / 2;
  object-fit: cover; object-position: 50% 6%;
}
.cta .container { padding-block: 0 var(--sp-xl); position: relative; }
.cta__card {
  position: relative; margin-top: -3.5rem; max-width: 34rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.25rem + 2.5vw, 2.75rem);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.28);
}
.cta__badge {
  position: absolute; top: -1.05rem; right: clamp(1.75rem, 1.25rem + 2.5vw, 2.75rem);
  width: 2.6rem; height: 2.6rem; padding: 0.6rem;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--lime); color: var(--on-lime);
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.35);
}
.cta__card h2 { font-size: var(--step-3); font-weight: 400; margin: var(--sp-s) 0 var(--sp-s); }
.cta__card p { color: var(--ink-soft); }
.cta__card .eyebrow::before { background: var(--ink); }
.cta__actions { display: flex; flex-wrap: wrap; gap: var(--sp-s); margin-top: var(--sp-m); align-items: center; }
.trust-inline { display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; margin-top: var(--sp-m); }
.trust-inline li { display: flex; align-items: center; gap: 1.3rem; }
.trust-inline li::before { content: ""; width: 3px; height: 3px; background: var(--line-2); border-radius: 50%; flex: none; }
.cta .trust-inline {
  font-size: var(--step--2); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}

@media (min-width: 60rem) {
  /* Photo fills the right ~52% (renders ~700px → source stays crisp);
     card sits on the left over the flat panel and only laps the photo edge. */
  .cta { min-height: 33rem; display: grid; align-items: start; }
  .cta__img {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 55%; height: 100%; aspect-ratio: auto;
    object-position: 46% center;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }
  .cta .container { padding-block: var(--sp-2xl); }
  .cta__card {
    margin-top: 0; max-width: 32rem;
    background: color-mix(in srgb, var(--paper) 82%, transparent);
    -webkit-backdrop-filter: blur(12px) saturate(1.15);
            backdrop-filter: blur(12px) saturate(1.15);
    border-color: color-mix(in srgb, var(--paper) 60%, transparent);
  }
}
@media (min-width: 82rem) {
  .cta__img { width: 52%; }
}

/* ---------- Kontakt-Band (Startseite) — Text + Kalender direkt ---- */
.kontakt-cta { background: var(--paper-raised); padding-block: var(--sp-2xl); }
.kontakt-cta__grid {
  align-items: stretch; gap: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
}
.kontakt-cta__body, .kontakt-cta__cal { grid-column: 1 / -1; }
.kontakt-cta__body {
  display: flex; flex-direction: column;
  padding: clamp(1.75rem, 1.25rem + 2.5vw, 3rem);
}
.kontakt-cta__cal {
  display: flex; flex-direction: column;
  padding: clamp(1.75rem, 1.25rem + 2.5vw, 3rem);
  border-top: 1px solid var(--line);
}
@media (min-width: 60rem) {
  .kontakt-cta__body { grid-column: 1 / 6; }
  .kontakt-cta__cal { grid-column: 6 / -1; border-top: 0; border-left: 1px solid var(--line); }
}
.kontakt-cta__body h2 { font-size: var(--step-3); margin: var(--sp-s) 0 var(--sp-s); font-weight: 400; }
.kontakt-cta__body p { color: var(--ink-soft); }
.kontakt-cta__body .scarcity { margin: var(--sp-s) 0 0; }
.kontakt-cta__photo {
  display: none; margin: var(--sp-m) 0 var(--sp-l); max-width: 28rem;
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 4.2;
}
.kontakt-cta__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 10%; }
@media (min-width: 78rem) { .kontakt-cta__photo { display: block; } }
.kontakt-cta__cal .cal-embed {
  flex: 1; min-height: 0; height: 100%;
  border: 0; border-radius: 0; background: none;
}
.kontakt-cta__cal .cal-embed__mount:not(:empty) { max-height: 44rem; overflow-y: auto; }

/* ---------- Footer --------------------------------- */
.site-footer { background: var(--night); color: var(--paper-on-night); padding-block: var(--sp-l); border-top: 1px solid var(--night-line); }
.site-footer .brand { color: var(--paper-on-night); }
.footer-top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--sp-m); padding-bottom: var(--sp-l); border-bottom: 1px solid var(--night-line);
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.6rem var(--sp-l); }
.footer-nav a { color: var(--paper-on-night); text-decoration: none; font-size: var(--step--1); transition: color .2s; }
.footer-nav a:hover { color: var(--mute-on-night); }
.footer-bottom { margin-top: var(--sp-m); display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; font-size: 0.78rem; color: var(--mute-on-night); }
.footer-bottom a { color: var(--mute-on-night); text-decoration: none; }
.footer-bottom a:hover { color: var(--paper-on-night); }

/* ---------- Placeholder (until real photo) --------- */
.ph {
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--ink-mute); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1.5rem; line-height: 1.7;
  background:
    repeating-linear-gradient(-45deg, transparent 0 24px, color-mix(in srgb, var(--line-2) 30%, transparent) 24px 25px),
    var(--paper-raised);
  width: 100%; height: 100%;
}
.dark__media .ph, .band .ph, .cta .ph, .hero__media .ph { background: var(--night-raised); color: var(--mute-on-night); }

/* ---------- Animation (JS adds .is-in) ------------- */
.anim, [data-stagger] > * { opacity: 0; transform: translateY(14px); }
.anim.is-in, [data-stagger] > *.is-in {
  opacity: 1; transform: none;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.anim--d1.is-in { transition-delay: .07s; }
.anim--d2.is-in { transition-delay: .14s; }
.anim--d3.is-in { transition-delay: .21s; }

.reveal-words .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.reveal-words .w > span { display: inline-block; will-change: transform; }

.no-js .anim, .no-js [data-stagger] > *, .no-js .reveal-words .w > span { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  .anim, .anim.is-in, [data-stagger] > *, [data-stagger] > *.is-in { opacity: 1 !important; transform: none !important; transition: none !important; }
  .reveal-words .w > span { transform: none !important; }
  .scroll-progress { display: none; }
  .btn:hover, .offer:hover { transform: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Utilities ------------------------------ */
.stack-s > * + * { margin-top: var(--sp-s); }
.stack-m > * + * { margin-top: var(--sp-m); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.nowrap { white-space: nowrap; }

/* =========================================================================
   Phone layer  (<= 43rem)  — deliberately designed for the small screen:
   tighter rhythm, smaller display type, less decoration, denser cards.
   ========================================================================= */
@media (max-width: 43rem) {
  :root {
    --sp-xl:  2.5rem;    /* space between sections */
    --sp-2xl: 3rem;
    --sp-l:   1.75rem;
    --sp-m:   1.5rem;
  }

  /* --- Display type: a step calmer on a narrow column --- */
  .hero { padding-top: var(--sp-s); }
  .hero h1 { font-size: 1.95rem; line-height: 1.13; margin: var(--sp-xs) 0 var(--sp-s); }
  .page-intro h1 { font-size: 1.7rem; line-height: 1.12; }
  .hero__sub { font-size: 1.02rem; margin-bottom: var(--sp-s); }
  .hero__media {
    aspect-ratio: 16 / 10; max-height: none; min-height: 15rem;
    margin-inline: calc(-1 * var(--edge));
    border-radius: 0;
  }
  .hero__media img { object-position: 50% 22%; }
  .hero__actions { gap: var(--sp-xs); width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .section-head { margin-bottom: var(--sp-m); }
  .section-head h2 { font-size: 1.55rem; }
  .section-head .lead { font-size: 1rem; margin-top: var(--sp-xs); }
  .founder__body h2, .prose h2, .dark__body h2 { font-size: 1.55rem; }

  /* --- Eyebrow: drop the rule, it wraps awkwardly on a phone --- */
  .eyebrow { gap: 0.45em; letter-spacing: 0.12em; }
  .eyebrow::before { display: none; }

  /* --- "Was sich ändert": kill the excess air --- */
  .value { padding: var(--sp-m) var(--sp-s); }
  .value__n { margin-bottom: 0.55rem; }
  .value__n::after { margin-top: 0.5rem; }
  .value p { font-size: var(--step-0); line-height: 1.45; }

  /* --- Timeline --- */
  .tl { gap: var(--sp-m); }
  .tl__step { padding-top: 1.1rem; }
  .tl__text { font-size: var(--step--1); max-width: none; }

  /* --- Cards: denser --- */
  .offer { padding: var(--sp-m); gap: 0.7rem; }
  .offer h3 { font-size: var(--step-1); }
  .offer ul { padding-top: var(--sp-s); }
  .framework { gap: var(--sp-s); }
  .framework > div { padding: var(--sp-s) var(--sp-m); }

  /* --- Steps --- */
  .steps li { padding: var(--sp-m) 0 var(--sp-m) 3.25rem; }
  .steps__ico { width: 2rem; height: 2rem; top: calc(var(--sp-m) + 0.15rem); }

  /* --- Cases --- */
  .case-panel__co { font-size: var(--step-0); }

  /* --- Dark split --- */
  .pain-list { margin-top: var(--sp-m); }
  .pain-list li { font-size: var(--step-0); padding: var(--sp-s) 0 var(--sp-s) 2rem; }
  .pain-list li::before { top: calc(var(--sp-s) + 0.55em); }

  /* --- Pull quote --- */
  .pullquote { padding-block: var(--sp-xl); }
  .pullquote blockquote { font-size: var(--step-3); }

  /* --- Sub-nav: fit the row --- */
  .subnav__inner { min-height: 2.9rem; }
  .subnav__links { gap: 1.15rem; }
  .subnav__links a { font-size: 0.8rem; padding: 0.7rem 0; }

  /* --- Media figures: use the full width, no island --- */
  .founder__media figure,
  .split__media figure,
  .page-intro__media figure { max-width: none; }

  /* --- CTA card: tighter --- */
  .cta__card { margin-top: -2.5rem; padding: var(--sp-m); }
  .cta__card h2 { font-size: 1.5rem; }

  /* --- Contact --- */
  .cal-embed { min-height: 24rem; }
  .cal-consent { padding: var(--sp-m); }

  /* --- Footer --- */
  .site-footer { padding-block: var(--sp-l) var(--sp-m); }
}

/* --------------------------------------------------------------------------- */
/*  Termin-Hinweis (dismissible toast, unten rechts)                           */
/* --------------------------------------------------------------------------- */

.event-toast {
  position: fixed; right: var(--sp-m); bottom: var(--sp-m); z-index: 250;
  width: 20rem; max-width: calc(100vw - 2 * var(--sp-m));
  background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px -20px rgba(20,22,27,.3);
  opacity: 0; transform: translateY(0.75rem);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events: none;
  padding: 1.1rem 1.25rem 0.6rem;
}
.event-toast[hidden] { display: block; visibility: hidden; }
.event-toast.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.event-toast.is-visible[hidden] { visibility: visible; }

.event-toast__label {
  font-family: "Geist"; font-weight: 700; font-size: var(--step--2);
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--lime-deep);
  margin: 0 2rem 0.7rem 0;
}
.event-toast__list { list-style: none; margin: 0; padding: 0; }
.event-toast__row {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 0.6rem 0; border-top: 1px solid var(--line);
  text-decoration: none; color: inherit;
}
.event-toast__list li:first-child .event-toast__row { border-top: 0; }
.event-toast__title {
  font-family: "Geist"; font-weight: 600; font-size: var(--step--1); color: var(--ink);
  line-height: 1.3;
}
.event-toast__meta {
  display: flex; align-items: center; gap: 0.4rem; flex: none;
  font-family: "Geist"; font-size: var(--step--2); color: var(--ink-mute); white-space: nowrap;
}
.event-toast__ext { color: var(--ink-mute); }
.event-toast__row:hover .event-toast__title { color: var(--accent); }
.event-toast__row:hover .event-toast__ext { color: var(--accent); }

.event-toast__close {
  position: absolute; top: 0.6rem; right: 0.6rem;
  width: 1.7rem; height: 1.7rem; display: grid; place-items: center;
  border: none; background: none; border-radius: 50%;
  font-size: 1.2rem; line-height: 1; color: var(--ink-mute); cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.event-toast__close:hover { background: var(--paper-sink); color: var(--ink); }

/* Auf dem Handy nimmt der Hinweis zu viel vom sichtbaren Bereich ein –
   nur ab Desktop-Breite zeigen (gleiche Grenze wie die Hauptnavigation). */
@media (max-width: 59.99rem) {
  .event-toast { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .event-toast { transition: opacity .2s linear; transform: none; }
}
