/* ============================================================
   Antonio Cosenza — antoniocosenza.eu
   Konzept: „Klang · Bild · Wort" — Musik, Aquarell, Poesie
   ============================================================ */

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

:root {
  --paper:      #FAF6ED;
  --paper-2:    #F2EADA;
  --paper-3:    #EBE0C9;
  --ink:        #2A241B;
  --ink-soft:   #6A5F4D;
  --line:       #DDD2BC;
  --terra:      #B0532B;
  --terra-deep: #8C3E1F;
  --gold:       #B8892E;
  --forest:     #2E5943;
  --forest-deep:#1F3E2F;
  --forest-ink: #EFF3E9;
  --sky:        #C7DDEA;
  --wine:       #7C2E3B;

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Source Sans 3", -apple-system, "Helvetica Neue", Arial, sans-serif;

  --w-content: 1120px;
  --w-narrow: 760px;

  --shadow-soft: 0 2px 24px rgba(42, 36, 27, .08);
  --shadow-lift: 0 14px 40px rgba(42, 36, 27, .16);
  --radius: 10px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  font-size: 1.075rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper grain over everything, very subtle */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.028'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Language switching ----------
   <html data-lang="de"> — elements tagged lang="de|en|es" show only
   when they match. Untagged content is language-neutral. */
html[data-lang="de"] body [lang="en"], html[data-lang="de"] body [lang="es"],
html[data-lang="en"] body [lang="de"], html[data-lang="en"] body [lang="es"],
html[data-lang="es"] body [lang="de"], html[data-lang="es"] body [lang="en"] { display: none !important; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
}

.overline {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra-deep); /* AA contrast on paper backgrounds */
}

.section-head { margin-bottom: 2.6rem; }
.section-head h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.1rem);
  font-weight: 600;
  margin-top: .35rem;
}
.section-head .lede {
  max-width: 46em;
  margin-top: .9rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

a { color: var(--terra-deep); text-decoration: none; }
a:hover { color: var(--terra); }
:focus-visible { outline: 3px solid var(--terra-deep); outline-offset: 3px; border-radius: 2px; }
.section-selva :focus-visible { outline-color: #E8CD8F; }

/* ---------- Layout ---------- */
.wrap   { max-width: var(--w-content); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.2rem); }
.narrow { max-width: var(--w-narrow); }
section { position: relative; padding: clamp(5.25rem, 12vw, 9.5rem) 0; }

/* Watercolor wash divider between sections */
.wash {
  display: block; width: 100%; height: 70px;
  margin-bottom: -1px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 1.1rem 0;
}
.site-header.scrolled {
  background: rgba(250, 246, 237, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: .55rem 0;
}
.nav-bar { display: flex; align-items: center; gap: 1.4rem; }

.brand {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--font-display);
  font-size: 1.32rem; font-weight: 700; letter-spacing: .02em;
  color: var(--ink);
  white-space: nowrap;
}
.brand svg { width: 40px; height: 40px; flex: none; }

.nav-links {
  display: flex; gap: 1.45rem; align-items: center;
  margin-left: auto;
  list-style: none;
}
.nav-links a {
  font-size: .95rem; font-weight: 600; color: var(--ink);
  letter-spacing: .02em;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .25s, color .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--terra-deep); border-bottom-color: var(--gold); }

.lang-switch {
  display: flex; gap: .1rem; margin-left: 1.2rem;
  border: 1px solid var(--line); border-radius: 999px;
  padding: .18rem; background: rgba(255,255,255,.5);
}
.lang-switch button {
  font-family: var(--font-body); font-size: .8rem; font-weight: 700;
  letter-spacing: .04em;
  border: 0; background: transparent; color: var(--ink-soft);
  padding: .28rem .62rem; border-radius: 999px; cursor: pointer;
  transition: background .2s, color .2s;
}
.lang-switch button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.lang-switch button:hover:not([aria-pressed="true"]) { color: var(--ink); }

.nav-toggle { display: none; }
.nav-close { display: none; }

/* Closed <dialog> must stay hidden in browsers without native support */
dialog:not([open]) { display: none; }

@media (max-width: 940px) {
  /* The scrolled header's backdrop-filter would make it the containing block for
     the fixed overlay menu, trapping the menu inside the header box (text-over-text).
     Disable the blur on mobile so the menu reliably covers the full viewport. */
  .site-header.scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--paper); }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; margin-left: auto;
    background: transparent; border: 1px solid var(--line); border-radius: 8px;
    cursor: pointer; color: var(--ink);
  }
  .nav-links {
    position: fixed; inset: 0; z-index: 90;
    flex-direction: column; justify-content: center; gap: 1.6rem;
    background: var(--paper);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateY(-102%);
    visibility: hidden; /* keep closed menu out of tab order / AT */
    transition: transform .45s var(--ease), visibility 0s linear .45s;
    margin: 0;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; transition-delay: 0s; }
  .nav-links a { font-size: 1.35rem; font-family: var(--font-display); font-weight: 600; }
  .nav-close {
    display: block;
    position: absolute; top: 1.1rem; right: 1.3rem;
    width: 44px; height: 44px;
    background: transparent; border: 1px solid var(--line); border-radius: 8px;
    font-size: 1.4rem; cursor: pointer; color: var(--ink);
  }
  .nav-close-item { list-style: none; }
  .lang-switch { margin-left: 0; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(6.5rem, 12vh, 9rem) 0 clamp(3rem, 7vh, 5rem);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy .overline { margin-bottom: 1.1rem; display: block; }
.hero-copy h1 {
  font-size: clamp(3rem, 7.2vw, 5.4rem);
  font-weight: 700; line-height: 1.02;
  letter-spacing: -.01em;
}
.hero-roles {
  margin-top: 1.05rem;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  color: var(--terra-deep);
}
.hero-intro { margin-top: 1.4rem; max-width: 34em; color: var(--ink-soft); font-size: 1.12rem; }
.hero-ctas { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: .98rem; letter-spacing: .02em;
  padding: .82rem 1.5rem; border-radius: 999px;
  border: 2px solid var(--ink);
  color: var(--ink); background: transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); color: var(--ink); }
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--terra-deep); border-color: var(--terra-deep); color: var(--paper); }
.btn-terra { border-color: var(--terra); color: var(--terra-deep); }
.btn-terra:hover { background: var(--terra); color: #fff; }
.btn svg { width: 1em; height: 1em; }

.hero-figure { position: relative; }
.hero-figure .blob {
  position: absolute; inset: -12% -10% -8% -14%;
  z-index: 0; pointer-events: none;
}
.hero-figure img {
  position: relative; z-index: 1;
  width: 100%; height: auto; display: block;
  border-radius: 14px;
  box-shadow: var(--shadow-lift);
}
.hero-figure figcaption {
  position: relative; z-index: 1;
  margin-top: .7rem; text-align: right;
  font-size: .82rem; color: var(--ink-soft); letter-spacing: .06em;
}

.scroll-hint {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  color: var(--ink-soft); opacity: .7;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

@media (max-width: 860px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 430px; margin: 0 auto; }
  .scroll-hint { display: none; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Music / audio player ---------- */
.section-musik { background: var(--paper-2); }

.tracks { display: grid; gap: 1rem; }
.track {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem; align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem 1.3rem;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
}
.track:hover { box-shadow: var(--shadow-soft); }
.track.playing { border-color: var(--terra); box-shadow: var(--shadow-soft); }

.play-btn {
  width: 54px; height: 54px; flex: none;
  border-radius: 50%; border: 2px solid var(--ink);
  background: transparent; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}
.play-btn:hover { transform: scale(1.06); }
.track.playing .play-btn { background: var(--terra); border-color: var(--terra); color: #fff; }
.play-btn svg { width: 20px; height: 20px; margin-left: 2px; }
.track.playing .play-btn svg { margin-left: 0; }

.track-info { min-width: 0; }
.track-title {
  font-family: var(--font-display); font-size: 1.38rem; font-weight: 600;
  line-height: 1.2;
}
.track-meta { font-size: .92rem; color: var(--ink-soft); margin-top: .15rem; }
.track-note { font-size: .92rem; color: var(--ink-soft); margin-top: .3rem; font-style: italic; }
.track-album {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  color: var(--forest);
  background: var(--forest-soft, #DFE9DF);
  border-radius: 999px; padding: .12rem .6rem;
  margin-top: .45rem;
}
.track-time { font-variant-numeric: tabular-nums; font-size: .95rem; color: var(--ink-soft); }

.track-progress {
  grid-column: 1 / -1;
  height: 6px; border-radius: 3px;
  background: var(--paper-3);
  cursor: pointer;
  display: none;
  position: relative;
}
.track.playing .track-progress, .track.paused .track-progress { display: block; }
.track-progress .bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--terra));
}

.musik-hinweis { margin-top: 1.4rem; font-size: .95rem; color: var(--ink-soft); }

/* ---------- Concerts ---------- */
.concert-list { display: grid; gap: 1.1rem; }
.concert {
  display: grid; grid-template-columns: 110px 1fr auto;
  gap: 1.4rem; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  transition: box-shadow .3s var(--ease);
}
.concert:hover { box-shadow: var(--shadow-soft); }
.concert-date {
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 1.2rem;
}
.concert-date .day {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
  line-height: 1; color: var(--terra-deep);
}
.concert-date .month { font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.concert-date .year { font-size: .8rem; color: var(--ink-soft); }
.concert-body h3 { font-size: 1.42rem; font-weight: 600; }
.concert-body .venue { margin-top: .3rem; font-weight: 600; }
.concert-body .details { margin-top: .25rem; font-size: .95rem; color: var(--ink-soft); }
.concert-tags { margin-top: .55rem; display: flex; flex-wrap: wrap; gap: .45rem; }
.tag {
  font-size: .76rem; font-weight: 700; letter-spacing: .05em;
  border: 1px solid var(--line); border-radius: 999px;
  padding: .16rem .6rem; color: var(--ink-soft); background: var(--paper);
}
.tag-frei { border-color: var(--forest); color: var(--forest); }
.concert-poster-btn {
  align-self: center;
  font-size: .9rem; font-weight: 700;
  color: var(--terra-deep);
  background: transparent; border: 1.5px solid var(--terra);
  border-radius: 999px; padding: .5rem 1.05rem;
  cursor: pointer; white-space: nowrap;
  transition: background .25s, color .25s;
}
.concert-poster-btn:hover { background: var(--terra); color: #fff; }

@media (max-width: 720px) {
  .concert { grid-template-columns: 84px 1fr; align-items: start; }
  .concert-date { padding-right: .9rem; padding-top: .2rem; }
  .concert-date .day { font-size: 2rem; }
  .concert-poster-btn { grid-column: 2; justify-self: start; margin-top: .3rem; }
}

/* Poster overlay */
.poster-dialog {
  border: 0; padding: 0; background: transparent;
  max-width: min(92vw, 560px); max-height: 92vh;
  margin: auto;
}
.poster-dialog::backdrop { background: rgba(30, 24, 15, .82); }
.poster-dialog img { width: 100%; height: auto; max-height: 86vh; object-fit: contain; display: block; border-radius: 8px; }
.poster-dialog .close-dialog {
  position: absolute; top: -14px; right: -14px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 0; background: var(--paper); color: var(--ink);
  font-size: 1.3rem; cursor: pointer; box-shadow: var(--shadow-soft);
}

/* ---------- Bio ---------- */
.bio-grid {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.bio-figure { position: sticky; top: 96px; }
.bio-figure img {
  width: 100%; height: auto; display: block;
  border-radius: 14px; box-shadow: var(--shadow-lift);
}
.bio-figure .quote-card {
  margin: -2.6rem 1.1rem 0;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.12rem; line-height: 1.4;
}
.quote-card .src { display: block; margin-top: .5rem; font-family: var(--font-body); font-style: normal; font-size: .8rem; letter-spacing: .05em; color: var(--ink-soft); }
.bio-text p + p { margin-top: 1.05rem; }
.bio-text .lead-p {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; line-height: 1.4;
}
@media (max-width: 860px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-figure { position: static; max-width: 420px; }
}

/* ---------- Discography ---------- */
.section-alben { background: var(--paper-2); }
.alben-essay {
  max-width: var(--w-narrow);
  margin-bottom: 3rem;
}
.alben-essay p + p { margin-top: 1rem; }
.alben-essay .essay-open {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; line-height: 1.45;
}
.alben-essay .von { margin-top: .9rem; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }

.shelf + .shelf { margin-top: 3.2rem; }
.shelf h3 {
  font-size: 1.15rem; font-family: var(--font-body); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.6rem;
}
.shelf h3::after { content: ""; height: 1px; background: var(--line); flex: 1; }

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 1.6rem;
}
.album { text-align: left; }
.album .sleeve {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(42,36,27,.18);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  aspect-ratio: 1;
  background: var(--paper-3);
}
.album:hover .sleeve { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow-lift); }
.album .sleeve img { width: 100%; height: 100%; object-fit: cover; display: block; }
.album h4 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-top: .85rem; line-height: 1.2; }
.album .meta { font-size: .88rem; color: var(--ink-soft); margin-top: .2rem; }

/* ---------- Selva ---------- */
.section-selva {
  background: var(--forest-deep);
  color: var(--forest-ink);
}
.section-selva .overline { color: #E8CD8F; } /* AA contrast on forest-deep */
.section-selva h2, .section-selva h3 { color: #fff; }
.section-selva .lede { color: rgba(239,243,233,.85); }
.selva-photo {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lift);
  margin: 2.4rem 0;
}
.selva-photo img { width: 100%; display: block; }
.selva-text { max-width: 52em; }
.selva-text p + p { margin-top: 1rem; }
.lineup {
  margin-top: 2.2rem;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: .9rem;
  list-style: none;
}
.lineup li {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: .8rem 1rem;
}
.lineup .name { font-weight: 700; display: block; }
.lineup .inst { font-size: .88rem; color: rgba(239,243,233,.75); }
.section-selva .btn { border-color: rgba(255,255,255,.8); color: #fff; }
.section-selva .btn:hover { background: rgba(255,255,255,.12); }

/* ---------- Lessons ---------- */
.unterricht-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.check-list { list-style: none; margin-top: 1.4rem; display: grid; gap: .65rem; }
.check-list li { display: flex; gap: .7rem; align-items: baseline; }
.check-list li::before {
  content: "";
  flex: none; width: 9px; height: 9px; border-radius: 50%;
  background: var(--terra);
  transform: translateY(-1px);
}
.unterricht-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.unterricht-figure img {
  width: 100%; border-radius: 14px; display: block;
  box-shadow: var(--shadow-lift);
}
.probestunde-note { margin-top: .9rem; font-size: .92rem; color: var(--ink-soft); }
@media (max-width: 860px) { .unterricht-grid { grid-template-columns: 1fr; } }

/* ---------- Press ---------- */
.section-presse { background: var(--paper-2); }
.press-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
}
.press-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.7rem 1.4rem;
  position: relative;
  display: flex; flex-direction: column;
}
.press-card::before {
  content: "„";
  font-family: var(--font-display);
  font-size: 4.4rem; line-height: 0;
  color: var(--gold);
  position: absolute; top: 2.1rem; left: 1.4rem;
  opacity: .55;
}
.press-card blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.18rem; line-height: 1.45;
  padding-left: 1.6rem;
  flex: 1;
}
.press-card cite {
  display: block; margin-top: 1.1rem; padding-left: 1.6rem;
  font-style: normal; font-size: .84rem; font-weight: 700;
  letter-spacing: .06em; color: var(--ink-soft);
}

/* ---------- Contact / Footer ---------- */
.section-kontakt { text-align: center; }
.kontakt-mail {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 2.3rem);
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid var(--gold);
  margin-top: 1.2rem;
  transition: color .25s, border-color .25s;
}
.kontakt-mail:hover { color: var(--terra-deep); border-color: var(--terra); }
.kontakt-sub { margin-top: 1.2rem; color: var(--ink-soft); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem 0 2.6rem;
  font-size: .92rem; color: var(--ink-soft);
}
.footer-row {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  align-items: center; justify-content: space-between;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.3rem; list-style: none; }
.footer-nav a { color: var(--ink-soft); font-weight: 600; }
.footer-nav a:hover { color: var(--terra-deep); }

/* ---------- Subpage hero ---------- */
.subpage-hero {
  padding: clamp(7rem, 16vh, 10rem) 0 clamp(2.5rem, 6vh, 4rem);
}
.subpage-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; }
.subpage-hero .overline { display: block; margin-bottom: 1rem; }
.subpage-hero .lede { max-width: 46em; margin-top: 1.1rem; color: var(--ink-soft); font-size: 1.13rem; }
.breadcrumb { font-size: .88rem; margin-bottom: 1.6rem; }
.breadcrumb a { font-weight: 600; }

.prose { max-width: var(--w-narrow); }
.prose p + p { margin-top: 1.05rem; }
.prose h2 { font-size: 1.9rem; margin: 2.4rem 0 .9rem; }
.prose h3 { font-size: 1.4rem; margin: 1.8rem 0 .6rem; }
.prose ul { margin: .9rem 0 .9rem 1.2rem; }
.prose li + li { margin-top: .35rem; }

/* Impressum */
.impressum-block { font-size: .98rem; }
.impressum-block h2 { font-size: 1.5rem; margin: 2.2rem 0 .7rem; }
.impressum-block p + p { margin-top: .8rem; }

/* ---------- Videos ---------- */
.section-videos { background: var(--forest-deep); color: var(--forest-ink); }
.section-videos .overline { color: #E8CD8F; }
.section-videos h2 { color: #fff; }
.section-videos .lede { color: rgba(239, 243, 233, .85); }
.section-videos :focus-visible { outline-color: #E8CD8F; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.7rem;
}
.video-card { margin: 0; }
.video-play {
  display: block; width: 100%; padding: 0; border: 0; cursor: pointer;
  position: relative; overflow: hidden; border-radius: 10px;
  aspect-ratio: 16 / 9; background: #000;
  box-shadow: var(--shadow-lift);
}
.video-play img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease), opacity .3s;
}
.video-play:hover img, .video-play:focus-visible img { transform: scale(1.05); opacity: .82; }
.video-btn {
  position: absolute; inset: 0; margin: auto;
  width: 66px; height: 66px;
  display: grid; place-items: center;
  background: rgba(176, 83, 43, .94); border-radius: 50%;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .4);
  transition: transform .25s var(--ease), background .25s;
}
.video-play:hover .video-btn, .video-play:focus-visible .video-btn { transform: scale(1.09); background: var(--terra); }
.video-btn svg { width: 26px; height: 26px; fill: #fff; margin-left: 3px; }
.video-embed {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: 10px; overflow: hidden; background: #000;
  box-shadow: var(--shadow-lift);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card figcaption { margin-top: .85rem; }
.video-title { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: #fff; line-height: 1.22; }
.video-meta { display: block; font-size: .9rem; color: rgba(239, 243, 233, .72); margin-top: .18rem; }
.video-consent { margin-top: 2.2rem; font-size: .86rem; line-height: 1.5; color: rgba(239, 243, 233, .62); max-width: 60em; }
.video-consent a { color: #E8CD8F; text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0 1.4rem;
  transition: box-shadow .3s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-soft); }
.faq-item summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-display); font-size: 1.32rem; font-weight: 600;
  padding: 1.15rem 2.2rem 1.15rem 0;
  position: relative;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: .1rem; top: 50%;
  width: 12px; height: 12px; margin-top: -8px;
  border-right: 2px solid var(--terra); border-bottom: 2px solid var(--terra);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:focus-visible { outline: 3px solid var(--terra-deep); outline-offset: 4px; border-radius: 4px; }
.faq-a { padding: 0 0 1.2rem; color: var(--ink-soft); }
.faq-a a { font-weight: 600; }

/* ---------- Utility ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.center { text-align: center; }
img { max-width: 100%; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper);
  padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
