/*
Theme Name: Philipp Thönes
Theme URI: https://philipp-thoenes.com
Author: Philipp Thönes
Author URI: https://philipp-thoenes.com
Description: Elegantes, dunkles Theme für den Pianisten & Komponisten Philipp Thönes — eine 1:1-Umsetzung des individuellen Designs. Vollständig responsiv (Mobile-First), mit Unterstützung für The Events Calendar (Konzerte), Contact Form 7 (Kontakt) und den Gutenberg-Editor (Vita & CD). Alle CSS Custom Properties bleiben erhalten.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: philipp-thoenes
*/

/* ════════════════════════════════════════════════════════════════════
   1 · DESIGN-TOKENS  ·  alle Farben, Fonts & Abstände als Custom Properties
   Hier kannst du das gesamte Erscheinungsbild zentral anpassen.
   ════════════════════════════════════════════════════════════════════ */
:root {
  /* — Farbpalette: Konzertsaal bei Nacht — */
  --noir:        #0a0908;   /* tiefes Schwarz (Seitengrund)        */
  --coal:        #110f0d;   /* Sektionen-Wechsel                   */
  --graphite:    #1a1714;   /* Karten / Flächen                    */
  --ash:         #29241e;   /* Linien, Ränder                      */
  --smoke:       #4a443b;   /* dezente Linien                      */
  --muted:       #8c8579;   /* sekundärer Text                     */
  --parchment:   #cbc2b2;   /* Fließtext hell                      */
  --ivory:       #f1ebdd;   /* Überschriften / Elfenbein           */
  --gold:        #c5a368;   /* Gold-Akzent                         */
  --gold-soft:   #ddc594;   /* Gold hell (Hover)                   */
  --gold-line:   rgba(197,163,104,0.22);

  /* — Typografie — */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Jost', system-ui, sans-serif;

  /* — Abstände — */
  --pad-x:       clamp(1.5rem, 5vw, 6rem);   /* horizontaler Seitenrand   */
  --section-y:   clamp(5rem, 11vh, 10rem);   /* vertikaler Sektionsabstand */
  --maxw:        1280px;

  /* — Bewegung — */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--noir);
  color: var(--parchment);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* — wiederkehrende Typo-Bausteine — */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.heading {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.04;
  color: var(--ivory);
  letter-spacing: 0.005em;
}
.heading em { font-style: italic; color: var(--gold-soft); }
.section-rule { width: 54px; height: 1px; background: var(--gold); opacity: 0.8; }

/* — Buttons — */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1.05rem 2.3rem;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent; white-space: nowrap;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn-gold      { background: var(--gold); color: var(--noir); border-color: var(--gold); }
.btn-gold:hover{ background: var(--gold-soft); border-color: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost     { background: transparent; color: var(--ivory); border-color: rgba(241,235,221,0.28); }
.btn-ghost:hover{ border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }

/* Scroll-Reveal (per JS aktiviert) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}


/* ════════════════════════════════════════════════════════════════════
   2 · NAVIGATION  ·  Logo oben links, Links rechts
   ════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.7rem var(--pad-x);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,9,8,0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding-top: 1.05rem; padding-bottom: 1.05rem;
  border-bottom-color: var(--gold-line);
}
.nav-logo { display: flex; align-items: center; line-height: 0; }
/* Logo: weiß auf transparent → direkt einsetzbar auf dunklem Grund */
.nav-logo img {
  height: 54px; width: auto;
  transition: height 0.5s var(--ease), opacity 0.3s;
}
.nav.scrolled .nav-logo img { height: 44px; }
.nav-logo:hover img { opacity: 0.78; }

.nav-links { display: flex; gap: 2.6rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; position: relative; padding: 0.3rem 0;
  transition: color 0.35s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Hamburger (mobil) */
.nav-burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 110;
}
.nav-burger span { display: block; width: 26px; height: 1.5px; background: var(--ivory); transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


/* ════════════════════════════════════════════════════════════════════
   3 · HERO  ·  Vollbild, atmosphärisch dunkel
   ════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('img/hero.jpg') center 38% / cover no-repeat;
  transform: scale(1.06);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift { from { transform: scale(1.06); } to { transform: scale(1.14); } }
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 70% 50%, transparent 0%, rgba(10,9,8,0.55) 60%, rgba(10,9,8,0.92) 100%),
    linear-gradient(90deg, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.55) 42%, rgba(10,9,8,0.25) 100%),
    linear-gradient(0deg, rgba(10,9,8,0.85) 0%, transparent 40%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 8rem var(--pad-x) 5rem;
}
.hero-eyebrow { margin-bottom: 1.6rem; }
.hero-name {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3.6rem, 11vw, 9rem); line-height: 0.9;
  color: var(--ivory); letter-spacing: -0.01em; margin-bottom: 1.4rem;
}
.hero-name span { display: block; }
.hero-name .ln2 { font-style: italic; color: var(--gold-soft); padding-left: 0.06em; }
.hero-role {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem); color: var(--parchment);
  letter-spacing: 0.02em; margin-bottom: 3rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
/* sanftes Eintreten der Hero-Elemente (per JS getriggert → robust für Print/Capture) */
.hero-anim { opacity: 0; transform: translateY(26px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.hero-anim.in { opacity: 1; transform: none; }
.hero-anim.d1.in { transition-delay: 0.15s; }
.hero-anim.d2.in { transition-delay: 0.32s; }
.hero-anim.d3.in { transition-delay: 0.49s; }
.hero-anim.d4.in { transition-delay: 0.66s; }
@media (prefers-reduced-motion: reduce) { .hero-anim { opacity: 1 !important; transform: none !important; } }

.hero-scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  opacity: 0; transition: opacity 1s ease 1s;
}
.hero-scroll.in { opacity: 1; }
.hero-scroll span { font-size: 0.56rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted); }
.hero-scroll .line { width: 1px; height: 52px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.35; transform: scaleY(0.8); } }


/* ════════════════════════════════════════════════════════════════════
   4 · STREAMING  ·  gestaltete Buttons mit Icons
   ════════════════════════════════════════════════════════════════════ */
.streaming { background: var(--coal); padding: clamp(3.5rem,7vh,5.5rem) var(--pad-x); border-top: 1px solid var(--ash); }
.streaming-inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.streaming-eyebrow { margin-bottom: 1rem; }
.streaming-title { font-size: clamp(1.6rem, 3.4vw, 2.6rem); margin-bottom: 2.6rem; }
.stream-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--ash); border: 1px solid var(--ash);
}
.stream-link {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  background: var(--graphite); padding: 2.4rem 1rem; text-decoration: none;
  color: var(--parchment); position: relative; overflow: hidden;
  transition: background 0.45s var(--ease), color 0.45s var(--ease);
}
.stream-link::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: center;
  transition: transform 0.45s var(--ease);
}
.stream-link:hover { background: #221d18; color: var(--ivory); }
.stream-link:hover::before { transform: scaleX(1); }
.stream-link svg { width: 34px; height: 34px; transition: transform 0.45s var(--ease); }
.stream-link:hover svg { transform: translateY(-3px); }
.stream-name { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; }
.stream-sub { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }


/* ════════════════════════════════════════════════════════════════════
   5 · KONZERTE  ·  Kartenlayout
   ════════════════════════════════════════════════════════════════════ */
.konzerte { background: var(--noir); padding: var(--section-y) var(--pad-x); border-top: 1px solid var(--ash); }
.konzerte-inner { max-width: var(--maxw); margin: 0 auto; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3.4rem; }
.section-head .heading { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.section-head .eyebrow { margin-bottom: 0.9rem; }

.konzert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.konzert-card {
  background: var(--graphite); border: 1px solid var(--ash);
  padding: 2.4rem 2.1rem; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.konzert-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--gold); transform: scaleY(0); transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.konzert-card:hover { transform: translateY(-6px); border-color: var(--gold-line); background: #1d1915; }
.konzert-card:hover::after { transform: scaleY(1); }
.konzert-date {
  display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 1.6rem;
  padding-bottom: 1.4rem; border-bottom: 1px solid var(--ash);
}
.konzert-day { font-family: var(--serif); font-size: 2.9rem; font-weight: 400; line-height: 1; color: var(--ivory); }
.konzert-mon { display: flex; flex-direction: column; }
.konzert-mon b { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.konzert-mon small { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.05em; }
.konzert-type { font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.konzert-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--ivory); line-height: 1.18; margin-bottom: 0.7rem; }
.konzert-place { font-size: 0.85rem; color: var(--parchment); line-height: 1.6; margin-bottom: 0.3rem; }
.konzert-place strong { color: var(--ivory); font-weight: 400; }
.konzert-meta { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.8rem; }
.konzert-link {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; padding-top: 0.4rem;
  transition: gap 0.35s var(--ease), color 0.35s var(--ease);
}
.konzert-link:hover { gap: 1rem; color: var(--gold-soft); }
.konzert-link::after { content: '→'; }


/* ════════════════════════════════════════════════════════════════════
   6 · VITA  ·  Portrait links, Text rechts
   ════════════════════════════════════════════════════════════════════ */
.vita { background: var(--coal); border-top: 1px solid var(--ash); }
.vita-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; align-items: stretch; }
.vita-photo { position: relative; overflow: hidden; min-height: 600px; }
.vita-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  filter: contrast(1.06) brightness(0.92); transition: transform 1.2s var(--ease);
}
.vita-photo:hover img { transform: scale(1.04); }
.vita-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(17,15,13,0.7) 100%);
}
.vita-text { padding: clamp(3rem,8vh,7rem) var(--pad-x); display: flex; flex-direction: column; justify-content: center; }
.vita-text .eyebrow { margin-bottom: 1rem; }
.vita-text .heading { font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin-bottom: 1.8rem; }
.vita-lead {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 2.3vw, 1.75rem); line-height: 1.5; color: var(--gold-soft);
  margin-bottom: 1.8rem;
}
.vita-body { font-size: 0.94rem; color: var(--parchment); line-height: 1.95; margin-bottom: 1.3rem; max-width: 56ch; }
.vita-body:last-of-type { margin-bottom: 0; }
.vita-sign { margin-top: 2.4rem; font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--ivory); }


/* ════════════════════════════════════════════════════════════════════
   7 · CD / SHOP  ·  Cover prominent
   ════════════════════════════════════════════════════════════════════ */
.cd { background: var(--noir); border-top: 1px solid var(--ash); padding: var(--section-y) var(--pad-x); position: relative; overflow: hidden; }
.cd-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.cd-cover { position: relative; }
.cd-cover img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  box-shadow: 0 40px 90px rgba(0,0,0,0.7), 0 0 0 1px var(--ash);
  transition: transform 0.7s var(--ease);
}
.cd-cover:hover img { transform: scale(1.02) rotate(-0.4deg); }
.cd-cover .disc {
  position: absolute; top: 50%; right: -7%; transform: translateY(-50%);
  width: 64%; aspect-ratio: 1/1; border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, #15120f 0 2px, #1d1813 2px 4px),
    radial-gradient(circle at center, #2a2018 0 30%, #15120f 31% 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: -1; opacity: 0.9;
}
.cd-cover .disc::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 16%; aspect-ratio: 1/1; border-radius: 50%; background: var(--noir);
  box-shadow: 0 0 0 6px #100d0a;
}

/* CD-Slideshow / Galerie */
.cd-slideshow {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: #0d0b09; border: 1px solid var(--ash);
  box-shadow: 0 40px 90px rgba(0,0,0,0.7);
}
.cd-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s var(--ease); pointer-events: none; }
.cd-slide.active { opacity: 1; pointer-events: auto; }
.cd-slide img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cd-slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  background: rgba(10,9,8,0.55); border: 1px solid var(--gold-line); color: var(--ivory);
  cursor: pointer; opacity: 0; transition: opacity 0.4s var(--ease), background 0.3s, border-color 0.3s;
  backdrop-filter: blur(4px); z-index: 3;
}
.cd-slide-arrow svg { width: 22px; height: 22px; }
.cd-slide-arrow.prev { left: 0.9rem; }
.cd-slide-arrow.next { right: 0.9rem; }
.cd-slide-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--noir); }
/* Pfeile sichtbar bei Hover/Fokus, sonst unsichtbar */
.cd-slideshow:hover .cd-slide-arrow,
.cd-slideshow:focus-within .cd-slide-arrow { opacity: 1; }
.cd-slide-dots { position: absolute; bottom: 1rem; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: 0.5rem; }
.cd-slide-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none; cursor: pointer; padding: 0;
  background: rgba(241,235,221,0.35); transition: background 0.3s, transform 0.3s;
}
.cd-slide-dots button.active { background: var(--gold); transform: scale(1.25); }
@media (prefers-reduced-motion: reduce) { .cd-slide { transition: none; } }
.cd-text .eyebrow { margin-bottom: 1.1rem; }
.cd-title { font-family: var(--serif); font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 300; color: var(--ivory); line-height: 1.05; margin-bottom: 0.5rem; }
.cd-title em { font-style: italic; color: var(--gold-soft); }
.cd-sub { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--gold); margin-bottom: 1.8rem; }
.cd-desc { font-size: 0.94rem; color: var(--parchment); line-height: 1.9; margin-bottom: 1.4rem; max-width: 52ch; }
.cd-feat { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin: 0 0 2.4rem; }
.cd-feat li { display: flex; align-items: center; gap: 0.9rem; font-size: 0.86rem; color: var(--parchment); }
.cd-feat li::before { content: ''; width: 16px; height: 1px; background: var(--gold); flex-shrink: 0; }
.cd-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.cd-price { font-family: var(--serif); font-size: 1.5rem; color: var(--ivory); }
.cd-price small { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; }

/* CD-Bestellung · aufklappbar */
.cd-order { grid-column: 1 / -1; overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.6s var(--ease), opacity 0.5s var(--ease), margin-top 0.6s var(--ease); }
.cd-order.open { max-height: 1300px; opacity: 1; margin-top: 2.5rem; }
.cd-order-inner { border: 1px solid var(--ash); border-top: 2px solid var(--gold); background: var(--graphite); padding: clamp(1.6rem, 3vw, 2.6rem); }
.cd-order-inner h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 400; color: var(--ivory); margin-bottom: 0.4rem; }
.cd-order-inner .note { font-size: 0.84rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.7rem; max-width: 60ch; }
.cd-order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.cd-order-grid .col-2 { grid-column: 1 / -1; }

/* ════════════════════════════════════════════════════════════════════
   7b · MEDIEN  ·  Klang & Bild — Tabs Video / Presse / Galerie
   ════════════════════════════════════════════════════════════════════ */
.medien { background: var(--coal); border-top: 1px solid var(--ash); padding: var(--section-y) var(--pad-x); }
.medien-inner { max-width: var(--maxw); margin: 0 auto; }
.medien-head { margin-bottom: 2.4rem; }
.medien-head .eyebrow { margin-bottom: 1rem; }
.medien-head .heading { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.medien-tabs { display: flex; gap: 0.3rem; border-bottom: 1px solid var(--ash); margin-bottom: 3rem; flex-wrap: wrap; }
.medien-tab { background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px;
  cursor: pointer; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); padding: 0.9rem 1.5rem; transition: color 0.35s var(--ease), border-color 0.35s var(--ease); }
.medien-tab:hover { color: var(--parchment); }
.medien-tab.active { color: var(--ivory); border-bottom-color: var(--gold); }
.medien-panel { display: none; }
.medien-panel.active { display: block; animation: medienFade 0.6s var(--ease); }
@keyframes medienFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
/* Video */
.video-wrap { max-width: 940px; }
.video-card { position: relative; cursor: pointer; overflow: hidden; border: 1px solid var(--ash); background: #000; aspect-ratio: 16/9; }
.video-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.78) contrast(1.05);
  transition: transform 0.8s var(--ease), filter 0.5s; }
.video-card:hover img { transform: scale(1.04); filter: brightness(0.92); }
.video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video-play .ring { width: 84px; height: 84px; border-radius: 50%; background: rgba(197,163,104,0.94);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 44px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease), background 0.4s; }
.video-card:hover .video-play .ring { transform: scale(1.08); background: var(--gold-soft); }
.video-play svg { width: 30px; height: 30px; fill: var(--noir); margin-left: 4px; }
.video-meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1.8rem;
  background: linear-gradient(to top, rgba(10,9,8,0.92), transparent); }
.video-meta .t { font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.video-meta .h { font-family: var(--serif); font-size: 1.4rem; color: var(--ivory); }
.video-card iframe { width: 100%; height: 100%; border: 0; display: block; }
/* Galerie */
.galerie-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.galerie-grid figure { position: relative; overflow: hidden; aspect-ratio: 3/4; border: 1px solid var(--ash); margin: 0; }
.galerie-grid img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9) contrast(1.04);
  transition: transform 0.8s var(--ease), filter 0.5s; }
.galerie-grid figure:hover img { transform: scale(1.05); filter: brightness(1); }
/* Presse (Leerzustand) */
.presse-empty { border: 1px solid var(--ash); background: var(--graphite); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.presse-empty .q { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.95rem);
  color: var(--parchment); line-height: 1.5; max-width: 34ch; margin: 0 auto 1.4rem; }
.presse-empty .m { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.03em; }


/* ════════════════════════════════════════════════════════════════════
   8 · KONTAKT  ·  Formular + Direktdaten + Social
   ════════════════════════════════════════════════════════════════════ */
.kontakt { background: var(--coal); border-top: 1px solid var(--ash); padding: var(--section-y) var(--pad-x); }
.kontakt-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); }
.kontakt-intro .eyebrow { margin-bottom: 1.1rem; }
.kontakt-intro .heading { font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin-bottom: 1.6rem; }
.kontakt-intro p { font-size: 0.94rem; color: var(--parchment); line-height: 1.9; margin-bottom: 2.6rem; max-width: 42ch; }
.kontakt-details { display: flex; flex-direction: column; gap: 1.5rem; }
.kontakt-row { display: flex; align-items: center; gap: 1.1rem; text-decoration: none; color: var(--parchment); transition: color 0.35s; }
.kontakt-row:hover { color: var(--gold-soft); }
.kontakt-ico { width: 44px; height: 44px; flex-shrink: 0; border: 1px solid var(--ash); display: flex; align-items: center; justify-content: center; color: var(--gold); transition: border-color 0.35s, background 0.35s; }
.kontakt-row:hover .kontakt-ico { border-color: var(--gold); background: rgba(197,163,104,0.08); }
.kontakt-ico svg { width: 18px; height: 18px; }
.kontakt-row .lbl { display: flex; flex-direction: column; }
.kontakt-row .lbl small { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.kontakt-row .lbl b { font-weight: 400; font-size: 0.98rem; letter-spacing: 0.02em; white-space: nowrap; }
.kontakt-row.is-email .lbl b { white-space: normal; overflow-wrap: anywhere; }

.kontakt-social { display: flex; gap: 0.8rem; margin-top: 2.6rem; }
.kontakt-social a {
  width: 46px; height: 46px; border: 1px solid var(--ash); display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: color 0.35s, border-color 0.35s, transform 0.35s;
}
.kontakt-social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.kontakt-social svg { width: 18px; height: 18px; }

/* Formular */
.kontakt-form { display: flex; flex-direction: column; gap: 1.3rem; }
.field { position: relative; }
.field label { display: block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.field input, .field textarea {
  width: 100%; background: var(--graphite); border: 1px solid var(--ash);
  padding: 0.95rem 1.1rem; color: var(--ivory); font-family: var(--sans); font-size: 0.92rem; font-weight: 300;
  outline: none; transition: border-color 0.35s, background 0.35s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus { border-color: var(--gold); background: #1d1915; }
.field input::placeholder, .field textarea::placeholder { color: var(--smoke); }
.field.invalid input, .field.invalid textarea { border-color: #a8584e; }
.field-error { font-size: 0.66rem; color: #d08379; letter-spacing: 0.04em; margin-top: 0.45rem; height: 0; overflow: hidden; opacity: 0; transition: opacity 0.3s, height 0.3s; }
.field.invalid .field-error { height: auto; opacity: 1; margin-top: 0.45rem; }
.form-foot { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; margin-top: 0.4rem; }
.form-note { font-size: 0.85rem; color: var(--gold-soft); opacity: 0; transform: translateY(6px); transition: opacity 0.4s, transform 0.4s; }
.form-note.show { opacity: 1; transform: none; }


/* ════════════════════════════════════════════════════════════════════
   9 · FOOTER
   ════════════════════════════════════════════════════════════════════ */
.footer { background: var(--noir); border-top: 1px solid var(--ash); padding: 3.2rem var(--pad-x); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-logo img { height: 58px; width: auto; opacity: 0.62; }
.footer-meta { text-align: center; }
.footer-meta .name { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--parchment); }
.footer-meta .legal { font-size: 0.66rem; letter-spacing: 0.12em; color: var(--smoke); margin-top: 0.3rem; }
.footer-links { display: flex; gap: 1.6rem; }
.footer-links a { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }


/* ════════════════════════════════════════════════════════════════════
   10 · RESPONSIVE  ·  Mobile-First Anpassungen
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .konzert-grid { grid-template-columns: repeat(2, 1fr); }
  .vita-grid { grid-template-columns: 1fr; }
  .vita-photo { min-height: 460px; }
  .vita-photo::after { background: linear-gradient(0deg, rgba(17,15,13,0.7) 0%, transparent 45%); }
  .cd-inner, .kontakt-inner { grid-template-columns: 1fr; }
  .cd-cover { max-width: 460px; margin: 0 auto; }
  .cd-cover .disc { right: -5%; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    gap: 2.4rem; background: rgba(10,9,8,0.97); backdrop-filter: blur(10px);
    transform: translateX(100%); transition: transform 0.5s var(--ease); z-index: 105;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1rem; letter-spacing: 0.24em; color: var(--parchment); }
  .nav-burger { display: flex; }
  .stream-grid { grid-template-columns: repeat(2, 1fr); }
  .konzert-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .cd-order-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 420px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}


/* ════════════════════════════════════════════════════════════════════
   WORDPRESS-ERGÄNZUNGEN  ·  dynamische Inhalte an das Theme-Design angleichen
   ════════════════════════════════════════════════════════════════════ */
/* Einzelseiten (page-*.php): Abstand unter der fixierten Navigation */
.pt-single > section:first-child { padding-top: calc(var(--section-y) + 64px); }
.konzerte-hint { font-size: 0.95rem; color: var(--muted); font-style: italic; max-width: 60ch; }

/* Vita: Gutenberg-Inhalt im Original-Stil */
.vita-content > *:last-child { margin-bottom: 0; }
.vita-content p { font-size: 0.94rem; color: var(--parchment); line-height: 1.95; margin-bottom: 1.3rem; max-width: 56ch; }
.vita-content em { font-style: italic; color: var(--gold-soft); }
.vita-content h2, .vita-content h3, .vita-content blockquote {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.3rem, 2.3vw, 1.75rem); line-height: 1.5; color: var(--gold-soft);
  border: 0; padding: 0; margin: 0 0 1.3rem; max-width: 50ch;
}
.vita-content .vita-lead { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem,2.3vw,1.75rem); line-height: 1.5; color: var(--gold-soft); margin-bottom: 1.8rem; }
.vita-content .vita-sign { margin-top: 2.4rem; font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--ivory); }

/* CD-Beschreibung: Gutenberg-Inhalt im Original-Stil */
.cd-desc-content p { font-size: 0.94rem; color: var(--parchment); line-height: 1.9; margin-bottom: 1.4rem; max-width: 52ch; }
.cd-desc-content em { font-style: italic; color: var(--gold-soft); }
.cd-desc-content > *:last-child { margin-bottom: 1.4rem; }

/* Contact Form 7 an das Theme-Design angleichen */
.kontakt-form .wpcf7-form-control-wrap { display: block; }
.kontakt-form label { display: block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.kontakt-form input[type=text], .kontakt-form input[type=email], .kontakt-form input[type=tel], .kontakt-form textarea {
  width: 100%; background: var(--graphite); border: 1px solid var(--ash); padding: 0.95rem 1.1rem;
  color: var(--ivory); font-family: var(--sans); font-size: 0.92rem; font-weight: 300; outline: none;
  margin-bottom: 1rem; transition: border-color 0.35s, background 0.35s;
}
.kontakt-form input:focus, .kontakt-form textarea:focus { border-color: var(--gold); background: #1d1915; }
.kontakt-form textarea { resize: vertical; min-height: 140px; }
.kontakt-form .wpcf7-submit {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1.05rem 2.3rem; background: var(--gold); color: var(--noir); border: 1px solid var(--gold);
  cursor: pointer; transition: background 0.4s var(--ease);
}
.kontakt-form .wpcf7-submit:hover { background: var(--gold-soft); }
.kontakt-form .wpcf7-response-output { border-color: var(--gold-line) !important; color: var(--parchment); margin: 0.5rem 0 0; font-size: 0.82rem; }

/* WordPress-Adminbar nicht über fixierte Nav legen */
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }
