/* ============================================================
   CyberPatrimonium — Stylesheet
   ============================================================ */

/* --- Custom Properties ------------------------------------ */
:root {
  --red:       #8B0000;
  --red-hover: #a50000;
  --anthrazit: #3a3a3a;
  --white:     #ffffff;
  --lightgrey: #f2f0f3;
  --mid-grey:  #d8d4dc;
  --text:      #3a3a3a;
  --text-muted:#6b6b6b;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius: 12px;
  --radius-card: 18px;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.13);
  --transition: 0.25s ease;
  --spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1160px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--anthrazit);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 0.9rem; }
p:last-child { margin-bottom: 0; }

/* --- Container -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Sections --------------------------------------------- */
section {
  padding: 5rem 0;
  /* Offset for sticky nav so anchor links don't hide beneath it */
  -webkit-scroll-margin-top: 72px; /* Safari < 14.1 */
  scroll-margin-top: 72px;
}
.section-grey { background: var(--lightgrey); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-orientierung {
  font-size: 1.05rem;
  color: var(--anthrazit);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.section-intro {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-intro h2 { margin-bottom: 0.75rem; }
.section-intro p { color: var(--text-muted); font-size: 1.05rem; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(139,0,0,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.88rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(216, 212, 220, 0.55);
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo { display: flex; flex-direction: row; align-items: center; gap: 0.7rem; }
.nav-logo-img { height: 40px; width: auto; border-radius: 4px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--anthrazit);
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav-logo-tagline {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  font-style: italic;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--anthrazit);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Featured nav pill (Podcast) — higher specificity to beat hover/active rules */
.site-header .nav-links a.nav-link--featured {
  background: var(--red);
  color: #fff;
  padding: 0.28rem 0.9rem;
  border-radius: 999px;
  border-bottom: 2px solid transparent;
  font-weight: 600;
  line-height: 1.4;
  transition: background var(--transition);
}
.site-header .nav-links a.nav-link--featured:hover,
.site-header .nav-links a.nav-link--featured.active {
  background: #6b0000;
  color: #fff;
  border-bottom-color: transparent;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--anthrazit);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle--open span:nth-child(2) { opacity: 0; }
.nav-toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 640px) {
  /* Disable frosted glass on mobile — backdrop-filter creates a stacking context
     that traps absolutely-positioned children in Safari, making the dropdown
     invisible or showing content behind it. Solid white is the correct fix. */
  .site-header {
    background: #ffffff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--mid-grey);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 1.25rem 1.5rem;
    min-height: 56px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--lightgrey);
    border-left: none;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: var(--lightgrey);
    border-bottom-color: var(--lightgrey);
  }
  /* Podcast pill im mobilen Menü */
  .site-header .nav-links a.nav-link--featured {
    background: var(--red);
    color: #fff;
    border-radius: 0;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #6b0000;
  }
  .site-header .nav-links a.nav-link--featured:hover {
    background: #6b0000;
    border-bottom-color: #6b0000;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--anthrazit);
  color: rgba(255,255,255,0.75);
  padding: 2rem 0;
  font-size: 0.88rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 1rem; align-items: center; }
.footer-social a {
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.footer-social a:hover { opacity: 1; }
.ueber-social { margin-top: 1.25rem; }
.ueber-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0A66C2;
  transition: opacity var(--transition);
}
.ueber-social-link:hover { opacity: 0.75; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--anthrazit) 0%, #2a2a2a 60%, #1e1e1e 100%);
  color: var(--white);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,0,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c0a0a0;
  margin-bottom: 1.2rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero h1 span { color: #e88080; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin: 0 auto 2.2rem;
  max-width: 600px;
  line-height: 1.7;
}
.hero .btn { font-size: 1rem; padding: 1rem 2.2rem; }

/* ============================================================
   PROBLEM SECTION (Die Lücke)
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin: 2.5rem 0;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--spring);
}
.problem-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.problem-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.problem-card h4 { margin-bottom: 0.4rem; color: var(--anthrazit); }
.problem-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }
.problem-conclusion {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.75rem;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  margin-top: 0.5rem;
}

.problem-solution-note {
  background: var(--anthrazit);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.75rem;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 800px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PHONE LINK (revealed via JS)
   ============================================================ */
.phone-link,
.email-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--anthrazit);
  transition: color var(--transition);
}
.phone-link:hover,
.email-link:hover { color: var(--red); }


/* ============================================================
   PROZESS SECTION (6 Schritte)
   ============================================================ */
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin-top: 2.5rem;
}
.prozess-card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--transition), transform var(--spring);
}
.prozess-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.prozess-nr {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.9rem;
  user-select: none;
}
.prozess-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
  color: var(--anthrazit);
}
.prozess-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.prozess-note {
  background: var(--anthrazit);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.3rem 1.75rem;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
  margin-top: 2.5rem;
}
.prozess-note strong { color: #e88080; }

@media (max-width: 860px) {
  .prozess-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .prozess-grid { grid-template-columns: 1fr; }
  .prozess-nr { font-size: 2.2rem; }
}

/* ============================================================
   ANGEBOTE SECTION
   ============================================================ */
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.angebot-card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius-card);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--spring);
}
.angebot-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.angebot-card.featured {
  border-color: var(--red);
  border-width: 2px;
  position: relative;
}
.angebot-card.featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: -12px;
  left: 1.75rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}
.angebot-header { display: flex; flex-direction: column; gap: 0.4rem; }
.angebot-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.angebot-card h3 { font-size: 1.35rem; }
.angebot-fuer {
  font-size: 0.88rem;
  font-style: italic;
  color: #6b6b6b;
  margin: 0;
  line-height: 1.4;
}
.angebot-divider {
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.angebot-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.angebot-card ul li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 1.3rem;
  position: relative;
}
.angebot-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.angebot-ergebnis {
  background: var(--lightgrey);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
}
.angebot-ergebnis strong { color: var(--anthrazit); }

.angebote-hinweis {
  background: var(--lightgrey);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.angebote-hinweis a { color: var(--red); font-weight: 600; }
.angebote-hinweis a:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .angebote-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ÜBER MICH SECTION
   ============================================================ */
.ueber-combined {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3.5rem;
  align-items: center;
}
.ueber-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ueber-text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.ueber-warum h3,
.ueber-wieich h3 { margin-bottom: 1rem; }
.ueber-warum p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.ueber-foto {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  display: block;
  box-shadow: var(--shadow);
  /* Prevent saving via long-press (iOS) and right-click (desktop) */
  -webkit-touch-callout: none;
  user-select: none;
  pointer-events: none;
}

/* Fakten-Zeilen unter dem Namen — 3+2 Layout */
.ueber-fakten-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.ueber-fakten-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.ueber-fakt-chip {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.ueber-werte { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.ueber-wert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--lightgrey);
}
.ueber-wert::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.ueber-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.ueber-info-card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: box-shadow var(--transition), transform var(--spring);
}
.ueber-info-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.ueber-info-card h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.ueber-info-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.ueber-motto {
  text-align: center;
  margin-top: 3.5rem;
  padding: 0 1rem;
}
.ueber-motto p {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 760px) {
  .ueber-combined {
    grid-template-columns: 1fr;
  }
  .ueber-foto {
    max-width: 220px;
    margin: 0 auto;
  }
  .ueber-info-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   KONTAKT SECTION
   ============================================================ */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.kontakt-info { display: flex; flex-direction: column; gap: 1.5rem; }
.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.kontakt-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lightgrey);
  border: 1px solid var(--mid-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kontakt-item-icon--wa {
  background: #e8f8ef;
  border-color: #b2e4c5;
}
.kontakt-item-text strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.2rem; }

/* Form */
.kontakt-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--anthrazit);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--mid-grey);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
/* Suppress browser native :invalid red border on required empty fields */
.form-group input:invalid,
.form-group textarea:invalid {
  border-color: var(--mid-grey);
  box-shadow: none;
}
/* Keyboard focus */
.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
/* Mouse/touch focus */
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(139,0,0,0.1);
}
/* Error state — only after JS validation sets aria-invalid */
.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; text-align: center; }
.form-submit .btn.btn-success { background: #4a7c59; border-color: #4a7c59; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.6rem; }
/* Honeypot — invisible to humans, bots fill it, submission blocked in JS */
.form-honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
  pointer-events: none;
}
.form-error {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.25rem;
  display: block;
}

@media (max-width: 760px) {
  .kontakt-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* iOS Safari: prevent auto-zoom on input focus (triggered when font-size < 16px) */
@media (max-width: 640px) {
  .form-group input,
  .form-group textarea {
    font-size: 1rem;
  }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--lightgrey);
  border-bottom: 1px solid var(--mid-grey);
  padding: 3.5rem 0 3rem;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; margin-top: 0.6rem; max-width: 560px; }

/* Centred variant — used on podcast.html */
.page-hero--center { text-align: center; }
.page-hero--center h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); letter-spacing: 0.04em; }
.page-hero .podcast-hero-tagline {
  max-width: none;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Breadcrumb / page label */
.page-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

/* ============================================================
   IMPRESSUM / DATENSCHUTZ
   ============================================================ */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 0 5rem;
}
.legal-content h2 { font-size: 1.3rem; margin: 2rem 0 0.6rem; color: var(--anthrazit); }
.legal-content p, .legal-content li { font-size: 0.95rem; color: var(--text-muted); }
.legal-date { margin-top: 2rem; font-size: 0.85rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; }
.legal-content ul li { margin-bottom: 0.4rem; }
.placeholder-notice {
  background: #fff8e1;
  border: 1px solid #f0d060;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: #7a6000;
  margin-bottom: 2rem;
}

/* ============================================================
   PODCAST TEASER (index.html)
   ============================================================ */
.section-bordered { border-top: 1px solid var(--mid-grey); }

.podcast-teaser-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 3rem;
}
.podcast-cover {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-card);
  display: block;
  pointer-events: none;
  -webkit-touch-callout: none;
  user-select: none;
}
.podcast-teaser-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.podcast-platforms {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.btn-podcast {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
  color: #fff;
}
.btn-podcast:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-podcast.btn-podcast--yt { background: #FF0000; color: #fff; }
.btn-podcast.btn-podcast--sp { background: #1DB954; color: #fff; }
.podcast-more-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
}
.podcast-more-link:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .podcast-teaser-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .podcast-cover { max-width: 280px; margin: 0 auto; }
  .podcast-teaser-image { display: flex; justify-content: center; }
}

/* ============================================================
   PODCAST PAGE (podcast.html)
   ============================================================ */
.podcast-page-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
  padding: 4rem 0 5rem;
}
.podcast-page-platforms {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.podcast-page-platforms .btn-podcast {
  justify-content: center;
}
.podcast-page-content h2 {
  font-size: 1.3rem;
  color: var(--anthrazit);
  margin: 2rem 0 0.6rem;
}
.podcast-page-content h2:first-child { margin-top: 0; }
.podcast-page-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.text-link {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .podcast-page-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0 4rem;
  }
  .podcast-page-cover { display: flex; flex-direction: column; align-items: center; }
  .podcast-page-cover .podcast-cover { max-width: 280px; }
  .podcast-page-platforms { flex-direction: row; flex-wrap: wrap; }
  .podcast-page-platforms .btn-podcast { justify-content: flex-start; }
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */
#scrollTopBtn {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--anthrazit);
  color: #fff;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
#scrollTopBtn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#scrollTopBtn:hover { background: var(--red); }
#scrollTopBtn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

/* ============================================================
   GLOBAL FOCUS-VISIBLE STYLES
   ============================================================ */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  #scrollTopBtn {
    transition: none !important;
    opacity: 0;
  }
  #scrollTopBtn.visible {
    opacity: 1;
    transform: none;
  }
}
