/* ============================================================
   CINEMATIC.CSS — Sascha Manke Persona Layer
   Letterbox · Filmkorn · Skyline · Klappen-Marker · Color-Grade
   ============================================================ */

/* ---------- Hero (overrides hero.css für Cinematic-Variante) ---------- */

.hero.hero--cinematic {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: #06181a; /* deep teal-black */
}

/* Skyline-Layer ------------------------------------------------ */
.hero-skyline {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../svg/skyline-frankfurt.svg');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  opacity: 0.85;
}

/* Teal-Orange Cinematic Color-Grade Overlay -------------------- */
.hero-grade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(232, 118, 42, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(42, 165, 160, 0.20) 0%, transparent 60%),
    linear-gradient(180deg, rgba(6, 24, 26, 0.30) 0%, rgba(6, 24, 26, 0.78) 100%);
  mix-blend-mode: normal;
}

/* Filmkorn (CSS-only noise) ------------------------------------ */
.hero-grain {
  position: absolute;
  inset: -50px;
  z-index: 3; /* über der Figur (z2) — Korn liegt auch auf dem Avatar */
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.35 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  animation: grain 1.2s steps(8) infinite;
  mix-blend-mode: overlay;
}

@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10% { transform: translate(-4%, -3%); }
  20% { transform: translate(3%, -2%); }
  30% { transform: translate(-3%, 4%); }
  40% { transform: translate(4%, 3%); }
  50% { transform: translate(-2%, -4%); }
  60% { transform: translate(2%, 2%); }
  70% { transform: translate(-4%, 1%); }
  80% { transform: translate(3%, -3%); }
  90% { transform: translate(-1%, 4%); }
}

/* Letterbox-Bars (2.35:1 Cinemascope-Anspielung) --------------- */
.hero-letterbox {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 5;
  height: 56px;
  background: #000;
  pointer-events: none;
}
.hero-letterbox--top    { top: 0; }
.hero-letterbox--bottom { bottom: 0; }

/* Filmleader-Strip (Akzent-Linie mit Punkten) ------------------ */
.hero-leader {
  position: absolute;
  bottom: 56px;
  left: 0;
  right: 0;
  z-index: 6;
  height: 8px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--orange) 0 4px,
      transparent 4px 20px
    );
  opacity: 0.65;
}

/* Content above all layers ------------------------------------- */
.hero--cinematic .hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 110px clamp(20px, 4vw, 48px) 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Text links — hero.css setzt flex-end (Basis-Layout) */
}

/* Klappen-Marker (Slate-Style Eyebrow) ------------------------- */
.hero-eyebrow.eyebrow--slate {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px 8px 0;
  border-left: 6px solid var(--orange);
  background: linear-gradient(90deg, rgba(232,118,42,0.10) 0%, transparent 100%);
}
.hero-eyebrow.eyebrow--slate::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 14px;
  background:
    repeating-linear-gradient(
      135deg,
      #fff 0 4px,
      #000 4px 8px
    );
  border: 1px solid #fff;
}

/* Filmemacher-Detail Subline (Scene/Take Annotation) ----------- */
.hero-annotation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--teal);
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 14px;
}
.hero-annotation .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(42,165,160,0.6);
}

/* Hero-Headline Tuning ----------------------------------------- */
.hero--cinematic .hero-headline {
  font-size: clamp(34px, 5.2vw, 62px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--text-primary);
  margin: 18px 0 22px;
}
.hero--cinematic .hero-headline em {
  font-style: normal;
  color: var(--orange);
  font-weight: 400;
}

/* Hero-Avatar als Cinematic-Figur — bleeded an den rechten
   Frame-Rand und steht hinter der unteren Letterbox. Das Quellbild
   ist links (nach Spiegelung: rechts) am Ellenbogen beschnitten —
   die Schnittkante MUSS deshalb exakt auf der Viewport-Kante liegen,
   die untere Schnittkante verschwindet hinter der Letterbox-Bar.  */
.hero--cinematic .hero-figure {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;            /* über Grade (1), unter Korn (3) + Letterbox (5) */
  margin: 0;
  /* Bild-Ratio 2:3 — Breite = Höhe / 1.5. Der 34vw*1.5-Cap hält die
     Figur aus der Textspalte raus, ohne sie je zu beschneiden. */
  height: min(calc(100% - 130px), 580px, calc(34vw * 1.5));
  pointer-events: none;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.55))
          drop-shadow(0 0 28px rgba(232,118,42,0.25));
}
.hero--cinematic .hero-figure img {
  display: block;
  height: 100%;
  width: auto;
  /* Ungespiegelt (Original-Blickrichtung). Die beschnittene Ellenbogen-
     Seite liegt links — weicher Fade lässt die Kante im Dunkel auslaufen. */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 44px);
  mask-image: linear-gradient(90deg, transparent 0, #000 44px);
}

/* Sub-Tag am Avatar (Mono-Annotation), oberhalb der Letterbox --- */
.hero--cinematic .hero-figure-tag {
  position: absolute;
  bottom: 68px;
  right: 12px;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(244,243,238,0.55);
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ============================================================
   THEMEN-CARDS — Cinematic Variation der service-cards
   ============================================================ */

.themes-grid .service-card {
  position: relative;
  overflow: hidden;
}

.themes-grid .service-card::after {
  /* Subtle filmkorn auch auf den Cards */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

.service-card .scene-marker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.scene-marker .num {
  color: var(--orange);
  font-weight: 600;
}
.service-card--teal .scene-marker .num { color: var(--teal); }

/* ============================================================
   LATEST POSTS / SOCIAL STRIP (statt Stats)
   ============================================================ */

.social-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  background: rgba(255,255,255,0.015);
}
.social-strip .marquee {
  display: flex;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
  justify-content: center;
}
.social-strip .marquee a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.social-strip .marquee a:hover { color: var(--orange); }
.social-strip .marquee .sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .hero.hero--cinematic { min-height: 100svh; }
  .hero--cinematic .hero-content {
    padding-top: 96px;
    padding-bottom: 90px;
    justify-content: flex-start;
  }
  /* Figur wird Hintergrund-Element unten rechts, bleibt am Frame-Rand */
  .hero--cinematic .hero-figure {
    height: auto;
    width: min(58vw, 300px);
  }
  .hero--cinematic .hero-figure img {
    height: auto;
    width: 100%;
  }
  .hero--cinematic .hero-figure-tag { bottom: 48px; }
  .hero-letterbox { height: 38px; }
  .hero-leader { bottom: 38px; }
}

@media (max-width: 600px) {
  .hero--cinematic .hero-headline { font-size: clamp(26px, 7vw, 38px); }
  .hero-letterbox { height: 28px; }
  .hero-leader { bottom: 28px; }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-grain { animation: none; }
}

/* ============================================================
   HERO TEXT — Lesbarkeitsstärke gegen Skyline
   ============================================================ */

.hero--cinematic .hero-text {
  max-width: 620px;
}
.hero--cinematic .hero-subtext {
  background: linear-gradient(90deg, rgba(6,24,26,0.88) 0%, rgba(6,24,26,0.72) 100%);
  padding: 12px 16px 12px 18px;
  border-left: 2px solid var(--orange);
  margin-top: 6px;
}

/* Hero-Höhe sicherstellen, dass die Figur Raum hat */
.hero.hero--cinematic { min-height: 720px; }

/* ============================================================
   TIKTOK SECTION — Weisser Frame + DSGVO-Consent
   ============================================================ */

.tiktok-section {
  background: #f4f3ee;
  color: #1a1a17;
  padding-top: 56px;
  padding-bottom: 56px;
}
.tiktok-section .section-label-bar {
  border-bottom-color: rgba(0,0,0,0.10);
}
.tiktok-section .section-label-bar .label {
  color: #585652;
}
.tiktok-section .section-lead {
  margin: 14px 0 28px;
  color: #4a4844;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.65;
}
.tiktok-section .section-lead a {
  color: #C4611F;
  text-decoration: none;
  border-bottom: 1px dotted #C4611F;
}

.tiktok-consent-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid #d8d6d0;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}
.tiktok-consent-card .consent-icon {
  color: #1a1a17;
  margin-bottom: 12px;
  display: inline-block;
}
.tiktok-consent-card h3 {
  font-size: 20px;
  margin: 0 0 14px;
  color: #1a1a17;
  font-weight: 500;
}
.tiktok-consent-card p {
  color: #4a4844;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 22px;
}
.tiktok-consent-card .consent-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.tiktok-consent-card .consent-note {
  font-size: 12px;
  color: #777570;
  margin: 0;
}
.tiktok-consent-card .consent-note a {
  color: #C4611F;
}
.tiktok-consent-card .btn-ghost {
  color: #1a1a17;
  border: 1px solid #c8c6c0;
}
.tiktok-consent-card .btn-ghost:hover {
  background: #ededec;
}

.tiktok-embed-loaded {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

/* ============================================================
   SUB-PAGES (Impressum, Datenschutz, Über mich, Themen-Pages)
   ============================================================ */

.page-main { background: var(--bg-deep); }
.page-hero {
  padding: 88px 0 32px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 30% 0%, rgba(42,165,160,0.08) 0%, transparent 60%),
    var(--bg-deep);
}
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.page-eyebrow .eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--orange);
}
.page-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: var(--text-primary);
}
.page-content { padding: 56px 0 96px; }

.prose {
  max-width: 760px;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.75;
}
.prose h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 40px 0 14px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.prose h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.prose h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 28px 0 10px;
}
.prose p {
  color: var(--text-secondary);
  margin: 0 0 16px;
}
.prose a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px dotted var(--orange);
}
.prose a:hover { color: var(--orange-dim); }
.prose ul, .prose ol {
  color: var(--text-secondary);
  padding-left: 22px;
  margin: 0 0 18px;
}
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--text-primary); }
.prose em { color: var(--text-secondary); font-style: italic; }

.prose p.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-primary);
  border-left: 3px solid var(--orange);
  padding-left: 18px;
  margin: 0 0 28px;
}

/* ============================================================
   ABOUT-STRIP — Layout
   ============================================================ */

.about-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.012);
}
.about-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  padding: 56px 0;
}
.about-photo {
  position: relative;
  flex-shrink: 0;
}
.about-photo::after {
  /* leichter Orange-Glow um Avatar */
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,118,42,0.20) 0%, transparent 65%);
  z-index: -1;
}
.about-photo img {
  width: 220px;
  height: 220px;
  aspect-ratio: 1 / 1;   /* Kreis bleibt Kreis, egal was das Quellbild liefert */
  border-radius: 50%;
  border: 2px solid var(--orange);
  object-fit: cover;
  object-position: top;
}
.about-eyebrow-line {
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 6px 0 0;
}
.about-content h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 8px 0 18px;
  color: var(--text-primary);
}
.about-content .about-text + .about-text { margin-top: 12px; }
.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 620px;
}
.about-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px 36px;
  margin: 32px 0 0;
  max-width: 520px;
}
.about-meta-item dt {
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.about-meta-item dd {
  color: var(--text-primary);
  font-size: 14px;
  margin: 0;
}

/* ============================================================
   YOU NAME IT BLOCK — Brand-Teaser
   ============================================================ */

.yni-block {
  padding-top: 48px;
  padding-bottom: 64px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(42,165,160,0.06) 0%, transparent 60%),
    rgba(255,255,255,0.012);
  border-top: 1px solid var(--border);
}
.yni-intro {
  text-align: center;
  margin: 28px auto 40px;
  max-width: 760px;
}
.yni-title {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--text-primary);
}
.yni-title em { color: var(--orange); font-style: normal; }
.yni-lead {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.yni-lead a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px dotted var(--orange);
}

.yni-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 12px;
}
.yni-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  overflow: hidden;
}
.yni-card::before {
  /* dezenter Teal-Streifen oben */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  opacity: 0.7;
}

/* Featured-Card (No Barrier) — stärker hervorgehoben */
.yni-card--featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(232,118,42,0.08) 0%, var(--bg-card) 100%);
}
.yni-card--featured::before {
  background: var(--orange);
  opacity: 1;
  height: 3px;
}
.yni-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 3px 8px;
  border: 1px solid var(--orange);
  border-radius: 2px;
  background: rgba(232,118,42,0.08);
}
.yni-card--featured h3 { color: var(--orange); }
.yni-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  background: rgba(232,118,42,0.04);
}
.yni-card-tag {
  display: inline-block;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.yni-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  color: var(--text-primary);
}
.yni-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
.yni-card-arrow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  color: var(--orange);
  font-size: 16px;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.yni-card:hover .yni-card-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

@media (max-width: 900px) {
  .yni-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .about-photo { justify-self: center; }
  .about-text { margin: 0 auto; }
  .about-meta {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}
@media (max-width: 600px) {
  .yni-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROFIL — 28 Jahre, vier Akte (Werdegang als Filmstruktur)
   ============================================================ */

.profil-strip {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 80% 10%, rgba(232,118,42,0.05) 0%, transparent 55%),
    var(--bg-deep);
}
.profil-head {
  max-width: 720px;
  margin: 28px 0 44px;
}
.profil-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--text-primary);
}
.profil-head h2 em { color: var(--orange); font-style: normal; font-weight: 400; }
.profil-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* Akt-Timeline */
.akt-timeline {
  list-style: none;
  margin: 0 0 52px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.akt {
  position: relative;
  padding: 22px 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  border-top: 2px solid var(--teal);
}
.akt--current {
  border-top-color: var(--orange);
  background: linear-gradient(180deg, rgba(232,118,42,0.07) 0%, var(--bg-card) 100%);
}
.akt-num {
  display: block;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 2px;
}
.akt--current .akt-num { color: var(--orange); }
.akt-years {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.akt h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 10px;
  line-height: 1.35;
}
.akt p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Kompetenz-Cluster */
.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-bottom: 52px;
}
.skill-cluster {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 4px;
  background: rgba(255,255,255,0.012);
}
.skill-cluster--orange { border-left-color: var(--orange); }
.skill-cluster h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin: 0 0 12px;
}
.skill-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.skill-tags li {
  font-size: 12px;
  color: var(--text-secondary);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(255,255,255,0.02);
}

/* Referenz-Zeile */
.ref-strip {
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 2.1;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  max-width: 880px;
  margin: 0 auto 52px;
}
.ref-strip strong {
  color: var(--text-secondary);
  font-weight: 400;
}
.ref-strip .ref-note {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* Verfügbar-Box */
.avail-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: 28px 32px;
  border: 1px solid var(--orange);
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(232,118,42,0.10) 0%, rgba(232,118,42,0.02) 100%);
}
.avail-box-text h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 6px;
}
.avail-box-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
.avail-box-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.avail-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #5fd38a;
  box-shadow: 0 0 8px rgba(95,211,138,0.7);
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .akt-timeline { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .skill-grid { grid-template-columns: 1fr; }
  .avail-box { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .akt-timeline { grid-template-columns: 1fr; }
}

/* ============================================================
   BRAND-LANDINGPAGES — Toxische Männer / Familie im Spektrum
   ============================================================ */

.brand-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 90px;
  background: #06181a;
  border-bottom: 1px solid var(--border);
}
.brand-hero::before {
  /* Letterbox-Anspielung oben */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 38px;
  background: #000;
}
.brand-hero::after {
  /* Filmkorn */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.10;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.brand-hero--tm {
  background:
    radial-gradient(ellipse at 75% 20%, rgba(232,118,42,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(232,118,42,0.08) 0%, transparent 50%),
    #140d06;
}
.brand-hero--fis {
  background:
    radial-gradient(ellipse at 70% 15%, rgba(42,165,160,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(42,165,160,0.10) 0%, transparent 50%),
    #06181a;
}
.brand-hero .container { position: relative; z-index: 2; }
.brand-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.brand-kicker a { color: inherit; text-decoration: none; }
.brand-kicker a:hover { color: var(--orange); }
.brand-kicker .kicker-line {
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.brand-title {
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--text-primary);
  margin: 0 0 18px;
}
.brand-hero--tm .brand-title em { color: var(--orange); font-style: normal; font-weight: 400; }
.brand-hero--fis .brand-title em { color: var(--teal); font-style: normal; font-weight: 400; }
.brand-claim {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 0 26px;
}
.brand-format-tag {
  display: inline-block;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-secondary);
}

/* Brand-Body-Sektionen */
.brand-section { padding: 64px 0; }
.brand-section + .brand-section { border-top: 1px solid var(--border); }
.brand-section .prose { max-width: 720px; }
.brand-section h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 14px 0 18px;
}

/* Plattform-Cards */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 28px;
}
.platform-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.platform-card:hover { transform: translateY(-3px); border-color: var(--orange); }
.brand-page--fis .platform-card:hover { border-color: var(--teal); }
.platform-card .platform-name {
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.platform-card .platform-handle {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
}
.platform-card .platform-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
.platform-card .platform-arrow {
  margin-top: 8px;
  color: var(--orange);
  font-size: 15px;
}
.brand-page--fis .platform-card .platform-arrow { color: var(--teal); }

/* Prinzipien-Cards (FiS) / Themen-Cards (TM) */
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 28px;
}
.principle {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(255,255,255,0.012);
}
.principle .principle-num {
  display: block;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 10px;
}
.brand-page--tm .principle .principle-num { color: var(--orange); }
.principle h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.principle p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Hinweis-Box (FiS Disclaimer) */
.brand-note {
  max-width: 720px;
  margin-top: 36px;
  padding: 18px 22px;
  border-left: 3px solid var(--teal);
  background: rgba(42,165,160,0.06);
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Brand-CTA */
.brand-cta {
  text-align: center;
  padding: 72px 0 84px;
  border-top: 1px solid var(--border);
}
.brand-cta h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300;
  margin: 0 0 14px;
  color: var(--text-primary);
}
.brand-cta p {
  color: var(--text-secondary);
  margin: 0 0 28px;
  font-size: 15px;
}

@media (max-width: 900px) {
  .platform-grid, .principle-grid { grid-template-columns: 1fr; }
  .brand-hero { padding: 110px 0 70px; }
}
