/* =============================================
   DON CLARKE – Redesign 2026
   Palette: Dunkelrot #83121A · Weiß · Warmgrau
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --red:        #83121A;
  --red-hover:  #9b161f;
  --red-dark:   #5c0d12;
  --bg:         #f0eeec;
  --white:      #ffffff;
  --text:       #1a1a1a;
  --text-muted: #6a6a6a;
  --border:     #e2ddd9;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.13), 0 4px 12px rgba(0,0,0,0.08);
  --radius:     4px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:  1100px;
}

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

html {
  scroll-behavior: smooth;
  /* Verhindert weißen Block unter dem Footer wenn Seite kürzer als Viewport */
  background: var(--text);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  /* Sticky Footer: Footer klebt immer am Seitenende */
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* ── Logo ── */
.site-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--red);
  outline: 1px solid var(--red);
  outline-offset: 3px;
  padding: 6px 16px;
  line-height: 1.15;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.site-logo:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(131,18,26,0.18);
}
.logo-top {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.logo-bottom {
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 2px;
}

/* ── Desktop Nav ── */
.site-nav {
  display: flex;
  gap: 0;
  align-items: center;
}
.site-nav a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav a.active {
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
}
.site-nav a.active::after { display: none; }

/* ── Hamburger Toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: background var(--transition);
  z-index: 301;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--bg); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0; width: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav Overlay ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.nav-overlay.open { opacity: 1; }

/* ── Hero Slider ── */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
}
.hero-slider .slides {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slider .slide {
  flex: 0 0 100%;
  position: relative;
}
.hero-slider .slide img {
  width: 100%;
  height: clamp(400px, 62vh, 680px);
  object-fit: cover;
  display: block;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.06) 55%, rgba(0,0,0,0.38) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 8%;
}
.slide-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  color: #fff;
  max-width: 560px;
  line-height: 1.45;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.slide-quote.right {
  margin-left: auto;
  text-align: right;
}
.slide-source {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e05060;
  margin-top: 12px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.slide-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: 24px;
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 3px;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.1);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.slide-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.slider-dots .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.35);
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(6px);
  z-index: 5;
}
.slider-arrow:hover {
  background: rgba(131,18,26,0.8);
  border-color: transparent;
  transform: translateY(-50%) scale(1.06);
}
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ── Page Hero – mit Bild (Unterseiten) ── */
.page-hero-img {
  position: relative;
  overflow: hidden;
}
.page-hero-img > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.page-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.page-hero-img-overlay .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.page-hero-img-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* ── Page Hero – Verlauf (Rechtliches) ── */
.page-hero-gradient {
  height: 148px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.page-hero-gradient .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.page-hero-gradient h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #fff;
}

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-alt { background: var(--white); }

/* ── Section Label ── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

/* ── Typografie ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h2.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 24px;
  color: var(--text);
}
p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

/* ── Bio Section ── */
.bio-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}
.bio-image {
  position: relative;
}
.bio-image-inner {
  position: relative;
  display: inline-block;
  width: 100%;
}
.bio-image-inner::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  width: 100%; height: 100%;
  border: 3px solid var(--red);
  border-radius: 2px;
  z-index: 0;
  pointer-events: none;
}
.bio-image-inner img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}

/* ── Quote Block ── */
.quote-block {
  background: var(--red);
  padding: 64px 0;
  text-align: center;
}
.quote-block blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  color: var(--white);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.5;
}
.quote-block cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
}

/* ── Program Section ── */
.program-section {
  background: var(--text);
  padding: 88px 0;
}
.program-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: center;
}
.program-text .section-label { color: #e05060; }
.program-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 8px;
}
.program-text .tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.program-text .tagline strong { color: #e05060; font-style: normal; }
.program-text p { color: rgba(255,255,255,0.72); }
.program-image img {
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(131,18,26,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover {
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* ── YouTube Facade ── */
.yt-facade {
  position: relative;
  cursor: pointer;
  background: #000;
}
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
  position: absolute;
  inset: 0;
}
.yt-facade:hover img { opacity: 0.7; }
.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease;
}
.yt-facade:hover .yt-play { transform: scale(1.08); }
.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── Videos ── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.video-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  background: #111;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-info { padding: 20px 24px; }
.video-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text);
}
.video-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Downloads ── */
.credit-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}
.dl-index {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 40px;
}
.dl-index-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.dl-index ol {
  margin: 0;
  padding: 0 0 0 1.1rem;
  list-style: decimal;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dl-index > ol > li > a {
  font-size: 0.88rem;
  color: var(--text);
  transition: color 0.15s;
}
.dl-index > ol > li > a:hover { color: var(--red); }
.dl-index ol ol {
  margin-top: 3px;
  padding-left: 1.1rem;
  list-style: lower-alpha;
  gap: 3px;
}
.dl-index ol ol li a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.15s;
}
.dl-index ol ol li a:hover { color: var(--red); }
.dl-section-anchor { scroll-margin-top: 100px; }

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 8px;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.press-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.press-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.press-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}
.press-card-info {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.press-card-info span { font-size: 0.75rem; color: var(--text-muted); }
.press-card-info a {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}
.press-card-info a:hover { color: var(--red-hover); }

.programminfo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 8px;
}
.programminfo-grid .download-pdf { max-width: none; margin-bottom: 0; }

.download-pdf {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  max-width: 480px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.download-pdf:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(131,18,26,0.25);
}
.pdf-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.pdf-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text);
}
.pdf-info span { font-size: 0.78rem; color: var(--text-muted); }

.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 28px;
}
.section-divider h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Kontakt ── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--red);
  color: var(--text);
}
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-item-icon {
  width: 38px; height: 38px;
  background: var(--bg);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-item-text a { color: var(--red); transition: color var(--transition); }
.contact-item-text a:hover { color: var(--red-hover); }

.booking-note {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius);
  padding: 36px;
  color: #fff;
}
.booking-note h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #fff;
}
.booking-note p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }

/* ── Termine (Widget-Stile) ── */
.termine-list { list-style: none; }
.termin-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 4px solid transparent;
  transition: box-shadow var(--transition), transform var(--transition), border-left-color var(--transition);
}
.termin-item:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--red);
  transform: translateX(4px);
}
.termin-date { text-align: center; }
.termin-date .day {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--red);
}
.termin-date .month {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.termin-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.termin-info .location { font-size: 0.85rem; color: var(--text-muted); }

/* ── Rechtliches ── */
.legal-content { max-width: 720px; }
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 2rem 0 0.5rem;
  color: var(--text);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 1.25rem 0 0.4rem;
  color: var(--text);
}
.legal-content p,
.legal-content address,
.legal-content li {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.legal-content ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.legal-content a { color: var(--red); }
.legal-content a:hover { color: var(--red-hover); }

/* ── Footer ── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.5);
  padding: 48px 0;
  margin-top: auto; /* Sticky Footer: schiebt Footer ans Seitenende */
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  width: 100%;
  text-align: center;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── Cursor & Touch ── */
.slider-arrow,
.dot,
.nav-toggle,
.slide-btn,
.btn,
.yt-facade,
.download-pdf,
.press-card-info a,
.dc-btn,
.dc-anfahrt,
#dc-month-nav a,
.dc-nav-arrow,
.dl-index a,
.site-nav a,
.footer-links a,
.site-logo {
  cursor: pointer;
}

.slider-arrow,
.dot,
.nav-toggle,
.btn,
.slide-btn,
.dc-btn,
.dc-anfahrt {
  touch-action: manipulation; /* Entfernt 300ms-Tap-Delay auf Mobile */
}

/* ── Focus-Ringe (Keyboard Navigation) ── */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: var(--radius);
}

.site-nav a:focus-visible {
  outline-offset: 2px;
}

.slider-arrow:focus-visible,
.dot:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

/* ── Active / Press-States ── */
.btn:active { transform: translateY(0) scale(0.97); }
.slide-btn:active { transform: scale(0.97); }
.slider-arrow:active { transform: translateY(-50%) scale(0.96); }
.download-pdf:active { transform: translateY(0) scale(0.98); }
.press-card:active { transform: translateY(-1px); }

/* ── Animationen ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dc-spin { to { transform: rotate(360deg); } }

/* ── Reduced Motion (Accessibility) ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-slider .slides { transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive: Tablet ── */
@media (max-width: 960px) {
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bio-image { text-align: center; }
  .bio-image-inner { max-width: 340px; margin: 0 auto; }
  .program-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .program-image { order: -1; max-width: 360px; }
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .videos-grid { grid-template-columns: 1fr; }
  .programminfo-grid { grid-template-columns: 1fr; }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-overlay { display: block; }
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 28px 48px;
    gap: 0;
    z-index: 300;
    box-shadow: -4px 0 32px rgba(0,0,0,0.14);
    transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .site-nav.open { right: 0; }
  .site-nav a {
    width: 100%;
    font-size: 0.95rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    color: var(--text-muted);
  }
  .site-nav a:last-child { border-bottom: none; }
  .site-nav a.active {
    background: none;
    color: var(--red);
  }
  .site-nav a::after { display: none; }
}

@media (max-width: 640px) {
  .header-inner { height: 64px; padding: 0 16px; }
  .logo-top { font-size: 0.95rem; }
  .logo-bottom { font-size: 0.58rem; }
  .hero-slider .slide img { height: clamp(280px, 52vw, 400px); }
  .slide-overlay { padding: 32px 5%; }
  .section { padding: 56px 0; }
  .termin-item { grid-template-columns: 70px 1fr; }
  .termin-item .btn { display: none; }
  .press-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .poster-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; gap: 12px; }
}
