/* podcast-und-diskurs — style.css */

:root {
  --bg:    #100d08;
  --bg-2:  #1a1510;
  --bg-3:  #221c14;
  --gold:  #c8a96e;
  --cream: #e8d5b0;
  --amber: #8b6914;
  --text:  #9a8a6e;
  --hi:    #f0e8d0;
  --muted: rgba(240,232,208,0.45);
  --mono:  'JetBrains Mono', 'Courier New', monospace;
  --serif: 'Cormorant Garamond', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.85;
}

/* ── ANIMATIONS ────────────────────────────────────── */

@keyframes wave-pulse {
  0%   { opacity: 0.7; transform: scale(1); }
  50%  { opacity: 0.3; transform: scale(1.06); }
  100% { opacity: 0.7; transform: scale(1); }
}

@keyframes wave-ring-expand {
  0%   { r: 20; opacity: 0.8; }
  100% { r: 58; opacity: 0; }
}

@keyframes fadein-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bubble-appear {
  0%   { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes bar-grow {
  from { width: 0; }
}

/* ── HERO ───────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 60%, rgba(200,169,110,0.05) 0%, transparent 70%);
}

.hero-ornament {
  font-family: var(--serif);
  color: var(--amber);
  opacity: 0.5;
  letter-spacing: 0.3em;
  font-size: 0.9rem;
  margin: 1.5rem 0;
}

.hero-mic {
  margin: 0 auto 2.5rem;
  animation: fadein-up 1s ease forwards;
}

.hero-mic svg .wave {
  transform-origin: 60px 60px;
}

.hero-mic svg .w1 { animation: wave-pulse 2.4s ease-in-out infinite; }
.hero-mic svg .w2 { animation: wave-pulse 2.4s ease-in-out 0.4s infinite; }
.hero-mic svg .w3 { animation: wave-pulse 2.4s ease-in-out 0.8s infinite; }
.hero-mic svg .w4 { animation: wave-pulse 2.4s ease-in-out 1.2s infinite; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--hi);
  margin-bottom: 1.5rem;
  animation: fadein-up 1s 0.2s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 580px;
  animation: fadein-up 1s 0.4s ease both;
}

/* ── SHARED SECTIONS ────────────────────────────────── */

.s {
  padding: 5.5rem 2rem;
  border-top: 1px solid rgba(200,169,110,0.08);
}
.s-2 { background: var(--bg-2); }
.s-3 { background: var(--bg-3); }

.s-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.s-full { max-width: 980px; margin: 0 auto; }

.sec-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.65;
  margin-bottom: 1.2rem;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--hi);
  margin-bottom: 1.4rem;
}

p {
  margin-bottom: 1.1rem;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
}

em { font-style: italic; color: var(--cream); }

strong { font-weight: 600; color: var(--cream); }

a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(200,169,110,0.2); transition: border-color 0.2s; }
a:hover { border-color: var(--gold); }

.intro-p {
  max-width: 660px;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.aside {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(154,138,110,0.65);
  margin-top: 1.2rem;
  border-left: 1px solid rgba(200,169,110,0.15);
  padding-left: 1rem;
}

/* ── PULL QUOTE ─────────────────────────────────────── */

.pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--gold);
  line-height: 1.45;
  border-left: 2px solid rgba(200,169,110,0.25);
  padding-left: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

/* ── HABERMAS QUOTE ──────────────────────────────────── */

.habermas-quote {
  background: var(--bg-3);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: 2px;
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.habermas-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.hq-attr {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--amber);
  opacity: 0.7;
  text-transform: uppercase;
}

/* Ornament trennlinien */
.habermas-quote::before {
  content: "—◆—";
  display: block;
  text-align: center;
  color: var(--amber);
  opacity: 0.4;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  margin-bottom: 1.2rem;
}

/* ── FORMAT TABLE ────────────────────────────────────── */

.format-table-wrap {
  overflow-x: auto;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(200,169,110,0.12);
  border-radius: 2px;
}

.format-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.format-table thead tr {
  background: rgba(200,169,110,0.06);
  border-bottom: 1px solid rgba(200,169,110,0.18);
}

.format-table th {
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 400;
}

.format-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(200,169,110,0.06);
  color: var(--text);
  vertical-align: middle;
}

.format-table tbody tr:last-child td { border-bottom: none; }

.format-table tbody tr:hover td {
  background: rgba(200,169,110,0.03);
}

.ft-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cream);
  font-style: italic;
}

.ft-score {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  display: inline-block;
}

.ft-low  { color: rgba(154,138,110,0.5); border: 1px solid rgba(154,138,110,0.15); }
.ft-mid  { color: var(--amber); border: 1px solid rgba(139,105,20,0.3); }
.ft-high { color: var(--gold); border: 1px solid rgba(200,169,110,0.4); background: rgba(200,169,110,0.05); }

/* ── FORMAT DETAIL BLOCKS ───────────────────────────── */

.format-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.fd-item {
  background: var(--bg-2);
  border: 1px solid rgba(200,169,110,0.08);
  border-radius: 2px;
  padding: 1.5rem;
}

.fd-highlight {
  border-color: rgba(200,169,110,0.22);
  background: rgba(200,169,110,0.04);
}

.fd-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.fd-item p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0;
}

/* ── CONVERSATION SVG ───────────────────────────────── */

.conversation-svg-wrap {
  margin-bottom: 1.5rem;
}

.conversation-svg {
  width: 100%;
  max-width: 320px;
}

.bubble { opacity: 0; }

.bubble.ba { animation: bubble-appear 0.6s 0.3s ease both; }
.bubble.bb { animation: bubble-appear 0.6s 1s ease both; }
.bubble.bc { animation: bubble-appear 0.6s 1.8s ease both; }

/* ── PRAXIS BOX ─────────────────────────────────────── */

.praxis-box {
  background: var(--bg-3);
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: 2px;
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}

.pb-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.pb-steps {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.pb-step {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.pb-n {
  color: var(--gold);
  opacity: 0.7;
  font-size: 0.7rem;
  min-width: 1.2rem;
}

.pb-fact {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(200,169,110,0.12);
  padding-top: 0.8rem;
  opacity: 0.8;
}

/* ── STAT GRID ──────────────────────────────────────── */

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  background: var(--bg-3);
  border: 1px solid rgba(200,169,110,0.1);
  border-radius: 2px;
  padding: 1.2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.65;
  line-height: 1.4;
}

/* ── ECHO COMPARE ───────────────────────────────────── */

.echo-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(200,169,110,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 1rem;
}

.ec-side {
  padding: 1.5rem;
}

.ec-bad  { background: var(--bg-2); }
.ec-good { background: rgba(200,169,110,0.04); }

.ec-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ec-bad .ec-label  { color: rgba(154,138,110,0.5); }
.ec-good .ec-label { color: var(--gold); }

.ec-side ul { list-style: none; }

.ec-side li {
  font-size: 0.85rem;
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  line-height: 1.5;
  color: var(--text);
}

.ec-bad li::before  { content: '–'; position: absolute; left: 0; color: rgba(154,138,110,0.4); }
.ec-good li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 0.55rem; top: 0.45rem; }

/* ── ACCESS BOX ─────────────────────────────────────── */

.access-box {
  background: var(--bg-3);
  border: 1px solid rgba(200,169,110,0.12);
  border-radius: 2px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.ab-title {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.7;
  margin-bottom: 1.2rem;
}

.ab-bar-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.ab-lang {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text);
  min-width: 88px;
}

.ab-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(200,169,110,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.ab-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  animation: bar-grow 1.2s 0.3s ease both;
}

.ab-bar-2 { background: var(--amber); }
.ab-bar-3 { background: rgba(200,169,110,0.5); }
.ab-bar-4 { background: rgba(200,169,110,0.3); }

.ab-pct {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--gold);
  min-width: 2.5rem;
  text-align: right;
}

.ab-note {
  font-size: 0.72rem;
  color: rgba(154,138,110,0.45);
  margin-top: 1rem;
  border-top: 1px solid rgba(200,169,110,0.08);
  padding-top: 0.7rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
}

/* ── LINK CARDS ─────────────────────────────────────── */

.link-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.link-card {
  display: block;
  background: var(--bg-3);
  border: 1px solid rgba(200,169,110,0.12);
  border-radius: 2px;
  padding: 1.2rem 1.4rem;
  text-decoration: none;
  border-bottom: none;
  transition: border-color 0.2s, background 0.2s;
}

.link-card:hover {
  border-color: rgba(200,169,110,0.3);
  background: rgba(200,169,110,0.04);
}

.lc-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.6;
  margin-bottom: 0.4rem;
}

.lc-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.lc-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ── CLOSE ──────────────────────────────────────────── */

.s-close {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.s-close::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,169,110,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.close-inner { max-width: 680px; position: relative; z-index: 1; }

.close-ornament {
  font-family: var(--serif);
  color: var(--amber);
  opacity: 0.35;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  margin: 1.2rem 0;
}

.close-text {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--hi);
  margin-bottom: 1.5rem;
}

.close-text em {
  color: var(--gold);
  font-style: italic;
}

.close-sub {
  font-size: 0.95rem;
  opacity: 0.5;
  margin-bottom: 0.5rem;
  line-height: 1.75;
  color: var(--text);
  font-family: var(--serif);
}

.close-meta {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  opacity: 0.18;
  margin-top: 2rem;
}

/* ── FOOTER ─────────────────────────────────────────── */

.site-footer {
  padding: 1.5rem 2rem;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  border-top: 1px solid rgba(200,169,110,0.06);
}

.site-footer a {
  color: var(--amber);
  text-decoration: none;
  border: none;
  opacity: 0.35;
  letter-spacing: 0.1em;
}

.site-footer a:hover { opacity: 0.8; }

/* ── RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 820px) {
  .s-inner       { grid-template-columns: 1fr; gap: 2.5rem; }
  .format-detail { grid-template-columns: 1fr; }
  .echo-compare  { grid-template-columns: 1fr; }
  .stat-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .stat-grid  { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
}
