/* =========================================================
   Darum vegan — story.css
   Cineastische Scroll-Story (7 Argumente) + Abschluss.
   ========================================================= */

.story { position: relative; z-index: 2; background: var(--bg); }

/* ---- Ein Argument = vollflächige Bühne ---- */
.argument {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: stretch;
}
.argument:nth-child(even) { grid-template-columns: 0.94fr 1.06fr; }
.argument:nth-child(even) .argument-media { order: 2; }

/* Bild: randlos, mit Parallax und in den Seitengrund auslaufend */
.argument-media {
  position: relative;
  overflow: hidden;
  background: var(--media-tint);
  transition: background-color var(--speed) var(--ease);
}
.argument-img {
  position: absolute;
  inset: -9% 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
  will-change: transform;
}
.argument-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, transparent 58%, var(--bg) 99%);
  transition: background var(--speed) var(--ease);
}
.argument:nth-child(even) .argument-media::after {
  background: linear-gradient(to left, transparent 58%, var(--bg) 99%);
}
.media-tag {
  position: absolute;
  left: 22px; bottom: 20px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.argument:nth-child(even) .media-tag { left: auto; right: 22px; }

/* ---- Textspalte ---- */
.argument-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding: clamp(48px, 7vh, 110px) clamp(28px, 5vw, 96px);
  max-width: 820px;
}

.argument-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow-index { color: var(--accent); font-size: 0.95rem; font-weight: 600; }
.eyebrow-sep { opacity: 0.4; }
.eyebrow-cat { color: var(--ink); margin-left: 3px; }

.argument-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0;
  font-variation-settings: "opsz" 110, "SOFT" 0;
}

.argument-question {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.3;
  color: var(--accent);
  margin: 0;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  font-variation-settings: "opsz" 60;
}

/* Schlüsselzahl */
.key-figure { margin: 4px 0 2px; display: flex; flex-direction: column; gap: 4px; }
.key-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 0;
}
.key-label { font-size: 0.92rem; line-height: 1.4; color: var(--muted); max-width: 38ch; }

/* Lead + Bulletpoints */
.argument-lead {
  font-size: clamp(1.04rem, 1.25vw, 1.2rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  margin: 2px 0 0;
  max-width: 48ch;
}
.argument-lead a { color: var(--accent); text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); }
.argument-lead a:hover { border-bottom-color: var(--accent); }

.argument-points {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  max-width: 52ch;
}
.argument-points li {
  position: relative;
  padding-left: 22px;
  font-size: clamp(0.95rem, 1.05vw, 1.04rem);
  line-height: 1.5;
  color: color-mix(in srgb, var(--ink) 86%, var(--bg));
}
.argument-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.argument-points strong { color: var(--ink); font-weight: 700; }
.argument-points em { font-style: italic; color: var(--ink); }
.argument-points a {
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
}
.argument-points a:hover { border-bottom-color: var(--accent); }

/* Quellen aufklappbar */
.source { margin-top: 6px; border-top: 1px solid var(--line); padding-top: 14px; }
.source-toggle {
  background: none; border: none; padding: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s var(--ease);
}
.source-toggle::before { content: "▸"; transition: transform 0.25s var(--ease); }
.source-toggle:hover { color: var(--accent); }
.source-toggle[aria-expanded="true"]::before { transform: rotate(90deg); color: var(--accent); }
.source-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.45s var(--ease), opacity 0.45s var(--ease), margin 0.45s var(--ease);
}
.source-list.open { max-height: 420px; opacity: 1; margin-top: 14px; }
.source-list a {
  color: var(--muted); font-size: 0.82rem; line-height: 1.4;
  text-decoration: none; border-bottom: 1px solid transparent;
}
.source-list a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Stagger der Textspalte */
.argument-content > .reveal:nth-child(1) { transition-delay: 0s; }
.argument-content > .reveal:nth-child(2) { transition-delay: 0.06s; }
.argument-content > .reveal:nth-child(3) { transition-delay: 0.12s; }
.argument-content > .reveal:nth-child(4) { transition-delay: 0.18s; }
.argument-content > .reveal:nth-child(5) { transition-delay: 0.24s; }
.argument-content > .reveal:nth-child(6) { transition-delay: 0.30s; }
.argument-content > .reveal:nth-child(7) { transition-delay: 0.36s; }

/* ---- Mobil: Bild oben, Text darunter ---- */
@media (max-width: 860px) {
  .argument, .argument:nth-child(even) { grid-template-columns: 1fr; min-height: auto; }
  .argument-media, .argument:nth-child(even) .argument-media { order: 0; height: 48svh; }
  .argument-media::after,
  .argument:nth-child(even) .argument-media::after {
    background: linear-gradient(to bottom, transparent 62%, var(--bg) 99%);
  }
  .argument-content { padding: 34px 24px 56px; max-width: none; }
  .media-tag, .argument:nth-child(even) .media-tag { left: 20px; right: auto; }
  .argument-points a { white-space: normal; }
}

/* =========================================================
   Abschluss-Sektion
   ========================================================= */
.outro {
  position: relative;
  z-index: 2;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(72px, 12vh, 150px) clamp(20px, 5vw, 40px) clamp(64px, 9vh, 110px);
}
.outro-inner { max-width: 760px; margin: 0 auto; text-align: center; }

.outro-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.outro-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  font-variation-settings: "opsz" 144, "SOFT" 0;
}
.outro-body {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  color: color-mix(in srgb, var(--ink) 84%, var(--bg));
  max-width: 60ch;
  margin: 0 auto 52px;
}
.outro-body strong { color: var(--ink); font-weight: 700; }
.outro-body em { font-style: italic; }

/* Buttons */
.btn-primary, .btn-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 15px 30px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.04rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), gap 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 16px 38px color-mix(in srgb, var(--accent) 32%, transparent); }
.btn-primary:hover { transform: translateY(-3px); gap: 14px; box-shadow: 0 22px 50px color-mix(in srgb, var(--accent) 42%, transparent); }
.btn-arrow { transition: transform 0.2s var(--ease); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* Mehr erfahren (nvsino) */
.more-cta {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  margin: 0 0 44px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}
body[data-mode="heart"] .more-cta { box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4); }
.more-cta h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 3vw, 1.95rem); margin: 0 0 10px; }
.more-cta p { color: var(--muted); max-width: 50ch; margin: 0 auto 24px; line-height: 1.6; }

.outro-block { margin: 0 0 46px; }
.outro-block h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.outro-block p { color: var(--muted); max-width: 56ch; margin: 0 auto 20px; line-height: 1.6; }

.comments-box {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  background: color-mix(in srgb, var(--bg-alt) 55%, transparent);
  text-align: left;
}

.coffee-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff; border: none;
  border-radius: 999px; padding: 15px 30px;
  font-family: var(--font-sans); font-weight: 600; font-size: 1.04rem;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 16px 38px color-mix(in srgb, var(--accent) 32%, transparent);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.coffee-btn:hover { transform: translateY(-3px); box-shadow: 0 22px 50px color-mix(in srgb, var(--accent) 42%, transparent); }
.coffee-note { font-size: 0.8rem; color: var(--muted); margin: 14px 0 0; }

/* Verlinktes Quellenverzeichnis */
.biblio {
  list-style: none;
  text-align: left;
  margin: 22px auto 0;
  max-width: 72ch;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.biblio > li { font-size: 0.9rem; }
.biblio b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 7px; }
.src-links { display: flex; flex-direction: column; gap: 5px; }
.src-dot { display: none; }
.src-links a {
  color: var(--muted); line-height: 1.4;
  text-decoration: none; border-bottom: 1px solid transparent;
}
.src-links a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Andere Seite – Abschluss-CTA (mit Abstand zur „Tiefer einsteigen"-Box) */
.switch-side {
  position: relative;
  margin: clamp(40px, 6vh, 60px) 0 clamp(36px, 6vh, 60px);
  padding: clamp(40px, 6vw, 66px) 28px;
  border-radius: var(--radius);
  text-align: center;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent) 10%, var(--bg-alt));
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
}
.switch-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
}
.switch-body {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.2;
  margin: 14px auto 26px;
  max-width: 26ch;
}
.btn-switch { background: var(--ink); color: var(--bg); }
.btn-switch:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }

@media (max-width: 860px) {
  .biblio, .outro-body { text-align: left; }
}

/* =========================================================
   Slogan + Langform-Aufklärung (Videos, Einwände, Erklärstücke)
   ========================================================= */

/* ---- Slogan-Banner ---- */
.slogan {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: 24ch;
  margin: 8px auto clamp(28px, 5vh, 46px);
}
.slogan-line {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 4.2vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 0;
}
.slogan-line::after {
  content: "";
  display: block;
  width: 64px; height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.slogan-sub { font-size: 0.98rem; color: var(--muted); line-height: 1.5; }

/* ---- Gemeinsamer Rahmen der Langform-Sektionen ---- */
.learn {
  text-align: left;
  margin: 0 0 clamp(40px, 7vh, 72px);
  padding-top: clamp(28px, 5vh, 48px);
  border-top: 1px solid var(--line);
}
.learn-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.learn-icon, .rebuttal-icon { font-size: 1.1em; line-height: 1; }
.learn-intro { color: var(--muted); max-width: 60ch; margin: 0 0 26px; line-height: 1.6; }

/* ---- Videos ---- */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.video-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}
body[data-mode="heart"] .video-card:hover { box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5); }
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--media-tint);
}
.video-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 55%);
}
.video-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 90%, #000);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.4);
  z-index: 2;
  transition: transform 0.25s var(--ease);
}
.video-play::before {
  content: "";
  position: absolute;
  left: 53%; top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent #fff;
}
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.1); }
.video-info { display: flex; flex-direction: column; gap: 5px; padding: 18px 20px 20px; }
.video-meta {
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
}
.video-title { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; line-height: 1.1; }
.video-note { font-size: 0.9rem; color: var(--muted); line-height: 1.5; margin-top: 2px; }
.video-watch {
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink);
}
.video-watch span { transition: transform 0.2s var(--ease); }
.video-card:hover .video-watch span { transform: translateX(4px); }
.learn-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
  font-weight: 600; color: var(--accent); text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  padding-bottom: 2px;
}
.learn-more:hover { border-bottom-color: var(--accent); }

/* ---- Einwände (Accordion via <details>) ---- */
.rebuttal-groups { display: flex; flex-direction: column; gap: 26px; }
.rebuttal-group-title {
  font-family: var(--font-mono);
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 10px;
}
.rebuttal {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--bg-alt) 60%, transparent);
  margin-bottom: 10px;
  overflow: hidden;
}
.rebuttal[open] { border-color: color-mix(in srgb, var(--accent) 38%, transparent); }
.rebuttal summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  font-weight: 600; font-size: 1rem;
  color: var(--ink);
}
.rebuttal summary::-webkit-details-marker { display: none; }
.rebuttal-claim { flex: 1; }
.rebuttal-plus { position: relative; flex: none; width: 18px; height: 18px; }
.rebuttal-plus::before, .rebuttal-plus::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--accent);
  transition: transform 0.25s var(--ease);
}
.rebuttal-plus::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.rebuttal-plus::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.rebuttal[open] .rebuttal-plus::after { transform: translate(-50%, -50%) scaleY(0); }
.rebuttal-reality {
  padding: 0 18px 18px;
  font-size: 0.96rem; line-height: 1.6;
  color: color-mix(in srgb, var(--ink) 86%, var(--bg));
}
.rebuttal-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.rebuttal-reality strong { color: var(--ink); font-weight: 700; }
.rebuttal-reality em { font-style: italic; }
.rebuttal-reality a {
  color: var(--accent); text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}
.rebuttal-reality a:hover { border-bottom-color: var(--accent); }

/* ---- Erklärstücke (Dissonanz, Speziesismus) ---- */
.explainer-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.3;
  color: var(--accent);
  margin: 0 0 18px;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}
.explainer-body { display: flex; flex-direction: column; gap: 14px; }
.explainer-body p {
  margin: 0;
  font-size: 1rem; line-height: 1.68;
  color: color-mix(in srgb, var(--ink) 88%, var(--bg));
  max-width: 66ch;
}
.explainer-body strong { color: var(--ink); font-weight: 700; }
.explainer-body em { font-style: italic; }
.explainer-body a {
  color: var(--accent); text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}
.explainer-body a:hover { border-bottom-color: var(--accent); }

/* ---- Cusdis-Container (Diskussion) ---- */
/* Höhe folgt dem Inhalt (Auto-Resize + Fallback in app.js) – kein interner Scrollbalken. */
.cusdis { text-align: left; margin-top: 10px; }
.cusdis iframe { width: 100% !important; border: 0; display: block; min-height: 360px; }

/* ---- Mobil ---- */
@media (max-width: 860px) {
  .video-grid { grid-template-columns: 1fr; gap: 16px; }
  .slogan { margin-bottom: 40px; }
  .rebuttal summary { padding: 14px 15px; font-size: 0.96rem; }
  .rebuttal-reality { padding: 0 15px 15px; }
}
