/* ============================================================
   MARCEL L. — Design System v3
   Dark Night · Yin-Yang · Wunderkerzen-Funken
   Philosophie · Manifest · Candlelight Manuscript
   ============================================================ */

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* ── Dunkelpalette (Nacht) ── */
  --color-night:       #08111F;
  --color-deep-navy:   #0F1F3D;
  --color-navy:        #1A3060;

  /* ── Gold / Yang ── */
  --color-gold:        #C8900A;
  --color-gold-light:  #F0B429;
  --color-amber:       #E07A20;

  /* ── Yin ── */
  --color-yin-blue:    #6B9FCC;
  --color-yin-pale:    #B8D4E8;

  /* ── Text / Neutral ── */
  --color-cream:       #F5EDD5;
  --color-parchment:   #E8D8B8;
  --color-muted:       #8A9BAE;
  --color-border:      rgba(200, 144, 10, 0.25);

  /* ── Flächen ── */
  --color-surface:     #0F1F3D;
  --color-surface-2:   #142545;

  /* ── Kontextueller Text (überschreibbar) ── */
  --text-primary:      var(--color-cream);
  --text-secondary:    var(--color-parchment);
  --text-muted:        var(--color-muted);

  /* ── Typografie ── */
  --font-display:  'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-body:     'Source Serif 4', Georgia, 'Times New Roman', serif;

  /* ── Type Scale ── */
  --text-xs:    0.72rem;
  --text-sm:    0.875rem;
  --text-base:  1.125rem;
  --text-md:    1.25rem;
  --text-lg:    1.5rem;
  --text-xl:    2rem;
  --text-2xl:   2.75rem;
  --text-3xl:   clamp(2rem, 5vw, 4rem);
  --text-hero:  clamp(3rem, 8vw, 6.5rem);

  /* ── Zeilenhöhen ── */
  --leading-tight:    1.15;
  --leading-snug:     1.4;
  --leading-normal:   1.6;
  --leading-relaxed:  1.85;

  /* ── Abstände ── */
  --space-xs:      0.5rem;
  --space-sm:      1rem;
  --space-md:      1.5rem;
  --space-lg:      2.5rem;
  --space-xl:      4rem;
  --space-2xl:     6rem;
  --space-section: clamp(4rem, 8vw, 7rem);

  /* ── Layout ── */
  --container-max:  1200px;
  --container-pad:  clamp(1.25rem, 5vw, 2.5rem);
  --nav-height:     4.5rem;
  --radius-sm:      4px;
  --radius-md:      8px;

  /* ── Übergänge ── */
  --transition-fast:   0.2s ease;
  --transition-base:   0.35s ease;
  --transition-slow:   0.7s ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Sonnenaufgang-Gradient: Nacht unten → warmes Dunkelamber oben */
  background:
    linear-gradient(
      to top,
      #060F18 0%,
      #0B1D30 15%,
      #102035 30%,
      #152232 50%,
      #221808 68%,
      #382000 80%,
      #4E2D00 90%,
      #663C00 97%,
      #7A4800 100%
    );
  background-attachment: fixed;
  min-height: 100vh;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }
p { max-width: 68ch; }
em { font-style: italic; }

/* ============================================================
   3. SPARKLE-HINTERGRUND
   ============================================================ */

@keyframes sparkle-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  33%       { transform: translate(12px, -18px) scale(1.1); opacity: 0.9; }
  66%       { transform: translate(-8px, 10px) scale(0.95); opacity: 0.5; }
}

@keyframes sparkle-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50%       { transform: translate(-20px, 14px) scale(1.15); opacity: 0.7; }
}

@keyframes sparkle-drift-3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
  40%       { transform: translate(16px, -12px) rotate(20deg); opacity: 0.6; }
  80%       { transform: translate(-6px, 20px) rotate(-10deg); opacity: 0.2; }
}

/* Funken-Partikel: steigen auf und verblassen */
@keyframes spark-rise {
  0%   { transform: translate(0, 0) scale(1);       opacity: 0; }
  8%   { opacity: 1; }
  50%  { transform: translate(
           calc((var(--drift, 0.5) - 0.5) * 60px),
           -50vh
         ) scale(0.75);
         opacity: 0.7; }
  100% { transform: translate(
           calc((var(--drift, 0.5) - 0.5) * 100px),
           -95vh
         ) scale(0.25);
         opacity: 0; }
}

.spark {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

@keyframes blob-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%       { transform: scale(1.06) rotate(4deg); }
}

.sparkle-bg {
  background:
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(200,144,10,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(107,159,204,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 70% 75%, rgba(224,122,32,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at 30% 30%, rgba(26,48,96,0.6)  0%, transparent 65%),
    linear-gradient(165deg, #08111F 0%, #0F1F3D 45%, #0A1628 75%, #08111F 100%);
  position: relative;
}

/* Schwebende Lichtpunkte via JS-generierten Span-Elementen */
.sparkle-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: sparkle-drift-1 var(--dur, 20s) ease-in-out infinite var(--delay, 0s);
}

/* Kein zweiter body-Block mehr nötig */

/* ============================================================
   4. ACCESSIBILITY
   ============================================================ */

.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;
}

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

/* ============================================================
   5. TYPOGRAFIE
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: var(--leading-tight);
  color: var(--color-cream);
}

blockquote {
  font-family: var(--font-display);
  font-style: italic;
  border-left: 3px solid var(--color-gold);
  padding-left: var(--space-md);
  color: var(--color-parchment);
}

blockquote p {
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
}

/* Großes Pull-Quote */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  line-height: var(--leading-snug);
  color: var(--color-gold-light);
  max-width: none;
}

/* Section-Eyebrow Label */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  max-width: none;
}

.section-eyebrow--muted { color: var(--color-muted); }

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-cream);
  margin-bottom: var(--space-lg);
}

.section-heading em {
  font-weight: 400;
  color: var(--color-gold-light);
}

/* ============================================================
   6. LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--space-section);
}

/* Semi-transparent + schwebend — lässt Sonnenaufgang-Hintergrund subtil durchscheinen */
.section--night,
.section--surface,
.section--surface-2 {
  margin-inline: 2rem;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.section--night     { background: rgba(2,  6,  9,  0.70); backdrop-filter: blur(1px); }
.section--surface   { background: rgba(8, 17, 31,  0.70); backdrop-filter: blur(1px); }
.section--surface-2 { background: rgba(12, 22, 40, 0.70); backdrop-filter: blur(1px); }

@media (max-width: 640px) {
  .section--night,
  .section--surface,
  .section--surface-2 {
    margin-inline: 0.75rem;
    border-radius: 10px;
  }
}

.section--gold-accent {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* ── Yin-Yang-Trennlinie ── */
.yinyang-divider {
  display: flex;
  height: 2px;
  width: 100%;
  margin-block: var(--space-xl);
  overflow: hidden;
  border-radius: 1px;
}

.yinyang-divider::before {
  content: '';
  flex: 1;
  background: linear-gradient(to right, transparent, var(--color-yin-blue));
}

.yinyang-divider::after {
  content: '';
  flex: 1;
  background: linear-gradient(to right, var(--color-gold), transparent);
}

/* ── Yin-Yang Punkt-Dekorator ── */
.yinyang-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-yin-blue) 50%, var(--color-gold) 50%);
}

/* ============================================================
   7. SCROLL REVEAL
   ============================================================ */

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.4); opacity: 0.3; }
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--transition-slow),
              transform var(--transition-slow);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger für Artikel-Grid */
.article-grid .reveal-item:nth-child(1) { transition-delay: 0s; }
.article-grid .reveal-item:nth-child(2) { transition-delay: 0.12s; }
.article-grid .reveal-item:nth-child(3) { transition-delay: 0.24s; }

/* Stagger für Video-Grid */
.video-grid .reveal-item:nth-child(1) { transition-delay: 0s; }
.video-grid .reveal-item:nth-child(2) { transition-delay: 0.14s; }

/* Stagger für Werte */
.werte-grid .reveal-item:nth-child(1) { transition-delay: 0s; }
.werte-grid .reveal-item:nth-child(2) { transition-delay: 0.1s; }
.werte-grid .reveal-item:nth-child(3) { transition-delay: 0.2s; }

/* ============================================================
   8. NAVIGATION
   ============================================================ */

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background-color var(--transition-base),
              border-bottom-color var(--transition-base),
              backdrop-filter var(--transition-base);
  border-bottom: 1px solid transparent;
}

#site-header.is-scrolled {
  background-color: rgba(8, 17, 31, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--color-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.nav-logo:hover { opacity: 0.8; }

/* Yin-Yang Logo-Bild */
.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(200,144,10,0.5);
  box-shadow: 0 0 0 2px rgba(200,144,10,0.12);
}

.nav-logo-monogram {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-parchment);
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background-color: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-link:hover { color: var(--color-gold-light); }
.nav-link:hover::after { width: 100%; }
.nav-link.is-active { color: var(--color-gold); }
.nav-link.is-active::after { width: 100%; }
.nav-link[aria-current="page"]::after { width: 100%; }

.nav-link--cta {
  padding: 0.4rem 1rem;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  color: var(--color-gold);
  transition: background-color var(--transition-fast),
              color var(--transition-fast);
}

.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background-color: var(--color-gold);
  color: var(--color-night);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem; height: 2.5rem;
  padding: 0.5rem;
}

.hamburger-bar {
  display: block;
  width: 1.5rem; height: 1.5px;
  background-color: var(--color-gold);
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   9. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

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

.btn--primary {
  background-color: var(--color-gold);
  color: var(--color-night);
  border: 1px solid var(--color-gold);
  font-weight: 600;
}
.btn--primary:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  box-shadow: 0 0 20px rgba(240, 180, 41, 0.35);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}
.btn--ghost:hover {
  background-color: rgba(200, 144, 10, 0.12);
  box-shadow: 0 0 16px rgba(200, 144, 10, 0.2);
}

.btn--yin {
  background-color: var(--color-yin-blue);
  color: var(--color-night);
  border: 1px solid var(--color-yin-blue);
  font-weight: 600;
}
.btn--yin:hover { background-color: var(--color-yin-pale); border-color: var(--color-yin-pale); }

.btn--outline-light {
  background-color: transparent;
  color: var(--color-parchment);
  border: 1px solid rgba(245, 237, 213, 0.3);
}
.btn--outline-light:hover {
  border-color: var(--color-parchment);
  color: var(--color-cream);
}

.btn--text-light {
  background-color: transparent;
  color: var(--color-muted);
  border: 1px solid transparent;
  padding-inline: 0.5em;
}
.btn--text-light:hover { color: var(--color-gold-light); }

/* ============================================================
   10. HERO
   ============================================================ */

.section-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding-top: var(--nav-height);
  padding-bottom: var(--space-xl);
  overflow: hidden;
  background-image: url('../assets/images/funken-800.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Overlay für Lesbarkeit */
.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 0;
}

/* Alle direkten Kinder über dem Overlay */
.section-hero > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .section-hero {
    background-image: url('../assets/images/funken.webp');
    background-position: center top;
  }
}

/* FindMe: gleicher Hintergrund wie Homepage-Hero */
body.findme-page {
  background-image:
    linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.52)),
    url('../assets/images/funken-800.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (min-width: 1024px) {
  body.findme-page {
    background-image:
      linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.52)),
      url('../assets/images/funken.webp');
    background-position: center top;
  }
}

/* Blobs entfernt — kein hero-blob mehr */
.hero-blob { display: none; }
.hero-blob--1, .hero-blob--2, .hero-blob--3 { display: none;
  color: rgba(200, 144, 10, 0.06);
  animation: blob-pulse 22s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  padding-top: var(--space-xl);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.hero-name {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.0;
  color: var(--color-cream);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-name-first { display: inline; }
.hero-name-last  { display: inline; }

.hero-name-accent {
  color: var(--color-gold-light);
  font-weight: 400;
  font-style: italic;
  text-shadow: 0 0 40px rgba(240, 180, 41, 0.3);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  max-width: none;
  line-height: var(--leading-snug);
}

.hero-description {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-pull-quote {
  display: none;
  position: absolute;
  right: var(--container-pad);
  bottom: var(--space-xl);
  z-index: 2;
  max-width: 360px;
  text-align: right;
  border: none;
  padding: 0;
}

.hero-pull-quote p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  line-height: var(--leading-snug);
  color: var(--color-gold);
  max-width: none;
  opacity: 0.7;
  transform: rotate(-1.5deg);
  display: block;
  text-shadow: 0 0 30px rgba(200, 144, 10, 0.25);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.scroll-line {
  display: block;
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

/* Schwebendes Pill-Element */
.scroll-pill {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 0.35em 1.1em;
  border: 1px solid rgba(200, 144, 10, 0.4);
  border-radius: 100px;
  background: rgba(8, 17, 31, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(200, 144, 10, 0.1);
  white-space: nowrap;
}

/* Altes scroll-text falls noch vorhanden */
.scroll-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ============================================================
   11. PAGE HERO (Unterseiten)
   ============================================================ */

.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: clamp(3rem, 8vw, 6rem);
  background: rgba(6, 12, 22, 0.11);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 5% 95%, rgba(200,144,10,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 95% 5%, rgba(107,159,204,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-cream);
  max-width: 16ch;
}

.page-hero-title em {
  color: var(--color-gold-light);
  font-weight: 400;
}

.page-hero-desc {
  margin-top: var(--space-md);
  font-size: var(--text-md);
  color: var(--color-muted);
  max-width: 58ch;
  line-height: var(--leading-relaxed);
}

.page-hero-dsgvo small {
  font-size: var(--text-xs);
  color: rgba(138, 155, 174, 0.6);
  letter-spacing: 0.05em;
}

/* ============================================================
   12. ÜBER MICH
   ============================================================ */

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-photo-col { display: flex; justify-content: center; }

.about-photo-wrap {
  position: relative;
  width: clamp(200px, 40vw, 300px);
}

.about-photo-frame { position: relative; z-index: 1; }

.about-photo-placeholder,
.about-photo-real {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  clip-path: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-gold);
  box-shadow:
    0 0 0 6px rgba(200, 144, 10, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.about-photo-placeholder {
  background: linear-gradient(
    145deg,
    var(--color-navy) 0%,
    var(--color-deep-navy) 40%,
    var(--color-gold) 100%
  );
}

.about-photo-real {
  object-fit: cover;
  /* Warm-Gradient sichtbar solange Bild lädt — kein schwarzes Loch */
  background: linear-gradient(145deg, var(--color-navy) 0%, var(--color-deep-navy) 50%, #2A1800 100%);
}

.about-photo-placeholder:hover,
.about-photo-real:hover {
  clip-path: none;
  box-shadow:
    0 0 0 8px rgba(200, 144, 10, 0.25),
    0 12px 40px rgba(0, 0, 0, 0.6);
  transform: scale(1.02);
}

.about-photo-initial {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.5;
  line-height: 1;
  user-select: none;
}

.about-photo-decoration {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 100%; height: 100%;
  border: 1px solid rgba(200, 144, 10, 0.3);
  border-radius: 50%;
  z-index: 0;
  opacity: 1;
}

.about-text-col p {
  margin-bottom: var(--space-md);
  color: var(--color-parchment);
  line-height: var(--leading-relaxed);
}

.about-lead {
  font-size: var(--text-md) !important;
  color: var(--color-cream) !important;
  font-weight: 500;
}

.about-signature {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-gold) !important;
  margin-top: var(--space-lg) !important;
}

/* ── Werte ── */
.werte-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.wert-card {
  padding: var(--space-lg);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  position: relative;
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.wert-card:hover {
  border-color: rgba(200, 144, 10, 0.5);
  box-shadow: 0 0 24px rgba(200, 144, 10, 0.08);
}

.wert-nummer {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-sm);
  max-width: none;
}

.wert-titel {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 0.75rem;
}

.wert-text {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
}

.cta-section .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* ============================================================
   13. BUCH-COVER (3D CSS)
   ============================================================ */

.book-cover-scene { position: relative; display: inline-block; }

/* Buchcover: flach mit Gold-Rahmen, kein 3D */
.book-cover-3d {
  position: relative;
  width: clamp(160px, 22vw, 220px);
  height: clamp(230px, 32vw, 310px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
  box-shadow:
    0 0 0 2px var(--color-gold),
    0 0 0 5px rgba(8, 17, 31, 0.9),
    -6px 10px 28px rgba(0, 0, 0, 0.65),
    0 0 36px rgba(200, 144, 10, 0.1);
}

.book-cover-3d:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 0 0 2px var(--color-gold-light),
    0 0 0 5px rgba(8, 17, 31, 0.9),
    -6px 16px 36px rgba(0, 0, 0, 0.75),
    0 0 55px rgba(200, 144, 10, 0.18);
}

.book-cover-3d--card { /* gleiche Basis */ }
.book-cover-3d--card:hover {
  transform: translateY(-4px) scale(1.015);
}

/* Vorderseite: füllt den Cover-Container exakt */
.book-cover-front {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Echtes Cover-Bild */
.book-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* CSS-Fallback (kein Bild) */
.book-cover-front.book-cover-front--fallback {
  background: linear-gradient(145deg, #1a3060 0%, #0f1f3d 50%, #08111F 100%);
  display: flex;
  align-items: stretch;
}

.book-cover-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem 1.1rem;
  width: 100%;
}

.book-cover-genre {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  line-height: 1;
  max-width: none;
}

.book-cover-title {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--color-cream);
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.book-cover-rule {
  height: 1px;
  background: var(--color-gold);
  width: 36px;
  margin-block: 0.75rem;
  flex-shrink: 0;
}

.book-cover-author {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  max-width: none;
}

.book-spine { display: none; }

.book-spine span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-night);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 90%;
}

.book-shadow { display: none; }

/* ── Buch-Übersicht / Cards ── */
.buecher-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.buch-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.buch-cover-wrap { display: flex; justify-content: center; }

.buch-card-info { max-width: 60ch; }

.buch-genre {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  max-width: none;
}

.buch-titel {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-sm);
}

.buch-titel a {
  color: var(--color-cream);
  transition: color var(--transition-fast);
}
.buch-titel a:hover { color: var(--color-gold-light); }

.buch-meta {
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
  max-width: none;
}

.buch-teaser {
  margin-bottom: var(--space-lg);
  color: var(--color-parchment);
  line-height: var(--leading-relaxed);
}

.buch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ── Buchdetail ── */
.book-detail-hero {
  padding-block: calc(var(--nav-height) + var(--space-xl)) var(--space-2xl);
  background: rgba(6, 12, 22, 0.78);
  backdrop-filter: blur(1px);
  position: relative;
  overflow: hidden;
}

.book-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 15% 90%, rgba(200,144,10,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.book-detail-hero .container { position: relative; z-index: 1; }

.breadcrumb { margin-bottom: var(--space-lg); }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb li { font-size: var(--text-xs); color: var(--color-muted); }
.breadcrumb [aria-current="page"] { color: var(--color-gold); }

.book-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.book-cover-col { display: flex; justify-content: center; }
.book-info-col  { position: relative; z-index: 1; }

.book-blurb {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-parchment);
  margin-bottom: var(--space-lg);
  max-width: 60ch;
}

.book-details {
  margin-bottom: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.book-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--color-border);
  gap: 1rem;
}

.book-detail-row dt {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  flex-shrink: 0;
}

.book-detail-row dd {
  font-size: var(--text-sm);
  color: var(--color-parchment);
  text-align: right;
}

.book-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.section-bg-numeral {
  position: absolute;
  right: -0.08em; bottom: -0.12em;
  font-family: var(--font-display);
  font-size: clamp(8rem, 25vw, 20rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(200, 144, 10, 0.03);
  pointer-events: none;
  user-select: none;
}

/* ── Buchdetail-Content ── */
.book-detail-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.book-klappentext {
  margin-bottom: var(--space-lg);
}

.book-klappentext p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-parchment);
}

.book-leseprobe {
  margin-block: var(--space-xl);
  padding: var(--space-lg);
  border-left: 3px solid var(--color-gold);
  background-color: var(--color-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.book-leseprobe p {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-style: italic;
  line-height: var(--leading-relaxed);
  color: var(--color-cream);
  max-width: none;
  margin-bottom: var(--space-sm);
}

.book-leseprobe-source {
  font-size: var(--text-xs);
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.book-meta-card, .book-kaufen-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.book-meta-heading {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.book-meta-list { display: flex; flex-direction: column; gap: 0.6rem; }
.book-meta-list > div {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  gap: 1rem;
}
.book-meta-list dt { color: var(--color-muted); flex-shrink: 0; }
.book-meta-list dd { color: var(--color-parchment); text-align: right; }

.book-kaufen-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── Teaser ── */
.teaser-section { position: relative; overflow: hidden; }
.teaser-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.teaser-cover-col { display: flex; justify-content: center; }
.teaser-text-col  { position: relative; z-index: 1; }

.teaser-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.teaser-content-card {
  display: block;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-lg);
  text-decoration: none;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-fast);
}

.teaser-content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200, 144, 10, 0.1);
  border-color: rgba(200, 144, 10, 0.5);
}

.teaser-content-label {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  max-width: none;
}

.teaser-content-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

.teaser-content-title em {
  color: var(--color-gold-light);
  font-weight: 400;
}

.teaser-content-link {
  font-size: var(--text-sm);
  color: var(--color-muted);
  max-width: none;
}

/* ============================================================
   14. ARTIKEL / BLOG
   ============================================================ */

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.article-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-lg);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-fast);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200, 144, 10, 0.1);
  border-color: rgba(200, 144, 10, 0.4);
}

.article-category {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  max-width: none;
}

.article-accent-line {
  height: 1px;
  background: linear-gradient(to right, var(--color-gold), transparent);
  margin-bottom: 1.25rem;
  opacity: 0.5;
}

.article-grid .article-card:nth-child(1) .article-accent-line { width: 60%; }
.article-grid .article-card:nth-child(2) .article-accent-line { width: 45%; }
.article-grid .article-card:nth-child(3) .article-accent-line { width: 70%; }

.article-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: var(--leading-snug);
  margin-bottom: 0.875rem;
}

.article-title a {
  color: var(--color-cream);
  transition: color var(--transition-fast);
}
.article-title a:hover { color: var(--color-gold-light); }

.article-excerpt {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  color: rgba(138, 155, 174, 0.6);
  letter-spacing: 0.05em;
  max-width: none;
}

/* ── Artikel Video-Badge ── */
.article-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.article-card-header .article-category { margin-bottom: 0; }

.artikel-video-badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-night);
  background: var(--color-gold);
  padding: 0.2em 0.6em;
  border-radius: 100px;
  line-height: 1.4;
  white-space: nowrap;
}

/* ── Artikel-Detailseite ── */
.artikel-hero { padding-bottom: var(--space-lg); }

.artikel-meta-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.artikel-content {
  max-width: 720px;
}

.artikel-content h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-cream);
}

.artikel-content p {
  margin-bottom: var(--space-md);
  color: var(--color-parchment);
  line-height: var(--leading-relaxed);
  font-size: var(--text-base);
  max-width: 68ch;
}

.artikel-lead {
  font-size: var(--text-md) !important;
  color: var(--color-cream) !important;
  font-weight: 500;
  margin-bottom: var(--space-xl) !important;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.artikel-signatur {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-gold) !important;
  margin-top: var(--space-xl) !important;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.artikel-video-section { padding-top: 0; }

.artikel-video-wrap {
  max-width: 800px;
}

.artikel-leer {
  color: var(--color-muted);
  font-style: italic;
  padding: var(--space-xl) 0;
  max-width: none;
}

/* Filter */
.artikel-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
}

.filter-btn {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  background: none;
  border: 1px solid var(--color-border);
  padding: 0.4em 0.9em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
}

.filter-btn:hover,
.filter-btn--active {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-night);
}

/* ============================================================
   15. VIDEOS
   ============================================================ */

.video-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--aspect-ratio, 16 / 9)));
  overflow: hidden;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
}

.video-embed-wrap > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-embed-wrap iframe { border: none; }

/* Playlist Embed (16:9) */
.playlist-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
}

/* Shorts-Format: 9:16 Hochformat, zentriert und schmal */
.video-shorts-container {
  display: flex;
  justify-content: center;
}

.playlist-embed-wrap--short {
  width: min(340px, 100%);
  padding-top: 0;
  height: min(605px, 90vw * 16 / 9);
  aspect-ratio: 9 / 16;
  flex-shrink: 0;
}

.playlist-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.playlist-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-surface), var(--color-deep-navy));
  gap: var(--space-md);
  padding: var(--space-lg);
}

.playlist-placeholder p {
  color: var(--color-muted);
  font-style: italic;
  text-align: center;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-deep-navy) 100%);
  cursor: pointer;
  position: relative;
}

.video-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  color: var(--color-gold);
  transition: transform var(--transition-base),
              color var(--transition-fast),
              filter var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
}

.video-play-btn:hover {
  transform: scale(1.12);
  color: var(--color-gold-light);
  filter: drop-shadow(0 0 12px rgba(240, 180, 41, 0.4));
}

.video-play-btn svg { width: 100%; height: 100%; }
.video-play-btn--sm { width: 52px; height: 52px; }

.video-duration {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.05em;
  position: absolute;
  bottom: 0.875rem;
  right: 0.875rem;
  max-width: none;
}

.video-category {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  max-width: none;
}

.video-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: var(--leading-snug);
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
}

.video-description {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  max-width: 58ch;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.video-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.video-card:hover {
  border-color: rgba(200, 144, 10, 0.4);
  box-shadow: 0 0 20px rgba(200, 144, 10, 0.06);
}

.video-card-info { padding: 1.25rem var(--space-md); }
.video-card .video-title { font-size: var(--text-md); margin-bottom: 0.5rem; }

.video-date {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

.videos-cta-row { text-align: center; }
.videos-loading, .videos-empty {
  text-align: center;
  padding: var(--space-xl);
  color: var(--color-muted);
  font-style: italic;
}

/* ── Kapitel-Accordion ── */
.kapitel-block { border-bottom: 1px solid var(--color-border); }

.kapitel-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  padding-block: var(--space-md);
  background: none; border: none;
  cursor: pointer; text-align: left;
  transition: color var(--transition-fast);
}

.kapitel-toggle:hover { color: var(--color-gold); }

.kapitel-number {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  flex-shrink: 0;
  min-width: 6rem;
}

.kapitel-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-cream);
  flex-grow: 1;
}

.kapitel-toggle-icon {
  flex-shrink: 0;
  color: var(--color-muted);
  transition: transform var(--transition-base);
}

.kapitel-toggle[aria-expanded="true"] .kapitel-toggle-icon {
  transform: rotate(180deg);
}

.kapitel-panel { padding-bottom: var(--space-xl); }
.kapitel-panel[hidden] { display: none; }

.video-shorts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.video-placeholder--short {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-deep-navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.video-placeholder-hint {
  font-size: var(--text-xs);
  color: var(--color-muted);
  text-align: center;
  padding: 1rem;
  max-width: none;
}

/* ========================================================
   REZENSIONEN
   ======================================================== */

.rezensionen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.rezension-card {
  background: rgba(15, 31, 61, 0.6);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg);
  margin: 0;
}

.rezension-card p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-parchment);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.rezension-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.sterne {
  color: var(--color-gold-light);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.rezension-card cite {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.rezension-card cite a {
  color: var(--color-gold);
  text-decoration: none;
}

.rezension-card cite a:hover {
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .rezensionen-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================================
   VIDEOS PAGE — Serie-Layout
   ======================================================== */

.videos-serie-header {
  margin-bottom: var(--space-xl);
}

.videos-serie-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.videos-playlist-wrap {
  margin-bottom: var(--space-xl);
}

.videos-playlist-hint {
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-style: italic;
  text-align: center;
}

.videos-serie-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

/* ============================================================
   16. FINDME
   ============================================================ */

.findme-page {
  background-color: var(--color-night);
  min-height: 100vh;
}

.findme-container {
  max-width: 520px;
  margin-inline: auto;
  padding: var(--space-xl) var(--container-pad) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  min-height: 100vh;
}

.findme-profile { text-align: center; padding-top: var(--space-lg); }

.findme-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-navy), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-md);
  overflow: hidden;
  border: 2px solid var(--color-border);
  box-shadow: 0 0 30px rgba(200, 144, 10, 0.2);
}

.findme-avatar img { width: 100%; height: 100%; object-fit: cover; }

.findme-avatar-initial {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
  user-select: none;
}

.findme-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 0.25rem;
  line-height: var(--leading-tight);
}

.findme-tagline {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.findme-bio-short {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--leading-normal);
  max-width: none;
}

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

.findme-group-label {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
  max-width: none;
}

.findme-links { display: flex; flex-direction: column; gap: 0.5rem; }

.findme-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.875rem var(--space-md);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast),
              border-color var(--transition-fast);
}

.findme-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 144, 10, 0.15);
  border-color: rgba(200, 144, 10, 0.5);
}

.findme-link--featured {
  background: linear-gradient(135deg, var(--color-surface-2), var(--color-surface));
  border-color: rgba(200, 144, 10, 0.4);
}

.findme-link--support {
  background: linear-gradient(135deg, rgba(200,144,10,0.08), var(--color-surface));
  border-color: rgba(200, 144, 10, 0.3);
}

.findme-link-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.findme-link-icon--book   { background-color: var(--color-gold); color: var(--color-night); }
.findme-link-icon--yt     { background-color: #ff0000; color: white; }
.findme-link-icon--x      { background-color: #000; color: white; }
.findme-link-icon--heart  { background-color: var(--color-amber); color: white; }
.findme-link-icon--lock   { background-color: var(--color-navy); color: var(--color-yin-pale); }
.findme-link-icon--amazon  { background-color: #FF9900; color: #131921; }
.findme-link-icon--thalia  { background-color: #006838; color: #fff; }
.findme-link-icon--bod     { background-color: #003087; color: #fff; }
.findme-link-icon--site    { background-color: var(--color-night); }

.lettermark {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.support-option-icon--thalia { background-color: #006838; color: #fff; }
.support-option-icon--bod    { background-color: #003087; color: #fff; }

.findme-link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
  min-width: 0;
}

.findme-link-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.findme-link-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.findme-link-arrow {
  color: var(--color-muted);
  flex-shrink: 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.findme-link:hover .findme-link-arrow {
  color: var(--color-gold);
  transform: translateX(3px);
}

.findme-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.findme-back {
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.findme-back:hover { color: var(--color-gold); }

.findme-copyright {
  font-size: var(--text-xs);
  color: var(--color-muted);
  max-width: none;
}

/* ============================================================
   17. FLOATING SUPPORT BUTTON + MODAL
   ============================================================ */

#support-fab-wrap {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 200;
}

.support-fab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-amber));
  color: var(--color-night);
  border: none;
  border-radius: 100px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(200, 144, 10, 0.45);
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast),
              filter var(--transition-fast);
}

.support-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 144, 10, 0.6);
  filter: brightness(1.1);
}

.support-fab-label {
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
}

.support-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: var(--space-md);
}

.support-modal[hidden] { display: none; }

.support-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(8, 17, 31, 0.7);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.support-modal-panel {
  position: relative;
  z-index: 1;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  width: 100%;
  max-width: 380px;
  padding: var(--space-lg);
  box-shadow: 0 -8px 40px rgba(200, 144, 10, 0.1);
  max-height: 90vh;
  overflow-y: auto;
  animation: modal-slide-up 0.3s ease;
}

@keyframes modal-slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.support-modal-close {
  position: absolute;
  top: var(--space-md); right: var(--space-md);
  background: none; border: none;
  cursor: pointer;
  color: var(--color-muted);
  padding: 0.25rem;
  transition: color var(--transition-fast);
}
.support-modal-close:hover { color: var(--color-gold); }

.support-modal-header {
  margin-bottom: var(--space-lg);
  padding-right: 2rem;
}

.support-modal-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.support-modal-subtitle {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
}

.support-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.support-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.875rem var(--space-md);
  background-color: var(--color-surface-2);
  border: 1px solid transparent;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast);
}

.support-option:hover {
  background-color: rgba(200, 144, 10, 0.08);
  border-color: var(--color-border);
  transform: translateX(3px);
}

.support-option-icon {
  width: 40px; height: 40px;
  background-color: var(--color-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-night);
  flex-shrink: 0;
}

.support-option-text { display: flex; flex-direction: column; gap: 2px; flex-grow: 1; }
.support-option-title { font-size: var(--text-sm); font-weight: 600; color: var(--color-cream); }
.support-option-desc  { font-size: var(--text-xs); color: var(--color-muted); }

.support-option-arrow {
  color: var(--color-muted);
  flex-shrink: 0;
  transition: color var(--transition-fast);
}
.support-option:hover .support-option-arrow { color: var(--color-gold); }

.support-modal-thanks {
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--color-muted);
  max-width: none;
}

/* ============================================================
   18. FOOTER
   ============================================================ */

.site-footer {
  background: rgba(2, 5, 8, 0.92);
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--color-border);
  color: var(--color-parchment);
}

.footer-main { padding-block: var(--space-2xl) var(--space-xl); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
  max-width: none;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.footer-address a {
  font-size: var(--text-sm);
  color: var(--color-muted);
  transition: color var(--transition-fast);
}
.footer-address a:hover { color: var(--color-gold); }

.footer-email-link {
  display: inline-block;
  font-size: var(--text-base);
  color: var(--color-parchment) !important;
  border-bottom: 1px solid rgba(200,144,10,0.35);
  padding-bottom: 1px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.footer-email-link:hover {
  color: var(--color-gold) !important;
  border-color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: var(--space-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast),
              border-color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.social-links a:hover {
  color: var(--color-gold-light);
  border-color: var(--color-gold);
  box-shadow: 0 0 12px rgba(200, 144, 10, 0.2);
}

.footer-section-heading {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

.footer-newsletter-desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

/* Newsletter Form */
.newsletter-form-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.newsletter-form-row input[type="email"] {
  flex: 1 1 180px;
  min-width: 0;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  background: rgba(15, 31, 61, 0.7);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-cream);
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-form-row input[type="email"]:focus {
  border-color: var(--color-gold);
}

.newsletter-form-row input[type="email"]::placeholder {
  color: var(--color-muted);
}

.newsletter-hint {
  font-size: 0.78rem;
  color: var(--color-muted);
  font-style: italic;
  margin-top: 0.25rem;
}

.newsletter-status {
  font-size: var(--text-sm);
  margin-top: 0.5rem;
  color: var(--color-gold-light);
}

/* findme Newsletter-Block — kompakt, nicht dominierend */
.findme-newsletter {
  width: 100%;
  background: rgba(15, 31, 61, 0.45);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  margin-bottom: var(--space-md);
}

.findme-newsletter-label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.findme-newsletter-desc {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
}

.findme-newsletter-form .newsletter-form-row {
  gap: 0.4rem;
}

.findme-newsletter-form .newsletter-form-row input[type="email"] {
  font-size: 0.82rem;
  padding: 0.5rem 0.75rem;
}

.findme-newsletter-form .btn {
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
}

.findme-newsletter-form .newsletter-hint {
  font-size: 0.72rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
}

.form-group input[type="email"] {
  width: 100%;
  padding: 0.75em 1em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-cream);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input[type="email"]::placeholder { color: rgba(138, 155, 174, 0.5); }
.form-group input[type="email"]:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(200, 144, 10, 0.15);
}

.form-group .btn { align-self: flex-start; }

.form-privacy {
  font-size: var(--text-xs);
  color: rgba(138, 155, 174, 0.6);
  margin-top: 0.5rem;
  max-width: none;
}

.form-privacy a {
  color: var(--color-muted);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition-fast), color var(--transition-fast);
}
.form-privacy a:hover { color: var(--color-gold); text-decoration-color: var(--color-gold); }

.form-feedback { margin-top: 0.75rem; font-size: var(--text-sm); min-height: 1.5em; max-width: none; }
.form-feedback--success { color: #7abe6a; }
.form-feedback--error   { color: #e07070; }

.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: var(--text-sm);
  color: var(--color-muted);
  transition: color var(--transition-fast);
}
.footer-nav a:hover { color: var(--color-gold); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-md);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copyright, .footer-made {
  font-size: var(--text-xs);
  color: rgba(138, 155, 174, 0.5);
  letter-spacing: 0.05em;
  max-width: none;
}

.footer-made { font-style: italic; }

/* ============================================================
   19. RESPONSIVE — TABLET (≥ 640px)
   ============================================================ */

@media (min-width: 640px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .form-group   { flex-direction: row; }
  .form-group input[type="email"] { flex: 1; }
  .video-grid   { grid-template-columns: repeat(2, 1fr); }
  .teaser-content-grid { grid-template-columns: repeat(3, 1fr); }
  .video-shorts-grid { grid-template-columns: repeat(4, 1fr); }
  .about-photo-wrap { width: 280px; }
}

/* ============================================================
   20. RESPONSIVE — DESKTOP (≥ 1024px)
   ============================================================ */

@media (min-width: 1024px) {

  .nav-toggle { display: none; }
  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
    box-shadow: none;
    border: none;
  }

  .section-hero { grid-template-columns: 1fr 1fr; }
  .hero-content  { grid-column: 1; }
  .hero-pull-quote {
    display: block;
    grid-column: 2;
    position: absolute;
    right: var(--container-pad);
    bottom: var(--space-2xl);
  }

  .about-layout {
    grid-template-columns: auto 1fr;
    gap: clamp(3rem, 6vw, 5rem);
  }
  .werte-grid { grid-template-columns: repeat(3, 1fr); }
  .about-photo-col { justify-content: flex-start; }
  .about-photo-wrap { width: clamp(240px, 28vw, 300px); }

  .book-layout {
    grid-template-columns: auto 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
  }
  .book-cover-col { justify-content: flex-start; }

  .buch-card {
    grid-template-columns: auto 1fr;
    gap: clamp(3rem, 6vw, 5rem);
  }
  .buch-cover-wrap { justify-content: flex-start; }

  .teaser-layout {
    grid-template-columns: auto 1fr;
    gap: clamp(3rem, 6vw, 6rem);
  }
  .teaser-cover-col { justify-content: flex-start; }

  .article-grid { grid-template-columns: repeat(3, 1fr); }

  .video-featured {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
  }

  .footer-grid {
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: var(--space-xl);
  }

  .book-detail-content {
    grid-template-columns: 1fr 280px;
    gap: var(--space-2xl);
  }

  .support-modal { align-items: flex-end; justify-content: flex-end; }
  .support-modal-panel {
    margin-bottom: calc(var(--space-lg) + 56px);
    margin-right: 0;
  }
}

/* ============================================================
   21. RESPONSIVE — MOBILE NAV OPEN
   ============================================================ */

@media (max-width: 1023px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    right: 0;
    width: 240px;
    flex-direction: column;
    align-items: stretch;
    background-color: rgba(8, 17, 31, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-md);
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: -4px 8px 24px rgba(0, 0, 0, 0.45);
    gap: 0;
  }

  .nav-links.is-open { display: flex; }

  .nav-links li { text-align: center; }

  .nav-link {
    display: block;
    padding-block: 0.875rem;
    border-bottom: 1px solid var(--color-border);
    letter-spacing: 0.1em;
    text-align: center;
  }

  .nav-link::after { display: none; }

  .nav-link--cta {
    margin-top: var(--space-sm);
    display: inline-block;
    border-radius: var(--radius-sm);
  }

  .support-fab-label { display: none; }
  .support-fab       { padding: 0.7rem; }
}

/* ============================================================
   22. WIDE (≥ 1280px)
   ============================================================ */

@media (min-width: 1280px) {
  .about-photo-wrap { width: 300px; }
}

/* ============================================================
   23. PREFERS-REDUCED-MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal-item {
    opacity: 1;
    transform: none;
  }

  .hero-blob { animation: none; }
  .scroll-line { animation: none; }
}
