/* ============================================================
   Synapse Pulse – Anatomie der Frequenzen
   css/style.css
   ============================================================ */

/* ── Self-hosted Fonts ──────────────────────────────────────── */
@font-face {
  font-family: 'Special Elite';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/special-elite-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Special Elite';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/special-elite-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../assets/fonts/open-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../assets/fonts/open-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --orange:   #f97316;
  --blue:     #3b82f6;
  --black:    #000000;
  --grey:     #3f3f3f;
  --white:    #ffffff;
  --green:    #30fe41;
  --gold:     #d4af37;
  --text:     rgba(255,255,255,0.92);
  --font-display: 'Special Elite', Georgia, serif;
  --font-body:    'Open Sans', Verdana, Arial, sans-serif;
  --radius:   12px;
  --max-w:    1200px;
}

/* ── Zurück-nach-oben Button ────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateY(8px);
}
#back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#back-to-top:hover {
  background: #ea6c00;
}

/* ── Section divider: 8px accent stripe between every section ── */
/* Set --page-accent on the body class of each page to activate.  */
/* Per-section overrides (e.g. --st-accent) win via specificity.  */
section { border-bottom: 8px solid var(--page-accent, transparent); }

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
}

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

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout Helpers ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 56px 20px; }
.section--orange { background-color: var(--orange); }
.section--blue   { background-color: var(--blue); }
.section--grey   { background-color: var(--grey); }
.section--dark   { background-color: #0a0a0a; }

/* 3-column grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* 2-column grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* center helper */
.text-center { text-align: center; }

/* ── Pulse Animation ────────────────────────────────────────── */
@keyframes pulse-icon {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249,115,22, 0.7); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 10px rgba(249,115,22, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249,115,22, 0); }
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 16px; }

h1 { font-size: clamp(40px, 7vw, 72px); color: var(--orange); text-align: center; margin-bottom: 20px; }

h2 { font-size: clamp(28px, 4.5vw, 48px); color: var(--white); text-align: center; margin-bottom: 24px; }

h3 { font-size: 28px; margin-bottom: 12px; }

p { margin: 0 0 16px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background-color: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  width: 153px;
  height: auto;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__list a {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav__list a:hover { opacity: 0.75; text-decoration: none; }

/* Dropdown */
.nav__item--dropdown { position: relative; }

.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background-color: var(--grey);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 140px;
  list-style: none;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.nav__dropdown li a {
  display: block;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  white-space: nowrap;
}

.nav__dropdown li a:hover { color: var(--orange); text-decoration: none; }

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown { display: block; }

/* Hamburger */
.nav__toggle {
  display: none;
  background: none;
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--orange);
  font-size: 22px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 64px 20px 80px;
  background-color: #0a0a0a;
  text-align: center;
  background-image: url('../assets/images/anatomie-der-frequenzen-techno-roman-hero-rave-web.png');
  background-size: cover;
  background-position: center;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 36px);
  color: var(--white);
  margin: 12px auto 28px;
  max-width: 700px;
}

.hero__text {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--text);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   REZENSIONS-BANNER
   ============================================================ */
.banner-quote {
  padding: 48px 24px;
  background-color: var(--orange);
  text-align: center;
}

.banner-quote__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--white);
  max-width: 840px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.banner-quote__attribution {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 20px;
}

.banner-quote__attribution strong { display: block; font-size: 19px; margin-bottom: 4px; }

.banner-quote__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 26px;
  transition: background 0.2s, transform 0.2s;
  animation: pulse-icon 2s infinite;
}

.banner-quote__link:hover {
  background: rgba(255,255,255,0.35);
  text-decoration: none;
  transform: scale(1.05);
}

/* ============================================================
   BÜCHER
   ============================================================ */
.books { padding: 56px 20px 64px; }

.books__grid { max-width: var(--max-w); margin: 0 auto; }

.book-card { text-align: center; }

.book-card__title { font-family: var(--font-display); font-size: 28px; margin-bottom: 12px; }
.book-card__title--band1 { color: var(--orange); }
.book-card__title--band2 { color: var(--green); }
.book-card__title--band3 { color: var(--gold); }

.book-card__desc {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--text);
  margin-bottom: 20px;
}

.book-card__cover {
  border-radius: var(--radius);
  margin: 20px auto 0;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.book-card__cover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
}

/* ============================================================
   TRANSMEDIA STORYTELLING
   ============================================================ */
.transmedia {
  padding: 56px 24px;
  background-color: var(--blue);
  text-align: center;
}

.transmedia h2 { color: var(--white); }

.transmedia__video-wrap {
  max-width: 941px;
  margin: 20px auto 32px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.transmedia__text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 27px);
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 30px;
  transition: background 0.2s, transform 0.2s;
  animation: pulse-icon 2s infinite;
}

.icon-link:hover {
  background: rgba(255,255,255,0.3);
  text-decoration: none;
  transform: scale(1.08);
}

.icon-link--orange { color: var(--orange); background: rgba(249,115,22,0.15); }
.icon-link--orange:hover { background: rgba(249,115,22,0.25); }

.icon-link--large { font-size: 38px; width: 68px; height: 68px; }

/* Active nav link */
.nav__link--active { text-decoration: underline; opacity: 0.8; }

/* ============================================================
   CHARAKTERE
   ============================================================ */
.characters { padding: 56px 20px 72px; }

.characters__intro {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.characters .section-title { color: var(--white); }

.char-grid {
  max-width: var(--max-w);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.char-card { text-align: center; }

.char-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 12px;
}

.char-card__img {
  border-radius: var(--radius);
  margin: 0 auto 16px;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.char-card__desc {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--text);
}

/* ============================================================
   INSTAGRAM BANNER
   ============================================================ */
.banner-instagram {
  padding: 40px 24px;
  background-color: var(--blue);
  text-align: center;
}

.banner-instagram p {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--white);
  margin-bottom: 20px;
}

.banner-instagram .icon-link { font-size: 38px; width: 68px; height: 68px; }

/* ============================================================
   BUILDING IN PUBLIC
   ============================================================ */
.building-in-public { padding: 56px 20px 72px; }

.building-in-public h2 { text-align: left; }

.building-in-public__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.building-in-public__text {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 21px);
  color: var(--text);
}

.building-in-public__img {
  border-radius: var(--radius);
  width: 100%;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 56px 20px 72px; }

.faq h2 { color: var(--orange); text-align: left; }

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 4px;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq__question:hover { color: var(--orange); }

.faq__question-icon {
  color: var(--orange);
  font-size: 22px;
  flex-shrink: 0;
}

.faq__question-arrow {
  margin-left: auto;
  font-size: 16px;
  transition: transform 0.25s;
  color: rgba(255,255,255,0.4);
}

.faq__item.is-open .faq__question-arrow { transform: rotate(180deg); }

.faq__answer {
  display: none;
  padding: 0 0 20px 36px;
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--text);
  line-height: 1.7;
}

.faq__item.is-open .faq__answer { display: block; }

/* ============================================================
   VIDEO TRAILER CTA
   ============================================================ */
.banner-video {
  padding: 40px 24px;
  background-color: var(--orange);
  text-align: center;
}

.banner-video p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
  font-weight: bold;
  margin-bottom: 20px;
}

.banner-video .icon-link {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 34px;
  width: 68px;
  height: 68px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--grey);
  padding: 32px 20px 24px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 20px;
}

.footer__logo img { width: 140px; }

.footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__nav a {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--orange);
}

.footer__nav a:hover { text-decoration: underline; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin: 0;
}

.footer__social a {
  color: var(--orange);
  font-size: 30px;
  transition: transform 0.2s;
  display: inline-block;
}

.footer__social a:hover { transform: scale(1.15); text-decoration: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .nav__list { display: none; flex-direction: column; gap: 0; }
  .nav__list.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #111;
    padding: 16px 24px 24px;
    border-bottom: 2px solid var(--orange);
    z-index: 99;
  }
  .nav__list.is-open li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav__list.is-open li:last-child { border-bottom: none; }
  .nav__list.is-open a { display: block; padding: 12px 0; }
  .nav__inner { position: relative; }
  .nav__toggle { display: block; }

  .nav__dropdown {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 16px;
    display: block;
  }
  .nav__dropdown li a { padding: 8px 0; font-size: 17px; color: var(--text); }
  .nav__item--dropdown .nav__dropdown { display: none; }
  .nav__item--dropdown.is-open .nav__dropdown { display: block; }

  .transmedia__video-wrap { max-width: 100%; }
  #transmedia-video { height: 380px; }
}

@media (max-width: 767px) {
  .grid-3,
  .char-grid { grid-template-columns: 1fr; }
  .building-in-public__grid { grid-template-columns: 1fr; }
  .building-in-public h2 { text-align: center; }
  .faq h2 { text-align: center; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding: 48px 20px 56px; }
}

@media (max-width: 575px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  h3 { font-size: 24px; }
  .transmedia__video-wrap { aspect-ratio: 16/9; }
}

/* ============================================================
   ROMAN 01 – Jonas: Operation am offenen Klang
   Palette: Synaptic Blue #3b82f6 · Psytrance Neon #ec4899 · Ecstasy Orange #f97316
   ============================================================ */

/* ── Custom vars scoped to page ── */
.page-roman01 {
  --r01-blue:   #3b82f6;
  --r01-pink:   #ec4899;
  --r01-orange: #f97316;
  --page-accent: var(--orange);
}

/* ── Hero ───────────────────────────────────────────────────── */
.r01-hero {
  padding: 56px 20px 64px;
  background-color: var(--black);
  text-align: center;
}

.r01-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 64px);
  color: var(--r01-orange);
  margin-bottom: 12px;
}

.r01-hero__sub {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  color: var(--white);
  margin: 0 auto 40px;
  max-width: 700px;
}

.r01-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: left;
}

.r01-hero__cover { display: flex; justify-content: center; }

.r01-cover-img {
  max-width: 340px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(59,130,246,0.3);
}

.r01-hero__intro {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text);
  line-height: 1.75;
}

/* ── Story Banner (blue) ────────────────────────────────────── */
.r01-story {
  padding: 56px 24px;
  background-color: var(--r01-blue);
}

.r01-story h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--orange);
  text-align: center;
  margin-bottom: 40px;
}

.r01-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.r01-story__photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.r01-story__text {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--white);
  line-height: 1.75;
}

/* ── Sound des Buches (grey) ────────────────────────────────── */
.r01-sound {
  padding: 56px 24px;
  background-color: var(--grey);
  text-align: center;
}

.r01-sound h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--orange);
  margin-bottom: 20px;
}

.r01-sound__text {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── Shared button style ────────────────────────────────────── */
.r01-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  background-color: var(--r01-orange);
  color: var(--white);
}

.r01-btn:hover { opacity: 0.88; text-decoration: none; transform: translateY(-2px); }

.r01-btn--blue {
  background-color: var(--blue);
}

@keyframes pulse-btn-blue {
  0%   { box-shadow: 0 0 0 0 rgba(59,130,246,0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(59,130,246,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
}

.r01-btn--blue.r01-btn--pulse {
  animation: pulse-btn-blue 2s infinite;
}

.r01-btn--instagram {
  margin-top: 12px;
}

.r01-btn--pulse {
  animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
  0%   { box-shadow: 0 0 0 0 rgba(249,115,22,0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}

.r01-btn--instagram.r01-btn--pulse {
  animation: pulse-btn-pink 2s infinite;
}

@keyframes pulse-btn-pink {
  0%   { box-shadow: 0 0 0 0 rgba(236,72,153,0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(236,72,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(236,72,153,0); }
}

/* ── Schlüsselfiguren ───────────────────────────────────────── */
.r01-chars {
  padding: 56px 20px 72px;
  background-color: var(--black);
}

.r01-chars h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--orange);
  text-align: center;
  margin-bottom: 48px;
}

.r01-chars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto 40px;
}

.r01-char-card { text-align: center; }

.r01-char-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--r01-orange);
  margin-bottom: 12px;
}

.r01-char-card__img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 auto 16px;
  display: block;
}

.r01-char-card__desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text);
  line-height: 1.65;
}

/* ── Leseprobe (grey) ───────────────────────────────────────── */
.r01-excerpt {
  padding: 56px 24px;
  background-color: var(--grey);
  text-align: center;
}

.r01-excerpt h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--orange);
  margin-bottom: 32px;
}

.r01-excerpt__quote {
  margin: 0 auto;
  max-width: 820px;
  border: none;
  padding: 0;
}

.r01-excerpt__quote p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 25px);
  color: var(--white);
  line-height: 1.8;
  quotes: none;
}

/* ── Sei Teil der Bewegung (black) ──────────────────────────── */
.r01-cta {
  padding: 56px 24px 72px;
  background-color: var(--black);
  text-align: center;
}

.r01-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--orange);
  margin-bottom: 20px;
}

.r01-cta__text {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--text);
  max-width: 760px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.r01-cta__instagram-label {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
  margin: 40px 0 16px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 767px) {
  .r01-hero__grid,
  .r01-story__grid { grid-template-columns: 1fr; }
  .r01-hero__grid  { text-align: center; }
  .r01-chars__grid { grid-template-columns: 1fr; }
  .r01-hero h1     { font-size: 36px; }
}

@media (max-width: 575px) {
  .r01-cover-img { max-width: 260px; }
  .r01-btn       { font-size: 17px; padding: 12px 24px; }
}

/* ============================================================
   ROMAN 02 – Leo: Durch die Ohren eines Fans
   Palette: Neon Green #30fe41 (accent) · Deep Green #16a34a (bg)
   ============================================================ */

.page-roman02 {
  --r02-green:  #16a34a;
  --r02-accent: #30fe41;
  --page-accent: var(--r02-accent);
}

/* ── Hero ───────────────────────────────────────────────────── */
.r02-hero {
  padding: 56px 20px 64px;
  background-color: var(--black);
  text-align: center;
}

.r02-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 64px);
  color: var(--r02-accent);
  margin-bottom: 12px;
}

.r02-hero__sub {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  color: var(--white);
  margin: 0 auto 40px;
  max-width: 700px;
}

.r02-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: left;
}

.r02-hero__cover { display: flex; justify-content: center; }

.r02-cover-img {
  max-width: 340px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(22,163,74,0.35);
}

.r02-hero__intro {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text);
  line-height: 1.75;
}

/* ── Story Banner (green) ───────────────────────────────────── */
.r02-story {
  padding: 56px 24px;
  background-color: var(--r02-green);
}

.r02-story h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--orange);
  text-align: center;
  margin-bottom: 40px;
}

.r02-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.r02-story__photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.r02-story__text {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--white);
  line-height: 1.75;
}

/* ── Sound der Analyse (grey) ───────────────────────────────── */
.r02-sound {
  padding: 56px 24px;
  background-color: var(--grey);
  text-align: center;
}

.r02-sound h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--orange);
  margin-bottom: 20px;
}

.r02-sound__inner { max-width: 800px; }

.r02-sound__text {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── Shared button style ────────────────────────────────────── */
.r02-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  background-color: var(--r02-green);
  color: var(--white);
}

.r02-btn:hover { opacity: 0.88; text-decoration: none; transform: translateY(-2px); }

.r02-btn--blue { background-color: var(--blue); }

.r02-btn--pulse { animation: pulse-btn-green 2s infinite; }

@keyframes pulse-btn-green {
  0%   { box-shadow: 0 0 0 0 rgba(22,163,74,0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

/* ── Die Akten / Schlüsselfiguren ───────────────────────────── */
.r02-chars {
  padding: 56px 20px 72px;
  background-color: var(--black);
}

.r02-chars h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--orange);
  text-align: center;
  margin-bottom: 48px;
}

.r02-chars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto 40px;
}

.r02-char-card { text-align: center; }

.r02-char-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--r02-accent);
  margin-bottom: 12px;
}

.r02-char-card__img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 auto 16px;
  display: block;
}

.r02-char-card__desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text);
  line-height: 1.65;
}

/* ── Leseprobe (grey) ───────────────────────────────────────── */
.r02-excerpt {
  padding: 56px 24px;
  background-color: var(--grey);
  text-align: center;
}

.r02-excerpt h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--orange);
  margin-bottom: 32px;
}

.r02-excerpt__quote {
  margin: 0 auto;
  max-width: 820px;
  border: none;
  padding: 0;
}

.r02-excerpt__quote p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 25px);
  color: var(--white);
  line-height: 1.8;
  quotes: none;
}

/* ── CTA (black) ────────────────────────────────────────────── */
.r02-cta {
  padding: 56px 24px 72px;
  background-color: var(--black);
  text-align: center;
}

.r02-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--orange);
  margin-bottom: 20px;
}

.r02-cta__text {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--text);
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.75;
}

/* ── All headings use band accent color ─────────────────────── */
.page-roman02 h1,
.page-roman02 h2,
.page-roman02 h3,
.page-roman02 h4 { color: var(--r02-accent); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 767px) {
  .r02-hero__grid,
  .r02-story__grid { grid-template-columns: 1fr; }
  .r02-hero__grid  { text-align: center; }
  .r02-chars__grid { grid-template-columns: 1fr; }
  .r02-hero h1     { font-size: 36px; }
}

@media (max-width: 575px) {
  .r02-cover-img { max-width: 260px; }
  .r02-btn       { font-size: 17px; padding: 12px 24px; }
}

/* ============================================================
   ROMAN 03 – Aya: Die Frequenz des Lichts
   Palette: Gold #d4a017 (accent + bg-dark) · Amber #92600a (banner bg)
   ============================================================ */

.page-roman03 {
  --r03-gold:   #D4AF37;
  --r03-banner: #D4AF37;
  --page-accent: var(--r03-gold);
}

/* ── All headings use band accent color ─────────────────────── */
.page-roman03 h1,
.page-roman03 h2,
.page-roman03 h3,
.page-roman03 h4 { color: var(--r03-gold); }

/* ── Hero ───────────────────────────────────────────────────── */
.r03-hero {
  padding: 56px 20px 64px;
  background-color: var(--black);
  text-align: center;
}

.r03-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 64px);
  margin-bottom: 12px;
}

.r03-hero__sub {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  color: var(--white);
  margin: 0 auto 40px;
  max-width: 700px;
}

.r03-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: left;
}

.r03-hero__cover { display: flex; justify-content: center; }

.r03-cover-img {
  max-width: 340px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(212,160,23,0.35);
}

.r03-hero__intro {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text);
  line-height: 1.75;
}

/* ── Story Banner (amber/gold) ──────────────────────────────── */
.r03-story {
  padding: 56px 24px;
  background-color: var(--r03-banner);
}

.r03-story h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--black);
  text-align: center;
  margin-bottom: 40px;
}

.r03-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.r03-story__photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.r03-story__text {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--black);
  line-height: 1.75;
}

/* ── Sound des Lichts (grey) ────────────────────────────────── */
.r03-sound {
  padding: 56px 24px;
  background-color: var(--grey);
  text-align: center;
}

.r03-sound h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  margin-bottom: 20px;
}

.r03-sound__inner { max-width: 800px; }

.r03-sound__text {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── Shared button style ────────────────────────────────────── */
.r03-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  background-color: var(--r03-gold);
  color: var(--white);
}

.r03-btn:hover { opacity: 0.88; text-decoration: none; transform: translateY(-2px); }

@keyframes pulse-btn-gold {
  0%   { box-shadow: 0 0 0 0 rgba(212,160,23,0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(212,160,23,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,160,23,0); }
}

.r03-btn--pulse { animation: pulse-btn-gold 2s infinite; }

/* ── Die Konvergenz / Hauptfiguren ──────────────────────────── */
.r03-chars {
  padding: 56px 20px 72px;
  background-color: var(--black);
}

.r03-chars h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  text-align: center;
  margin-bottom: 48px;
}

.r03-chars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto 40px;
}

.r03-char-card { text-align: center; }

.r03-char-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
}

.r03-char-card__img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 auto 16px;
  display: block;
}

.r03-char-card__desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text);
  line-height: 1.65;
}

/* ── Leseprobe (grey) ───────────────────────────────────────── */
.r03-excerpt {
  padding: 56px 24px;
  background-color: var(--grey);
  text-align: center;
}

.r03-excerpt h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  margin-bottom: 32px;
}

.r03-excerpt__quote {
  margin: 0 auto;
  max-width: 820px;
  border: none;
  padding: 0;
}

.r03-excerpt__quote p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 25px);
  color: var(--white);
  line-height: 1.8;
  quotes: none;
}

/* ── CTA (black) ────────────────────────────────────────────── */
.r03-cta {
  padding: 56px 24px 72px;
  background-color: var(--black);
  text-align: center;
}

.r03-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  margin-bottom: 20px;
}

.r03-cta__text {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--text);
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.75;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 767px) {
  .r03-hero__grid,
  .r03-story__grid { grid-template-columns: 1fr; }
  .r03-hero__grid  { text-align: center; }
  .r03-chars__grid { grid-template-columns: 1fr; }
  .r03-hero h1     { font-size: 36px; }
}

@media (max-width: 575px) {
  .r03-cover-img { max-width: 260px; }
  .r03-btn       { font-size: 17px; padding: 12px 24px; }
}

/* ============================================================
   SOUNDTRACK PAGE
   Sektionsfarben: Jonas #3b82f6 · Leo #00FF41 · Aya #D4AF37 · Epilog #8A9A5B
   ============================================================ */
.page-soundtrack { --page-accent: var(--orange); }
/* Per-section --st-accent overrides the global rule for the 4 band sections */

.st-hero {
  background-color: var(--black);
  padding: 64px 20px;
  text-align: center;
  /* border-bottom: inherited from global section rule via --page-accent */
}
.st-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  color: var(--orange);
  margin-bottom: 16px;
}
.st-hero__h2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--white);
  margin-bottom: 20px;
}
.st-hero__text {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Section base */
.st-section {
  padding: 64px 20px;
  background-color: var(--black);
  border-bottom: 8px solid var(--st-accent);
}
.st-section--jonas { --st-accent: #3b82f6; }
.st-section--leo   { --st-accent: #00FF41; }
.st-section--aya   { --st-accent: #D4AF37; }
.st-section--epilog { --st-accent: #8A9A5B; }

.st-section__header {
  max-width: var(--max-w);
  margin: 0 auto 36px;
}
.st-section__h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--st-accent);
  margin-bottom: 12px;
}
.st-section__subtext {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--text);
  line-height: 1.7;
}
.st-section__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}
.st-section__img-col { /* sticky image column */ }
.st-section__img {
  width: 100%;
  border-radius: var(--radius);
  position: sticky;
  top: 80px;
}

/* Audio block */
.st-audio-block {
  background: var(--grey);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.st-audio-block__title {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--st-accent);
  margin: 0 0 10px;
}
.st-audio-block__player {
  width: 100%;
  height: 40px;
  accent-color: var(--st-accent);
  display: block;
  margin-bottom: 10px;
}
.st-audio-block__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* Soundtrack responsive */
@media (max-width: 767px) {
  .st-section__grid { grid-template-columns: 1fr; }
  .st-section__img  { position: static; }
}

/* ============================================================
   MEDIEN PAGE
   ============================================================ */
.page-medien { --page-accent: var(--orange); }

/* Hero */
.med-hero {
  background-color: var(--black);
  padding: 64px 20px;
  text-align: center;
}
.med-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--orange);
  margin-bottom: 20px;
}
.med-hero__text {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--text);
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

/* CTA button (orange, pulsing) */
.med-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  background: var(--orange);
  border: none;
  border-radius: 8px;
  padding: 14px 36px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.med-btn--pulse {
  animation: pulse-btn-orange 2s infinite;
}
.med-btn:hover { background: #ea6c00; }

/* Trailer section */
.med-trailers {
  background-color: var(--black);
  padding: 64px 20px;
}
.med-trailers__h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--orange);
  margin-bottom: 12px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.med-trailers__intro {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--text);
  max-width: var(--max-w);
  margin: 0 auto 48px;
  line-height: 1.75;
}

/* Individual trailer block */
.med-trailer-block {
  background: var(--black);
  border-radius: var(--radius);
  padding: 36px 40px;
  max-width: var(--max-w);
  margin: 0 auto 32px;
}
.med-trailer-block--alt {
  background: var(--black);
}
.med-trailer-block__h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--orange);
  margin-bottom: 12px;
}
.med-trailer-block__desc {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* 16:9 responsive video wrapper */
.med-video-wrapper {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}
.med-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Podcast intro (black, 2-col) */
.med-podcast-intro {
  background-color: var(--black);
  padding: 64px 20px;
}
.med-podcast-intro__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.med-podcast-intro__h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  color: var(--orange);
  margin-bottom: 16px;
}
.med-podcast-intro__quote {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 12px;
}
.med-podcast-intro__attr {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--orange);
  margin: 0;
}
.med-podcast-intro__img {
  width: 100%;
  border-radius: var(--radius);
}

/* Podcast grid (black bg, 3-col) */
.med-podcast-grid {
  background-color: var(--black);
  padding: 64px 20px;
}
.med-podcast-grid__h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  color: var(--white);          /* weiss auf schwarzem Hintergrund */
  max-width: var(--max-w);
  margin: 0 auto 40px;
}
.med-podcast-grid__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Podcast card: weisser Rand, dunkles Inneres, farbiger Header-Balken */
.med-podcast-card {
  border: 1px solid var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #111;
}

/* Farbiger Header-Balken – Farbe per --card-accent inline auf der Card */
.med-podcast-card__header {
  background-color: var(--card-accent, var(--orange));
  padding: 14px 16px 10px;
}
.med-podcast-card__label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}
.med-podcast-card__player {
  width: 100%;
  height: 36px;
  accent-color: var(--black);
  color-scheme: dark;
  display: block;
}

/* Textbereich */
.med-podcast-card__body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.med-podcast-card__title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}
.med-podcast-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* Medien responsive */
@media (max-width: 991px) {
  .med-podcast-grid__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .med-podcast-intro__grid { grid-template-columns: 1fr; }
  .med-podcast-grid__cols  { grid-template-columns: 1fr; }
  .med-trailer-block        { padding: 24px 20px; }
}

/* ============================================================
   ÜBER UNS PAGE
   Akzentfarbe: Blau #3b82f6
   ============================================================ */
.page-ueber-uns { --page-accent: #3b82f6; }

/* Hero */
.uu-hero {
  background-color: var(--black);
  padding: 72px 20px 56px;
  text-align: center;
}
.uu-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  color: #3b82f6;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.25;
}

/* Section base */
.uu-section { padding: 64px 20px; }
.uu-section--black { background-color: var(--black); }
.uu-section--grey  { background-color: var(--black); }

/* 2-column grid */
.uu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
/* Reversed: text column first in DOM but displayed on left via CSS */
.uu-grid--reversed {
  grid-template-columns: 1fr 1fr;
}
.uu-grid--reversed .uu-grid__text { order: 1; }
.uu-grid--reversed .uu-grid__img  { order: 2; }

.uu-img {
  width: 100%;
  border-radius: var(--radius);
}

/* Typography */
.uu-h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 34px);
  color: #3b82f6;
  margin: 0 0 20px;
  line-height: 1.3;
}
.uu-h3 {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 24px);
  color: #3b82f6;
  margin: 0 0 8px;
}
.uu-text {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text);
  line-height: 1.75;
  margin: 0 0 16px;
}
.uu-text:last-of-type { margin-bottom: 0; }

/* Novel list */
.uu-novel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.uu-novel-list li {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid rgba(59,130,246,0.25);
}
.uu-novel-list li:first-child { border-top: 1px solid rgba(59,130,246,0.25); }
.uu-novel-list a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.uu-novel-list a:hover { color: #3b82f6; text-decoration: none; }

/* Value blocks */
.uu-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.uu-value:last-child { margin-bottom: 0; }
.uu-value__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
}

/* CTA Quote – 1-col centered */
.uu-cta-quote { text-align: center; }
.uu-cta-quote__text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 36px);
  color: #3b82f6;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
  font-weight: normal;
}

/* CTA Button */
.uu-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  background: #3b82f6;
  border-radius: 8px;
  padding: 14px 36px;
  text-decoration: none;
  margin-top: 24px;
  transition: background 0.2s;
}
.uu-btn--pulse { animation: pulse-btn-blue 2s infinite; }
.uu-btn:hover  { background: #2563eb; text-decoration: none; }

/* Responsive */
@media (max-width: 767px) {
  .uu-grid,
  .uu-grid--reversed { grid-template-columns: 1fr; gap: 32px; }
  .uu-grid--reversed .uu-grid__text,
  .uu-grid--reversed .uu-grid__img  { order: unset; }
}

/* ============================================================
   FOUNDING READERS PAGE
   Akzentfarbe: Orange #f97316
   ============================================================ */
.page-founding-readers { --page-accent: var(--orange); }

/* Hero */
.fr-hero {
  background-color: var(--black);
  padding: 72px 20px 56px;
}
.fr-hero__h1 {
  font-family: 'Special Elite', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--orange);
  line-height: 1.25;
  margin: 0 0 40px;
}
.fr-hero__h1 em { font-style: italic; }
.fr-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Shared */
.fr-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.fr-section {
  background-color: var(--black);
  padding: 64px 20px;
}
.fr-h2 {
  font-family: 'Special Elite', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--orange);
  line-height: 1.25;
  margin: 0 0 32px;
}
.fr-h3 {
  font-family: 'Special Elite', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--orange);
  line-height: 1.3;
  margin: 0 0 20px;
}
.fr-section__h2 { margin-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.fr-text {
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin: 0 0 16px;
}
.fr-text:last-of-type { margin-bottom: 0; }

/* Benefit cards */
.fr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}
.fr-card {
  background: #111;
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.fr-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.fr-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fr-card__title {
  font-family: 'Special Elite', serif;
  font-size: 1.05rem;
  color: var(--orange);
  margin: 0 0 16px;
}

/* Checklist */
.fr-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.fr-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 12px;
}
.fr-checklist li:last-child { margin-bottom: 0; }
.fr-checklist .fa-check {
  color: var(--orange);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Buttons */
.fr-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-family: 'Special Elite', serif;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  transition: opacity 0.2s, transform 0.2s;
}
.fr-btn:hover { opacity: 0.85; transform: translateY(-2px); text-decoration: none; }
.fr-btn--pulse { animation: pulse-btn 2s infinite; }

/* Author section */
.fr-author__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.fr-author__name {
  font-family: 'Special Elite', serif;
  font-size: 1.1rem;
  color: var(--orange);
  margin: 20px 0 0;
}

/* Reviews */
.fr-review__quote {
  border-left: 3px solid var(--orange);
  padding: 16px 24px;
  margin: 0 0 20px;
  background: rgba(249,115,22,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.fr-review__quote p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}
.fr-review__attr {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.fr-review__attr strong { color: var(--white); }
.fr-review__attr a { color: var(--orange); text-decoration: underline; }
.fr-review__attr a:hover { opacity: 0.8; text-decoration: none; }

/* Pull quote */
.fr-pullquote {
  background-color: #0a0a0a;
  padding: 64px 20px;
  text-align: center;
}
.fr-pullquote__text {
  font-family: 'Special Elite', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--orange);
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto;
}

/* Club status */
.fr-status__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.fr-status__cta .fr-btn {
  margin-top: 8px;
}

/* FAQ */
.fr-faq__list {
  max-width: 760px;
}
.fr-faq__item {
  border-bottom: 1px solid rgba(249,115,22,0.25);
  padding: 4px 0;
}
.fr-faq__item:first-child { border-top: 1px solid rgba(249,115,22,0.25); }
.fr-faq__question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  font-family: 'Special Elite', serif;
  font-size: 1rem;
  color: var(--white);
  list-style: none;
}
.fr-faq__question::-webkit-details-marker { display: none; }
.fr-faq__question .fa-question-circle {
  color: var(--orange);
  flex-shrink: 0;
}
.fr-faq__item[open] .fr-faq__question { color: var(--orange); }
.fr-faq__answer {
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  padding: 0 0 16px 28px;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .fr-hero__grid,
  .fr-author__grid,
  .fr-status__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 767px) {
  .fr-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG ARTICLE PAGES
   Akzentfarbe: Orange #f97316 (via .page-blog --page-accent)
   ============================================================ */

/* Article header */
.ba-header {
  background-color: var(--black);
  padding: 64px 20px 32px;
}
.ba-meta {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}
.ba-h1 {
  font-family: 'Special Elite', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--orange);
  line-height: 1.25;
  margin: 0;
}

/* Featured image */
.ba-featured {
  background-color: var(--black);
  padding: 24px 20px 0;
}
.ba-featured__img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

/* Article body */
.ba-body {
  background-color: var(--black);
  padding: 48px 20px 64px;
}
.ba-prose {
  max-width: 760px;
}

/* Prose typography */
.ba-prose h2 {
  font-family: 'Special Elite', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--orange);
  line-height: 1.3;
  margin: 40px 0 16px;
}
.ba-prose h2:first-child { margin-top: 0; }
.ba-prose h3 {
  font-family: 'Special Elite', serif;
  font-size: 1.05rem;
  color: var(--orange);
  line-height: 1.35;
  margin: 28px 0 10px;
}
.ba-prose p {
  color: rgba(255,255,255,0.82);
  line-height: 1.82;
  margin: 0 0 18px;
}
.ba-prose p:last-child { margin-bottom: 0; }
.ba-prose strong { color: var(--white); }
.ba-prose em { font-style: italic; }
.ba-prose a {
  color: var(--orange);
  text-decoration: underline;
}
.ba-prose a:hover { opacity: 0.8; text-decoration: none; }

/* Lists */
.ba-prose ul,
.ba-prose ol {
  color: rgba(255,255,255,0.82);
  padding-left: 24px;
  margin: 0 0 20px;
}
.ba-prose li {
  line-height: 1.75;
  margin-bottom: 8px;
}

/* Blockquote */
.ba-prose blockquote {
  border-left: 3px solid var(--orange);
  margin: 28px 0;
  padding: 14px 20px;
  background: rgba(249,115,22,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.ba-prose blockquote p {
  color: rgba(255,255,255,0.7);
  margin: 0 0 10px;
}
.ba-prose blockquote p:last-child { margin-bottom: 0; }

/* Inline images */
.ba-prose-img {
  max-width: 75%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  margin: 28px 0;
}

/* Back link section */
.ba-back-section {
  background-color: var(--black);
  padding: 48px 20px 72px;
  border-bottom: none;
}
.ba-back-link {
  display: inline-block;
  color: var(--orange);
  font-family: 'Special Elite', serif;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--orange);
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.ba-back-link:hover {
  background: var(--orange);
  color: var(--black);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 767px) {
  .ba-prose-img { max-width: 100%; }
}

/* ============================================================
   BLOG INDEX PAGE
   Akzentfarbe: Orange #f97316
   ============================================================ */
.page-blog { --page-accent: var(--orange); }

/* Hero */
.bl-hero {
  background-color: var(--black);
  padding: 72px 20px 56px;
  text-align: center;
}
.bl-hero__h1 {
  font-family: 'Special Elite', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--orange);
  margin: 0 0 20px;
  letter-spacing: 0.04em;
}
.bl-hero__text {
  color: rgba(255,255,255,0.75);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: 1.05rem;
}

/* Grid section */
.bl-grid-section {
  background-color: var(--black);
  padding: 48px 20px 80px;
}
.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.bl-card {
  background: #111;
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.bl-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.bl-card__img-link { display: block; }
.bl-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.bl-card__body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bl-card__h2 { margin: 0 0 8px; }
.bl-card__title-link {
  font-family: 'Special Elite', serif;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s;
}
.bl-card__title-link:hover { color: var(--orange); text-decoration: none; }
.bl-card__date {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin: 0 0 16px;
}
.bl-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-family: 'Special Elite', serif;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.bl-btn:hover { opacity: 0.85; text-decoration: none; }

/* Responsive */
@media (max-width: 991px) {
  .bl-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .bl-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INVESTITION GESUCHT PAGE
   Akzentfarbe: Orange #f97316
   ============================================================ */
.page-investition { --page-accent: var(--orange); }

/* Hero */
.inv-hero {
  background-color: var(--black);
  padding: 72px 20px 56px;
}
.inv-hero__h1 {
  font-family: 'Special Elite', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--orange);
  line-height: 1.2;
  margin: 0 0 40px;
}
.inv-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.inv-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* Shared section */
.inv-section {
  background-color: var(--black);
  padding: 64px 20px;
}

/* Lead text */
.inv-lead {
  font-size: 1.15rem;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.7;
}

/* Body text */
.inv-text {
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin: 0 0 16px;
}
.inv-text:last-of-type { margin-bottom: 0; }

/* Highlighted amounts */
.inv-amount {
  color: var(--orange);
  font-weight: 700;
}

/* Social links */
.inv-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.inv-social__link {
  font-size: 1.5rem;
  color: var(--orange);
  transition: opacity 0.2s;
}
.inv-social__link:hover { opacity: 0.7; }

/* Section headings */
.inv-h2 {
  font-family: 'Special Elite', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--orange);
  line-height: 1.25;
  margin: 0 0 32px;
}
.inv-h3 {
  font-family: 'Special Elite', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--orange);
  line-height: 1.3;
  margin: 0 0 16px;
}

/* 4-card grid */
.inv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.inv-card {
  background: #111;
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.inv-card__h3 {
  font-family: 'Special Elite', serif;
  font-size: 1.1rem;
  color: var(--orange);
  line-height: 1.3;
  margin: 0 0 12px;
}
.inv-card__text {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: 0;
}

/* Finanzierungs-Kaskade */
.inv-cascade { }
.inv-cascade__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}
.inv-cascade__item {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin-bottom: 32px;
}
.inv-cascade__item:last-child { margin-bottom: 0; }
.inv-cascade__h3 {
  font-family: 'Special Elite', serif;
  font-size: 1rem;
  color: var(--orange);
  line-height: 1.3;
  margin: 0 0 10px;
}
.inv-cascade__img {
  border-radius: var(--radius);
}

/* Return cards */
.inv-return__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}
.inv-return__card {
  background: #111;
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: var(--radius);
  overflow: hidden;
}
.inv-return__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.inv-return__body {
  padding: 24px;
}
.inv-return__h3 {
  font-family: 'Special Elite', serif;
  font-size: 1.15rem;
  color: var(--orange);
  margin: 0 0 12px;
}

/* Equity section */
.inv-equity { }
.inv-equity__single { max-width: 720px; }
.inv-equity__grafik {
  margin-top: 32px;
  max-width: 480px;
}
.inv-equity__name {
  font-family: 'Special Elite', serif;
  color: var(--white);
  font-size: 1.1rem;
  margin: 12px 0 4px;
}
.inv-equity__role {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin: 0;
}
.inv-quote {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* CTA */
.inv-cta { text-align: center; }
.inv-cta__text {
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.75;
}
.inv-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-family: 'Special Elite', serif;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.inv-btn:hover { opacity: 0.85; transform: translateY(-2px); text-decoration: none; }
.inv-btn--pulse { animation: pulse-btn 2s infinite; }

/* Responsive */
@media (max-width: 991px) {
  .inv-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .inv-cascade__items { grid-template-columns: 1fr; }
  .inv-equity__grafik { max-width: 100%; }
}
@media (max-width: 767px) {
  .inv-cards,
  .inv-return__grid { grid-template-columns: 1fr; }
}

/* ── Legal pages (datenschutz, impressum, kontakt) ── */
.page-legal  { --page-accent: var(--orange); }
.page-kontakt { --page-accent: var(--orange); }

.lp-section { padding: 64px 0 80px; }

.lp-prose {
  max-width: 760px;
  margin: 0 auto;
}
.lp-prose h1 {
  font-family: 'Special Elite', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--orange);
  margin-bottom: 40px;
}
.lp-prose h2 {
  font-size: 1.25rem;
  color: var(--orange);
  margin: 40px 0 12px;
}
.lp-prose h3 {
  font-size: 1.05rem;
  color: var(--off-white);
  margin: 28px 0 10px;
}
.lp-prose p {
  color: var(--off-white);
  line-height: 1.75;
  margin-bottom: 16px;
}
.lp-prose a { color: var(--orange); text-decoration: underline; }
.lp-prose a:hover { opacity: 0.8; }

.lp-btn {
  display: inline-block;
  background: var(--orange);
  color: #000;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 8px;
  transition: opacity .2s, transform .2s;
}
.lp-btn:hover { opacity: 0.85; transform: translateY(-2px); }

.lp-brand {
  margin-top: 32px;
  font-weight: 700;
  color: var(--orange);
}
