/* ============================================================
   FONTS – self-hosted, DSGVO-konform
   ============================================================ */
@font-face {
  font-family: 'Fraunces';
  src: url('/fonts/fraunces-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette #7 „Pink / Schiefer" – kühles Schiefer-Blau + heller Signal-Pink */
  --primary:        #2a313a;  /* Schiefer – dunkle Markenfläche (Nav, Hero, dunkle Bänder) */
  --primary-soft:   #44505c;  /* helleres Schiefer – Hover/2. Stufe (ex --accent-green) */
  --accent-pink:    #F284B4;  /* heller Signal-Pink – NUR auf dunklem Schiefer & als Fläche */
  --accent-pink-text: #C13A82;  /* dunkleres Pink NUR für Text auf hellem BG – WCAG-AA-konform */
  --bg:             #F5F5F6;  /* kühles Off-White */
  --card-bg:        #FFFFFF;
  --text-main:      #1a1c20;
  --text-muted:     #33373d;
  --border-soft:    rgba(0, 0, 0, 0.06);

  --shadow-card:       0 1px 2px rgba(42, 49, 58, 0.04), 0 10px 28px rgba(42, 49, 58, 0.08);
  --shadow-card-hover: 0 16px 40px rgba(42, 49, 58, 0.16);
  --border-card:       1px solid rgba(42, 49, 58, 0.08);
  --tint-pink-soft:    rgba(193, 58, 130, 0.06);

  --font-display:   'Fraunces', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;

  --radius-lg:      24px;
  --radius-md:      16px;
  --radius-sm:      12px;

  --text-hero:      clamp(2.5rem, 8vw, 4.5rem);
  --text-h1:        clamp(1.75rem, 5vw, 2.75rem);
  --text-h2:        clamp(1.3rem, 3vw, 1.75rem);
  --text-h3:        clamp(1rem, 2vw, 1.2rem);
  --text-body:      clamp(1rem, 1.5vw, 1.1rem);
  --text-small:     0.85rem;
  --text-micro:     0.75rem;

  --space-xs:       0.5rem;
  --space-sm:       1rem;
  --space-md:       1.5rem;
  --space-lg:       2.5rem;
  --space-xl:       4rem;

  --max-w-content:  760px;
  --max-w-mobile:   420px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--text-main);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--accent-pink);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--primary);
}

/* Eine verbindliche Default-Größe für jedes einfache <h2> – ohne diese Regel
   fielen die meisten H2 sitewide auf die UA-Standardgröße zurück (zufällig
   ähnlich, aber nicht das gleiche wie --text-h2), was Überschriften je nach
   Seite leicht unterschiedlich wirken ließ. Spezifischere Selektoren
   (.transformation-text h2, .cta-band h2, .legal-content h2 etc.)
   überschreiben das weiterhin gezielt. */
h2 { font-size: var(--text-h2); }

p {
  max-width: 65ch;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w-mobile);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .container { max-width: 680px; }
}

@media (min-width: 1024px) {
  .container { max-width: var(--max-w-content); }
}

section {
  padding: var(--space-xl) 0;
}

/* ------------------------------------------------------------
   BAND-SYSTEM – einheitlicher vertikaler Rhythmus
   Helle Inhaltsbänder (--bg oder --card-bg). Zwei gleich-helle
   Bänder direkt hintereinander teilen sich den Abstand, statt
   ihn zu verdoppeln (sonst 8rem toter Raum). Übergänge zu
   dunklen Bändern behalten den vollen Abstand – die Farbkante
   trägt den Schnitt.
   ------------------------------------------------------------ */
.band        { padding: var(--space-xl) 0; }
.band--soft  { background: var(--bg); }
.band--card  { background: var(--card-bg); }

/* Aufeinanderfolgende Bänder verschmelzen NUR bei gleicher Farbe (kein doppelter
   Abstand). Bei Farbwechsel bleibt das volle Padding – sonst klebt der Inhalt an
   der Oberkante des andersfarbigen Blocks. */
.band--soft + .band--soft,
.band--card + .band--card { padding-top: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  background: var(--primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-wordmark:hover {
  color: var(--accent-pink);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent-pink);
}

/* aria-current active nav state */
.nav-links a[aria-current="page"] {
  color: var(--accent-pink);
}

/* ============================================================
   HAMBURGER MENU (CSS-only, no JS)
   ============================================================ */
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Tastatur-Fokus: die visuell versteckte Checkbox spiegelt den Fokus aufs Hamburger-Label */
.nav-toggle:focus-visible + .nav-hamburger {
  outline: 2px solid var(--accent-pink);
  outline-offset: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

@media (max-width: 639px) {
  .site-nav .container {
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
  }

  .nav-hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.5rem;
    order: 10;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.875rem 0;
    font-size: 1rem;
    letter-spacing: normal;
    text-transform: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  /* Hamburger → X animation */
  .nav-toggle:checked + .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked + .nav-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
  }
  .nav-toggle:checked + .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  border: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-soft);
  color: #fff;
}

.btn-cta {
  background: var(--accent-pink);
  color: var(--primary);  /* dunkler Schiefer-Text auf hellem Signal-Pink – WCAG-AA + EIN einziger Pink-Ton */
  box-shadow: 0 4px 20px rgba(242, 132, 180, 0.4);
}

.btn-cta:hover {
  background: #f7a0c8;  /* heller statt dunkler → Kontrast zum dunklen Text bleibt hoch */
  color: var(--primary);
  box-shadow: 0 8px 28px rgba(242, 132, 180, 0.5);
  transform: translateY(-1px);
}

/* ============================================================
   PAGE HEADER – dunkler Seitenkopf (System, Pillars, Setup, Blog)
   ============================================================ */
.page-header {
  background: var(--primary);
  padding: var(--space-xl) 0 var(--space-lg);
}

.page-header h1 {
  color: #fff;
  font-size: var(--text-h1);
  margin-top: 0.5rem;
}

.page-header h1 em {
  color: var(--accent-pink);
  font-style: normal;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 46ch;
  margin-top: var(--space-sm);
}

.pillar-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: var(--text-small);
  margin-bottom: var(--space-sm);
}
.pillar-crumb a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.pillar-crumb a:hover { color: var(--accent-pink); text-decoration: underline; }
.pillar-crumb strong { color: #fff; font-weight: 600; }
.pillar-crumb-sep { color: rgba(255, 255, 255, 0.35); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--primary);
  color: #fff;
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
}

.hero-text h1 {
  font-size: var(--text-hero);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-md);
}

.hero-text h1 em {
  color: var(--accent-pink);
  font-style: normal;
}

/* Beweiszahl als eigene Textzeile zwischen Kicker und H1, größenabgestuft:
   größer als der Kicker, kleiner als die H1. */
.hero-proof-line {
  color: var(--accent-pink);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xs);
}

.hero-subtext {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-lg);
  max-width: 42ch;
  line-height: 1.6;
}

.hero-image-wrap {
  order: -1;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-image-wrap {
    order: 1;
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  }
}

.hero-image-wrap img,
.hero-image-wrap picture img {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ============================================================
   TRANSFORMATION SECTION
   ============================================================ */
.transformation-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.transformation-photos {
  display: flex;
  gap: 1.25rem;
}

.photo-card {
  flex: 1;
  max-width: 280px;
}

.photo-card img,
.photo-card picture img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .photo-card { max-width: 360px; }
}

@media (min-width: 1024px) {
  .photo-card { max-width: 440px; }
}

.photo-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}

.photo-label-when {
  font-family: var(--font-body);
  font-size: var(--text-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}


/* ============================================================
   DISZIPLIN BLOCK
   ============================================================ */
.disziplin-block {
  background: var(--primary);
  color: #fff;
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.disziplin-block blockquote {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  max-width: 30ch;
}

.disziplin-block blockquote em {
  color: var(--accent-pink);
  font-style: normal;
}

.disziplin-block p {
  margin-top: var(--space-md);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-body);
  max-width: 50ch;
}

/* Heller Variant (Startseite, Problem-Spiegel) – löst sich optisch vom dunklen
   Hero. Pink hier als Text auf Hell → WCAG-AA-Variante. */
.disziplin-block--light {
  background: #fff;
  color: var(--text-main);
}
.disziplin-block--light blockquote { color: var(--text-main); }
.disziplin-block--light blockquote em { color: var(--accent-pink-text); }
.disziplin-block--light p { color: var(--text-muted); }

/* ============================================================
   SÄULEN
   ============================================================ */
.saeule-card {
  padding: 1.25rem;
}

.saeule-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.saeule-card h3 {
  font-size: var(--text-h3);
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.saeule-card p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.5;
}

a.saeule-card, .blog-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.saeule-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
}

a.saeule-card:hover, .blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary);
}

a.saeule-card:hover {
  color: inherit;
}

a.saeule-card.saeule-card-featured:hover {
  border-color: var(--accent-pink);
  color: inherit;
}

/* ============================================================
   CARDS & SECTIONS
   ============================================================ */
/* Card-Base: gemeinsame Grundwerte aller card-artigen Komponenten,
   gruppiert statt 8x einzeln deklariert. Deltas (Padding, Border,
   Flex-Layout) bleiben in den jeweiligen Einzelregeln. */
.card, .blog-card, .saeule-card, .level-card, .faq-item,
.newsletter-card, .bleib-dran-inner, .lead-magnet-inner {
  background: var(--card-bg);
}
.card, .blog-card, .saeule-card, .level-card,
.newsletter-card, .bleib-dran-inner, .lead-magnet-inner {
  box-shadow: var(--shadow-card);
}
.card, .newsletter-card, .bleib-dran-inner, .lead-magnet-inner {
  border-radius: var(--radius-lg);
}
.blog-card, .saeule-card, .level-card, .faq-item {
  border-radius: var(--radius-md);
}
.blog-card, .faq-item, .newsletter-card, .bleib-dran-inner, .lead-magnet-inner {
  border: 1.5px solid var(--border-soft);
}

.card {
  padding: var(--space-lg);
}

.section-kicker {
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-pink-text);
  margin-bottom: 0.5rem;
}

.hero-text .section-kicker {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  font-weight: 800;
  margin-bottom: 0.875rem;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  max-width: 820px;
}

.blog-card {
  position: relative;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
}

.blog-card h2 a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.blog-card:has(h2 a:focus-visible) {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-card-date {
  font-size: var(--text-micro);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h2 {
  font-size: var(--text-h3);
}

.blog-card h2 a {
  color: var(--primary);
}

.blog-card p {
  font-size: var(--text-small);
  color: var(--text-muted);
  margin: 0;
}

.blog-card .read-more {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--accent-pink-text);
  transition: color 0.2s ease;
}

/* dekorativer Affordance-Hinweis – Klick übernimmt die ganze Karte */
.blog-card:hover .read-more {
  color: var(--primary);
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 820px;
  margin: var(--space-lg) 0 0;
}

.blog-pagination-link {
  font-weight: 600;
  font-size: var(--text-small);
  color: var(--primary);
}

.blog-pagination-link.is-disabled {
  color: var(--text-muted);
  opacity: 0.4;
  pointer-events: none;
}

.blog-pagination-info {
  font-size: var(--text-small);
  color: var(--text-muted);
}

/* Desktop: Datum links, Inhalt rechts -> flachere, horizontale Karte */
@media (min-width: 700px) {
  .blog-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.75rem;
    padding: 1.5rem 1.75rem;
  }
  .blog-card-date {
    flex: 0 0 8rem;
    padding-top: 0.35rem;
  }
  .blog-card-body {
    flex: 1;
  }
}

/* ============================================================
   BLOG POST
   ============================================================ */
.post-content {
  max-width: 65ch;
}

.post-content h2 {
  font-size: var(--text-h2);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.post-content h3 {
  font-size: var(--text-h3);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.post-content p {
  margin-bottom: var(--space-sm);
}

.post-content ul, .post-content ol {
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.post-content li {
  margin-bottom: 0.35rem;
}

.post-content strong {
  color: var(--primary);
}

.post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: var(--text-muted);
  font-size: var(--text-small);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-soft);
}

/* ============================================================
   CTA BAND – einheitliches abschließendes dunkles Band, das jede Seite
   beendet (Header/dunkles Band/Content/dunkles Band/Footer). Ersetzt die
   früheren .cta-section/.setup-teaser, die jeweils eigene Schriftgrößen
   und Strukturen hatten.
   ============================================================ */
.cta-band {
  background: var(--primary);
  color: #fff;
  text-align: left;
  padding: var(--space-xl) 0;
}

.cta-band h2 {
  color: #fff;
  font-size: var(--text-h1);
  margin-bottom: var(--space-sm);
}

.cta-band h2 em {
  color: var(--accent-pink);
  font-style: normal;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 var(--space-lg);
  max-width: 46ch;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #15171b;  /* Schiefer-Schwarz – harmoniert mit --primary */
  color: rgba(255, 255, 255, 0.5);
  padding: var(--space-lg) 0;
  font-size: var(--text-small);
}

/* Obere Zeile: Wortmarke links, Social rechts – linksbündige Achse */
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.footer-brand:hover {
  color: var(--accent-pink);
}

.footer-social {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--accent-pink);
}

/* Untere Zeile: Copyright links, Rechtliches + RSS rechts */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  padding-top: var(--space-md);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-pink);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 65ch;
  padding: var(--space-xl) 0;
}

.legal-content h1 {
  font-size: var(--text-h1);
  margin-bottom: var(--space-lg);
}

.legal-content h2 {
  font-size: var(--text-h2);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p, .legal-content li {
  color: var(--text-muted);
  font-size: var(--text-body);
  margin-bottom: var(--space-xs);
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ============================================================
   DESIGN-KONSISTENZ – Heading-/Absatz-Rhythmus ohne Inline-Styles
   ============================================================ */
:where(h2, h1).reveal-d1 { margin-bottom: var(--space-md); }
.heading-lg-gap { margin-bottom: var(--space-lg) !important; }

/* Absatzfolge: jedes <p> nach einem <p> bekommt automatisch den
   Standardabstand. Bewusst auf p+p beschränkt (nicht .reveal + .reveal
   allgemein), weil Überschriften ebenfalls class="reveal" tragen –
   ein allgemeiner Sibling-Selektor würde sonst direkt nach jeder
   Überschrift einen zusätzlichen, unerwünschten Abstand erzeugen.
   .mt-md/.mt-lg auf demselben Element übersteuern den Standard für
   die wenigen größeren Lücken. */
p.reveal + p.reveal { margin-top: var(--space-sm); }
p.reveal + p.reveal.mt-md { margin-top: var(--space-md); }
p.reveal + p.reveal.mt-lg { margin-top: var(--space-lg); }

.btn-cta--lg {
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

/* Lauflänge für Subtitle-Absätze unter h2 – ein Wert sitewide */
.lede { max-width: 50ch; }

.section-kicker--on-dark { color: var(--accent-pink); }


.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.card--center { text-align: center; padding: var(--space-xl); }
.empty-state-msg { font-size: var(--text-h3); color: var(--text-muted); }

.post-header-section { padding-top: var(--space-xl); padding-bottom: 0; }
.post-body-section { padding-top: var(--space-md); }
.post-footer-nav {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-soft);
}
.post-footer-nav p { font-size: var(--text-small); }
.post-title { font-size: var(--text-h1); margin-bottom: var(--space-sm); }

/* Sub-Hero-Komponente für "Kennst du das?" – sitzt im band/band--soft-
   Rhythmus statt wie .disziplin-block durchzustoßen (das bleibt dem
   abschließenden CTA-Block vorbehalten). */
.empathy-hook { background: var(--bg); padding: var(--space-xl) 0; }
.empathy-hook blockquote {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  max-width: 30ch;
  margin-bottom: var(--space-md);
}
.empathy-hook p { color: var(--text-muted); max-width: 50ch; }

/* ============================================================
   GRAIN TEXTURE OVERLAY – subtiles Papier-Feeling
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.018;
  mix-blend-mode: multiply;
}

/* ============================================================
   SCROLL REVEAL
   Default: sichtbar. Versteckt wird nur, wenn JS aktiv ist
   (html.js, gesetzt per Inline-Script). So bleibt der Inhalt
   sichtbar, falls JS fehlschlägt oder deaktiviert ist.
   ============================================================ */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
html.js .reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.28s; }
.reveal-d4 { transition-delay: 0.38s; }

/* Reduced-Motion: keine Reveal-Animation, kein Smooth-Scroll */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   SKIP-LINK – Tastatur-Navigation
   ============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent-pink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ============================================================
   TRANSFORMATION – KORREKTUREN & UPGRADES
   ============================================================ */
.transformation-caption {
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

/* ============================================================
   DISZIPLIN BLOCK – TYPOGRAFISCHES UPGRADE
   ============================================================ */
.disziplin-block blockquote {
  font-size: clamp(2.4rem, 7.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

/* ============================================================
   BENTO SÄULEN GRID (Homepage)
   ============================================================ */
.saeulen-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .saeulen-bento {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .saeulen-bento .saeule-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .saeulen-bento .saeule-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .saeulen-bento .saeule-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }
  .saeulen-bento .saeule-card:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
  }
}

.saeule-card-featured {
  background: var(--primary);
}
.saeule-card-featured h3 { color: #fff; }
.saeule-card-featured p { color: rgba(255,255,255,0.75); }

/* ============================================================
   SÄULEN-ROUTER – zweiter Einstieg in die Pillar-Seiten
   (schlanke Zeilen-Liste, bewusst anders als das Bento oben)
   ============================================================ */
.saeule-router {
  display: flex;
  flex-direction: column;
  border: var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.saeule-router-row, .setup-row {
  padding: 1rem 1.25rem;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.15s ease;
}

.saeule-router-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.saeule-router-row:last-child { border-bottom: none; }

.saeule-router-row:hover {
  background: rgba(42, 49, 58, 0.03);
  color: inherit;
}

.saeule-router-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.saeule-router-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.saeule-router-text strong {
  font-size: 0.95rem;
  color: var(--primary);
}

.saeule-router-text span {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.5;
}

.saeule-router-arrow {
  font-size: 1.1rem;
  color: var(--accent-pink-text);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.saeule-router-row:hover .saeule-router-arrow {
  transform: translateX(3px);
}

/* L2 Nav-Pille für Säulen-Router (intern, klar als Navigation erkennbar) –
   gefüllt by default, damit sofort als Link erkennbar; ghost erst on hover. */
.btn-nav, .setup-btn {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--accent-pink-text);
  color: #fff;
  background: var(--accent-pink-text);
  border-radius: 999px;
  font-size: var(--text-micro);
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.saeule-router-row:hover .btn-nav, .setup-btn:hover {
  background: transparent;
  color: var(--accent-pink-text);
}

.btn-nav {
  gap: 0.2rem;
  padding: 0.35rem 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

/* SVG-Icon im Router: saeule-router-icon wird auf SVG-Größe normiert */
.saeule-router-icon {
  font-size: 0; /* Emojis deaktiviert, SVG übernimmt */
  flex-shrink: 0;
  line-height: 0;
}

/* ============================================================
   INFO NOTE (Leinöl etc.)
   ============================================================ */
.info-note {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  background: rgba(42, 49, 58, 0.06);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: var(--space-md) 0;
  border-left: 3px solid var(--primary-soft);
}

.info-note p {
  font-size: var(--text-small);
  color: var(--text-muted);
  margin: 0;
  max-width: none;
}

.info-note span { flex-shrink: 0; }
.info-note .ic { flex-shrink: 0; }

/* Modifier: rechtlicher Hinweis (Affiliate-Disclaimer) – Pink-Akzent statt
   Schiefer, teilt sich aber Padding/Radius/Schriftgröße/Icon mit der Basis,
   damit Hinweis-Boxen sitewide einheitlich aussehen. */
.info-note--legal {
  border-left-color: var(--accent-pink-text);
  background: var(--tint-pink-soft);
}

/* ============================================================
   FAQ / EINWANDBEHANDLUNG (System-Seite)
   ============================================================ */
.faq-list {
  display: grid;
  gap: var(--space-sm);
  max-width: var(--max-w-content);
}

.faq-item {
  padding: 1.25rem 1.5rem;
}

.faq-item h3 {
  font-size: var(--text-h3);
  margin: 0 0 0.4rem;
  color: var(--primary);
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
  max-width: none;
}

/* ============================================================
   TAGESABLAUF – Tageszeit-Überschriften (System-Seite)
   ============================================================ */
.daypart-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin: var(--space-lg) 0 var(--space-sm);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.daypart-title:first-of-type { margin-top: 0; }

.daypart-title span {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--accent-pink-text);
}

/* ============================================================
   PILLAR PAGES – Back Link + Level Cards
   ============================================================ */
.pillar-levels {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.level-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.5rem;
  border: var(--border-card);
  border-top: 3px solid transparent;
}

.level-card-content {
  display: flex;
  flex-direction: column;
}

.level-card:nth-child(1) { border-top-color: var(--primary); }
.level-card:nth-child(2) { border-top-color: var(--primary-soft); }
.level-card:nth-child(3) { border-top-color: var(--accent-pink); }

.level-label {
  font-size: var(--text-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.level-label.einstieg { color: var(--primary); }
.level-label.aufbau { color: var(--primary-soft); }
.level-label.gold { color: var(--accent-pink-text); }

.level-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.level-card p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.55;
}

/* C2:B Progressions-Icon (Flagge / Stufen / Pokal) – links neben dem Text,
   gleiche Bildsprache wie .setup-row/.saeule-router-row (Icon links, Text rechts). */
.level-card-icon {
  display: flex;
  flex-shrink: 0;
  color: var(--primary);
}
.level-card:nth-child(2) .level-card-icon { color: var(--primary-soft); }
.level-card:nth-child(3) .level-card-icon { color: var(--accent-pink-text); }

/* ============================================================
   ICON SYSTEM – Phosphor Duotone
   ============================================================ */
.ic {
  display: inline-flex;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 0;
}
.ic svg { display: block; fill: currentColor; }
.ic-xs svg { width: 16px; height: 16px; }
.ic-sm svg { width: 20px; height: 20px; }
.ic-md svg { width: 26px; height: 26px; }
.ic-lg svg { width: 34px; height: 34px; }

/* Duotone-Layer: Pfade mit opacity-Attribut werden pink eingefärbt */
.ic svg [opacity] { fill: var(--accent-pink); opacity: .85 !important; }

/* Icons auf dunklen Hintergründen: Striche weiß statt Schiefer */
.saeule-card-featured .ic,
.page-header .ic,
.disziplin-block .ic { color: rgba(255,255,255,0.9); }

/* ============================================================
   MEIN SETUP – Tabellen-Format
   ============================================================ */
.setup-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-md);
}

.setup-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0.75rem;
}

/* Reserviert eine feste, einheitliche Aktions-Spalte, sobald die Zeile
   einen Button ODER einen Tag hat – rechter Rand fluchtet, Content staucht links. */
.setup-row:has(.setup-btn),
.setup-row:has(.setup-tag) {
  grid-template-columns: 1fr 9.5rem;
}

/* Icon-Spalte links, wenn .ic vorhanden – Spaltenbreite = Icon-Eigenbreite
   + gemeinsamer 0.75rem-Gap, damit der Text exakt so weit einrückt wie in
   .info-note (gleiches Icon+Text-Muster, eine gemeinsame Regel). */
.setup-row:has(.ic) {
  grid-template-columns: auto 1fr;
}
.setup-row:has(.ic):has(.setup-btn),
.setup-row:has(.ic):has(.setup-tag) {
  grid-template-columns: auto 1fr 9.5rem;
}

.setup-row:last-child {
  border-bottom: none;
}

.setup-row:hover {
  background: rgba(42, 49, 58, 0.03);
}

.setup-row-nolink {
  opacity: 0.85;
}

/* Reine Info-Zeilen (kein Button, kein Tag) bekommen den Akzentstrich (C1:A) –
   visuell klar von Produkt-/Aktions-Zeilen abgegrenzt. */
.setup-row:not(:has(.setup-btn)):not(:has(.setup-tag)) {
  border-left: 3px solid var(--accent-pink-text);
  background: rgba(193, 58, 130, 0.04);
}

/* Ganze Zeile klickbar, wenn sie einen echten Produkt-Link hat – gleiche
   Stretched-Link-Technik wie .blog-card, gleiche UX wie .saeule-router-row. */
.setup-row:has(.setup-btn) {
  position: relative;
  cursor: pointer;
}

.setup-row .setup-btn::after {
  content: "";
  position: absolute;
  inset: 0;
}

.setup-row:has(.setup-btn:focus-visible) {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.ad-tag {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
}

.setup-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.setup-info strong {
  font-size: 0.95rem;
  color: var(--text-main);
}

.setup-meta {
  font-size: var(--text-micro);
  color: var(--text-muted);
  line-height: 1.4;
}

/* Gefüllte Pille, gleiche Bildsprache wie .btn-nav (Säulen-Router) –
   gefüllt by default, damit sofort als Link erkennbar; ghost erst on hover. */
.setup-btn {
  justify-content: center;
  width: 100%;
  text-align: center;
  padding: 0.5rem 0.875rem;
}

.setup-tag {
  width: 100%;
  text-align: center;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-micro);
  font-weight: 600;
  background: rgba(42, 49, 58, 0.08);
  color: var(--primary);
}

@media (max-width: 639px) {
  .setup-row,
  .setup-row:has(.setup-btn),
  .setup-row:has(.setup-tag) {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.75rem;
  }
  /* Icon bleibt neben Titel/Meta stehen (wie .info-note), nur die
     Aktions-Spalte (Werbung+Button) rutscht in eine eigene zweite Zeile,
     eingerückt unter den Text statt unter das Icon – 2 Zeilen statt 5. */
  .setup-row:has(.ic),
  .setup-row:has(.ic):has(.setup-btn),
  .setup-row:has(.ic):has(.setup-tag) {
    grid-template-columns: auto 1fr;
    justify-items: start;
    gap: 0.75rem;
  }
  .setup-row:has(.ic):has(.setup-btn) .setup-btn,
  .setup-row:has(.ic):has(.setup-tag) .setup-tag {
    grid-column: 2 / -1;
  }
  .setup-btn,
  .setup-tag {
    width: auto;
    min-width: 9rem;
  }
}

/* ============================================================
   FOCUS VISIBLE – Keyboard-Navigation (WCAG AA)
   ============================================================ */
*:focus-visible {
  outline: 2px solid var(--accent-pink);
  outline-offset: 3px;
  border-radius: 3px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

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

.bleib-dran {
  background: var(--bg);
  padding: var(--space-xl) 0;
}

.bleib-dran-inner {
  max-width: 100%;  /* füllt die Content-Spalte – kein „verrutschter", schmalerer Kasten mehr */
  padding: var(--space-lg);
}

.bleib-dran-inner h2 {
  margin-bottom: var(--space-xs);
}

.bleib-dran-inner > p {
  color: var(--text-muted);
  max-width: 48ch;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.newsletter-form input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--text-main);
  background: #fff;
}

.newsletter-form input[type="email"]:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-color: var(--primary);
}

.newsletter-form button {
  flex: 0 0 auto;
}

/* Honeypot – für Menschen unsichtbar, für Bots ein Köder */
.newsletter-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter-meta {
  font-size: var(--text-small);
  color: var(--text-muted);
  margin-top: 0.85rem;
}

.newsletter-meta a,
.follow-links a {
  color: var(--accent-pink-text);
  font-weight: 600;
}

.follow-links {
  font-size: var(--text-small);
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* Newsletter-Seite: Eintragen + Abmelden als eine Karte (gleiche Bildsprache
   wie .lead-magnet-inner), Abmelden abgesetzt statt als eigenes Band. */
.newsletter-card {
  padding: var(--space-lg);
}

.newsletter-card-unsub {
  border-top: 1px solid var(--border-soft);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
}

.newsletter-card-unsub h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.newsletter-card-unsub p {
  margin-bottom: 0;
}

.nl-status {
  max-width: 100%;
  margin-top: var(--space-md);
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--tint-pink-soft);
  border-left: 3px solid var(--accent-pink-text);
  color: var(--text-main);
  font-size: var(--text-small);
}

.nl-fehler-top {
  margin-bottom: var(--space-md);
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--tint-pink-soft);
  border-left: 3px solid var(--accent-pink-text);
  color: var(--text-main);
  font-size: var(--text-small);
}

/* ===== LEAD-MAGNET – „System als PDF" (heller Karten-Block) ===== */
.lead-magnet-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: var(--space-lg);
  padding: var(--space-lg);
}

.lead-magnet h2 {
  margin-bottom: var(--space-xs);
}

.lead-magnet-body > p {
  color: var(--text-muted);
  max-width: 46ch;
  margin: 0 auto;
}

.lead-magnet .newsletter-form {
  justify-content: flex-start;
  /* row-gap (Button rutscht beim Umbruch unter das Feld) großzügiger,
     column-gap (nebeneinander) kompakt. */
  gap: var(--space-sm) 0.6rem;
}

.lead-magnet .newsletter-meta {
  margin-top: var(--space-md);
}

/* PDF-Cover-Mockup – CSS-Platzhalter, bis ein echtes Cover-Bild existiert */
.lead-magnet-visual {
  perspective: 900px;
  flex: 0 0 auto;
}

.pdf-mock {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 200px;
  aspect-ratio: 3 / 4;
  padding: 1.6rem 1.4rem;
  background: linear-gradient(150deg, #353d48 0%, #20262e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: rotate(-3deg);
}

.pdf-mock-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--accent-pink);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}

.pdf-mock-brand {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.55);
  padding-right: 2.6rem; /* hält Abstand zum absolut positionierten PDF-Tag */
}

.pdf-mock-title {
  font-family: var(--font-display);
  font-size: 1.5rem; /* passt "Standardtag" in die 200px-Karte ohne Overflow */
  line-height: 1.04;
  color: #fff;
  margin-top: auto;
}

.pdf-mock-sub {
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--accent-pink);
}

@media (min-width: 640px) {
  .lead-magnet-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: var(--space-xl);
  }

  .lead-magnet-visual { flex: 0 0 auto; }
  .lead-magnet-body { flex: 1 1 auto; }
  .lead-magnet-body > p { margin: 0; }
  .lead-magnet .newsletter-form { justify-content: flex-start; }
}

/* ============================================================
   ÜBER-MICH – Intro mit Foto + BILD-PLATZHALTER
   Platzhalter zeigen verbindlich, wo welche Bilder hinkommen.
   Werden ersetzt, sobald Stephans Fotos da sind (siehe Todo 8).
   ============================================================ */
.about-intro-grid {
  display: grid;
  gap: var(--space-lg);
}

.about-media {
  display: flex;
  gap: var(--space-md);
}

/* Echtes Foto in der Über-mich-Spalte (Gesicht). 4:5, damit es zum Platzhalter passt. */
.about-photo {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* MOBIL: Fotos als kompakte Strip-Zeile ÜBER den Text ziehen, damit man
   Stephan sofort sieht, statt erst nach der ganzen Geschichte (order: -1). */
@media (max-width: 719px) {
  .about-media {
    order: -1;
    flex-direction: row;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }
  .about-media > * { flex: 1 1 0; min-width: 0; }
  .about-intro-grid { display: flex; flex-direction: column; }
  /* Das Foto füllt die (vom höheren Platzhalter gestreckte) Zeilenhöhe komplett
     aus – sonst endet das Bild mittig im figure und die Unterkante wirkt
     abgeschnitten (runde obere, spitze untere Ecken). */
  .about-photo { display: flex; }
  .about-photo img { height: 100%; aspect-ratio: auto; }
}

@media (min-width: 720px) {
  .about-intro-grid {
    grid-template-columns: 1fr 16rem;
    gap: var(--space-xl);
    align-items: start;
  }
  /* Foto-Spalte scrollt mit der langen Textspalte mit */
  .about-media {
    flex-direction: column;
    position: sticky;
    top: 90px;
  }
}

/* Generischer Bild-Platzhalter – sieht bewusst „geplant" aus, nicht kaputt */
.img-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: var(--space-md);
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(42, 49, 58, 0.035) 0,
      rgba(42, 49, 58, 0.035) 10px,
      transparent 10px,
      transparent 20px
    ),
    var(--card-bg);
  border: 2px dashed var(--border-soft);
  border-radius: var(--radius-md);
  color: var(--text-muted);
}

.img-placeholder.is-portrait { aspect-ratio: 4 / 5; }

.img-placeholder.is-vorher {
  aspect-ratio: 4 / 5;
  max-width: 9.5rem;
  align-self: flex-start;
  border-color: var(--accent-pink);
}

.img-ph-label {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-main);
}

.img-ph-label small {
  display: block;
  margin-top: 0.35rem;
  font-weight: 400;
  font-size: var(--text-micro);
  color: var(--text-muted);
}

.img-ph-label .img-ph-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: var(--accent-pink);
  color: var(--primary);
  font-size: var(--text-micro);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
