/* ===== YUIKEN – Shared Styles ===== */
/* Cerulean Blue #007BA7 as lead color */

:root {
  --cerulean: #007BA7;
  --cerulean-light: #4DA8C8;
  --cerulean-pale: #B8DDE8;
  --cerulean-whisper: #E8F4F8;
  --sky-white: #F7FBFD;
  --night-deep: #0A1628;
  --night-mid: #0F2035;
  --night-glow: #1A3050;
  --warm-dawn: #FFF8F0;
  --warm-gold: #F5E6D0;
  --gold-warm: #C49A6C;
  --text-dark: #1A2A3A;
  --text-body: #2A2A2A;
  --text-medium: #4A6A7A;
  --text-light: #8AACBC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text-dark);
  background: var(--sky-white);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 2.5rem;
  background: transparent;
  transition: background 0.6s, box-shadow 0.6s;
}
nav.scrolled { background: rgba(247,251,253,0.95); box-shadow: 0 1px 20px rgba(0,123,167,0.06); }
nav.in-dark { background: rgba(10,22,40,0.9); }
nav.in-warm { background: rgba(255,248,240,0.95); box-shadow: 0 1px 20px rgba(196,154,108,0.1); }
nav.subpage { background: rgba(247,251,253,0.97); box-shadow: 0 1px 20px rgba(0,123,167,0.06); }

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cerulean);
  transition: color 0.3s;
}
nav.in-dark .nav-logo { color: var(--cerulean-pale); }
nav.in-warm .nav-logo { color: var(--gold-warm); }

.nav-links {
  list-style: none; display: flex; gap: 2.5rem;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-medium);
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cerulean); }
nav.in-dark .nav-links a { color: var(--cerulean-pale); opacity: 0.7; }
nav.in-dark .nav-links a:hover, nav.in-dark .nav-links a.active { color: #fff; opacity: 1; }
nav.in-warm .nav-links a { color: var(--gold-warm); opacity: 0.7; }
nav.in-warm .nav-links a:hover, nav.in-warm .nav-links a.active { color: var(--text-dark); opacity: 1; }

.nav-midpoint {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.8em;
  line-height: 1;
  margin: 0 0.05em;
}

/* ===== DOT NAVIGATION ===== */
.dot-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cerulean-pale);
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.4s, background 0.4s, transform 0.3s;
}
.dot:hover { opacity: 0.8; transform: scale(1.3); }
.dot.active { opacity: 1; background: var(--cerulean); transform: scale(1.4); }
.dot.dark-mode { background: rgba(255,255,255,0.3); }
.dot.dark-mode.active { background: var(--cerulean-light); }
.dot.warm-mode { background: var(--warm-gold); opacity: 0.4; }
.dot.warm-mode.active { background: var(--gold-warm); opacity: 1; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 6rem 2rem 8rem;
  background: var(--sky-white);
  position: relative;
}
.hero-kanji {
  font-size: 4rem;
  color: var(--cerulean);
  opacity: 0.15;
  margin-bottom: 1rem;
  animation: fadeInSlow 2s ease-out;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  animation: fadeInSlow 2.5s ease-out;
}
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cerulean);
  margin-top: 0.8rem;
  animation: fadeInSlow 3s ease-out;
}
.hero-statement {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-body);
  margin-top: 1.5rem;
  max-width: 520px;
  line-height: 2;
  animation: fadeInSlow 3.5s ease-out;
}
.scroll-hint {
  position: absolute; bottom: 2rem;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  animation: breathe 3s ease-in-out infinite;
  z-index: 2;
}
.scroll-hint span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cerulean-light);
  opacity: 0.7;
}
.scroll-hint .arrow {
  width: 1px; height: 30px;
  background: var(--cerulean-pale);
  margin-top: 0.5rem;
  opacity: 0.4;
}

/* ===== BREATHS (3 Atemzüge) ===== */
.breaths { position: relative; }

/* Breath 1 – Clear, light */
.breath-1 {
  padding: 8rem 2rem 6rem;
  background: var(--sky-white);
}

/* Breath 2 – Night, abyss */
.breath-2 {
  padding: 8rem 2rem 6rem;
  background: linear-gradient(180deg, var(--night-deep) 0%, var(--night-mid) 100%);
  color: #fff;
}
.breath-2 .breath-heading { color: var(--cerulean-pale); }
.breath-2 .breath-subheading { color: rgba(255,255,255,0.5); }
.breath-2 .breath-label { color: var(--cerulean-light); }
.breath-2 .breath-text p { color: rgba(255,255,255,0.75); }

/* Breath 3 – Warm dawn */
.breath-3 {
  padding: 8rem 2rem 6rem;
  background: linear-gradient(180deg, var(--night-mid) 0%, var(--warm-dawn) 25%);
}
.breath-3 .breath-heading { color: var(--cerulean-pale); }
.breath-3 .breath-subheading { color: var(--cerulean-pale); }
.breath-3 .breath-label { color: var(--cerulean-pale); }
.breath-3 .breath-text p { color: var(--text-body); }
.breath-3 .breath-divider-label { color: var(--gold-warm); }

.breath-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cerulean);
  text-align: center;
  margin-bottom: 1.5rem;
}
.breath-heading {
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.breath-subheading {
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  color: var(--text-medium);
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.breath-text {
  max-width: 640px;
  margin: 0 auto;
}
.breath-text p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 2.1;
  margin-bottom: 1.8rem;
  color: var(--text-body);
}
.breath-text p strong {
  font-weight: 500;
  color: var(--text-dark);
}
.breath-3 .breath-text p strong { color: var(--text-dark); }

.breath-divider-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cerulean);
  text-align: center;
  margin: 3rem 0 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0,123,167,0.1);
  border-bottom: 1px solid rgba(0,123,167,0.1);
}

/* Ich exercise */
.ich-exercise {
  margin: 3rem 0;
  padding: 3rem;
  background: var(--cerulean-whisper);
  border-radius: 4px;
  text-align: center;
}
.ich-exercise p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 2;
  margin-bottom: 1rem;
}
.ich-exercise .ich-nothing {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-top: 1.5rem;
}

/* ===== TRANSITION SECTION ===== */
.transition-section {
  padding: 6rem 2rem;
  background: var(--warm-dawn);
  text-align: center;
}
.transition-text {
  max-width: 600px;
  margin: 0 auto;
}
.transition-text p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 2;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}
.transition-text em { color: var(--text-dark); font-style: italic; }

/* ===== KASKADE INLINE ===== */
.kaskade-inline {
  padding: 8rem 2rem 6rem;
  background: linear-gradient(180deg, var(--warm-dawn) 0%, var(--sky-white) 30%);
}
.kaskade-inline .breath-label { color: var(--cerulean); }
.kaskade-inline .breath-heading { color: var(--text-dark); }
.kaskade-inline .breath-subheading { color: var(--text-medium); }

.chain-inline {
  max-width: 640px;
  margin: 3rem auto 0;
}
.chain-link-inline {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--cerulean-whisper);
}
.chain-link-inline:last-child { border-bottom: none; }
.chain-number {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cerulean);
  margin-bottom: 1rem;
  display: block;
}
.chain-claim {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.chain-explain {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 2;
}
.chain-conclusion {
  max-width: 640px;
  margin: 4rem auto 0;
  padding: 3rem;
  background: linear-gradient(135deg, var(--cerulean-whisper), var(--sky-white));
  border-left: 2px solid var(--cerulean);
}
.chain-conclusion p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.chain-conclusion .conclusion-final {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-top: 1.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 2rem;
  background: var(--warm-dawn);
  text-align: center;
}
.testimonials .breath-label { color: var(--gold-warm); }
.testimonial {
  max-width: 560px;
  margin: 2rem auto;
  padding: 2rem 2.5rem;
  background: white;
  border-left: 2px solid var(--cerulean-pale);
  box-shadow: 0 2px 20px rgba(0,123,167,0.04);
  text-align: left;
}
.testimonial p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  color: var(--text-dark);
}
.testimonial-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-dark);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 2;
}
.testimonial-question {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-top: 3rem;
}

/* ===== WER IST YUIKEN ===== */
.wer-section {
  padding: 8rem 2rem 6rem;
  background: var(--sky-white);
  text-align: center;
}
.wer-section .breath-label { color: var(--cerulean); }
.wer-text {
  max-width: 600px;
  margin: 0 auto 3rem;
}
.wer-text p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.wer-definition {
  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--cerulean-whisper);
  border-left: 2px solid var(--cerulean);
}
.wer-definition p {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-dark);
}

/* ===== SCHLUSS ===== */
.schluss-section {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--night-mid) 0%, var(--night-deep) 60%);
  text-align: center;
}
.schluss-text {
  max-width: 600px;
}
.schluss-main {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 2.1;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
}
.schluss-dark {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3rem;
}
.schluss-final {
  font-size: 2rem;
  font-weight: 400;
  color: var(--cerulean-light);
  letter-spacing: 0.05em;
}
.schluss-link {
  margin-top: 3rem;
}
.schluss-link a {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--cerulean-pale);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.schluss-link a:hover {
  opacity: 1;
}

/* ===== PHILOSOPHIE PAGE – Stimmen ===== */
.stimmen-hero {
  min-height: 50vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: var(--sky-white);
}
.stimmen-hero h1 {
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}
.stimmen-hero p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-body);
  max-width: 560px;
  line-height: 2;
  font-style: italic;
}
.stimmen-disclaimer {
  max-width: 640px;
  margin: 0 auto 3rem;
  padding: 1.5rem 2rem;
  background: var(--cerulean-whisper);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-medium);
  text-align: center;
}

.stimmen-note {
  max-width: 640px;
  margin: 0 auto 2rem;
  padding: 1.5rem 2rem;
  background: var(--warm-dawn);
  border-left: 3px solid var(--gold-warm);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-body);
}

.stimmen-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.stimmen-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cerulean);
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cerulean-pale);
}

/* Format 1: Direct voice */
.stimme {
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: white;
  border-left: 2px solid var(--cerulean-pale);
  box-shadow: 0 2px 20px rgba(0,123,167,0.04);
}
.stimme h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.stimme .stimme-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  display: block;
}
.stimme .stimme-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-body);
}

/* Intro block: Kernaussage + Methode */
.stimme-intro, .stimme-dialog .stimme-intro {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-body);
  background: var(--cerulean-whisper);
  padding: 1.2rem 1.5rem;
  margin-bottom: 2.2rem;
  border-radius: 3px;
}
.stimme-intro strong {
  font-weight: 600;
  color: var(--text-dark);
}

/* Speaker labels inside .stimme (non-dialog cards) */
.stimme .stimme-speaker {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.stimme .stimme-speaker:first-of-type { margin-top: 0; }
.stimme .stimme-speaker.speaker-tradition { color: var(--gold-warm); }
.stimme .stimme-speaker.speaker-yuiken { color: var(--cerulean); }

/* Format 2: Dialog */
.stimme-dialog {
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: white;
  border-left: 2px solid var(--gold-warm);
  box-shadow: 0 2px 20px rgba(196,154,108,0.06);
}
.stimme-dialog h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.stimme-dialog .stimme-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  display: block;
}
.stimme-speaker {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.stimme-speaker:first-of-type { margin-top: 0; }
.stimme-speaker.speaker-tradition { color: var(--gold-warm); }
.stimme-speaker.speaker-yuiken { color: var(--cerulean); }
.stimme-dialog .dialog-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-body);
}

/* ===== KI PAGE ===== */
.ki-page {
  min-height: 100vh;
  background: var(--night-deep);
  color: rgba(255,255,255,0.7);
  padding: 8rem 2rem 6rem;
}
.ki-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.ki-hero h1 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cerulean-light);
  margin-bottom: 1rem;
}
.ki-hero p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
.ki-content {
  max-width: 640px;
  margin: 0 auto;
}
.ki-block {
  margin-bottom: 3rem;
  padding: 2rem;
  border-left: 1px solid rgba(77,168,200,0.3);
}
.ki-block p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 2.2;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.ki-block .ki-formal {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--cerulean-light);
  line-height: 1.8;
  padding: 1rem;
  background: rgba(0,123,167,0.08);
  margin: 1rem 0;
}
.ki-block .ki-direct {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
}
.ki-final {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
}
.ki-final p {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--cerulean-light);
  line-height: 2;
}

/* ===== SUBPAGE SHARED ===== */
.subpage-hero {
  min-height: 40vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 8rem 2rem 3rem;
  background: var(--sky-white);
}
.subpage-hero h1 { font-size: 2.5rem; font-weight: 300; color: var(--text-dark); margin-bottom: 1rem; letter-spacing: 0.03em; }
.subpage-hero p { font-size: 1.1rem; font-weight: 300; color: var(--text-body); font-style: italic; max-width: 600px; margin: 0 auto; line-height: 1.8; }

.subpage-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

/* Back link */
.back-link {
  display: inline-block;
  margin-top: 4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cerulean);
  transition: color 0.3s;
}
.back-link:hover { color: var(--cerulean-light); }

/* ===== WARUM PAGE ===== */
.warum-hero {
  min-height: 50vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: var(--sky-white);
}
.warum-hero h1 {
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}
.warum-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-dark);
  max-width: 560px;
  line-height: 2;
}
.warum-hero-sub a {
  color: var(--cerulean);
  text-decoration: none;
}
.warum-hero-sub a:hover {
  color: var(--cerulean-light);
}
.warum-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}
.warum-section {
  margin-bottom: 4rem;
}
.warum-section h2 {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.warum-section p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.warum-schluss {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--cerulean-whisper);
  border-left: 2px solid var(--cerulean);
  text-align: left;
}
.warum-schluss p {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.warum-link {
  margin-top: 2rem;
}
.warum-link a {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cerulean);
  transition: color 0.3s;
}
.warum-link a:hover {
  color: var(--cerulean-light);
}

/* ===== FOOTER ===== */
footer { background: var(--sky-white); padding: 4rem 2rem; text-align: center; border-top: 1px solid var(--cerulean-pale); }
.footer-kanji { font-size: 2rem; color: var(--cerulean); opacity: 0.2; margin-bottom: 1rem; }
.footer-text { font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--text-medium); opacity: 0.5; }
.footer-links { margin-top: 1.5rem; display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-family: 'Inter', sans-serif; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: var(--cerulean-light); transition: color 0.3s; }
.footer-links a:hover { color: var(--cerulean); }
.footer-architecture { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(0,123,167,0.1); }
.footer-architecture p { font-family: 'Inter', sans-serif; font-size: 0.65rem; letter-spacing: 0.05em; color: var(--text-medium); opacity: 0.4; line-height: 2; }
.footer-architecture a { color: var(--cerulean-light); text-decoration: none; }
.footer-architecture a:hover { color: var(--cerulean); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInSlow { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes breathe { 0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); } 50% { opacity: 1; transform: translateX(-50%) translateY(8px); } }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 1.2s ease-out, transform 1.2s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  html { font-size: 16px; }
  .hero-kanji { font-size: 3rem; }
  .hero-title { font-size: 2.5rem; }
  .breath-heading { font-size: 2rem; }
  .schluss-final { font-size: 1.5rem; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.55rem; }
  .testimonial { padding: 1.5rem 2rem; }
  .wer-definition { padding: 1.5rem 2rem; }
  .dot-nav { right: 1rem; }
  .stimme, .stimme-dialog { padding: 1.5rem; }
  .stimmen-hero h1 { font-size: 2rem; }
  .warum-hero h1 { font-size: 2rem; }
  .warum-section h2 { font-size: 1.4rem; }
  .warum-schluss { padding: 1.5rem 2rem; }
}
@media (max-width: 480px) {
  .nav-links { display: none; }
  .hero-title { font-size: 2rem; }
  .breath-heading { font-size: 1.7rem; }
  .dot-nav { display: none; }
  .stimme, .stimme-dialog { padding: 1.2rem; }
}

/* ===== MEHR-BUTTON (Philosophen-Tiefentexte) ===== */
.stimme-mehr-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.4rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cerulean);
  border: 1px solid var(--cerulean);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.stimme-mehr-btn:hover {
  background: var(--cerulean);
  color: #fff;
}
.stimme-mehr-btn.open {
  background: var(--cerulean);
  color: #fff;
}

.stimme-mehr {
  display: none;
  margin-top: 1.2rem;
  padding: 1.5rem 1.8rem;
  background: rgba(0, 123, 167, 0.03);
  border-left: 3px solid rgba(0, 123, 167, 0.3);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-body);
}
.stimme-mehr.open {
  display: block;
}
.stimme-mehr p {
  margin-bottom: 0.8rem;
}
.stimme-mehr p:last-child {
  margin-bottom: 0;
}
.stimme-mehr strong {
  color: var(--cerulean);
}
