/* ==========================================================================
   BALKAN SYMPHONICS — Website-Entwurf
   Gestaltungsidee: die Doppelnatur des Projekts (Balkan-Band trifft
   Sinfonieorchester) als typografischer Dialog — gesperrte Versalien und
   Haarlinien fuer das Orchestrale, warme Serifen fuer das Erzaehlende.
   Farbwelt aus den Buehnenfotos: Nachtschwarz, Messing/Gold, tiefes Petrol.
   ========================================================================== */

/* ---------- Tokens ---------------------------------------------------- */
:root {
  --ink:        #0b0a09;
  --ink-2:      #141210;
  --ink-3:      #1e1b17;
  --line:       rgba(233, 220, 198, .16);
  --line-soft:  rgba(233, 220, 198, .08);

  --bone:       #efe7d9;
  --bone-dim:   #b9ae9c;
  --bone-faint: #7d7466;

  --gold:       #d8ab4e;
  --gold-deep:  #a97f2d;
  --petrol:     #2c5f5c;

  --maxw:       1180px;
  --gut:        clamp(1.25rem, 4vw, 3rem);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .25vw, 1.125rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Bausteine -------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 1.6rem;
}
h3 {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin: 0 0 .6rem;
}
p { margin: 0 0 1.15em; }
p.lead {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1rem + .7vw, 1.5rem);
  line-height: 1.5;
  color: #f6f0e5;
}

section { padding-block: clamp(4.5rem, 9vw, 8.5rem); position: relative; }
.rule { height: 1px; background: var(--line-soft); border: 0; margin: 0; }

/* ---------- Kopfzeile -------------------------------------------------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem var(--gut);
  background: rgba(11, 10, 9, 0);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
}
.topbar.is-stuck {
  background: rgba(11, 10, 9, .88);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-soft);
}
.topbar__mark {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  text-decoration: none; color: var(--bone); white-space: nowrap;
  display: flex; align-items: center; gap: .7rem;
}
.topbar__mark b { font-weight: 600; }
.topbar__logo {
  width: auto; height: 2.5rem; flex: 0 0 auto;
  transition: height .4s var(--ease), transform .4s var(--ease);
}
/* schrumpft beim Scrollen mit der Kopfzeile, damit sie nicht starr wirkt */
.topbar.is-stuck .topbar__logo { height: 2.1rem; }
.topbar__mark:hover .topbar__logo { transform: rotate(-8deg); }
@media (max-width: 560px) {
  .topbar__logo { height: 2.2rem; }
  .topbar.is-stuck .topbar__logo { height: 2rem; }
}
.topbar nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.topbar nav a {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bone-dim); text-decoration: none;
  transition: color .25s var(--ease);
}
.topbar nav a:hover { color: var(--gold); }
@media (max-width: 780px) { .topbar nav a[data-hide-sm] { display: none; } }
@media (max-width: 560px) {
  .topbar { gap: .75rem; padding-inline: 1.1rem; }
  .topbar nav a { display: none; }   /* Einseiter — Scrollen reicht, Platz fuer DE/EN */
  .topbar__mark { font-size: .6rem; letter-spacing: .22em; }
  .topbar nav { gap: .9rem; }
  .topbar nav a { font-size: .65rem; letter-spacing: .12em; }
  .lang button { padding: .35rem .55rem; font-size: .62rem; letter-spacing: .1em; }
}

/* Sprachumschalter */
.lang { display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang button {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  color: var(--bone-faint); font: inherit;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .4rem .75rem;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lang button[aria-pressed="true"] { background: var(--gold); color: var(--ink); font-weight: 600; }

/* ---------- Hero ------------------------------------------------------- */
.hero {
  min-height: 100svh;
  display: grid; align-items: end;
  padding-block: 8rem 3.5rem;
  position: relative; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
  filter: grayscale(.12) contrast(1.05) brightness(.82);
  transform: scale(1.04);
}
/* Hochformat: sonst schneidet der Ausschnitt Orchester und Band weg */
@media (max-aspect-ratio: 3/4) {
  .hero__bg img { object-position: 48% 62%; }
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(130% 80% at 50% 20%, rgba(11,10,9,.05), rgba(11,10,9,.62) 68%, rgba(11,10,9,.9) 100%),
    linear-gradient(180deg, rgba(11,10,9,.7), transparent 26%, rgba(11,10,9,.55) 62%, rgba(11,10,9,.94) 92%, var(--ink));
}
.hero .wrap { position: relative; z-index: 1; }

/* Wortmarke */
.wordmark { margin: 0 0 1.75rem; }
.wordmark__line {
  display: block;
  font-family: var(--sans);
  font-weight: 200;
  font-size: clamp(2.1rem, .4rem + 8.2vw, 7.4rem);
  line-height: .96;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}
.wordmark__line + .wordmark__line {
  font-weight: 500;
  letter-spacing: .19em;
  color: var(--gold);
  font-size: clamp(1.5rem, .3rem + 5.6vw, 5rem);
}
.hero__meta {
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; align-items: center;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--bone-dim);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  max-width: 46rem;
}
.hero__meta span::before { content: "—"; color: var(--gold-deep); margin-right: .75rem; }
.hero__meta span:first-child::before { content: none; }
@media (max-width: 620px) {
  .hero__meta { flex-direction: column; align-items: flex-start; gap: .35rem; font-size: .68rem; }
  .hero__meta span::before { content: none; }
}
.hero__claim {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1rem + 1vw, 1.9rem);
  line-height: 1.42;
  max-width: 34ch;
  margin: 0 0 2.2rem;
  color: #f6f0e5;
}

/* ---------- Buttons ---------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  text-decoration: none;
  padding: .95rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn--solid { background: var(--gold); color: var(--ink); }
.btn--solid:hover { background: #ecc169; border-color: #ecc169; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- Text-Sektion ---------------------------------------------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); } }
.split__aside { align-self: start; }
@media (min-width: 900px) { .split__aside { position: sticky; top: 6rem; } }

.pull {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1rem + 1.4vw, 2.1rem);
  line-height: 1.35;
  color: var(--gold);
  border-left: 1px solid var(--gold-deep);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}

/* ---------- Zeitleiste ------------------------------------------------- */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.timeline li {
  display: grid; gap: .25rem 2rem;
  grid-template-columns: 5.5rem 1fr;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line-soft);
}
.timeline li:last-child { border-bottom: 1px solid var(--line-soft); }
.timeline dt, .timeline .year {
  font-size: .82rem; letter-spacing: .18em; color: var(--gold);
  font-variant-numeric: tabular-nums; padding-top: .2rem;
}
.timeline .what { font-family: var(--serif); font-size: 1.12rem; line-height: 1.5; color: var(--bone); }
.timeline .what b { font-weight: 600; color: #fff; }
@media (max-width: 620px) { .timeline li { grid-template-columns: 1fr; gap: .2rem; } }

/* ---------- Videos ----------------------------------------------------- */
.videos { display: grid; gap: clamp(1.25rem, 3vw, 2rem); grid-template-columns: 1fr; }
@media (min-width: 820px) { .videos { grid-template-columns: 1fr 1fr; } }

.vid { margin: 0; }
.vid__frame {
  position: relative; aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: var(--ink-2);
  cursor: pointer; overflow: hidden;
}
.vid__frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.2) brightness(.78);
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.vid__frame:hover img { transform: scale(1.04); filter: grayscale(0) brightness(.9); }
.vid__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vid__play {
  position: absolute; inset: 0; margin: auto;
  width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid var(--gold); background: rgba(11,10,9,.5);
  display: grid; place-items: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.vid__frame:hover .vid__play { background: var(--gold); transform: scale(1.06); }
.vid__play svg { width: 20px; height: 20px; fill: var(--gold); margin-left: 3px; transition: fill .3s var(--ease); }
.vid__frame:hover .vid__play svg { fill: var(--ink); }
.vid figcaption {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-top: .9rem;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--bone-dim);
}
.vid figcaption b { color: var(--bone); font-weight: 500; }

/* ---------- Foto-Karussell -------------------------------------------- */
.carousel { position: relative; }
.carousel__track {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track figure {
  margin: 0;
  flex: 0 0 100%;
  scroll-snap-align: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
}
@media (min-width: 760px)  { .carousel__track figure { flex-basis: 62%; } }
@media (min-width: 1100px) { .carousel__track figure { flex-basis: 46%; } }
.carousel__track img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.2) brightness(.86);
  transition: filter .6s var(--ease), transform 1s var(--ease);
}
.carousel__track figure:hover img { filter: none; transform: scale(1.03); }

.carousel__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(11, 10, 9, .72);
  border: 1px solid var(--line);
  color: var(--bone);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), opacity .3s var(--ease);
}
.carousel__nav:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.carousel__nav:disabled { opacity: .25; cursor: default; }
.carousel__nav svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.carousel__nav--prev { left: .5rem; }
.carousel__nav--next { right: .5rem; }
@media (min-width: 900px) {
  .carousel__nav--prev { left: -1.4rem; }
  .carousel__nav--next { right: -1.4rem; }
}

.carousel__dots { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; padding-top: 1.4rem; }
.carousel__dots button {
  appearance: none; border: 0; padding: 0; cursor: pointer;
  width: 26px; height: 2px;
  background: var(--line);
  transition: background .3s var(--ease);
}
.carousel__dots button[aria-selected="true"] { background: var(--gold); }

.credit {
  padding-top: 1.4rem;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bone-faint);
}
.credit a { color: var(--bone-dim); text-decoration: none; border-bottom: 1px solid var(--line); margin-left: .5rem; }
.credit a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ---------- Besetzung -------------------------------------------------- */
.cast { display: grid; gap: 2.5rem 3rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .cast { grid-template-columns: 1fr 1fr; } }
.cast ul { list-style: none; margin: 0; padding: 0; }
.cast li {
  padding: .55rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--serif);
  font-size: 1.1rem;
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
}
.cast li i {
  font-style: normal;
  font-family: var(--sans);
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bone-faint); white-space: nowrap;
}

/* ---------- Partner ---------------------------------------------------- */
.partners { display: grid; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); grid-template-columns: 1fr; }
@media (min-width: 700px) { .partners { grid-template-columns: 1fr 1fr; } }
.partners > div { background: var(--ink); padding: clamp(1.5rem, 4vw, 2.6rem); }
.partners img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center 25%;
  margin-bottom: 1.4rem;
  filter: grayscale(.3) brightness(.88);
  transition: filter .6s var(--ease);
}
.partners > div:hover img { filter: none; }
.partners .who { font-family: var(--serif); font-size: clamp(1.2rem, 1rem + .8vw, 1.65rem); line-height: 1.3; margin: 0 0 .4rem; }
.partners .who a { text-decoration: none; border-bottom: 1px solid var(--line); transition: color .3s var(--ease), border-color .3s var(--ease); }
.partners .who a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.partners .cond { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 0; }

/* ---------- Presse-Downloads ------------------------------------------- */
.downloads {
  display: grid; gap: 1px; margin-top: clamp(2rem, 4vw, 3rem);
  background: var(--line-soft); border: 1px solid var(--line-soft);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .downloads { grid-template-columns: 1fr 1fr; } }
.dl {
  background: var(--ink); padding: clamp(1.5rem, 3.5vw, 2.4rem);
  display: flex; align-items: center; gap: 1.25rem;
  text-decoration: none; color: inherit;
  transition: background .3s var(--ease);
}
.dl:hover { background: var(--ink-2); }
.dl__icon {
  flex: 0 0 auto;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.dl__icon svg {
  width: 20px; height: 20px; fill: none;
  stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .3s var(--ease);
}
.dl:hover .dl__icon { background: var(--gold); border-color: var(--gold); }
.dl:hover .dl__icon svg { stroke: var(--ink); }
.dl__body { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.dl__body b {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem); line-height: 1.2; color: var(--bone);
}
.dl__body i {
  font-style: normal; font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--bone-faint);
}

/* Mail-Adressen */
a.mailto, footer.site a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--line); transition: color .3s var(--ease), border-color .3s var(--ease); }
a.mailto:hover, footer.site a:hover { color: var(--gold); border-bottom-color: var(--gold); }
a.mailto { color: var(--gold); border-bottom-color: var(--gold-deep); }

/* ---------- Kontakt / Footer ------------------------------------------ */
.contact { display: grid; gap: 2rem 3rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .contact { grid-template-columns: 1.2fr 1fr; } }
.social { display: flex; flex-wrap: wrap; gap: .75rem; }
.social a {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none; color: var(--bone);
  border: 1px solid var(--line); padding: .8rem 1.2rem;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(216,171,78,.06); }
.social svg { width: 16px; height: 16px; fill: currentColor; }

footer.site {
  border-top: 1px solid var(--line-soft);
  padding-block: 3rem;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-faint);
}
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; }

/* ---------- TODO-Marker (nur im Entwurf sichtbar) ---------------------- */
.todo {
  display: inline-block;
  font-family: var(--sans);
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: #ffd9a0;
  background: rgba(216,171,78,.12);
  border: 1px dashed var(--gold-deep);
  padding: .3rem .6rem;
  border-radius: 3px;
}

/* Vorschau-Banner */
.preview-flag {
  position: fixed; z-index: 80; inset: auto 0 0 0;
  background: var(--gold); color: var(--ink);
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  text-align: center; padding: .5rem 1rem; line-height: 1.4;
}
@media (max-width: 620px) {
  .preview-flag { font-size: .58rem; letter-spacing: .08em; padding: .45rem .6rem; }
  .preview-flag .long { display: none; }
}
body { padding-bottom: 2.4rem; }

/* ---------- Einblenden beim Scrollen ---------------------------------- */
.rise { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rise.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rise { opacity: 1; transform: none; } }

/* ---------- Sprachsteuerung ------------------------------------------- */
[data-lang] { display: none; }
html[lang="de"] [data-lang="de"],
html[lang="en"] [data-lang="en"] { display: revert; }
