/* Living Room: Stylesheet. Palette und Typografie aus den Design-Entwürfen. */

:root {
  --bg: #FFFBF6;
  --surface: #FDF6EF;
  --surface-2: #F6EBE0;
  --surface-3: #FBF4EE;
  --border: #F2E4D6;
  --border-2: #EBDCCE;
  --ink: #231D19;
  --muted: #6B5C53;
  --muted-2: #5A4E47;
  --red: #C0392B;
  --red-dark: #A5301F;
  --red-deep: #93291E;
  --red-soft: #FBE7E3;
  --amber: #8A5A12;
  --amber-bg: #FBF0DA;
  --amber-line: #E8D3A8;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Newsreader', Georgia, serif;
  --wrap: 1300px;
  --shadow: 0 1px 2px rgba(35,29,25,.04), 0 8px 24px rgba(35,29,25,.05);
  --shadow-lift: 0 2px 6px rgba(35,29,25,.06), 0 18px 40px rgba(35,29,25,.09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* overflow-x gehoert auf html, nicht auf body: auf body macht es den Body zum
   Scroll-Container und bricht Seiten-Scrolling und Sprungmarken. */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg); color: var(--ink); font-family: var(--sans);
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.narrow { max-width: 900px; }
.mid { max-width: 1060px; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 999;
}
.skip:focus { left: 0; }

/* ---------- Typografie ---------- */
h1, h2, h3 { letter-spacing: -.032em; line-height: 1.1; font-weight: 800; }
h1 { font-size: clamp(36px, 6.4vw, 74px); line-height: 1; }
h2 { font-size: clamp(27px, 3.7vw, 42px); }
h3 { font-size: 22px; }
.eyebrow {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted-2); line-height: 1.55; }
.mark { color: var(--red); }
.serif { font-family: var(--serif); font-weight: 400; font-style: italic; }
p + p { margin-top: 14px; }
section { scroll-margin-top: 90px; }
.sec { padding: 56px 0; }
.sec-tight { padding: 30px 0 56px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  padding: 13px 24px; border-radius: 999px; font-weight: 700; font-size: 16px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(192,57,43,.22); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-2); }
.btn-ghost:hover { background: var(--surface); border-color: var(--muted); }
.btn-sm { padding: 9px 17px; font-size: 15px; }
.btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,251,246,.82); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: var(--wrap); margin: 0 auto; padding: 13px 26px;
  display: flex; align-items: center; gap: 22px;
}
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 20px; margin-left: 8px; }
.nav-links a, .nav-drop > button {
  font-size: 15.5px; font-weight: 600; color: var(--muted-2); text-decoration: none;
  background: none; border: 0; cursor: pointer; font-family: inherit; padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-drop > button:hover { color: var(--ink); }
/* Abkuerzung in der Leiste: dezent als solche erkennbar, voller Name im title */
.nav-links abbr {
  text-decoration: none; border-bottom: 1px dotted var(--muted); cursor: help;
  letter-spacing: .02em;
}
.nav-links a:hover abbr { border-bottom-color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--red); }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 12px); left: -14px; min-width: 290px;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  box-shadow: var(--shadow-lift); padding: 10px; display: none;
}
.nav-drop.open .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block; padding: 11px 14px; border-radius: 12px; border: 0;
  font-weight: 700; color: var(--ink);
}
.nav-drop-menu a:hover { background: var(--surface-2); }
.nav-drop-menu small { display: block; font-weight: 500; color: var(--muted); font-size: 13.5px; }
.nav-burger { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

.mobile-menu {
  position: fixed; inset: 0; background: var(--bg); z-index: 200; padding: 22px 26px;
  overflow-y: auto; display: none;
}
.mobile-menu.open { display: block; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.mobile-menu-close { background: none; border: 0; font-size: 30px; cursor: pointer; line-height: 1; color: var(--ink); }
.mobile-group { margin-bottom: 26px; }
.mobile-group .eyebrow { margin-bottom: 12px; display: block; }
.mobile-menu a.mobile-link {
  display: block; padding: 12px 0; font-size: 21px; font-weight: 700;
  text-decoration: none; border-bottom: 1px solid var(--border);
}

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-burger { display: block; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 60px 0 44px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px;
  border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border-2);
  font-size: 13.5px; font-weight: 700; color: var(--muted-2); margin-bottom: 22px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--red);
  box-shadow: 0 0 0 0 rgba(192,57,43,.45); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(192,57,43,.45); }
  70% { box-shadow: 0 0 0 11px rgba(192,57,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); }
}
.hero-center { text-align: center; }
.hero-center h1 { max-width: 21ch; margin: 0 auto; }
.hero-center .lead { max-width: 62ch; margin: 22px auto 0; }
.hero-cta { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.hero-figure { margin-top: 44px; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lift); }
.hero-figure img { width: 100%; height: clamp(300px, 46vw, 540px); object-fit: cover; }
.hero-stats {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 26px;
}
.stat {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 16px 24px; min-width: 168px; text-align: left; box-shadow: var(--shadow);
}
.stat .k, .stat .v, .stat .s { display: block; }
.stat .k { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.stat .v { font-size: 27px; font-weight: 800; letter-spacing: -.03em; margin: 3px 0 2px; }
.stat .s { font-size: 13.5px; color: var(--muted); line-height: 1.4; }

@media (max-width: 620px) {
  .hero-stats { flex-direction: column; }
  .stat { min-width: 0; width: 100%; }
  .hero-cta .btn { width: 100%; }
}

.page-hero { border-bottom: 1px solid var(--border); padding: 52px 0 46px; }
.page-hero h1 { max-width: 20ch; }
.page-hero .lead { max-width: 60ch; margin-top: 20px; }

/* ---------- Karten und Grids ---------- */
.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: 26px;
  padding: 26px; box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--muted-2); font-size: 16px; }
.card-media { padding: 0; overflow: hidden; }
.card-media img { width: 100%; height: 210px; object-fit: cover; }
.card-media .card-body { padding: 22px 24px 26px; }
.tag {
  display: inline-block; padding: 5px 12px; border-radius: 999px; font-size: 12px;
  font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  background: var(--surface-2); color: var(--muted-2); margin-bottom: 12px;
}
.tag-red { background: var(--red-soft); color: var(--red-deep); }
.num {
  font-family: var(--serif); font-size: 34px; color: var(--red); font-weight: 400;
  line-height: 1; margin-bottom: 8px;
}
.points { list-style: none; margin-top: 14px; }
.points li {
  position: relative; padding-left: 22px; font-size: 15.5px; color: var(--muted-2);
  margin-bottom: 7px;
}
.points li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px;
  border-radius: 999px; background: var(--red); opacity: .8;
}

/* ---------- Offen-Hinweis (TODO) ---------- */
.todo {
  display: inline-flex; align-items: baseline; gap: 8px; padding: 5px 12px;
  border-radius: 10px; background: var(--amber-bg); border: 1px dashed var(--amber-line);
  color: var(--amber); font-size: 14px; font-weight: 600; line-height: 1.45;
  text-align: left;
}
.todo b { font-weight: 800; letter-spacing: .04em; font-size: 11.5px; text-transform: uppercase; flex: none; }

/* ---------- Kalender ---------- */
.cal { list-style: none; border-top: 1px solid var(--border); }
.cal li { border-bottom: 1px solid var(--border); }
.cal-row {
  display: grid; grid-template-columns: 210px 1fr auto; gap: 26px; align-items: start;
  padding: 24px 4px; transition: background .16s ease;
}
.cal li:hover .cal-row { background: var(--surface-3); }
.cal-date { font-weight: 800; font-size: 17px; letter-spacing: -.02em; }
.cal-date .art { display: block; margin-top: 6px; }
.cal-date .approx { display: block; font-size: 12.5px; color: var(--muted); font-weight: 600; margin-top: 5px; }
.cal-main h3 { font-size: 20px; margin-bottom: 6px; }
.cal-main p { color: var(--muted-2); font-size: 15.5px; max-width: 68ch; }
.cal-main .ort { font-size: 14px; color: var(--muted); margin-top: 7px; }
.cal-act { display: flex; flex-direction: column; gap: 9px; align-items: flex-end; }
.next-flag {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: var(--red);
}
@media (max-width: 860px) {
  .cal-row { grid-template-columns: 1fr; gap: 12px; }
  .cal-act { align-items: flex-start; }
}

.hinweis {
  margin-top: 26px; padding: 22px 24px; border-radius: 22px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
}
.hinweis p { color: var(--muted-2); font-size: 16px; flex: 1 1 340px; }

/* ---------- Fotostreifen ---------- */
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.strip figure { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.strip img { width: 100%; height: 240px; object-fit: cover; }
@media (max-width: 760px) { .strip { grid-template-columns: 1fr 1fr; } .strip img { height: 170px; } }

/* ---------- Zitate ---------- */
.quote {
  background: #fff; border: 1px solid var(--border); border-radius: 26px; padding: 30px;
  box-shadow: var(--shadow);
}
.quote blockquote { font-size: 18px; line-height: 1.6; color: var(--ink); position: relative; padding-left: 30px; }
.quote blockquote::before {
  content: "\201E"; position: absolute; left: 0; top: 0;
  font-family: var(--serif); font-size: 44px; line-height: .92; color: var(--red);
}
.quote-by { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.avatar {
  width: 52px; height: 52px; border-radius: 999px; flex: none; object-fit: cover;
  background: var(--surface-2); border: 1px solid var(--border-2);
  display: grid; place-items: center; font-weight: 800; color: var(--muted-2); font-size: 17px;
}
.quote-by .n { font-weight: 800; }
.quote-by .r { font-size: 14.5px; color: var(--muted); }

/* ---------- Zu Besuch ---------- */
/* Kartenbreite gedeckelt: eine einzelne Karte soll nicht die ganze Zeile
   einnehmen, sonst schneidet object-fit die Köpfe ab. */
.besuche {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 460px));
  gap: 20px; justify-content: start;
}
.besuche figure {
  background: #fff; border: 1px solid var(--border); border-radius: 26px;
  overflow: hidden; box-shadow: var(--shadow);
}
.besuche img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: center 42%; }
.besuche figcaption { padding: 20px 24px 24px; font-size: 15.5px; color: var(--muted-2); }
.besuche figcaption b { display: block; color: var(--ink); font-size: 17.5px; margin-bottom: 5px; letter-spacing: -.02em; }
@media (max-width: 560px) { .besuche { grid-template-columns: 1fr; } }

/* ---------- Räume ---------- */
.room { display: grid; grid-template-columns: 340px 1fr; gap: 0; overflow: hidden; padding: 0; }
.room img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; }
.room-body { padding: 26px 28px; }
.room-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.room-cap { font-size: 14.5px; color: var(--muted); font-weight: 600; }
.state {
  display: inline-block; padding: 4px 11px; border-radius: 999px; font-size: 12px;
  font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
}
.state-frei { background: #E8F3EC; color: #2C6B45; }
.state-buchbar { background: var(--red-soft); color: var(--red-deep); }
.state-anfrage { background: var(--surface-2); color: var(--muted-2); }
.room-price { font-weight: 800; font-size: 18px; margin-top: 16px; letter-spacing: -.02em; }
.room-act { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
@media (max-width: 800px) { .room { grid-template-columns: 1fr; } .room img { min-height: 210px; height: 210px; } }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 4px; font-size: 18px; font-weight: 700; font-family: inherit;
  color: var(--ink); display: flex; justify-content: space-between; gap: 20px; align-items: center;
}
.faq-q .pm { color: var(--red); font-size: 24px; flex: none; line-height: 1; }
.faq-a { display: none; padding: 0 4px 22px; color: var(--muted-2); max-width: 78ch; }
.faq-item.open .faq-a { display: block; }

/* ---------- Podcast ---------- */
.pod-hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .pod-hero { grid-template-columns: 1fr; } }
.pod-platforms { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.clips {
  display: flex; gap: 16px; overflow-x: auto; padding: 6px 26px 22px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.clips::-webkit-scrollbar { height: 8px; }
.clips::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 999px; }
.clip {
  flex: 0 0 208px; scroll-snap-align: start; text-decoration: none;
  border-radius: 22px; overflow: hidden; background: var(--ink); color: #fff;
  position: relative; aspect-ratio: 9 / 16; display: block;
  box-shadow: var(--shadow); transition: transform .18s ease;
}
.clip:hover { transform: translateY(-4px) scale(1.012); }
.clip .thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.clip .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(35,29,25,.1) 30%, rgba(35,29,25,.88) 100%); }
.clip .meta { position: absolute; inset: auto 0 0 0; padding: 16px; display: block; }
.clip .folge, .clip .t { display: block; }
.clip .folge { font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #F6C9C2; }
.clip .t { font-size: 16px; font-weight: 800; line-height: 1.25; margin-top: 5px; letter-spacing: -.02em; }
.clip .play {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 999px;
  background: rgba(255,255,255,.92); color: var(--red); display: grid; place-items: center;
  font-size: 13px; padding-left: 3px;
}
.clip .offen { position: absolute; top: 14px; left: 14px; background: var(--amber-bg); color: var(--amber); font-size: 10.5px; font-weight: 800; padding: 4px 8px; border-radius: 7px; text-transform: uppercase; letter-spacing: .06em; }
.ep { display: grid; grid-template-columns: 74px 1fr auto; gap: 20px; align-items: center; padding: 20px 4px; border-bottom: 1px solid var(--border); text-decoration: none; }
.ep:hover { background: var(--surface-3); }
.ep .n { font-family: var(--serif); font-size: 25px; color: var(--red); }
.ep h3 { font-size: 18.5px; margin-bottom: 4px; }
.ep .g { font-size: 14.5px; color: var(--muted); }
@media (max-width: 720px) { .ep { grid-template-columns: 56px 1fr; } .ep .btn { display: none; } }

/* ---------- Newsletter ---------- */
.nl {
  background: var(--surface); border: 1px solid var(--border); border-radius: 28px;
  padding: 38px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: center;
}
@media (max-width: 860px) { .nl { grid-template-columns: 1fr; padding: 28px; } }
.nl h2 { font-size: clamp(25px, 3.4vw, 36px); max-width: 24ch; }
.field { display: flex; gap: 10px; flex-wrap: wrap; }
.field input[type="email"], .field input[type="text"], .field textarea {
  flex: 1 1 220px; padding: 13px 17px; border-radius: 14px; border: 1px solid var(--border-2);
  background: #fff; font-family: inherit; font-size: 16px; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; font-size: 13.5px; color: var(--muted); }
.consent input { margin-top: 4px; }
.form-msg { margin-top: 14px; font-size: 15px; font-weight: 700; color: var(--red-deep); }
label.lbl { display: block; font-size: 13.5px; font-weight: 700; color: var(--muted-2); margin: 14px 0 6px; }

/* ---------- Social-Icons ---------- */
.vh {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
.social-icons { list-style: none; display: flex; gap: 10px; flex-wrap: wrap; }
.social-ic {
  --marke: var(--ink);
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 999px;
  background: #fff; border: 1px solid var(--border-2); text-decoration: none;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
.social-ic svg { width: 19px; height: 19px; fill: var(--marke); transition: fill .16s ease; }
a.social-ic:hover { background: var(--marke); border-color: var(--marke); transform: translateY(-2px); }
a.social-ic:hover svg { fill: #fff; }
.social-icons-lg .social-ic { width: 46px; height: 46px; }
.social-icons-lg .social-ic svg { width: 22px; height: 22px; }
.social-ic.off {
  border-style: dashed; background: var(--surface-3); cursor: help;
}
.social-ic.off svg { fill: var(--muted); opacity: .5; }

.ic-linkedin { --marke: #0A66C2; }
.ic-instagram { --marke: #D62976; }
.ic-youtube { --marke: #FF0000; }
.ic-facebook { --marke: #1877F2; }
.ic-tiktok { --marke: #010101; }

/* ---------- Logoleiste ---------- */
.logos { list-style: none; display: flex; gap: 14px; flex-wrap: wrap; align-items: stretch; }
.logos li { display: flex; }
.logos a { display: flex; text-decoration: none; }
.logo-box {
  display: grid; place-items: center; padding: 16px 22px; min-width: 168px; min-height: 84px;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  transition: box-shadow .16s ease, transform .16s ease;
}
.logos a:hover .logo-box { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.logo-box img { max-height: 46px; width: auto; max-width: 190px; object-fit: contain; }
.logo-box-leer { background: var(--surface-3); border-style: dashed; border-color: var(--border-2); }
.logo-fehlt {
  font-size: 13.5px; font-weight: 700; color: var(--muted); text-align: center; line-height: 1.3;
}
.logo-fehlt small { display: block; font-weight: 500; font-size: 11.5px; margin-top: 3px; opacity: .8; }

/* ---------- Namensliste, z.B. Jury ---------- */
.namen { list-style: none; display: flex; gap: 10px; flex-wrap: wrap; }
.namen li {
  display: inline-flex; align-items: center; padding: 10px 18px; border-radius: 999px;
  background: #fff; border: 1px solid var(--border); font-size: 15.5px; font-weight: 700;
  color: var(--ink); box-shadow: var(--shadow);
}

/* ---------- Bekannt aus ---------- */
.medien-zusatz { margin-top: 12px; font-size: 14.5px; color: var(--muted); font-style: italic; }
.medien-mehr {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: 20px; padding: 20px 24px; border-radius: 20px; text-decoration: none;
  background: var(--surface); border: 1px solid var(--border); color: var(--ink);
  transition: border-color .16s ease, transform .16s ease;
}
.medien-mehr:hover { border-color: var(--red); transform: translateY(-2px); }
.medien-mehr b { display: block; font-size: 17px; }
.medien-mehr small { display: block; font-size: 14px; color: var(--muted); margin-top: 3px; max-width: 62ch; }
.medien-mehr .pfeil { color: var(--red); font-size: 22px; flex: none; }

/* ---------- Pressespiegel ---------- */
.presse { list-style: none; border-top: 1px solid var(--border); }
.presse li { border-bottom: 1px solid var(--border); }
.presse a, .presse-offen {
  display: grid; grid-template-columns: 190px 1fr auto; gap: 22px; align-items: center;
  padding: 20px 4px; text-decoration: none; color: var(--ink);
}
.presse a:hover { background: var(--surface-3); }
.presse .p-meta { display: block; }
.presse .p-medium {
  display: block; font-size: 13px; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; color: var(--red);
}
.presse .p-datum { display: block; font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.presse .p-titel { font-size: 17.5px; font-weight: 700; letter-spacing: -.02em; }
.presse .pfeil { color: var(--red); font-size: 19px; }
.presse-offen { opacity: .85; }
@media (max-width: 760px) {
  .presse a, .presse-offen { grid-template-columns: 1fr; gap: 8px; }
  .presse .pfeil { display: none; }
}

/* ---------- Podcast-Host und Gäste ---------- */
.host { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.host-foto {
  width: 116px; height: 116px; border-radius: 999px; object-fit: cover; flex: none;
  border: 3px solid #fff; box-shadow: var(--shadow-lift);
}
.host-text { flex: 1 1 280px; }
.host-text b { font-size: 21px; letter-spacing: -.02em; }
.host-rolle { display: block; color: var(--muted); font-size: 14.5px; margin-top: 2px; }
.host-text p { font-size: 15.5px; color: var(--muted-2); margin: 12px 0 16px; max-width: 60ch; }

.gaeste { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gaeste figure { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.gaeste img { width: 100%; height: 230px; object-fit: cover; }
@media (max-width: 860px) { .gaeste { grid-template-columns: 1fr 1fr; } .gaeste img { height: 190px; } }

/* ---------- Zeitstrahl ---------- */
.timeline { list-style: none; position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--border-2); }
.timeline li { position: relative; padding-bottom: 30px; }
.timeline li::before {
  content: ""; position: absolute; left: -30px; top: 7px; width: 16px; height: 16px;
  border-radius: 999px; background: #fff; border: 3px solid var(--red);
}
.timeline li.future::before { border-color: var(--border-2); }
.timeline .jahr { font-size: 13px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--red); }
.timeline li.future .jahr { color: var(--muted); }
.timeline h3 { font-size: 20px; margin: 5px 0 6px; }
.timeline p { color: var(--muted-2); font-size: 16px; max-width: 70ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 50px 0 24px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 34px; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer img.logo { height: 32px; margin-bottom: 14px; }
.site-footer p, .site-footer li, .site-footer a { font-size: 15px; color: var(--muted-2); }
.site-footer h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 13px; font-weight: 800; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a { text-decoration: none; }
.site-footer ul a:hover { color: var(--red); }
.footer-bottom {
  margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--border-2);
  display: flex; gap: 18px; flex-wrap: wrap; align-items: center; justify-content: space-between;
  font-size: 14px; color: var(--muted);
}
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Draft-Banner ---------- */
.draftbar {
  background: var(--ink); color: #F6E7DA; font-size: 13.5px; text-align: center;
  padding: 9px 20px; font-weight: 600;
}
.draftbar b { color: #fff; }

/* ---------- Scroll-Reveal ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.js [data-reveal].shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-badge .dot { animation: none; }
}

/* ---------- Zusatz unter der Förderer-Leiste ---------- */
.traeger-zusatz {
  margin-top: 18px; max-width: 74ch; font-size: 16px; color: var(--muted-2);
  padding-left: 16px; border-left: 3px solid var(--red-soft);
}

/* ---------- Podcast-Folgen mit Cover ---------- */
.ep { grid-template-columns: 200px 1fr auto; align-items: center; }
.ep-cover {
  width: 200px; height: 113px; object-fit: cover; border-radius: 12px;
  box-shadow: var(--shadow); background: var(--surface-2);
}
.ep .n-klein {
  display: block; font-size: 12px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red); margin-bottom: 3px;
}
@media (max-width: 720px) {
  .ep { grid-template-columns: 120px 1fr; }
  .ep-cover { width: 120px; height: 68px; }
}

/* ---------- Rechtstexte ---------- */
.rechtstext { max-width: 78ch; }
.rechtstext h2 { font-size: clamp(22px, 2.6vw, 30px); margin: 34px 0 12px; }
.rechtstext h3 { font-size: 19px; margin: 24px 0 8px; }
.rechtstext h4 { font-size: 16.5px; font-weight: 700; margin: 18px 0 6px; color: var(--muted-2); }
.rechtstext p { font-size: 16px; color: var(--muted-2); margin-bottom: 12px; }
.rechtstext li { font-size: 16px; color: var(--muted-2); margin-left: 22px; margin-bottom: 6px; }
.rechtstext a { color: var(--red); }
.rechtstext > h2:first-child { margin-top: 0; }

/* ---------- Highlight-Video, Klick zum Abspielen ---------- */
.video-buehne { position: relative; }
.video-start {
  display: block; width: 100%; padding: 0; border: 0; cursor: pointer; background: var(--ink);
  border-radius: 26px; overflow: hidden; position: relative; aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lift); font-family: inherit; text-align: left;
}
.video-start img { width: 100%; height: 100%; object-fit: cover; }
.video-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(35,29,25,.05) 40%, rgba(35,29,25,.86) 100%);
}
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px; border-radius: 999px; background: var(--red); color: #fff;
  display: grid; place-items: center; font-size: 30px; padding-left: 6px;
  box-shadow: 0 10px 30px rgba(192,57,43,.42); transition: transform .18s ease;
}
.video-start:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-meta { position: absolute; inset: auto 0 0 0; padding: 26px 30px; color: #fff; }
.video-meta b { display: block; font-size: clamp(20px, 2.4vw, 28px); letter-spacing: -.02em; }
.video-meta span { display: block; font-size: 15.5px; color: #F0E2D6; margin-top: 6px; max-width: 70ch; }
.video-rahmen { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 26px; display: block; }
.video-hinweis { margin-top: 12px; font-size: 14px; color: var(--muted); }
.video-hinweis a { color: var(--red); font-weight: 700; }
@media (max-width: 640px) {
  .video-play { width: 60px; height: 60px; font-size: 22px; }
  .video-meta { padding: 18px 20px; }
}

/* ---------- Gäste-Laufband ---------- */
.laufband {
  position: relative; overflow: hidden;
  /* Ränder weich auslaufen lassen, damit das Band nicht abgeschnitten wirkt. */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.laufband-spur { display: flex; width: max-content; animation: laufband 64s linear infinite; }
.laufband:hover .laufband-spur, .laufband:focus-within .laufband-spur { animation-play-state: paused; }
.laufband-satz { display: flex; gap: 16px; padding-right: 16px; }
@keyframes laufband { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.g-karte {
  position: relative; display: block; flex: 0 0 auto;
  width: clamp(210px, 24vw, 280px); aspect-ratio: 4 / 3;
  border-radius: 18px; overflow: hidden; background: var(--surface-2);
  box-shadow: var(--shadow); text-decoration: none;
}
.g-karte img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(35,29,25,0) 45%, rgba(35,29,25,.85) 100%);
}
.g-meta { position: absolute; inset: auto 0 0 0; padding: 14px 16px; color: #fff; }
.g-meta b { display: block; font-size: 15px; line-height: 1.25; margin-top: 3px; }
.g-folge, .g-bald {
  display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 999px;
}
.g-folge { background: var(--red); color: #fff; }
.g-bald { background: rgba(255,255,255,.9); color: var(--ink); }
a.g-karte:hover img { transform: scale(1.04); }
.g-karte img { transition: transform .35s ease; }
.laufband .offen { position: absolute; top: 10px; right: 10px; background: var(--amber-bg); color: var(--amber); font-size: 10.5px; font-weight: 800; padding: 4px 8px; border-radius: 7px; text-transform: uppercase; letter-spacing: .06em; }
@media (prefers-reduced-motion: reduce) {
  /* Kein Dauerlauf für Leute, die Bewegung reduziert haben: dann von Hand wischen. */
  .laufband-spur { animation: none; }
  .laufband { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .laufband-satz:last-child { display: none; }
}

/* ---------- Video neben Text, damit das Bewegtbild nicht die Seite dominiert ---------- */
.video-neben { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 34px; align-items: center; }
.video-neben > div:first-child { max-width: 620px; }
.video-neben-text p { color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 46ch; }
.video-neben .video-meta { padding: 16px 18px; }
.video-neben .video-meta b { font-size: 17px; }
.video-neben .video-meta span { font-size: 13.5px; }
.video-neben .video-play { width: 58px; height: 58px; font-size: 21px; }
@media (max-width: 900px) {
  .video-neben { grid-template-columns: 1fr; gap: 22px; }
  .video-neben-text { order: -1; }
}

/* =============================================================================
   Ergänzungen für livingroom-podcast.de
   Die Folgen stehen hier als Karten mit Beschreibung statt als schmale Zeilen,
   weil jede Folge eine eigene Seite hat und der Text auch für Suchmaschinen
   sichtbar sein soll.
   ============================================================================= */

.meta-klein { font-size: 14px; color: var(--muted); }

.pod-hero-bild { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lift); margin: 0; }
.pod-hero-bild img { width: 100%; height: 340px; object-fit: cover; display: block; }

/* --- Folgenliste auf der Startseite --- */
.ep-liste { display: grid; gap: 22px; }
.ep-karte {
  display: grid; grid-template-columns: 320px 1fr; gap: 26px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 22px; overflow: hidden; align-items: stretch;
  transition: box-shadow .25s ease, transform .25s ease;
}
.ep-karte:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.ep-cover-link { display: block; height: 100%; }
.ep-karte .ep-cover { width: 100%; height: 100%; min-height: 190px; object-fit: cover; display: block; border-radius: 0; }
.ep-inhalt { padding: 24px 26px 26px 0; }
.ep-inhalt .n-klein {
  display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red); margin-bottom: 8px;
}
.ep-inhalt h3 { font-size: 22px; letter-spacing: -.02em; margin-bottom: 6px; }
.ep-inhalt h3 a { color: inherit; text-decoration: none; }
.ep-inhalt h3 a:hover { color: var(--red); }
.ep-gast { font-size: 14.5px; color: var(--muted); margin-bottom: 10px; }
.ep-kurz { font-size: 15.5px; color: var(--muted-2); max-width: 62ch; }
.ep-akt { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

.card.kommt h3 { font-size: 18.5px; }
.card.kommt .meta-klein { margin-top: 12px; }

/* --- Häufige Fragen --- */
.faq { margin-top: 22px; border-top: 1px solid var(--border); }
.faq dt {
  font-weight: 800; font-size: 18px; letter-spacing: -.01em;
  margin: 0; padding: 22px 0 8px;
}
.faq dd {
  margin: 0 0 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border);
  color: var(--muted-2); font-size: 16px; max-width: 76ch;
}

/* --- Folgenseite --- */
.brotkrumen { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.brotkrumen a { color: var(--muted); }
.brotkrumen a:hover { color: var(--red); }
.folge-cover { margin: 0; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lift); }
.folge-cover img { width: 100%; height: auto; display: block; }
.kapitel { list-style: none; padding: 0; margin: 12px 0 0; }
.kapitel li { border-bottom: 1px solid var(--border); }
.kapitel a { display: flex; gap: 16px; padding: 11px 2px; text-decoration: none; color: var(--ink); font-size: 15.5px; }
.kapitel a:hover { color: var(--red); }
.kapitel .zeit { font-variant-numeric: tabular-nums; color: var(--red); font-weight: 700; min-width: 52px; }
.folge-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.folge-nav a {
  display: block; padding: 18px 20px; border: 1px solid var(--border);
  border-radius: 16px; text-decoration: none; background: var(--surface);
}
.folge-nav a:hover { border-color: var(--red); }
.folge-nav a span { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.folge-nav a b { font-size: 16px; letter-spacing: -.01em; color: var(--ink); }
.folge-nav .fn-rechts { text-align: right; }

@media (max-width: 860px) {
  .ep-karte { grid-template-columns: 1fr; }
  .ep-karte .ep-cover { height: 210px; min-height: 0; }
  .ep-inhalt { padding: 0 22px 24px; }
  .folge-nav { grid-template-columns: 1fr; }
  .folge-nav .fn-rechts { text-align: left; }
  .pod-hero-bild img { height: 240px; }
}
