/* ============================================================
   SAXOFAXO — Felix Tönnies · Saxophonist
   Design: "Das Programmheft" — Porzellan, Espresso, Messing.
   Redaktionelle Setzung wie ein Konzertprogramm; dunkle
   Bühnenmomente nur als Klammer (Hero & Schluss-CTA).
   ============================================================ */

/* ---------- Fonts (selbst gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-full-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-full-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-sans-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --porcelain: #f5f3ed;   /* Seite */
  --vellum: #ebe7db;      /* erhöhte helle Fläche / Hover */
  --ink: #1c1810;         /* Text auf hell */
  --graphite: #5e584a;    /* Sekundärtext auf hell */
  --stage: #14110a;       /* dunkle Bühne: Header, Hero, CTA, Footer */
  --stage-2: #1d1910;     /* erhöhte dunkle Fläche */
  --paper: #f1ecdf;       /* helle Schrift auf dunkel */
  --fog: #a49a85;         /* Sekundärtext auf dunkel */
  --brass: #93702a;       /* Akzent auf hell */
  --champagne: #d8bd83;   /* Akzent auf dunkel */
  --line: rgba(28, 24, 16, 0.16);
  --line-dark: rgba(241, 236, 223, 0.14);
  --error: #a4442e;
  --ok: #55744f;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, sans-serif;

  --wrap: 1200px;
  --pad: clamp(1.25rem, 4.5vw, 3rem);

  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step-1: clamp(1.15rem, 1.05rem + 0.5vw, 1.45rem);
  --step-2: clamp(1.5rem, 1.3rem + 1vw, 2.05rem);
  --step-3: clamp(2rem, 1.55rem + 2.2vw, 3.2rem);
  --step-4: clamp(2.7rem, 1.7rem + 4.6vw, 5.4rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--stage); }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.75;
  color: var(--graphite);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p a, .prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--brass); }
p a:hover, .prose a:hover { color: var(--brass); }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
::selection { background: var(--champagne); color: var(--stage); }

h1, h2, h3, h4, blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 90;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 0.6em;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--brass); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4.5rem, 11vh, 8.5rem); }
.section.alt { background: var(--vellum); }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0;
}

/* Kapitelmarken: kleine Kapitälchen-Zeile mit Messinglinie davor */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 560;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--brass);
  flex: none;
}
.center .eyebrow, .eyebrow.center { justify-content: center; }
.center .eyebrow::after, .eyebrow.center::after {
  content: ""; width: 2.2rem; height: 1px; background: var(--brass); flex: none;
}

.section-head { max-width: 40rem; margin-bottom: clamp(2.5rem, 6vh, 4.5rem); }
.section-head.center { margin-inline: auto; }
.section-head p:last-child:not(.eyebrow) { margin-bottom: 0; }
.lede { font-size: var(--step-1); line-height: 1.55; color: var(--graphite); }

/* ---------- Header (schmale dunkle Leiste, seitenweit) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--stage);
  border-bottom: 1px solid var(--line-dark);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.75rem;
}
.brand { display: flex; align-items: center; }
.brand img { height: 3.1rem; width: auto; }
@media (max-width: 900px) { .brand img { height: 2.6rem; } }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.74rem;
  font-weight: 540;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
  transition: color 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--champagne); }
.nav-cta .btn { padding: 0.72em 1.5em; }
.nav-cta .btn:hover { color: var(--stage); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}
.lang-switch button {
  background: none;
  border: none;
  padding: 0.3rem 0.4rem;
  font: inherit;
  font-weight: 540;
  color: var(--fog);
  cursor: pointer;
  transition: color 0.2s var(--ease);
}
.lang-switch button + button::before { content: ""; }
.lang-switch button[aria-pressed="true"] { color: var(--champagne); text-decoration: underline; text-underline-offset: 4px; }
.lang-switch button:hover { color: var(--paper); }

.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    gap: 5px;
    background: none;
    border: 0;
    padding: 0.6rem 0.2rem;
    cursor: pointer;
    z-index: 70;
  }
  .nav-toggle span {
    width: 26px; height: 1.5px;
    background: var(--paper);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--stage);
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease);
    z-index: 65;
  }
  .nav-links a { font-size: 0.95rem; }
  body.nav-open .nav-links { transform: translateY(0); }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ---------- Buttons: rechteckig, Kapitälchen, ruhig ---------- */
.btn {
  display: inline-block;
  padding: 1em 2em;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 580;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
/* auf hellem Grund */
.btn-primary { background: var(--ink); color: var(--porcelain); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--brass); color: var(--porcelain); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--brass); color: var(--brass); }
/* auf dunklem Grund */
.on-stage .btn-primary, .site-header .btn-primary, .hero .btn-primary, .site-footer .btn-primary, .sticky-cta .btn-primary {
  background: var(--champagne); color: var(--stage);
}
.on-stage .btn-primary:hover, .site-header .btn-primary:hover, .hero .btn-primary:hover, .site-footer .btn-primary:hover {
  background: var(--paper); color: var(--stage);
}
.on-stage .btn-ghost, .hero .btn-ghost { border-color: var(--line-dark); color: var(--paper); }
.on-stage .btn-ghost:hover, .hero .btn-ghost:hover { border-color: var(--champagne); color: var(--champagne); }

/* Textlink mit Pfeil */
.arrow-link {
  font-size: 0.74rem;
  font-weight: 580;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 0.35em;
  transition: color 0.25s var(--ease);
}
.arrow-link::after { content: "\2192"; margin-left: 0.6em; transition: margin 0.25s var(--ease); }
.arrow-link:hover { color: var(--brass); }
.arrow-link:hover::after { margin-left: 0.9em; }

/* ---------- Hero: die Bühne ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--stage) url("../img/hero-bg.webp") center / cover no-repeat;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: min(88vh, 60rem);
}
.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: clamp(4rem, 10vh, 7rem) clamp(3rem, 8vh, 5rem);
  width: 100%;
}
.hero h1 {
  color: var(--paper);
  max-width: 13ch;
  font-weight: 360;
}
.hero h1 em { color: var(--champagne); }
.hero .eyebrow { color: var(--champagne); }
.hero .eyebrow::before { background: var(--champagne); }
.hero .lede { color: var(--fog); max-width: 34rem; margin-block: 1.6rem 2.6rem; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem; }
.hero .arrow-link { color: var(--paper); border-color: var(--champagne); }
.hero .arrow-link:hover { color: var(--champagne); }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  filter: saturate(0.7) contrast(1.02);
}
.hero-video.is-playing { opacity: 1; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(20, 17, 10, 0.94) 0%, rgba(20, 17, 10, 0.75) 48%, rgba(20, 17, 10, 0.45) 100%),
    linear-gradient(to top, rgba(20, 17, 10, 0.96) 0%, transparent 45%);
}
.hero > *:not(.hero-video) { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }

/* Signature: Referenz-Laufband am Fuß des Heros */
.marquee {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.4rem;
  overflow: hidden;
}
.marquee-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fog);
  text-align: center;
  margin: 0 0 0.9rem;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
  white-space: nowrap;
}
.marquee-track li {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--champagne);
  padding-inline: 1.6rem;
}
.marquee-track li::after {
  content: "\2726"; /* ✦ */
  color: var(--fog);
  font-size: 0.55rem;
  vertical-align: middle;
  margin-left: 3.2rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee-track ul { flex-wrap: wrap; justify-content: center; row-gap: 0.5rem; }
  .marquee-track ul[aria-hidden="true"] { display: none; }
}

/* ---------- Anlässe: redaktioneller Index statt Karten ---------- */
.index-list { border-top: 1px solid var(--line); margin: 0; padding: 0; list-style: none; }
.index-row {
  display: grid;
  grid-template-columns: minmax(11rem, 1.1fr) 2fr auto;
  align-items: baseline;
  gap: 1.5rem 3rem;
  padding: clamp(1.6rem, 3.5vh, 2.4rem) 0.75rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
a.index-row:hover, a.index-row:focus-visible { background: var(--vellum); }
.index-row h3 { margin: 0; font-size: var(--step-2); font-weight: 380; }
.index-row p { margin: 0; max-width: 34rem; }
.index-row .go {
  font-size: 1.3rem;
  color: var(--brass);
  transition: transform 0.3s var(--ease);
  justify-self: end;
}
a.index-row:hover .go { transform: translateX(0.5rem); }
@media (max-width: 720px) {
  .index-row { grid-template-columns: 1fr auto; }
  .index-row p { grid-column: 1 / -1; }
}

/* ---------- Asymmetrischer Doppelbogen (Formate, u. a.) ---------- */
.spread {
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) 2.2fr;
  gap: 2.5rem clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.spread-side { position: sticky; top: 6.5rem; }
.spread-side .eyebrow { margin-bottom: 1.2rem; }
.spread-side h2 { font-size: var(--step-3); }
.spread-body > article {
  padding-block: 2.2rem;
}
.spread-body > article + article { border-top: 1px solid var(--line); }
.spread-body h3 { font-weight: 380; margin-bottom: 0.5rem; }
.spread-body .tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 560;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.9rem;
}
.genres-line {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--graphite);
  letter-spacing: 0.03em;
}
@media (max-width: 860px) {
  .spread { grid-template-columns: 1fr; }
  .spread-side { position: static; }
}

/* Fallback: alte .cards-Struktur (Unterseiten) redaktionell setzen */
.cards { display: grid; gap: 0; border-top: 1px solid var(--line); }
.card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: clamp(1.8rem, 4vh, 2.6rem) 0.25rem;
  display: grid;
  grid-template-columns: minmax(10rem, 0.9fr) 2fr;
  gap: 0.75rem 3rem;
  align-items: baseline;
}
.card h3 { margin: 0; font-weight: 380; }
.card p { margin: 0; max-width: 36rem; }
.card .tag {
  grid-column: 2;
  order: -1;
  font-size: 0.68rem;
  font-weight: 560;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}
@media (max-width: 720px) {
  .card { grid-template-columns: 1fr; }
  .card .tag { grid-column: 1; }
}
.pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem;
  list-style: none; margin: 2.2rem 0 0; padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--graphite);
}
.pills li { padding: 0; }
.pills li:not(:last-child)::after { content: "\00b7"; margin-left: 1.6rem; color: var(--brass); }

/* ---------- Media / Videos ---------- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--stage);
  overflow: hidden;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.4rem;
  padding: 1.6rem;
  width: 100%;
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(ellipse 420px 260px at 78% 8%, rgba(216, 189, 131, 0.14), transparent 65%),
    linear-gradient(to top, rgba(20, 17, 10, 0.92), rgba(20, 17, 10, 0.55));
  color: var(--paper);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.video-cover strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}
.video-cover strong em { font-style: italic; color: var(--champagne); }
.video-cover small { color: var(--fog); font-size: 0.72rem; letter-spacing: 0.04em; }
.video-cover .play {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  width: 3rem; height: 3rem;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.video-cover .play svg { width: 1.05rem; height: 1.05rem; fill: var(--champagne); transition: fill 0.3s var(--ease); }
.video-cover:hover .play, .video-cover:focus-visible .play { background: var(--champagne); transform: scale(1.05); }
.video-cover:hover .play svg { fill: var(--stage); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 1.25rem;
}
.photo-ph {
  aspect-ratio: 4 / 5;
  border: 1px dashed var(--line);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--graphite);
  background: var(--vellum);
}

/* ---------- Zitat & Faktenzeile ---------- */
.quote {
  margin: 0;
  max-width: 54rem;
}
.quote .quote-mark, .quote .stars { display: none; }
.quote blockquote {
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2.6rem);
  font-style: italic;
  font-weight: 360;
  line-height: 1.3;
  margin: 0 0 1.6rem;
  text-indent: -0.45em;
}
.quote figcaption {
  font-size: 0.72rem;
  font-weight: 560;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: 2rem 3rem;
  border-top: 1px solid var(--line);
  margin-top: clamp(3rem, 7vh, 5rem);
  padding-top: 2.2rem;
}
.facts strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 380;
  font-size: var(--step-2);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.3rem;
}
.facts span { font-size: 0.85rem; }
.stars { color: var(--brass); letter-spacing: 0.14em; }

.refs {
  display: flex; flex-wrap: wrap; gap: 0.8rem 2.4rem;
  list-style: none; margin: 0; padding: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

/* ---------- Dunkle Abschluss-Sektion (CTA) ---------- */
.on-stage {
  background: var(--stage);
  color: var(--fog);
}
.on-stage h2, .on-stage h3 { color: var(--paper); }
.on-stage h2 em { color: var(--champagne); }
.on-stage .lede { color: var(--fog); }
.on-stage .eyebrow { color: var(--champagne); }
.on-stage .eyebrow::before, .on-stage .eyebrow.center::after, .on-stage.center .eyebrow::after { background: var(--champagne); }
.cta-contactline {
  margin-top: 2.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--fog);
}
.cta-contactline a { color: var(--paper); border-bottom: 1px solid var(--champagne); padding-bottom: 2px; }
.cta-contactline a:hover { color: var(--champagne); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--stage);
  color: var(--fog);
  border-top: 1px solid var(--line-dark);
  padding-block: clamp(3.5rem, 8vh, 5.5rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem 4rem;
  align-items: start;
}
.footer-brand { margin-bottom: 1.4rem; }
.footer-brand img { width: min(15rem, 70%); height: auto; }
.site-footer p { margin: 0.35rem 0; font-size: 0.9rem; }
.site-footer a:hover { color: var(--champagne); }
.site-footer nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.site-footer nav a {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
}
.copyright {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.72rem !important;
  letter-spacing: 0.14em;
  color: var(--fog);
}
.social-links { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem; height: 2.4rem;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--fog);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.social-links a:hover, .social-links a:focus-visible { color: var(--champagne); border-color: var(--champagne); }
.social-links svg { width: 1.1rem; height: 1.1rem; }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Prosa (Impressum, Datenschutz, Über mich) ---------- */
.prose { max-width: 44rem; }
.prose h1 { font-size: var(--step-3) !important; }
.prose h2 {
  font-size: var(--step-1);
  margin-top: 2.6em;
  padding-top: 1.2em;
  border-top: 1px solid var(--line);
}
.prose address { font-style: normal; }
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }

.setlist {
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  background: var(--porcelain);
}
.setlist h3 {
  font-size: var(--step-1);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.8rem;
  margin-bottom: 1.2rem;
}
.setlist ul { list-style: none; margin: 0; padding: 0; }
.setlist li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.55rem 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--line);
}
.setlist li:last-child { border-bottom: 0; }
.setlist li b { font-weight: 560; color: var(--ink); }
.setlist li span { font-style: italic; font-family: var(--font-display); color: var(--graphite); }

/* ---------- Funnel / Formular ---------- */
.funnel { max-width: 42rem; margin-inline: auto; }
.funnel-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vh, 3rem);
}
.funnel-progress .key {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--graphite);
  opacity: 0.45;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.funnel-progress .key::before { content: "0"; margin-right: -0.6rem; }
.funnel-progress .key .lbl {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 560;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.funnel-progress .key.active { opacity: 1; color: var(--brass); }
.funnel-progress .rod { flex: 1; height: 1px; background: var(--line); }

.funnel fieldset { border: 0; margin: 0; padding: 0; }
.funnel fieldset[data-step] { display: none; }
.funnel fieldset[data-step].active { display: block; animation: fadeIn 0.35s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .funnel fieldset[data-step].active { animation: none; } }

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: 0.9rem;
}
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; z-index: 1; }
.choice label {
  display: block;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  padding: 1.15rem 1.3rem;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.choice label strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 420;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.25;
}
.choice label small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  color: var(--graphite);
}
.choice input:hover ~ label, .choice label:hover { border-color: var(--brass); }
.choice input:checked ~ label {
  border-color: var(--brass);
  background: var(--vellum);
  box-shadow: inset 3px 0 0 var(--brass);
}
.choice input:checked ~ label strong::after {
  content: "\2713";
  float: right;
  color: var(--brass);
  font-family: var(--font-body);
  font-size: 1rem;
}
.choice input:focus-visible ~ label { outline: 2px solid var(--brass); outline-offset: 3px; }

.field { margin-bottom: 1.4rem; }
.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 560;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.hint { font-size: 0.82rem; color: var(--graphite); }
.err, .step-err {
  display: none;
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.err.show, .step-err.show { display: block; }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--error) !important; }

.consent { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.85rem; }
.consent input { width: 1.1rem; height: 1.1rem; margin-top: 0.25rem; accent-color: var(--brass); }

.summary-box {
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  background: var(--vellum);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.6rem;
  font-size: 0.92rem;
}
.summary-box b { color: var(--ink); }

.funnel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.2rem;
}
.funnel-nav .btn[data-back] { border-color: transparent; color: var(--graphite); padding-inline: 0.5em; }
.funnel-nav .btn[data-back]:hover { color: var(--ink); }

.contact-direct { margin-top: 3rem; text-align: center; font-size: 0.88rem; }
.thanks { max-width: 38rem; margin-inline: auto; text-align: center; }

/* ---------- Sticky-CTA (mobil) ---------- */
.sticky-cta { display: none; }
@media (max-width: 720px) {
  .sticky-cta {
    display: block;
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 55;
    padding: 0.7rem var(--pad) calc(0.7rem + env(safe-area-inset-bottom));
    background: var(--stage);
    border-top: 1px solid var(--line-dark);
    text-align: center;
  }
  .sticky-cta .btn { display: block; width: 100%; }
  body { padding-bottom: 4.5rem; }
  body.no-sticky .sticky-cta { display: none; }
  body.no-sticky { padding-bottom: 0; }
}

/* ---------- Reduced Motion global ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .marquee-track { animation: none !important; }
}


/* ---------- Live-Eindrücke: vertikale Reels ---------- */
.reel-feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 46rem;
  margin-bottom: clamp(3rem, 7vh, 5rem);
}
.reel { margin: 0; }
.reel video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--stage);
  border: 1px solid var(--line);
}
.reel figcaption {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
}
.media-sub {
  font-size: var(--step-2);
  margin: 0 0 1.6rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}

/* ---------- Fotos ---------- */
.photo { margin: 0; overflow: hidden; }
.photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.94);
  transition: transform 0.6s var(--ease);
}
.photo:hover img { transform: scale(1.025); }
.about-photo img { aspect-ratio: 3 / 4; }

.wide-video { margin: 0 0 clamp(3rem, 7vh, 5rem); max-width: 56rem; }
.wide-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--stage);
  border: 1px solid var(--line);
}
.wide-video figcaption {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite);
}

/* ---------- Datenschutz-Hinweisbanner ---------- */
.consent-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 80;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 1.1rem var(--pad) calc(1.1rem + env(safe-area-inset-bottom));
  background: var(--stage);
  color: var(--fog);
  border-top: 1px solid var(--line-dark);
  font-size: 0.85rem;
  line-height: 1.55;
}
.consent-banner p { margin: 0; max-width: 52rem; }
.consent-banner a { color: var(--paper); border-bottom: 1px solid var(--champagne); padding-bottom: 1px; }
.consent-banner a:hover { color: var(--champagne); }
.consent-banner .btn { flex: none; padding: 0.8em 1.6em; }
@media (max-width: 720px) {
  .consent-banner { z-index: 80; }
  .consent-banner .btn { width: 100%; }
}

.field label .opt {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--graphite);
}
