/* =====================================================================
   Musikverein Thun — v3
   Titelblatt (Startseite) und Vorstand (Organigramm) unverändert aus v2.
   Alles andere: neues, zeitloses Design-System.
   ===================================================================== */

:root {
  /* Palette aus dem Titelblatt */
  --petrol: #0a5a63;
  --petrol-deep: #03262d;
  --sky: #bfeafa;
  --aqua: #4fb8b8;
  --ink: #03262d;
  --paper: #dff4fc;          /* helles Hellblau (ersetzt das frühere Beige) */
  --white: #ffffff;
  --muted: #5b6f72;
  --rule: rgba(3, 38, 45, .16);

  --sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --italic: "Instrument Serif", Georgia, serif;
  --serif: "Newsreader", Georgia, serif;        /* nur Organigramm */

  --banner: 60px;
  --gap: 20px;
  --pad: clamp(80px, 11vw, 170px);
  --wrap: 1360px;
  --radius: 22px;
  --ease: cubic-bezier(.23, 1, .32, 1);
}
@media (min-width: 768px)  { :root { --banner: 90px; --gap: 32px; } }
@media (min-width: 1200px) { :root { --banner: 120px; --gap: 40px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--banner) + 20px); }
body {
  margin: 0; min-height: 100vh; display: flex; flex-direction: column;
  font-family: var(--sans); font-size: 17px; line-height: 1.6; color: var(--ink); background: var(--white);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
@media (min-width: 768px)  { body { font-size: 19px; } }
@media (min-width: 1200px) { body { font-size: 20px; } }
body.navOpen { overflow: hidden; }
main { flex: 1 0 auto; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: 5px; text-decoration-thickness: 1px; transition: opacity .25s, color .25s; }
p { margin: 0 0 1em; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--petrol); outline-offset: 4px; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 14px; }
.skip:focus { left: 8px; }
.container { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gap)); margin: 0 auto; padding: 0 var(--gap); }
.center { text-align: center; }
.section { position: relative; z-index: 20; background: var(--white); padding-block: var(--pad); }
.bg-paper { background: var(--paper); }
.bg-ink { background: var(--ink); color: #fff; }
.bg-sky { background: var(--sky); }

/* ---------- Typografie ---------- */
.display, .h-xl, .h-l {
  font-family: var(--sans); font-weight: 600; letter-spacing: -.035em; line-height: .95;
  margin: 0; hyphens: manual; -webkit-hyphens: manual; text-wrap: balance;
}
.display { font-size: clamp(64px, 13vw, 210px); letter-spacing: -.05em; line-height: .86; }
.h-xl { font-size: clamp(44px, 7.2vw, 124px); }
.h-l  { font-size: clamp(34px, 4.6vw, 72px); line-height: 1; }
.display em, .h-xl em, .h-l em {
  font-family: var(--italic); font-style: italic; font-weight: 400; letter-spacing: -.01em; color: var(--petrol);
}
.bg-ink em, .on-dark em { color: var(--sky); }
h3, .h3 { font-size: 1.25em; font-weight: 600; letter-spacing: -.015em; line-height: 1.2; margin: 0 0 .5em; }
.lead { font-size: clamp(21px, 2.1vw, 32px); line-height: 1.35; letter-spacing: -.015em; font-weight: 500; }
.muted { color: var(--muted); }

/* Label mit Mini-Notenlinien */
.label {
  display: inline-flex; align-items: center; gap: 12px; margin: 0 0 28px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
}
.label::before {
  content: ""; width: 34px; height: 13px; flex: none;
  background: repeating-linear-gradient(to bottom, currentColor 0 1px, transparent 1px 3px);
  opacity: .55;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 14px; padding: 8px 8px 8px 26px; min-height: 58px;
  border-radius: 999px; background: var(--ink); color: #fff; text-decoration: none; font-weight: 600; letter-spacing: -.01em;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.btn i {
  width: 42px; height: 42px; border-radius: 50%; background: var(--sky); color: var(--ink); flex: none;
  display: grid; place-items: center; transition: transform .45s var(--ease);
}
.btn i svg { width: 18px; height: 18px; }
.btn:hover { background: var(--petrol); }
.btn:hover i { transform: rotate(-45deg); }
.btn.light { background: #fff; color: var(--ink); }
.btn.light i { background: var(--ink); color: #fff; }
.btn.light:hover { background: var(--sky); }
.btns { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; margin-top: 40px; }
.link { font-weight: 600; text-decoration: underline; text-underline-offset: 6px; }
.link:hover { color: var(--petrol); }
.bg-ink .link:hover { color: var(--sky); }

/* ---------- Kopfzeile (unverändert) ---------- */
.banner { position: fixed; top: 0; left: 0; right: 0; z-index: 60; height: var(--banner); background: #fff; transition: background .8s var(--ease); }
.banner .container { height: 100%; display: flex; align-items: center; justify-content: space-between; max-width: none; padding: 0 var(--gap); }
@media (min-width: 1200px) { .banner .container { padding: 0 40px; } }
.logo { display: flex; align-items: center; gap: 10px; position: relative; z-index: 25; text-decoration: none; color: #000; }
.logo img { width: 50px; height: 50px; object-fit: fill; }
.logo-name { font-family: "Oswald", sans-serif; font-weight: 400; font-size: 40px; line-height: 1.4; white-space: nowrap; transition: color .8s var(--ease); }
@media (max-width: 575px) { .logo img { width: 40px; height: 40px; } .logo-name { font-size: 30px; } }
.navOpen .logo-name { color: #fff; }
.burger { position: relative; z-index: 30; width: 44px; height: 44px; flex: none; color: #000; --bw: 34px; --bp: 3px; -webkit-tap-highlight-color: transparent; }
.burger:focus { outline: none; }
.burger:focus-visible { outline: 2px solid var(--sky); outline-offset: 4px; border-radius: 4px; }
/* Fünf feine Linien wie das Notensystem-Element bei den Abschnitts-Labels */
.burger span {
  position: absolute; left: 50%; width: var(--bw); height: 1px; margin-left: calc(var(--bw) / -2); background: currentColor;
  top: calc(50% - .5px + (var(--i) - 3) * var(--bp));
  transition: transform .45s var(--ease), top .45s var(--ease), width .45s var(--ease), opacity .25s;
}
.burger span:nth-child(1) { --i: 1; } .burger span:nth-child(2) { --i: 2; } .burger span:nth-child(3) { --i: 3; }
.burger span:nth-child(4) { --i: 4; } .burger span:nth-child(5) { --i: 5; }
@media (min-width: 1200px) { .burger { width: 52px; height: 52px; } }
.navOpen .burger { color: #fff; }
.navOpen .burger span:nth-child(1), .navOpen .burger span:nth-child(5) { top: calc(50% - .5px); }
.navOpen .burger span:nth-child(1) { transform: rotate(45deg); }
.navOpen .burger span:nth-child(5) { transform: rotate(-45deg); }
.navOpen .burger span:nth-child(2), .navOpen .burger span:nth-child(3), .navOpen .burger span:nth-child(4) { opacity: 0; transform: scaleX(0); }
.navOpen .banner { background: var(--ink); }

/* ---------- Menü (neu) ---------- */
.mainnav {
  position: fixed; inset: 0; z-index: 10; color: #fff; overflow-y: auto;
  background:
    radial-gradient(50% 60% at 100% 0%, rgba(79,184,184,.45) 0%, rgba(79,184,184,0) 70%),
    radial-gradient(40% 50% at 0% 100%, rgba(10,90,99,.9) 0%, rgba(10,90,99,0) 70%),
    var(--ink);
  display: flex; flex-direction: column; justify-content: space-between; gap: 50px;
  padding: calc(var(--banner) + 6vh) var(--gap) 34px;
  clip-path: circle(0% at calc(100% - 46px) 46px); visibility: hidden;
  transition: clip-path .9s var(--ease), visibility 0s .9s;
}
.navOpen .mainnav { clip-path: circle(150% at calc(100% - 46px) 46px); visibility: visible; transition: clip-path .9s var(--ease), visibility 0s; }
.mainnav ul { list-style: none; margin: 0; padding: 0; }
.mainnav .main { counter-reset: nav; max-width: var(--wrap); width: 100%; margin: 0 auto; }
.mainnav .main li { border-bottom: 1px solid rgba(255,255,255,.18); }
.mainnav .main a {
  counter-increment: nav; display: flex; align-items: baseline; gap: 18px; padding: 10px 0 14px; text-decoration: none;
  font-size: clamp(40px, min(9vw, 9.5vh), 120px); font-weight: 600; letter-spacing: -.045em; line-height: 1;
  transition: padding .5s var(--ease), color .3s;
}
.mainnav .main a:hover { padding-left: 20px; color: var(--sky); }
.mainnav .main a[aria-current="page"] { font-family: var(--italic); font-style: italic; font-weight: 400; letter-spacing: -.01em; color: var(--sky); }
.mainnav .meta { max-width: var(--wrap); width: 100%; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 14px 34px; font-size: 16px; }
.mainnav .meta a { text-decoration: none; opacity: .75; }
.mainnav .meta a:hover { opacity: 1; text-decoration: underline; }

/* ---------- Titelblatt Startseite (unverändert) ---------- */
.home-visual { position: fixed; top: var(--banner); left: 0; width: 100%; height: calc(100dvh - var(--banner)); z-index: 10; overflow: hidden; background: var(--ink); }
.home-content { position: relative; z-index: 20; margin-top: 100vh; margin-top: 100dvh; }
/* Farbverlauf wie im Menü: dunkles Petrol mit Türkis-Schein oben rechts und Petrol unten links */
.gradient { position: absolute; inset: -20%; filter: blur(60px); }
.gradient i { position: absolute; border-radius: 50%; display: block; will-change: transform; }
.gradient .g1 { width: 90vmax; height: 90vmax; right: -30%; top: -40%; background: radial-gradient(circle, rgba(79,184,184,.55) 0%, rgba(79,184,184,.25) 38%, rgba(79,184,184,0) 70%); animation: drift1 26s ease-in-out infinite alternate; }
.gradient .g2 { width: 85vmax; height: 85vmax; left: -30%; bottom: -40%; background: radial-gradient(circle, rgba(10,90,99,.95) 0%, rgba(10,90,99,.6) 40%, rgba(10,90,99,0) 70%); animation: drift2 32s ease-in-out infinite alternate; }
.gradient .g3 { width: 55vmax; height: 55vmax; left: 30%; top: 20%; background: radial-gradient(circle, rgba(10,90,99,.45) 0%, rgba(10,90,99,0) 70%); animation: drift3 22s ease-in-out infinite alternate; }
.gradient .g4 { width: 45vmax; height: 45vmax; right: 5%; bottom: -25%; background: radial-gradient(circle, rgba(79,184,184,.22) 0%, rgba(79,184,184,0) 70%); animation: drift4 28s ease-in-out infinite alternate; }
.gradient .g5 { display: none; }
@keyframes drift1 { to { transform: translate(18vw, 22vh) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-22vw, -18vh) scale(.9); } }
@keyframes drift3 { to { transform: translate(-25vw, 20vh) scale(1.2); } }
@keyframes drift4 { to { transform: translate(30vw, -10vh) scale(1.1); } }
.grain {
  position: absolute; inset: 0; opacity: .18; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.claim {
  position: absolute; inset: 0; z-index: 2; margin: 0; padding: 0 var(--gap);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0;
  padding-bottom: 27vh; color: #fff; text-align: center; line-height: 1;
  font-family: "Kaushan Script", cursive; font-weight: 400; letter-spacing: 0;
  font-size: clamp(52px, min(13.5vw, 10.5vh), 136px);
  text-shadow: 0 2px 30px rgba(3, 38, 45, .45); hyphens: manual; -webkit-hyphens: manual;
}
.claim span { display: block; white-space: nowrap; }
.staff-wave { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; overflow: visible; }
.staff-wave .line { fill: none; stroke: #fff; stroke-opacity: .85; stroke-width: 1.5; }
.staff-wave .note { fill: #fff; }
.staff-wave .note.open { fill: none; stroke: #fff; }
.staff-wave .stem, .staff-wave .beam, .staff-wave .flag { stroke: #fff; fill: none; }
.staff-wave .beam { stroke-linecap: butt; }
.staff-wave .clef { fill: #fff; font-family: "Noto Music", serif; }

/* ---------- Seitenkopf Unterseiten ---------- */
.page-head { position: relative; z-index: 20; padding: calc(var(--banner) + clamp(60px, 9vw, 140px)) 0 clamp(60px, 7vw, 110px); background: var(--white); overflow: hidden; }
.page-head .display { position: relative; }
.page-head .intro { max-width: 30em; margin: 36px 0 0; }
.page-head .staff { position: absolute; left: 0; right: 0; bottom: clamp(20px, 2.5vw, 36px); height: 41px; pointer-events: none;
  background: repeating-linear-gradient(to bottom, var(--rule) 0 1px, transparent 1px 10px); }

/* ---------- Laufband ---------- */
.ticker { position: relative; z-index: 20; background: var(--sky); color: var(--ink); overflow: hidden; padding: 22px 0; }
.ticker-track { display: flex; width: max-content; animation: tick 40s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span { display: inline-flex; align-items: center; gap: 28px; padding-right: 28px; white-space: nowrap;
  font-size: clamp(22px, 2.6vw, 38px); font-weight: 600; letter-spacing: -.03em; }
.ticker-track span em { font-family: var(--italic); font-weight: 400; letter-spacing: 0; }
.ticker-track span::after { content: "\266A"; font-family: "Noto Music", serif; font-size: .8em; opacity: .6; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- Startseite: Aktuell ---------- */
.news-grid { display: grid; gap: 50px; align-items: center; }
@media (min-width: 992px) { .news-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
.news-grid .h-xl { margin-bottom: 36px; }
.media { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media.r-3x2 { aspect-ratio: 3/2; }
.media.r-4x5 { aspect-ratio: 4/5; }
.media figcaption { position: absolute; left: 14px; bottom: 14px; background: #fff; color: var(--ink); border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600; }
.emf-logo { display: inline-block; }
.emf-logo img { width: 150px; }

/* ---------- Termine ---------- */
.termine-grid { display: grid; gap: 60px; }
@media (min-width: 992px) { .termine-grid { grid-template-columns: 1fr 340px; gap: 80px; align-items: start; } }
.termine-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 40px; }
.events { list-style: none; margin: 0; padding: 0; border-top: 1.5px solid var(--ink); }
.event {
  display: grid; grid-template-columns: 92px 1fr; gap: 6px 22px; padding: 26px 0; border-bottom: 1px solid var(--rule);
  position: relative; transition: background .4s var(--ease), padding .4s var(--ease);
}
@media (min-width: 768px) { .event { grid-template-columns: 150px 1fr auto; gap: 8px 36px; padding: 34px 0; align-items: center; } }
.ev-date { display: flex; flex-direction: column; line-height: 1; }
.ev-day { font-size: clamp(56px, 6vw, 92px); font-weight: 600; letter-spacing: -.06em; font-variant-numeric: tabular-nums; }
.ev-month { font-size: 14px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-top: 8px; }
.ev-body { display: flex; flex-direction: column; gap: 4px; }
.ev-weekday { font-size: 14px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--petrol); }
.ev-title { font-size: clamp(22px, 2.3vw, 34px); font-weight: 600; letter-spacing: -.025em; line-height: 1.12; }
.ev-ort { color: var(--muted); }
.ev-tag { grid-column: 2; justify-self: start; font-size: 14px; font-weight: 600; padding: 6px 14px; border-radius: 999px; background: var(--sky); }
@media (min-width: 768px) { .ev-tag { grid-column: 3; justify-self: end; } }
.poster { position: relative; margin: 0; max-width: 360px; }
.poster img { border-radius: 8px; box-shadow: 0 30px 60px -20px rgba(3,38,45,.45); transform: rotate(2deg); transition: transform .8s var(--ease); }
.poster:hover img { transform: rotate(0) scale(1.02); }
@media (min-width: 992px) { .poster { position: sticky; top: calc(var(--banner) + 40px); } }
.cal-note { font-size: 15px; color: var(--muted); margin: 16px 0 0; }

/* Anlässe-Seite: grosse Zeilen */
.events.big .ev-title { font-size: clamp(26px, 3.2vw, 48px); }
.events.big .ev-day { font-size: clamp(72px, 9vw, 150px); }
@media (min-width: 768px) { .events.big .event { grid-template-columns: 230px 1fr auto; } }
@media (hover: hover) { .events.big .event:hover { background: var(--paper); padding-inline: 24px; } }

/* ---------- Mach mit ---------- */
.machmit { overflow: hidden; }
.machmit-grid { display: grid; gap: 70px; }
@media (min-width: 992px) { .machmit-grid { grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; } }
.machmit .h-xl { margin-bottom: 40px; }
.qa p { margin-bottom: 1.1em; }
.qa .q { font-size: 1.3em; font-weight: 600; letter-spacing: -.02em; line-height: 1.25; margin-bottom: .35em; }
.collage { position: relative; aspect-ratio: 1 / 1.05; }
.collage .media { position: absolute; box-shadow: 0 30px 70px -25px rgba(0,0,0,.6); }
.collage .m1 { width: 68%; aspect-ratio: 3/2; left: 0; top: 0; transform: rotate(-3deg); }
.collage .m2 { width: 58%; aspect-ratio: 1; right: 0; top: 28%; transform: rotate(3deg); z-index: 2; }
.collage .m3 { width: 60%; aspect-ratio: 3/2; left: 6%; bottom: 0; transform: rotate(-1deg); }
.sticker {
  position: absolute; z-index: 3; left: 46%; top: 12%; width: 124px; height: 124px; border-radius: 50%;
  background: var(--sky); color: var(--ink); display: grid; place-items: center; text-align: center;
  font-family: var(--italic); font-style: italic; font-size: 25px; line-height: 1;
}
.sticker svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 16s linear infinite; }
.sticker text { font-family: var(--sans); font-style: normal; font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; fill: var(--ink); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Unterstützen ---------- */
.support-head { max-width: 18ch; }
.support-cards { display: grid; gap: 16px; margin-top: 60px; counter-reset: sc; }
@media (min-width: 900px) { .support-cards { grid-template-columns: repeat(3, 1fr); } }
.s-card {
  position: relative; padding: 32px 30px 34px; border-radius: var(--radius); background: #fff;
  display: flex; flex-direction: column; gap: 22px;
  transition: transform .5s var(--ease), background .4s;
}
.s-card:hover { transform: translateY(-6px); background: var(--sky); }
.s-card::before { counter-increment: sc; content: "0" counter(sc); font-size: 14px; font-weight: 600; letter-spacing: .1em; color: var(--petrol); }
.s-card p { margin: 0; font-size: 1.05em; line-height: 1.5; }

/* ---------- News ---------- */
.news2 { display: grid; gap: 50px; }
@media (min-width: 992px) { .news2 { grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; } }
.news-date { font-size: 14px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sky); margin-bottom: 18px; display: block; }
.socials { display: grid; gap: 12px; margin-top: 40px; }
.social {
  display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-radius: 16px; text-decoration: none;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); transition: background .3s, color .3s;
}
.social:hover { background: #fff; color: var(--ink); }
.social svg { width: 24px; height: 24px; flex: none; }
.social span { flex: 1; font-weight: 600; }
.social small { display: block; font-weight: 400; opacity: .65; font-size: 14px; }
.social .arr { width: 20px; height: 20px; transition: transform .4s var(--ease); }
.social:hover .arr { transform: translate(3px, -3px); }

/* ---------- Sponsoren ---------- */
.sponsors-wrap { display: grid; gap: 30px; align-items: center; }
@media (min-width: 900px) { .sponsors-wrap { grid-template-columns: 320px 1fr; gap: 60px; } }
.sponsors-wrap .h3 { margin: 0; font-size: clamp(24px, 2.2vw, 32px); letter-spacing: -.03em; }
.sponsors { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.sponsors a { display: grid; place-items: center; height: 120px; border-radius: 16px; background: var(--paper); padding: 20px; transition: background .3s; }
.sponsors a:hover { background: var(--sky); }
.sponsors img { max-height: 52px; width: auto; filter: grayscale(1); mix-blend-mode: multiply; }

/* ---------- Verein ---------- */
.about-lead { font-size: clamp(26px, 3.3vw, 50px); line-height: 1.18; letter-spacing: -.03em; font-weight: 500; max-width: 28ch; margin: 0 0 60px; }
.about-lead em { font-family: var(--italic); font-weight: 400; color: var(--petrol); letter-spacing: -.01em; }
.about-cols { column-gap: 80px; }
@media (min-width: 992px) { .about-cols { columns: 2; } }
.about-cols p { break-inside: avoid; }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1.5px solid var(--ink); margin-top: 70px; }
@media (min-width: 900px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact { padding: 26px 20px 26px 0; border-bottom: 1px solid var(--rule); }
.fact b { display: block; font-size: clamp(48px, 5.5vw, 88px); font-weight: 600; letter-spacing: -.055em; line-height: 1; }
.fact span { font-size: 15px; color: var(--muted); }
.wide-img { position: relative; z-index: 20; }
.wide-img .media { border-radius: 0; aspect-ratio: 16/10; }
@media (min-width: 992px) { .wide-img .media { aspect-ratio: 21/9; } }

.comp-grid { display: grid; gap: 50px; }
@media (min-width: 992px) { .comp-grid { grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; } }
.register { margin: 80px 0 0; border-top: 1.5px solid var(--ink); }
.reg-row { display: grid; grid-template-columns: 1fr; gap: 10px 30px; padding: 20px 0; border-bottom: 1px solid var(--rule); }
@media (min-width: 768px) { .reg-row { grid-template-columns: 300px 1fr; align-items: center; } }
.reg-row dt { font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--petrol); }
.reg-row dd { margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-block; padding: 6px 16px; border-radius: 999px; background: var(--paper); font-weight: 500; }
.chip.vakant { background: transparent; box-shadow: inset 0 0 0 1px var(--rule); color: var(--muted); font-style: italic; }
.reg-row.lead-row .chip { background: var(--ink); color: #fff; }
.note-small { font-size: 15px; color: var(--muted); margin-top: 24px; }

/* ---------- Fotos ---------- */
.album + .album { margin-top: clamp(80px, 9vw, 140px); }
.album-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 12px 30px; margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1.5px solid var(--ink); }
.album-head .count { font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--petrol); }
.thumbs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 768px) { .thumbs { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
.thumbs button { display: block; position: relative; overflow: hidden; border-radius: 14px; aspect-ratio: 1; background: var(--paper); }
.thumbs button:first-child { grid-column: span 2; grid-row: span 2; }
.thumbs img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.thumbs button:hover img { transform: scale(1.06); }
.thumbs button::after { content: "+"; position: absolute; right: 12px; top: 12px; width: 34px; height: 34px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; font-size: 22px; opacity: 0; transform: scale(.6); transition: .35s var(--ease); }
.thumbs button:hover::after { opacity: 1; transform: none; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; gap: 60px; }
@media (min-width: 992px) { .contact-grid { grid-template-columns: 1.2fr 1fr; gap: 90px; align-items: start; } }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form .full { grid-column: 1 / -1; }
@media (max-width: 575px) { .form { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field span { font-size: 14px; font-weight: 600; margin: 0 0 8px 4px; }
.field span small { font-weight: 400; color: var(--muted); font-size: 1em; }
.field input, .field textarea {
  font: inherit; color: inherit; background: var(--paper); border: 1.5px solid transparent; border-radius: 16px;
  padding: 16px 18px; width: 100%; transition: border-color .25s, background .25s;
}
.field textarea { min-height: 190px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--ink); background: #fff; }
.form .btn { border: 0; cursor: pointer; }
.info-card { border-radius: var(--radius); padding: 30px; background: var(--paper); }
.info-card + .info-card { margin-top: 16px; }
.info-card h3 { font-size: 14px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--petrol); margin-bottom: 14px; }
.info-card address { font-style: normal; font-size: 1.2em; line-height: 1.4; font-weight: 500; letter-spacing: -.01em; }
.info-card .hint { font-size: 15px; color: var(--muted); margin: 16px 0 0; }
.map { margin-top: 22px; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; background: var(--sky); }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.5); }
.info-card.ink { background: var(--ink); color: #fff; }
.info-card.ink h3 { color: var(--sky); }
.info-card.ink a { font-size: 1.15em; font-weight: 600; overflow-wrap: anywhere; }

/* ---------- Textseiten ---------- */
.prose { max-width: 44em; }
.prose h2 { font-size: clamp(24px, 2.4vw, 34px); font-weight: 600; letter-spacing: -.025em; line-height: 1.15; margin: 2em 0 .6em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2em; margin: 0 0 1em; }

/* ---------- Footer ---------- */
.site-footer { position: relative; z-index: 30; background: var(--ink); color: #fff; padding: clamp(70px, 9vw, 130px) 0 30px; overflow: hidden; }
.foot-big { font-size: clamp(44px, 8.6vw, 156px); font-weight: 600; letter-spacing: -.055em; line-height: .92; margin: 0 0 clamp(50px, 7vw, 100px); }
.foot-big em { font-family: var(--italic); font-weight: 400; letter-spacing: -.01em; color: var(--sky); }
.foot-big a { text-decoration: none; display: inline-block; margin-top: .4em; }
.foot-big a:hover { color: var(--sky); }
.foot-cols { display: grid; gap: 34px; grid-template-columns: 1fr 1fr; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.2); font-size: 16px; }
@media (min-width: 900px) { .foot-cols { grid-template-columns: repeat(4, 1fr); } }
.foot-cols h4 { margin: 0 0 12px; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sky); }
.foot-cols address { font-style: normal; }
.foot-cols ul { list-style: none; margin: 0; padding: 0; }
.foot-cols a { text-decoration: none; }
.foot-cols a:hover { text-decoration: underline; }
.foot-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; margin-top: 60px; font-size: 14px; opacity: .6; }
.foot-legal nav { display: flex; gap: 22px; }
.foot-legal a { text-decoration: none; }
.foot-legal a:hover { text-decoration: underline; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(3,38,45,.97); display: none; place-items: center; padding: 70px 16px; }
.lightbox.open { display: grid; }
.lightbox img { max-height: 80vh; max-width: min(1400px, 100%); width: auto; object-fit: contain; border-radius: 10px; }
.lightbox button { position: absolute; color: #fff; font-size: 16px; font-weight: 600; padding: 12px 20px; border-radius: 999px; background: rgba(255,255,255,.1); }
.lightbox button:hover { background: #fff; color: var(--ink); }
.lightbox .close { top: 16px; right: 16px; }
.lightbox .prev { left: 16px; bottom: 16px; } .lightbox .next { right: 16px; bottom: 16px; }
.lightbox .cap { position: absolute; top: 26px; left: 20px; color: rgba(255,255,255,.7); font-size: 15px; }

/* ---------- Einblenden ---------- */
.fade { opacity: 0; transform: translateY(40px); transition: opacity 1.4s var(--ease), transform 1.4s var(--ease); }
.fade.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade { opacity: 1; transform: none; }
}

/* =====================================================================
   Vorstand / Organigramm (unverändert aus v2)
   ===================================================================== */
.orga {
  color: #fff; overflow: hidden;
  background:
    radial-gradient(60% 70% at 12% 10%, rgba(191,234,250,.95) 0%, rgba(191,234,250,0) 60%),
    radial-gradient(55% 60% at 95% 100%, rgba(3,38,45,.95) 0%, rgba(3,38,45,0) 70%),
    radial-gradient(50% 50% at 60% 40%, rgba(10,90,99,.9) 0%, rgba(10,90,99,0) 70%),
    #2f8f99;
}
.orga .org-title { display: block; color: #fff; text-shadow: 0 2px 30px rgba(3,38,45,.35); margin-bottom: 24px; text-transform: uppercase; }
.orga-intro { max-width: 44em; margin: 0 auto 70px; font-size: .9em; line-height: 1.55; }
.orga-intro p:last-child { margin-bottom: 0; }
.org { --line: rgba(255,255,255,.7); position: relative; }
.org-card {
  display: flex; flex-direction: column; gap: 4px; text-decoration: none; color: #fff;
  padding: 18px 20px; border-radius: 16px; min-width: 0;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.4);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: background .3s, color .3s, transform .3s var(--ease);
}
a.org-card:hover { background: #fff; color: var(--petrol-deep); opacity: 1; transform: translateY(-3px); }
.org-role { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; opacity: .8; }
.org-name { font-family: var(--serif); font-size: 1.15em; line-height: 1.15; }
.org-mail { display: flex; align-items: center; gap: 6px; font-size: 13px; opacity: .75; margin-top: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.org-mail svg { width: 15px; height: 15px; flex: none; }
.org-card.is-lead { background: #fff; color: var(--petrol-deep); border-color: #fff; box-shadow: 0 20px 50px rgba(3,38,45,.25); padding: 22px 30px; text-align: center; align-items: center; }
.org-card.is-lead .org-name { font-size: 1.5em; }
a.org-card.is-lead:hover { background: var(--petrol-deep); color: #fff; }
.org-top { display: flex; justify-content: center; position: relative; padding-bottom: 48px; }
.org-top .org-card { width: min(100%, 320px); }
.org-top::after { content: ""; position: absolute; left: 50%; bottom: 0; height: 48px; border-left: 1.5px solid var(--line); }
.org-branches { display: grid; grid-template-columns: 1fr; gap: 48px; position: relative; }
.org-group { position: relative; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.org-label {
  display: inline-block; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
  padding: 7px 16px; border-radius: 999px; background: var(--petrol-deep); color: #fff; border: 1px solid rgba(255,255,255,.35);
}
.org-cards { display: grid; grid-template-columns: 1fr; gap: 12px; width: 100%; }
.org-base { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 60px; padding-top: 34px; border-top: 1.5px dashed rgba(255,255,255,.5); }
.org-pill { display: inline-flex; gap: 6px; align-items: center; padding: 10px 18px; border-radius: 999px; background: rgba(3,38,45,.35); color: #fff; text-decoration: none; font-size: .8em; }
a.org-pill:hover { background: #fff; color: var(--petrol-deep); opacity: 1; }
@media (min-width: 576px) {
  .org-cards { grid-template-columns: 1fr 1fr; }
  .org-branches { grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .org-branches .org-group:first-child { grid-column: 1 / -1; }
}
@media (min-width: 992px) {
  .org-branches { grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-top: 40px; }
  .org-branches::before { content: ""; position: absolute; top: 0; left: calc((100% - 80px) / 4); right: calc((100% - 80px) / 8); border-top: 1.5px solid var(--line); }
  .org-group::before { content: ""; position: absolute; top: -40px; left: 50%; height: 40px; border-left: 1.5px solid var(--line); }
  .org-branches .org-group:first-child .org-cards { grid-template-columns: repeat(2, 1fr); }
  .org-branches .org-group:not(:first-child) .org-cards { grid-template-columns: 1fr; }
}
.org-cards:has(> :only-child) { grid-template-columns: minmax(0, 320px) !important; justify-content: center; }
/* Alben mit wenigen Fotos: zwei gleich grosse Querformate */
.thumbs.few { grid-template-columns: 1fr 1fr; }
.thumbs.few button { aspect-ratio: 3/2; grid-column: auto; grid-row: auto; }

/* ---------- Fotos: Übersicht als Textzeilen ---------- */
.album-lines { list-style: none; margin: 0; padding: 0; border-top: 1.5px solid var(--ink); }
.album-lines li { border-bottom: 1.5px solid var(--ink); }
.album-line {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: clamp(22px, 2.6vw, 40px) 0; text-decoration: none;
  font-size: clamp(40px, 6.4vw, 112px); font-weight: 600; letter-spacing: -.055em; line-height: .95;
  transition: padding .6s var(--ease), color .3s;
}
.album-line em { font-style: normal; }
.al-arrow { flex: none; width: clamp(32px, 4vw, 64px); height: clamp(32px, 4vw, 64px); color: #000; transition: transform .5s var(--ease); }
.al-arrow svg { width: 100%; height: 100%; stroke-width: 1.6; }
@media (hover: hover) {
  .album-line:hover .al-arrow { transform: translateX(-8px); }
  .album-line:hover { padding-left: clamp(16px, 2vw, 40px); color: var(--petrol); }
}

/* ---------- Album-Unterseite ---------- */
.back { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 40px; font-weight: 600; text-decoration: none; }
.back i { width: 42px; height: 42px; border-radius: 50%; background: var(--sky); display: grid; place-items: center; transform: rotate(180deg); transition: transform .45s var(--ease); }
.back i svg { width: 18px; height: 18px; }
.back:hover i { transform: rotate(180deg) translateX(4px); }
.album-head-page .display { font-size: clamp(52px, 9vw, 150px); }
.album-meta { margin: 24px 0 0; font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--petrol); }
.masonry { columns: 1; column-gap: 14px; }
@media (min-width: 600px)  { .masonry { columns: 2; } }
@media (min-width: 1100px) { .masonry { columns: 3; } }
.masonry button { display: block; width: 100%; margin: 0 0 14px; break-inside: avoid; border-radius: 14px; overflow: hidden; position: relative; background: var(--paper); }
.masonry img { width: 100%; height: auto; transition: transform 1s var(--ease); }
.masonry button:hover img { transform: scale(1.04); }
.masonry button::after { content: "+"; position: absolute; right: 12px; top: 12px; width: 36px; height: 36px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; font-size: 22px; opacity: 0; transform: scale(.6); transition: .35s var(--ease); }
.masonry button:hover::after { opacity: 1; transform: none; }
.next-album { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 24px; margin-top: 80px; padding-top: 30px; border-top: 1.5px solid var(--ink); text-decoration: none; }
.next-album span { width: 100%; font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--petrol); }
.next-album strong { font-size: clamp(30px, 4.4vw, 72px); font-weight: 600; letter-spacing: -.04em; line-height: 1; }
.next-album i { width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; transition: transform .45s var(--ease); }
.next-album i svg { width: 22px; height: 22px; }
.next-album:hover i { transform: translateX(6px); background: var(--petrol); }

/* Laufband ganz oben auf der Startseite, direkt unter der Kopfzeile */
.home-visual .ticker { position: absolute; top: 0; left: 0; right: 0; z-index: 3; }
.home-visual .ticker ~ .claim { padding-top: 70px; }
.ticker-track span b { font-size: .45em; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: var(--ink); color: var(--sky); }
.ticker-track span small { font-size: .55em; font-weight: 500; letter-spacing: 0; color: var(--petrol); }
.ticker-track .t-date { font-size: .955em; letter-spacing: -.01em; padding-right: 0; gap: 0; }
/* Laufband: Datum ≡ Anlass ≡ Datum ≡ … (Trenner = fünf feine Linien wie bei den Labels) (Endlosschleife, läuft von rechts nach links) */
.ticker:hover .ticker-track { animation-play-state: running; }
.ticker-track > span { gap: 0; padding-right: 0; }
.ticker-track > span::after, .ticker-track .t-date::after { content: none; }
.ticker-track .tnote {
  display: inline-grid; place-items: center; width: 2.2em; height: 1em;
  font-family: "Noto Music", serif; font-style: normal; font-weight: 400; font-size: 1.5em; line-height: 1;
  opacity: .8; transform: translateY(-.1em);
}

/* Abschnitts-Titel auf jeder Unterseite (Label + grosser Titel, wie «Das Orchester – Unsere Zusammensetzung») */
.sec-head { margin-bottom: clamp(40px, 5vw, 80px); }

/* Grosse Seitentitel entfernt: Kopfbereich nur noch als Abstand unter der Kopfzeile */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.page-head { padding: calc(var(--banner) + clamp(50px, 6vw, 100px)) 0 0; }
.page-head .intro { margin: 0 0 clamp(40px, 5vw, 70px); }
.album-head-page .back { margin-bottom: 0; }
.album-head-page { padding-bottom: clamp(30px, 4vw, 60px); }
.sec-head:has(+ .contact-intro) { margin-bottom: 24px; }
.contact-intro { max-width: 30em; margin: 0 0 clamp(40px, 5vw, 70px); }

/* Fliesstext zweispaltig ab Tablet/Desktop, auf dem Handy einspaltig */
.two-cols { column-gap: clamp(40px, 6vw, 80px); }
@media (min-width: 768px) { .two-cols { columns: 2; } }
.two-cols p { break-inside: avoid; }

/* =====================================================================
   Neues Titelblatt: Claim in der Footer-Schrift + gezeichnete Instrumente
   ===================================================================== */
.claim {
  position: static; inset: auto; display: block; padding: 0; margin: 0; text-align: left; text-shadow: none;
  font-family: var(--sans); font-weight: 600; letter-spacing: -.055em; line-height: .92;
  font-size: clamp(46px, min(8.6vw, 12vh), 150px); color: #fff;
}
.claim em { font-family: var(--italic); font-style: italic; font-weight: 400; letter-spacing: -.01em; color: var(--sky); }
.home-visual .ticker ~ .claim { padding-top: 0; }
.hero {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; margin: 0 auto; max-width: var(--wrap);
  padding: 0 var(--gap) clamp(40px, 9vh, 110px); color: #fff;
}
.hero .label { color: var(--sky); margin-bottom: clamp(18px, 3vh, 34px); }
.hero > * { opacity: 0; transform: translateY(24px); animation: heroIn 1.1s var(--ease) forwards; }
.hero .claim { animation-delay: .15s; }
.hero .hero-links { animation-delay: .35s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
.hero-links { display: flex; flex-wrap: wrap; gap: 10px 34px; margin-top: clamp(24px, 4vh, 44px); font-weight: 600; font-size: 18px; }
.hero-links a { text-decoration: none; border-bottom: 1.5px solid rgba(255,255,255,.35); padding-bottom: 4px; transition: color .3s, border-color .3s; }
.hero-links a:hover { color: var(--sky); border-color: var(--sky); }

/* Instrumente: präzise Silhouetten in einem Raster über dem Titel.
   Jedes Instrument hat sein eigenes Feld – so überlappen sie sich nie, auch nicht beim Schweben. */
.home-visual { display: flex; flex-direction: column; }
.home-visual .ticker { position: relative; flex: none; }
.hero { position: relative; flex: none; width: 100%; }
.band {
  position: relative; z-index: 1; flex: 1 1 auto; min-height: 0; width: 100%; max-width: var(--wrap); margin: 0 auto;
  padding: clamp(14px, 3vh, 44px) var(--gap) clamp(6px, 2vh, 22px); pointer-events: none;
  display: grid; gap: clamp(6px, 1.2vw, 22px);
  grid-template-columns: repeat(14, minmax(0, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr));
  /* frei verteilt: jedes Instrument hat sein eigenes Feld (nie überlappend),
     kleine über zwei Zeilen – mal oben, mal unten –, grosse über alle drei */
  grid-template-areas:
    "tu tu .  ho ho tr tr tr .  .  sa sa .  ."
    "tu tu cl ho ho tr tr tr tb tb sa sa dr dr"
    ".  .  cl .  .  tr tr tr tb tb sa sa dr dr";
}
.inst { display: block; width: 100%; height: 100%; min-height: 0; color: var(--sky); fill: currentColor;
  box-sizing: border-box; padding: 4%; opacity: 0;
  animation: instIn 1.4s var(--ease) forwards, float 9s ease-in-out 1.4s infinite alternate; }
.inst path { fill: currentColor; }
@keyframes instIn { from { opacity: 0; transform: translateY(24px) scale(calc(var(--s, 1) * .92)) rotate(var(--r, 0deg)); }
                    to   { opacity: var(--o, 1); transform: translateY(-6px) scale(var(--s, 1)) rotate(var(--r, 0deg)); } }
@keyframes float { from { opacity: var(--o, 1); transform: translateY(-6px) scale(var(--s, 1)) rotate(var(--r, 0deg)); }
                   to   { opacity: var(--o, 1); transform: translateY(6px) scale(var(--s, 1)) rotate(calc(var(--r, 0deg) + 3deg)); } }
/*               Drehung      Deckkraft   Grösse    Farbe                Einblenden / Tempo */
.i-tuba        { --r: -6deg;  --o: .3;    --s: .85; color: #fff; animation-delay: .2s, 1.6s; animation-duration: 1.4s, 12s; }
.i-clarinet    { --r: 18deg;  --o: .35;   --s: .8;  color: #fff; animation-delay: .35s, 1.75s; animation-duration: 1.4s, 10s; }
.i-french-horn { --r: -8deg;  --o: .55;   --s: .9;  color: #fff; animation-delay: .5s, 1.9s; animation-duration: 1.4s, 11s; }
.i-trumpet     { --r: 6deg;   --o: .95;   --s: 1;                animation-delay: .65s, 2.05s; }
.i-trombone    { --r: 4deg;   --o: .6;    --s: .9;               animation-delay: .8s, 2.2s; animation-duration: 1.4s, 12.5s; }
.i-saxophone   { --r: -6deg;  --o: .85;   --s: 1;                animation-delay: .95s, 2.35s; animation-duration: 1.4s, 10.5s; }
.i-drum        { --r: -4deg;  --o: .45;   --s: .8;  color: #fff; animation-delay: 1.1s, 2.5s; animation-duration: 1.4s, 9.5s; }

.i-tuba { grid-area: tu; } .i-clarinet { grid-area: cl; } .i-french-horn { grid-area: ho; } .i-trumpet { grid-area: tr; }
.i-trombone { grid-area: tb; } .i-saxophone { grid-area: sa; } .i-drum { grid-area: dr; }

@media (max-width: 991px) {
  .band { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr));
    grid-template-areas:
      "ho ho .  tr tr tr"
      ".  tb tb tr tr tr"
      "sa sa .  .  dr dr"; }
  .i-tuba, .i-clarinet { display: none; }
}
@media (max-width: 991px) and (max-aspect-ratio: 1/1) {   /* Tablet hochkant: viel Höhe */
  .band { grid-template-rows: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 991px) and (min-aspect-ratio: 1/1) {   /* Tablet quer: wenig Höhe */
  .band { grid-template-columns: repeat(8, minmax(0, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr));
    grid-template-areas:
      "ho ho .  tr tr tr sa sa"
      "ho ho tb tr tr tr sa sa"
      ".  .  tb tr tr tr sa sa"; }
  .i-drum { display: none; }
}
@media (max-width: 767px) {
  .band { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "ho ho .  tr tr tr"
      ".  sa sa tr tr tr"; }
  .i-trombone, .i-drum { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero > * { animation: none; opacity: 1; transform: none; }
  .inst { animation: none; opacity: var(--o, 1); transform: rotate(var(--r, 0deg)); }
}

/* Laufband-Trenner: fünf feine Linien statt Notenzeichen (wie Label-Element und Menü-Symbol) */
.ticker-track .tnote { width: auto; height: auto; font-size: inherit; opacity: 1; transform: none; margin: 0 1.1em; }
.ticker-track .tnote::before {
  content: ""; display: block; width: 34px; height: 13px;
  background: repeating-linear-gradient(to bottom, currentColor 0 1px, transparent 1px 3px); opacity: .7;
}
/* Laufband einheitlich: Datum wie der Anlass kursiv, Trennlinien in voller Textfarbe */
.ticker-track .t-date { font-family: var(--italic); font-style: italic; font-weight: 400; letter-spacing: 0; font-size: 1em; }
.ticker-track .tnote::before { opacity: 1; }

/* Textlinks mit Unterstrich und Pfeil (wie auf dem Titelblatt) – ersetzen die runden Buttons */
.tlink {
  display: inline-block; font: inherit; font-weight: 600; font-size: 18px; color: inherit; text-decoration: none;
  background: none; border: 0; border-bottom: 1.5px solid color-mix(in srgb, currentColor 35%, transparent);
  padding: 0 0 4px; border-radius: 0; cursor: pointer; transition: color .3s, border-color .3s;
}
.tlink:hover { color: var(--petrol); border-color: var(--petrol); }
.bg-ink .tlink:hover, .tlink.light:hover { color: var(--sky); border-color: var(--sky); }
.btns { gap: 10px 34px; }

/* =====================================================================
   Bilder randabfallend, ohne runde Ecken
   Handy/Tablet: über die ganze Breite. Desktop (zweispaltig): nur zur
   Aussenseite hin randabfallend – Bild rechts → rechter Rand, Bild links → linker Rand.
   ===================================================================== */
:root { --bleed: calc(var(--gap) + max(0px, (100vw - var(--wrap) - 2 * var(--gap)) / 2)); }
html, body { overflow-x: clip; }
.media, .thumbs button, .masonry button { border-radius: 0; }
.media figcaption { border-radius: 0; left: var(--gap); bottom: 0; padding: 10px 16px; background: var(--sky); }

.news-grid .media, .news2 .media, .collage { margin-left: calc(-1 * var(--bleed)); margin-right: calc(-1 * var(--bleed)); }
@media (min-width: 992px) {
  .news-grid .media { margin-left: 0; }                     /* Bild rechts */
  .news2 .media     { margin-right: 0; }                    /* Bild links */
  .collage          { margin-left: 0; }                     /* Bild rechts */
  .news-grid .media figcaption { left: 0; }
}

/* Mitmachen-Collage: ruhiges Mosaik statt schräg gestellter Fotos */
.collage { aspect-ratio: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.collage .media { position: relative; inset: auto; width: auto; transform: none; box-shadow: none; }
.collage .m1 { grid-column: 1 / -1; aspect-ratio: 16/9; }
.collage .m2, .collage .m3 { aspect-ratio: 4/3; }
.collage .sticker { left: auto; right: clamp(16px, 4vw, 50px); top: auto; bottom: calc(50% - 62px); }

/* Bilder ohne Einblend-Effekt: stehen sofort randabfallend da */
.media.fade { opacity: 1; transform: none; transition: none; }

/* Handy: Bild kommt vor dem Text – die Abschnitte starten mit einem grossen Bild */
@media (max-width: 991px) {
  .news-grid .media { order: -1; margin-bottom: 10px; }
}

/* =====================================================================
   News-Abschnitt Startseite, Desktop: Bild NICHT randabfallend,
   steht ganz (niemand abgeschnitten) auf der dunklen Fläche neben dem Text
   ===================================================================== */
@media (min-width: 992px) {
  .split .news2 .media { margin-left: 0; margin-right: 0; }
}
/* Handy/Tablet: Abschnitte, die mit dem Bild beginnen, starten ohne Weissraum oben */
@media (max-width: 991px) {
  .section:has(> .news-grid), .section:has(> .news2) { padding-top: 0; }
}

.media-bg { display: none; }

/* Deko: Instrumente an der Bildecke (News-Abschnitt) */
.media-wrap { position: relative; }
.deco { position: absolute; z-index: 2; fill: currentColor; pointer-events: none; animation: decoFloat 9s ease-in-out infinite alternate; }
.deco path { fill: currentColor; }
.deco-trumpet     { width: clamp(110px, 12vw, 190px); right: clamp(-70px, -4vw, -30px); top: clamp(-80px, -5vw, -40px); color: var(--sky); --r: 10deg; }
.deco-french-horn { width: clamp(60px, 6vw, 100px);   right: clamp(70px, 9vw, 150px); top: clamp(-60px, -3.6vw, -30px); color: #fff; opacity: .5; --r: -12deg; animation-duration: 11s; }
@keyframes decoFloat { from { transform: translateY(-6px) rotate(var(--r)); } to { transform: translateY(6px) rotate(calc(var(--r) + 3deg)); } }
@media (max-width: 991px) {   /* Handy: Bild randabfallend → Deko unten rechts ins Bild hinein */
  .deco-trumpet { right: 4px; top: auto; bottom: -46px; width: 120px; }
  .deco-french-horn { right: 124px; top: auto; bottom: -30px; width: 64px; }
}
@media (prefers-reduced-motion: reduce) { .deco { animation: none; transform: rotate(var(--r)); } }

/* =====================================================================
   Vorstand im Stil des News-Abschnitts («Gemeinsam in Harmonie»):
   dunkle Petrol-Fläche, Kästen wie Instagram/Facebook, Akzent Hellblau
   ===================================================================== */
.orga { background: var(--ink); }
.orga .org-title { text-transform: none; text-shadow: none; }
.orga-intro { opacity: .85; }
.org { --line: rgba(255,255,255,.25); }
.org-card {
  gap: 2px; padding: 18px 22px; border-radius: 16px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
a.org-card:hover { background: #fff; color: var(--ink); transform: none; }
.org-role { font-size: 12px; letter-spacing: .12em; font-weight: 600; opacity: 1; color: var(--sky); }
a.org-card:hover .org-role { color: var(--petrol); }
.org-name { font-family: var(--sans); font-weight: 600; font-size: 1.1em; letter-spacing: -.01em; }
.org-mail { opacity: .65; font-size: 14px; }
.org-card.is-lead { background: var(--sky); color: var(--ink); border-color: var(--sky); box-shadow: none; }
.org-card.is-lead .org-role { color: var(--petrol); }
.org-card.is-lead .org-name { font-size: 1.4em; }
a.org-card.is-lead:hover { background: #fff; color: var(--ink); }
.org-label { background: transparent; color: var(--sky); border-color: rgba(255,255,255,.25); font-weight: 600; }
.org-base { border-top-color: rgba(255,255,255,.2); }
.org-pill { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); }
a.org-pill:hover { background: #fff; color: var(--ink); }
/* Vorstand: Kopf wie alle Abschnitte (Label + Titel links, Fliesstext zweispaltig) */
.orga .h-xl em { color: var(--sky); }
.orga-intro { max-width: none; margin: 0 0 clamp(60px, 7vw, 100px); font-size: inherit; line-height: 1.6; opacity: 1; text-align: left; }
/* Verein: Jahreszahlen im Lead-Text wie der übrige Text (nicht kursiv/farbig) */
.about-lead em { font-family: inherit; font-style: normal; font-weight: inherit; color: inherit; letter-spacing: inherit; }
/* Verein: Kennzahlen ohne Trennlinien */
.facts { border-top: 0; }
.fact { border-bottom: 0; }

/* =====================================================================
   Verein: Farben getauscht
   «Seit 1919» negativ (weiss auf Petrol, Kennzahlen in Kästen),
   «Unser Vorstand» farbig auf Weiss
   ===================================================================== */
.about .fact span { color: rgba(255,255,255,.65); }
.facts { gap: 12px; }
.fact {
  padding: 24px 22px; border-radius: 16px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
}
.fact b { margin-bottom: 8px; }

.orga { background: var(--white); color: var(--ink); }
.orga .h-xl em { color: var(--petrol); }
.org { --line: rgba(3,38,45,.25); }
.org-card { color: var(--ink); background: var(--paper); border-color: var(--rule); }
.org-role { color: var(--petrol); }
a.org-card:hover { background: var(--ink); color: #fff; }
a.org-card:hover .org-role { color: var(--sky); }
.org-card.is-lead { background: var(--ink); color: #fff; border-color: var(--ink); }
.org-card.is-lead .org-role { color: var(--sky); }
a.org-card.is-lead:hover { background: var(--petrol); color: #fff; }
.org-label { color: var(--petrol); border-color: var(--rule); }
.org-base { border-top-color: var(--rule); }
.org-pill { background: var(--paper); border-color: var(--rule); color: var(--ink); }
a.org-pill:hover { background: var(--ink); color: #fff; }
/* Vorstand: Kästen hellblau statt beige */
.org-card { background: rgba(191,234,250,.5); border-color: rgba(10,90,99,.18); }
.org-pill { background: rgba(191,234,250,.5); border-color: rgba(10,90,99,.18); }
/* Verein «Seit 1919»: Titel in der Label-Schrift – versal, fetter, grösser (ruhiger) */
.about .sec-head .h-xl { font-weight: 700; text-transform: uppercase; letter-spacing: .06em; line-height: 1; font-size: clamp(34px, 4.6vw, 72px); }
.about .sec-head .h-xl em { font-family: inherit; font-style: normal; font-weight: inherit; letter-spacing: inherit; }
.about .sec-head .h-xl { font-size: clamp(46px, 6.6vw, 112px); font-style: italic; letter-spacing: .03em; }
.about .sec-head .h-xl em { font-style: italic; }
/* noch fetter als 700: Kontur in Textfarbe verdickt die Buchstaben */
.about .sec-head .h-xl, .about .sec-head .h-xl em { -webkit-text-stroke: .045em currentColor; paint-order: stroke fill; letter-spacing: .05em; }
/* Verein: Lead-Text wie Fliesstext, aber fett */
.about-lead { font-size: inherit; line-height: 1.6; letter-spacing: normal; font-weight: 700; max-width: none; margin-bottom: 1.1em; }
/* Verein: Lead-Text wieder gross, aber ruhiger – etwas kleiner, breitere Zeilen,
   mehr Zeilenabstand und ausgeglichener Umbruch statt stark zerfranster Zeilen */
.about-lead {
  font-size: clamp(22px, 2.3vw, 36px); line-height: 1.35; letter-spacing: -.015em; font-weight: 500;
  max-width: 38ch; margin: 0 0 clamp(40px, 5vw, 70px); text-wrap: pretty;
}
.about-lead { font-style: italic; }
.about-lead em { font-style: inherit; }
/* Labels wachsen am Desktop leicht mit (13 → 15 px), bleiben aber klar kleiner als der Fliesstext */
.label { font-size: clamp(13px, calc(.45vw + 10px), 15px); }
/* Kennzahlen im Stil des Titels «SEIT 1919»: fett, kursiv, luftiger Buchstabenabstand */
.about .fact b {
  font-weight: 700; font-style: italic; letter-spacing: .04em; line-height: 1;
  -webkit-text-stroke: .03em currentColor; paint-order: stroke fill;
  font-size: clamp(40px, 4.6vw, 76px);
}

/* Vereinsseite einheitlich: «Unser Vorstand» gleich formatiert wie «Seit 1919»
   (Titel versal/fett/kursiv, Lead gross kursiv, Fliesstext normal) */
.orga .sec-head .h-xl {
  font-weight: 700; text-transform: uppercase; font-style: italic; line-height: 1;
  font-size: clamp(46px, 6.6vw, 112px); letter-spacing: .05em;
  -webkit-text-stroke: .045em currentColor; paint-order: stroke fill;
}
.orga .sec-head .h-xl em { font-family: inherit; font-style: italic; font-weight: inherit; letter-spacing: inherit; -webkit-text-stroke: .045em currentColor; }
.orga .orga-intro { margin: 0 0 clamp(60px, 7vw, 100px); }
/* Verein «Seit 1919»: Abstand unter den Kennzahlen = doppelter Seitenrand */
.about { padding-bottom: calc(2 * var(--gap)); }
/* Organigramm ohne Verbindungslinien */
.org-top::after, .org-branches::before, .org-group::before { content: none; display: none; }
.org-top { padding-bottom: clamp(36px, 4vw, 56px); }
.org-branches { padding-top: 0; }
/* Organigramm: alle Kästen gleich gross (Präsidentin, Vorstand, Musik, Web) */
.org-cards:has(> :only-child) { grid-template-columns: 1fr !important; }
.org-top .org-card { width: 100%; }
@media (min-width: 576px) {
  .org-top .org-card { width: calc((100% - 12px) / 2); }
  .org-branches { column-gap: 12px; }
}
@media (min-width: 992px) {
  .org-branches { grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 40px; }
  .org-branches .org-group:first-child { grid-column: span 2; }
  .org-branches .org-group:first-child .org-cards { column-gap: 40px; }
  .org-top .org-card { width: calc((100% - 120px) / 4); }
}
.org-card.is-lead { padding: 18px 22px; }
.org-card.is-lead .org-name { font-size: 1.1em; }
/* Titel einfarbig: «SEIT 1919» ganz hellblau, «UNSER VORSTAND» ganz dunkel */
.about .sec-head .h-xl, .about .sec-head .h-xl em { color: var(--sky); }
.orga .sec-head .h-xl, .orga .sec-head .h-xl em { color: var(--ink); }
/* Präsidentin: Text linksbündig wie die übrigen Kästen */
.org-card.is-lead { text-align: left; align-items: stretch; }
/* Vorstand: Abstand unter den letzten Kästen = wie unter den Kennzahlen (doppelter Seitenrand) */
.orga { padding-bottom: calc(2 * var(--gap)); }
/* «UNSER VORSTAND» in Petrol */
.orga .sec-head .h-xl, .orga .sec-head .h-xl em { color: var(--petrol); }

/* =====================================================================
   EINHEITLICHER STIL für alle Seiten (Vorbild: Vereinsseite)
   Titel versal/fett/kursiv, einfarbig (Petrol auf Weiss, Hellblau auf Dunkel),
   Lead-Texte gross kursiv, Kästen hellblau auf Weiss bzw. transparent auf Dunkel
   ===================================================================== */
.section .h-xl, .section .h-l, .sponsors-wrap .h3 {
  font-family: var(--sans); font-weight: 700; font-style: italic; text-transform: uppercase;
  letter-spacing: .05em; line-height: 1; color: var(--petrol);
  -webkit-text-stroke: .045em currentColor; paint-order: stroke fill; text-wrap: balance;
}
.section .h-xl { font-size: clamp(34px, 6.6vw, 112px); }
.section .h-l  { font-size: clamp(30px, 4.6vw, 76px); }
.sponsors-wrap .h3 { font-size: clamp(20px, 2.2vw, 30px); -webkit-text-stroke-width: .03em; }
.section .h-xl em, .section .h-l em, .sponsors-wrap .h3 em {
  font-family: inherit; font-style: italic; font-weight: inherit; letter-spacing: inherit; color: inherit;
}
.section.bg-ink .h-xl, .section.bg-ink .h-l { color: var(--sky); }

/* Lead-Texte wie «Seit 1919» */
.lead, .qa .q, .contact-intro {
  font-size: clamp(22px, 2.3vw, 36px); line-height: 1.35; letter-spacing: -.015em; font-weight: 500;
  font-style: italic; max-width: 38ch; text-wrap: pretty;
}

/* Unterstützen (Mitmachen): weisser Abschnitt, Kästen wie beim Vorstand */
.support-cards { gap: 12px; }
.s-card { background: var(--paper); border: 1px solid rgba(10,90,99,.18); border-radius: 16px; padding: 24px 22px 26px; gap: 16px; }
.s-card:hover { transform: none; background: var(--ink); color: #fff; }
.s-card:hover::before { color: var(--sky); }
/* Grosse Link-Zeilen (Entdecken, Fotoalben) in der Titelschrift */
.album-line {
  font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: .05em; line-height: 1;
  font-size: clamp(26px, 5.2vw, 88px); color: var(--petrol);
}
.album-line span { -webkit-text-stroke: .045em currentColor; paint-order: stroke fill; text-wrap: balance; }
.album-line em { font-style: italic; }
.al-arrow { color: var(--petrol); }
@media (hover: hover) { .album-line:hover { color: var(--ink); } .album-line:hover .al-arrow { color: var(--ink); } }
/* Sponsoren: Überschrift als Label mit den 5 Linien (wie «Entdecken»), Logos darunter */
.sponsors-wrap { display: block; }
.sponsors-wrap .label { margin: 0 0 28px; }
/* Titel mit sehr langem Wort (ZUSAMMENSETZUNG): ohne Trennung, Schrift passt sich der Breite an */
.section .h-xl.h-long { font-size: min(clamp(34px, 6.6vw, 112px), calc((100vw - 2 * var(--gap)) / 11.8)); hyphens: none; -webkit-hyphens: none; }
