/* ===== Die letzte und erste Utopie — Herbst-Palette ===== */

:root {
  --color-bg: #2d1b09;
  --color-dark: #321e0a;
  --color-earth: #825a32;
  --color-skin-d: #997551;
  --color-skin-m: #aa825a;
  --color-skin-l: #e1bd87;
  --color-autumn: #f39909;
  --color-gold: #e6d296;
  --color-peach: #faaa6e;
  --color-cream: #faebd7;
  --color-card: #3d2510;
  --color-border: #5a3520;
  --color-text-muted: #b8906a;
  --font-body: Georgia, 'Times New Roman', serif;
  --font-ui: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --max-width: 820px;
  --max-width-wide: 1100px;
}

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

/* ===== Base ===== */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-cream);
  line-height: 1.8;
  font-size: clamp(16px, 1.1vw, 19px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('/images/hero-bg.png') center 30% / cover no-repeat;
  pointer-events: none;
}

.bg-fixed::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center 40%, rgba(45, 27, 9, 0.35) 0%, rgba(45, 27, 9, 0.92) 65%);
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-ui);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-cream);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.5em; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.4em; }

p { margin-bottom: 1.2em; }

a {
  color: var(--color-autumn);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--color-peach); }

strong { color: var(--color-gold); }
em { color: var(--color-peach); font-style: italic; }

blockquote {
  border-left: 3px solid var(--color-autumn);
  padding: 0.8em 1.2em;
  margin: 1.5em 0;
  background: rgba(61, 37, 16, 0.6);
  border-radius: 0 8px 8px 0;
  color: var(--color-skin-l);
  font-style: italic;
}

ul, ol { padding-left: 1.5em; margin-bottom: 1.2em; }
li { margin-bottom: 0.3em; }

hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-earth), transparent);
  margin: 2.5em 0;
}

/* ===== Header / Navigation ===== */
header {
  background: var(--color-dark);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0;
}

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

.nav-burger {
  display: none;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-cream);
  letter-spacing: 0.3px;
  padding: 0.7rem 0;
  margin-right: auto;
  white-space: nowrap;
  text-decoration: none;
}

.nav-brand:hover { color: var(--color-cream); }

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-avatars {
  display: inline-flex;
  flex-shrink: 0;
}

.nav-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  border: 2px solid var(--color-bg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.nav-avatar:last-child {
  margin-left: -8px;
}

.nav-brand em {
  font-style: normal;
  color: var(--color-autumn);
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--color-skin-l);
  padding: 1rem 0.8rem;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--color-autumn); }
.nav-links a[aria-current="page"] {
  color: var(--color-autumn);
  border-bottom: 2px solid var(--color-autumn);
}

/* ===== Main ===== */
main {
  flex: 1;
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* ===== Content (articles / pages) ===== */
.content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 3rem;
}

.content h1 {
  margin-bottom: 0.3em;
}

.content .subtitle {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--color-earth);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2em;
}

/* ===== Universe (Homepage) ===== */
.universe {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0 6rem;
}

.orbit {
  margin-bottom: 8vh;
  opacity: 0;
  transform: translateY(30px);
  animation: float-in 0.8s ease-out forwards;
}

.orbit:nth-child(1) { animation-delay: 0s; }
.orbit:nth-child(2) { animation-delay: 0.15s; }
.orbit:nth-child(3) { animation-delay: 0.3s; }
.orbit:nth-child(4) { animation-delay: 0.45s; }
.orbit:nth-child(5) { animation-delay: 0.6s; }

@keyframes float-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Full-Screen Hero ===== */
.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg { display: none; }

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 3rem 6rem;
  margin-top: -8vh;
  max-width: 100%;
}

.hero-title {
  font-size: clamp(1.6rem, 5.8vw, 7rem);
  font-weight: 200;
  margin-bottom: 0.2em;
  letter-spacing: -2px;
  line-height: 1.05;
  white-space: nowrap;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-title em {
  font-weight: 700;
  font-style: normal;
  color: var(--color-autumn);
}

.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-gold);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bob 2.5s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-earth);
}

.hero-scroll-hint svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-autumn);
  opacity: 0.8;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.hero-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.hero-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  border: 2px solid rgba(243, 153, 9, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hero-avatar:last-child {
  margin-left: -12px;
}

.orbit-tag {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-autumn);
  display: block;
  margin-bottom: 0.6rem;
}

/* Orbit sections: image + text side by side, floating */
.orbit--left,
.orbit--right {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.orbit--left { padding-left: 2%; }
.orbit--right { padding-right: 2%; justify-content: flex-end; }

.orbit--center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.orbit-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.orbit-img--wide {
  width: 100%;
  height: 240px;
  margin-bottom: 1.5rem;
}

.orbit-text {
  max-width: 420px;
}

.orbit-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-autumn);
  display: block;
  margin-bottom: 0.8rem;
}

.orbit-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  margin-bottom: 0.6em;
}

.orbit-text p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.2em;
}

.orbit-link {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-autumn);
}
.orbit-link:hover { color: var(--color-peach); }

.orbit--small .orbit-img {
  width: 200px;
  height: 200px;
}

/* Mobile: orbits stack vertically */
@media (max-width: 700px) {
  .orbit--left,
  .orbit--right {
    flex-direction: column;
    padding: 0;
    text-align: center;
  }
  .orbit--right { flex-direction: column; }
  .orbit-img { width: 100%; max-width: 320px; height: 220px; }
  .orbit--small .orbit-img { width: 100%; max-width: 260px; height: 180px; }
  .orbit-text { max-width: 100%; }
  .orbit--center { max-width: 100%; }
}

/* ===== Cards (Buch-Übersicht etc.) ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.card {
  background: var(--color-card);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-autumn), var(--color-peach), var(--color-gold));
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.card .card-img {
  width: calc(100% + 3.6rem);
  margin: -2rem -1.8rem 1.2rem;
  border-radius: 16px 16px 0 0;
  height: 160px;
  object-fit: cover;
  display: block;
}

.card .card-tag {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-autumn);
  display: block;
  margin-bottom: 0.8rem;
}

.card h3 {
  font-weight: 400;
  margin-bottom: 0.6em;
}

.card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.2em;
}

.card .card-link {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-autumn);
}
.card .card-link:hover { color: var(--color-peach); }

/* ===== Buch Hero ===== */
.buch-hero {
  position: relative;
  padding: 4rem 1.5rem 3rem;
  overflow: hidden;
}

.buch-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.buch-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.buch-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(45, 27, 9, 0.92) 0%, rgba(45, 27, 9, 0.6) 50%, rgba(45, 27, 9, 0.92) 100%),
    linear-gradient(to bottom, rgba(45, 27, 9, 0.3) 0%, rgba(45, 27, 9, 0.85) 100%);
}

.buch-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.buch-mockup {
  flex-shrink: 0;
}

.buch-mockup img {
  width: 280px;
  border-radius: 4px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(243, 153, 9, 0.15);
}

.buch-hero-text {
  flex: 1;
}

.buch-verlag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-autumn);
  margin-bottom: 0.8rem;
  padding: 0.3em 0.8em;
  border: 1px solid var(--color-autumn);
  border-radius: 3px;
}

.buch-hero-text h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 0.4em;
  color: var(--color-cream);
}

.buch-subtitle {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--color-cream);
  margin-bottom: 0.8em;
  line-height: 1.5;
  opacity: 0.85;
}

.buch-author {
  font-size: 1.05rem;
  color: var(--color-gold);
  margin-bottom: 0.3em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.buch-avatars {
  display: inline-flex;
  flex-shrink: 0;
}

.buch-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  border: 2px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.buch-avatar:last-child {
  margin-left: -10px;
}

.buch-meta {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 1.2em;
}

.buch-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5em;
}

.buch-cta {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-bg);
  background: linear-gradient(135deg, var(--color-autumn), var(--color-peach));
  padding: 0.7em 1.5em;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.buch-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 153, 9, 0.3);
}

.kapitel-heading {
  font-size: 1.3rem;
  color: var(--color-earth);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* ===== Kapitel-Übersicht ===== */
.kapitel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}

.kapitel-card {
  background: var(--color-card);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.kapitel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: var(--color-autumn);
}

.kapitel-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.kapitel-card-body {
  padding: 1.2rem;
}

.kapitel-card .nr {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-autumn);
  margin-bottom: 0.4rem;
}

.kapitel-card h3 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.3;
}

.kapitel-card:hover h3 {
  color: var(--color-autumn);
}

/* ===== Chapter Hero ===== */
.chapter-hero {
  position: relative;
  height: 40vh;
  min-height: 280px;
  max-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.chapter-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.chapter-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(45, 27, 9, 0.2) 0%, rgba(45, 27, 9, 0.85) 100%);
}

.chapter-hero-text {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: var(--max-width);
}

.chapter-nr {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-autumn);
  display: block;
  margin-bottom: 0.5rem;
}

.chapter-hero-text h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}


/* ===== Reader (E-Book Mode) ===== */
.reader-wrap {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 52px); /* minus nav height */
  overflow: hidden;
  max-width: var(--max-width);
  margin: -2.5rem auto 0;
  padding: 0 1.5rem;
}

.reader-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.reader-back {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 0.3rem;
  transition: color 0.2s;
}

.reader-back:hover {
  color: var(--color-autumn);
}

.reader-title {
  flex: 1;
  min-width: 0;
}

.reader-nr {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-autumn);
  display: block;
  line-height: 1.2;
}

.reader-chapter-name {
  font-size: 0.95rem;
  color: var(--color-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 1.3;
}

.reader-progress-mini {
  width: 80px;
  height: 3px;
  background: var(--color-card);
  border-radius: 2px;
  flex-shrink: 0;
}

.reader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-autumn), var(--color-peach));
  border-radius: 2px;
  transition: width 0.4s ease;
}

.reader-viewport {
  flex: 1;
  overflow: hidden;
  padding: 1.5rem 0;
}

.reader-pages {
  font-size: 1.05rem;
  line-height: 1.85;
  transition: opacity 0.15s ease;
}

.reader-pages.reader-fading {
  opacity: 0;
}

.reader-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}

.reader-btn {
  background: var(--color-card);
  color: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reader-btn:hover:not(:disabled) {
  border-color: var(--color-autumn);
  color: var(--color-autumn);
  background: rgba(243, 153, 9, 0.1);
}

.reader-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

.reader-status {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  min-width: 120px;
  text-align: center;
}

/* ===== Chapter Navigation (Prev/Next) ===== */
.chapter-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.reader-wrap .chapter-nav {
  margin-top: 0;
  padding-top: 0.5rem;
  border-top: none;
}

.chapter-nav a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--color-skin-l);
  padding: 0.6rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: all 0.2s;
}
.chapter-nav a:hover {
  border-color: var(--color-autumn);
  color: var(--color-autumn);
}

.chapter-nav .prev::before { content: '\2190\00a0'; }
.chapter-nav .next::after { content: '\00a0\2192'; }

/* ===== Essay Layout ===== */
.essay-meta {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--color-earth);
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.quellen {
  background: var(--color-card);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-top: 3rem;
  border: 1px solid var(--color-border);
}

.quellen h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-autumn);
  margin-bottom: 0.8em;
}

.quellen ul { list-style: none; padding: 0; }
.quellen li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 0.3em 0;
  border-bottom: 1px solid rgba(90, 53, 32, 0.4);
}
.quellen li:last-child { border: none; }

/* ===== Podcast Hero ===== */
.podcast-hero {
  position: relative;
  padding: 6rem 1.5rem 3rem;
  text-align: center;
  overflow: hidden;
  background: url('/images/podcast-hero.png') center / cover no-repeat;
}

.podcast-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(45, 27, 9, 0.4) 0%, rgba(45, 27, 9, 0.9) 70%),
    linear-gradient(to bottom, transparent 50%, var(--color-bg) 100%);
}

.podcast-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.podcast-portraits {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.podcast-portrait {
  width: 200px;
  height: 260px;
  object-fit: cover;
  border-radius: 120px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border: 3px solid var(--color-border);
  transition: transform 0.3s;
}

.podcast-portrait:hover { transform: translateY(-4px); }

.podcast-portrait--left {
  transform: rotate(-3deg);
  z-index: 1;
  margin-right: -20px;
}

.podcast-portrait--left:hover { transform: rotate(-3deg) translateY(-4px); }

.podcast-portrait--right {
  transform: rotate(3deg);
  margin-left: -20px;
}

.podcast-portrait--right:hover { transform: rotate(3deg) translateY(-4px); }

.podcast-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-autumn);
  border: 1px solid var(--color-autumn);
  padding: 0.3em 1em;
  border-radius: 100px;
  margin-bottom: 0.8rem;
}

.podcast-hero-text h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
}

.podcast-hero-text h1 em {
  font-style: normal;
  color: var(--color-autumn);
  font-weight: 200;
}

.podcast-lead {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ===== Person Cards (Podcast) ===== */
.person-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.person-card {
  background: var(--color-card);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--color-border);
  text-align: center;
}

.person-portrait {
  width: 140px;
  height: 180px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 80px;
  margin: 0 auto 1.2rem;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--color-border);
}

.person-card h3 { margin-bottom: 0.3em; }

.person-card .role {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--color-autumn);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1em;
}

.person-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== Kompass ===== */

/* Hero */
.kompass-hero {
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  background: rgba(45, 27, 9, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.kompass-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.kompass-hero-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--color-autumn), 0 0 40px rgba(243, 153, 9, 0.2), 0 12px 40px rgba(0, 0, 0, 0.4);
}

.kompass-hero-text {
  text-align: left;
}

.kompass-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-autumn);
  border: 1px solid var(--color-autumn);
  padding: 0.3em 1em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.kompass-hero-text h1 {
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--color-cream);
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.kompass-hero-text h1 em {
  font-style: normal;
  color: var(--color-autumn);
  font-weight: 700;
}

.kompass-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-cream);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.kompass-lead strong {
  color: var(--color-cream);
}

/* How it works */
.kompass-how {
  padding: 2.5rem 1.5rem 3rem;
}

.kompass-how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
}

.kompass-step {
  flex: 1;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.kompass-step-nr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-autumn);
  color: var(--color-bg);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.kompass-step h3 {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 0.4rem;
}

.kompass-step p {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* Disclaimer */
.kompass-disclaimer {
  max-width: var(--max-width);
  margin: 0 auto 2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(61, 37, 16, 0.5);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-earth);
  border-radius: 0 8px 8px 0;
}

.kompass-disclaimer p {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

.kompass-disclaimer strong {
  color: var(--color-skin-l);
}

/* iframe container */
.kompass-container {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.kompass-frame {
  width: 100%;
  border: none;
  border-radius: 20px;
  background: var(--color-bg);
  box-shadow: 0 0 0 1px var(--color-border), 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

@media (max-width: 700px) {
  .kompass-hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .kompass-hero-text { text-align: center; }
  .kompass-hero-img {
    width: 140px;
    height: 140px;
  }
  .kompass-hero-text h1 { font-size: 2rem; }
  .kompass-how-inner {
    flex-direction: column;
  }
  .kompass-frame {
    border-radius: 12px;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.7em 1.8em;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--color-autumn);
  color: var(--color-bg);
}
.btn-primary:hover {
  background: var(--color-peach);
  color: var(--color-bg);
}

.btn-secondary {
  background: transparent;
  color: var(--color-skin-l);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-autumn);
  color: var(--color-autumn);
}

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--color-border);
  padding: 2rem 1.5rem;
  text-align: center;
}

footer nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

footer a {
  font-size: 0.8rem;
  color: var(--color-earth);
}
footer a:hover { color: var(--color-autumn); }

footer .copyright {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: #4a3018;
  margin-top: 0.8rem;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .hero { padding: 2.5rem 1rem 2rem; }
}

@media (max-width: 768px) {
  /* Burger menu */
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
  }

  .nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-cream);
    border-radius: 1px;
    transition: all 0.3s;
  }

  .nav-open .nav-burger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-open .nav-burger span:nth-child(2) {
    opacity: 0;
  }
  .nav-open .nav-burger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(45, 27, 9, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 0;
    z-index: 100;
  }

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

  header { position: relative; }

  .nav-links a {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .nav-links a[aria-current="page"] {
    border-bottom: none;
    background: rgba(243, 153, 9, 0.1);
  }

  /* Layout */
  .card-grid,
  .kapitel-grid {
    grid-template-columns: 1fr;
  }

  .person-grid { grid-template-columns: 1fr; }

  .podcast-portrait {
    width: 140px;
    height: 180px;
  }
  .podcast-hero-text h1 { font-size: 2.2rem; }

  .chapter-nav {
    flex-direction: column;
  }

  .buch-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .buch-mockup img {
    width: 200px;
  }

  .buch-hero-text h1 {
    font-size: 1.5rem;
  }

  .buch-author {
    justify-content: center;
  }

  /* Hero (Startseite) mobile */
  .hero-full {
    min-height: 100svh;
  }

  .hero-content {
    padding: 2rem 1.2rem 4rem;
    margin-top: -4vh;
  }

  .hero-title {
    font-size: clamp(1.5rem, 7.5vw, 2.8rem);
    white-space: normal;
    letter-spacing: -1px;
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 0.5rem;
  }

  .hero-avatars {
    margin-bottom: 0.3rem;
  }

  .hero-avatar {
    width: 40px;
    height: 40px;
  }

  .orbit-tag {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  .hero-scroll-hint {
    bottom: 1.5rem;
  }

  /* Background dunkler auf Mobile */
  .bg-fixed::after {
    background:
      radial-gradient(ellipse at center 40%, rgba(45, 27, 9, 0.6) 0%, rgba(45, 27, 9, 0.95) 55%);
  }

  /* Universe-Orbits mobile */
  .universe {
    padding: 1rem 0 4rem;
  }

  .orbit {
    margin-bottom: 5vh;
  }

  main { padding: 1.5rem 1rem; }
  .hero { padding: 1.5rem 0.5rem 1rem; }
}
