/* =========================================================
   Freak Valley Festival — Styles
   Jahres-Look: alles Farbliche/Typografische in :root.
   Für eine neue Ausgabe primär diese Variablen + Assets tauschen.
   ========================================================= */

@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-latin-full-normal.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-latin-ext-full-normal.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Work Sans";
  src: url("assets/fonts/work-sans-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Work Sans";
  src: url("assets/fonts/work-sans-latin-ext-wght-normal.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* 2027 — „Moth" (CI aus poster.psd) */
  --bg: #1c1e1d;          /* Papier-Schwarz */
  --bg-2: #242625;        /* Karten */
  --ink: #ece2cc;         /* Fließtext, knochenweiß */
  --ink-dim: #b7ad99;
  --purple: #68528b;      /* Logo, Motte, Rahmen */
  --purple-lt: #a48fcf;   /* Lila als Textfarbe (Kontrast) */
  --mustard: #e4a843;     /* Motten-Akzent */
  --orange: #c94b26;      /* Datum, Bandnamen */
  --orange-lt: #e0663e;   /* Orange als kleiner Text */

  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body: "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 14px;
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
/* Papier-Hintergrund: ein großes Bild, fest hinter der Seite – keine Kacheln, keine Wiederholung */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: var(--bg) url("assets/img/paper-3000.webp") center / cover no-repeat;
}
@media (min-width: 1600px) and (orientation: landscape) { body::before { background-image: url("assets/img/paper.webp"); } }
@media (orientation: portrait) { body::before { background-image: url("assets/img/paper-portrait.webp"); } }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple-lt); text-underline-offset: 3px; }
a:hover { color: var(--mustard); }
:focus-visible { outline: 2px solid var(--mustard); outline-offset: 3px; border-radius: 4px; }

/* Sprachumschaltung: <span class="de">…</span><span class="en">…</span> */
html[lang="de"] .en, html[lang="en"] .de { display: none !important; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--mustard); color: #111; padding: 8px 14px; z-index: 100; border-radius: 6px; }
.skip:focus { left: 8px; }

/* ---------- Typo ---------- */
h1, h2, h3 { font-family: var(--f-display); font-variation-settings: "SOFT" 100, "WONK" 1; line-height: 1.05; margin: 0 0 .5em; font-weight: 700; }
.section-title {
  font-size: clamp(40px, 7vw, 84px);
  color: var(--orange);
  letter-spacing: -.01em;
  text-align: center;
  margin-bottom: .15em;
}
.section-kicker {
  text-align: center; font-family: var(--f-display); font-style: italic;
  color: var(--purple-lt); font-size: clamp(18px, 2vw, 22px); margin: 0 0 clamp(20px, 3vw, 36px);
}
.ornament { display: block; width: 120px; height: 18px; margin: 0 auto 18px; color: var(--purple); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--f-display); font-weight: 700; font-size: 19px;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  padding: 13px 26px; border-radius: 999px; text-decoration: none; cursor: pointer;
  border: 2px solid var(--mustard); background: var(--mustard); color: #1a1410;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn--ghost { background: transparent; color: var(--mustard); }
@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); background: #f0bb5c; color: #1a1410; }
  .btn--ghost:hover { background: var(--mustard); color: #1a1410; }
}
.btn:active { background: #f0bb5c; color: #1a1410; }
.btn--small { font-size: 16px; padding: 8px 18px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 50;
  display: flex; align-items: center;
  background: rgba(22, 23, 23, .82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(104, 82, 139, .35);
}
.nav .wrap { display: flex; align-items: center; gap: 20px; min-width: 0; }
.nav__logo { flex: 0 0 auto; width: 170px; }
.nav__links { display: flex; gap: 22px; margin: 0 0 0 auto; padding: 0; list-style: none; }
.nav__links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 15px; letter-spacing: .02em; white-space: nowrap; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--mustard); }
.nav__right { display: flex; align-items: center; gap: 12px; }
.lang { display: flex; border: 1px solid rgba(164,143,207,.5); border-radius: 999px; overflow: hidden; }
.lang button { background: none; border: 0; color: var(--ink-dim); font: 600 13px var(--f-body); padding: 5px 10px; cursor: pointer; }
.lang button[aria-pressed="true"] { background: var(--purple); color: #fff; }
.nav__burger { display: none; background: none; border: 0; color: var(--ink); padding: 8px; cursor: pointer; }
.nav__burger svg { width: 28px; height: 28px; }

@media (max-width: 1120px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0;
    background: #161717; padding: 8px var(--gutter) 20px;
    border-bottom: 1px solid rgba(104, 82, 139, .35);
    transform: translateY(-120%); transition: transform .3s ease; visibility: hidden;
  }
  .nav.is-open .nav__links { transform: translateY(0); visibility: visible; }
  .nav__links a { display: block; padding: 12px 0; font-size: 20px; font-family: var(--f-display); border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav__burger { display: block; }
  .nav__right { margin-left: auto; }
  .nav__logo { width: 140px; }
}
.nav__lang { display: none; }
@media (max-width: 560px) {
  .nav__right .lang { display: none; }
  .nav__lang { display: block; padding: 14px 0 4px; }
  .nav__lang .lang { display: inline-flex; }
  .nav__lang .lang button { font-size: 15px; padding: 8px 16px; }
  .nav__logo { width: 124px; }
  .nav__right { gap: 8px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--nav-h) + clamp(24px, 4vw, 48px)) 0 clamp(24px, 4vw, 48px); text-align: center; overflow: hidden; }
.hero__logo { width: min(100%, 980px); margin: 0 auto; }
.hero__date {
  font-family: var(--f-display); font-weight: 700; color: var(--orange);
  font-size: clamp(26px, 4.4vw, 54px); margin: clamp(10px, 1.6vw, 18px) 0 0; letter-spacing: .01em;
}
.hero__date, .hero__place, .hero__cta, .countdown { position: relative; z-index: 2; }
.hero__place { color: var(--ink-dim); font-size: clamp(14px, 1.5vw, 17px); letter-spacing: .14em; text-transform: uppercase; margin: 6px 0 0; }
/* Motte: Flügel als zwei Hälften, die um die Körperachse (50.25 %) schlagen */
.hero__moth { position: relative; width: min(94%, 860px); margin: clamp(28px, 5vw, 60px) auto 0; perspective: 1600px; z-index: 1; will-change: transform; }
.moth { transform-style: preserve-3d; }
.moth__flight { position: relative; transform-style: preserve-3d; animation: moth-drift 22s ease-in-out infinite; }
.moth__spacer { width: 100%; visibility: hidden; }
.moth__body { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; z-index: 2; }  /* Kopf/Hörner/Körper bleiben still */
.moth__wing { position: absolute; top: 0; bottom: 0; overflow: hidden; backface-visibility: visible; will-change: transform; }
.moth__wing img { position: absolute; top: 0; max-width: none; width: calc(100% / .5025); }
.moth__wing--l { left: 0; width: 50.35%; transform-origin: 100% 50%; animation: moth-flap-l 6s ease-in-out infinite; }
.moth__wing--l img { left: 0; }
.moth__wing--r { right: 0; width: 49.85%; transform-origin: 0% 50%; animation: moth-flap-r 6s ease-in-out infinite; }
.moth__wing--r img { right: 0; width: calc(100% / .4985); }

/* Schlagfolge: zwei weiche Schläge, dann langes Gleiten mit leichtem „Atmen" */
@keyframes moth-flap-l {
  0% { transform: rotateY(0deg); }
  9% { transform: rotateY(30deg); }
  18% { transform: rotateY(4deg); }
  27% { transform: rotateY(26deg); }
  38% { transform: rotateY(3deg); }
  58% { transform: rotateY(11deg); }
  78% { transform: rotateY(2deg); }
  90% { transform: rotateY(8deg); }
  100% { transform: rotateY(0deg); }
}
@keyframes moth-flap-r {
  0% { transform: rotateY(0deg); }
  9% { transform: rotateY(-30deg); }
  18% { transform: rotateY(-4deg); }
  27% { transform: rotateY(-26deg); }
  38% { transform: rotateY(-3deg); }
  58% { transform: rotateY(-11deg); }
  78% { transform: rotateY(-2deg); }
  90% { transform: rotateY(-8deg); }
  100% { transform: rotateY(0deg); }
}
/* Flugbahn: ruhige, unregelmäßige Schleife mit leichter Neigung in die Kurven */
@keyframes moth-drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  12% { transform: translate3d(-4%, -4%, 0) rotate(-4deg); }
  26% { transform: translate3d(-7%, 1%, 0) rotate(-2deg); }
  40% { transform: translate3d(-3%, 3.5%, 0) rotate(1.5deg); }
  54% { transform: translate3d(2.5%, -2%, 0) rotate(3.5deg); }
  68% { transform: translate3d(6.5%, -5%, 0) rotate(5deg); }
  82% { transform: translate3d(5%, 2%, 0) rotate(1deg); }
  92% { transform: translate3d(1.5%, -1.5%, 0) rotate(-2deg); }
}
@media (prefers-reduced-motion: reduce) { .moth, .moth__flight, .moth__wing { animation: none !important; transform: none !important; } }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: clamp(20px, 3vw, 34px); }
.countdown { display: flex; justify-content: center; gap: clamp(14px, 3vw, 34px); margin-top: 22px; font-family: var(--f-display); }
.countdown div { min-width: 64px; }
.countdown b { display: block; font-size: clamp(30px, 4vw, 46px); color: var(--mustard); line-height: 1; font-variant-numeric: tabular-nums; }
.countdown span { font-family: var(--f-body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); }

/* ---------- Sections ---------- */
.section { padding: clamp(40px, 5.5vw, 72px) 0; position: relative; }
.section + .section::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(80%, 700px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}
.lead { max-width: 720px; margin: 0 auto; text-align: center; font-size: clamp(17px, 1.8vw, 20px); color: var(--ink); }

/* ---------- Line-up ---------- */
.lineup-names {
  text-align: center; font-family: var(--f-display); font-weight: 700; color: var(--orange);
  font-size: clamp(24px, 3.6vw, 44px); line-height: 1.25; max-width: 1000px; margin: 0 auto clamp(28px, 4vw, 48px);
  font-variation-settings: "SOFT" 100, "WONK" 0;
}
.lineup-names .dot { color: var(--purple-lt); }
.lineup-names .more { display: block; font-size: .6em; color: var(--ink); font-style: italic; margin-top: .4em; font-weight: 500; }
.bands { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 3vw, 34px); list-style: none; margin: 0; padding: 0; }
@media (max-width: 720px) { .bands { grid-template-columns: 1fr; } }
.band { position: relative; }
.band__card { display: block; border-radius: 6px; overflow: hidden; transition: transform .25s ease, filter .25s ease; }
.band__card img { width: 100%; aspect-ratio: 1000 / 658; object-fit: cover; }
@media (hover: hover) { .band__card:hover { transform: translateY(-4px) rotate(-.4deg); filter: drop-shadow(0 12px 30px rgba(104,82,139,.45)); } }
.band__meta { display: flex; justify-content: center; gap: 16px; margin-top: 8px; font-size: 14px; }
.band__meta a { color: var(--ink-dim); text-decoration: none; display: inline-flex; gap: 6px; align-items: center; }
.band__meta a:hover { color: var(--mustard); }
.band__meta svg { width: 16px; height: 16px; }

.lineup-teaser { text-align: center; max-width: 760px; margin: 0 auto; }
.lineup-teaser p { font-size: clamp(18px, 2vw, 22px); }
.lineup-teaser .big { font-family: var(--f-display); color: var(--mustard); font-size: clamp(30px, 4.6vw, 56px); line-height: 1.1; margin: .2em 0 .4em; font-weight: 700; }

.poster-link { display: block; max-width: 460px; margin: clamp(32px, 4vw, 50px) auto 0; text-align: center; color: var(--ink-dim); text-decoration: none; font-size: 14px; }
.poster-link img { border-radius: 6px; margin-bottom: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }

/* ---------- Consent / Embeds ---------- */
.embed { position: relative; border: 1px solid rgba(164,143,207,.35); border-radius: var(--radius); background: rgba(36,38,37,.85); overflow: hidden; }
.embed__gate { padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 48px); text-align: center; }
.embed__gate h3 { color: var(--mustard); font-size: clamp(24px, 3vw, 32px); }
.embed__gate p { color: var(--ink-dim); font-size: 15px; max-width: 560px; margin: 0 auto 20px; }
.embed__gate label { display: inline-flex; gap: 8px; align-items: center; font-size: 14px; color: var(--ink-dim); margin-top: 14px; cursor: pointer; }
.embed__alt { display: block; margin-top: 14px; font-size: 14px; }
.embed iframe { display: block; width: 100%; border: 0; }
.embed--video { aspect-ratio: 16 / 9; }
.embed--video .embed__gate { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(rgba(20,20,20,.55), rgba(20,20,20,.8)), var(--poster, none) center / cover; }
.embed--video iframe { height: 100%; }
.embed.is-loaded .embed__gate { display: none; }

/* ---------- Tickets ---------- */
.ticket-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0 0 28px; padding: 0; list-style: none; }
.ticket-facts li { background: rgba(36,38,37,.8); border: 1px solid rgba(104,82,139,.4); border-radius: var(--radius); padding: 18px 20px; font-size: 15px; color: var(--ink-dim); }
.ticket-facts b { display: block; font-family: var(--f-display); color: var(--ink); font-size: 20px; margin-bottom: 2px; }
@media (max-width: 760px) { .ticket-facts { grid-template-columns: 1fr; } }

/* ---------- Info / Accordion ---------- */
.info-grid { display: grid; gap: 14px; max-width: 900px; margin: 0 auto; }
details.acc { background: rgba(36,38,37,.8); border: 1px solid rgba(104,82,139,.4); border-radius: var(--radius); }
details.acc summary {
  list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--f-display); font-weight: 700; font-size: clamp(20px, 2.2vw, 25px); color: var(--ink);
}
details.acc summary::-webkit-details-marker { display: none; }
details.acc summary::after { content: "+"; color: var(--mustard); font-size: 28px; line-height: 1; transition: transform .2s; }
details.acc[open] summary::after { transform: rotate(45deg); }
details.acc .acc__body { padding: 0 22px 22px; color: var(--ink); }
.acc__body ul { padding-left: 1.1em; margin: .4em 0 1em; }
.acc__body li { margin: .25em 0; }
.acc__body h4 { font-family: var(--f-display); color: var(--orange-lt); font-size: 19px; margin: 1.1em 0 .3em; }
.times { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; margin: 12px 0; }
.times div { border-left: 2px solid var(--purple); padding: 2px 0 2px 12px; font-size: 15px; }
.times b { color: var(--mustard); font-family: var(--f-display); font-size: 17px; display: block; }
.note { font-size: 14px; color: var(--ink-dim); font-style: italic; }

/* ---------- Club Shows ---------- */
.shows { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(18px, 3vw, 30px); list-style: none; margin: 0; padding: 0; }
.show { background: rgba(36,38,37,.85); border: 1px solid rgba(104,82,139,.4); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.show__poster { aspect-ratio: 4 / 5; background: #141414; display: grid; place-items: center; overflow: hidden; }
.show__poster img { width: 100%; height: 100%; object-fit: cover; }
.show__poster--empty { background: radial-gradient(circle at 50% 40%, rgba(104,82,139,.5), transparent 65%), #151515; }
.show__poster--empty img { width: 60%; height: auto; object-fit: contain; opacity: .9; }
.show__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.show__date { font-family: var(--f-display); color: var(--mustard); font-size: 20px; font-weight: 700; }
.show__title { font-family: var(--f-display); font-size: 28px; color: var(--ink); margin: 0; line-height: 1.1; }
.show__support { color: var(--ink-dim); font-size: 15px; }
.show__venue { color: var(--purple-lt); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }
.show__body .btn { margin-top: auto; align-self: flex-start; }
.show__body .spacer { flex: 1; min-height: 10px; }
.show__tag { display: inline-block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #1a1410; background: var(--orange-lt); padding: 3px 9px; border-radius: 999px; align-self: flex-start; }
.shows--past .show { opacity: .72; }
.shows--past .show__poster { aspect-ratio: 1; }
.shows--past .show__title { font-size: 22px; }
.club-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 60px); align-items: center; }
.club-teaser .show { max-width: 380px; justify-self: center; width: 100%; }
@media (max-width: 800px) { .club-teaser { grid-template-columns: 1fr; text-align: center; } .club-teaser .btn { margin: 0 auto; } }
.club-teaser h2 { font-size: clamp(38px, 6vw, 70px); color: var(--orange); }

/* ---------- Contact ---------- */
.contacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; list-style: none; margin: 0; padding: 0; }
.contacts li { background: rgba(36,38,37,.8); border: 1px solid rgba(104,82,139,.4); border-radius: var(--radius); padding: 22px; }
.contacts h3 { color: var(--orange-lt); font-size: 22px; margin-bottom: .2em; }
.contacts p { margin: 0; color: var(--ink-dim); font-size: 15px; }
.contacts a { font-weight: 600; word-break: break-word; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid rgba(104,82,139,.4); padding: 44px 0 36px; margin-top: 16px; font-size: 15px; color: var(--ink-dim); }
.partners { width: min(100%, 640px); margin: 0 auto 44px; opacity: .95; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 30px; }
.footer__grid h4 { font-family: var(--f-display); color: var(--ink); font-size: 19px; margin: 0 0 .5em; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: 4px 0; }
.footer a { color: var(--ink-dim); }
.footer a:hover { color: var(--mustard); }
.socials { display: flex; gap: 14px; }
.socials a { display: inline-flex; width: 42px; height: 42px; border: 1px solid rgba(164,143,207,.5); border-radius: 50%; align-items: center; justify-content: center; }
.socials svg { width: 20px; height: 20px; }
.footer__small { margin-top: 36px; font-size: 13px; text-align: center; }
.footer__small button { background: none; border: 0; color: inherit; text-decoration: underline; cursor: pointer; font: inherit; padding: 0; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; text-align: center; } .socials { justify-content: center; } }

/* ---------- Unterseiten ---------- */
.page { padding: calc(var(--nav-h) + clamp(40px, 7vw, 80px)) 0 40px; }
.page--legal .wrap { max-width: 820px; }
.page--legal h1 { font-size: clamp(40px, 6vw, 64px); color: var(--orange); }
.page--legal h2 { font-size: 24px; color: var(--mustard); margin-top: 1.6em; }
.page--legal h3 { font-size: 19px; color: var(--ink); margin-top: 1.2em; }
.page--legal p, .page--legal li { color: var(--ink); }
.page--legal .meta { color: var(--ink-dim); font-size: 14px; }
.downloads { list-style: none; padding: 0; display: grid; gap: 12px; }
.downloads a { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 18px 22px; border: 1px solid rgba(104,82,139,.5); border-radius: var(--radius); background: rgba(36,38,37,.8); text-decoration: none; color: var(--ink); font-weight: 600; }
.downloads a span { color: var(--mustard); font-size: 14px; white-space: nowrap; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* Spotify-Player unter Bandkarte */
.band__player { margin-top: 8px; }
.band__player summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink-dim); padding: 6px 2px; }
.band__player summary::-webkit-details-marker { display: none; }
.band__player summary:hover, .band__player[open] summary { color: var(--mustard); }
.band__player summary svg { width: 18px; height: 18px; color: #1ed760; }
.band__player .embed { margin-top: 6px; }
.band__player .embed__gate { padding: 18px; }
.band__player .embed__gate p { margin-bottom: 12px; }
.band__player iframe { border-radius: 12px; }
.lineup-names .n { white-space: nowrap; }
@media (max-width: 600px) { .lineup-names .n { white-space: normal; } }

/* ---------- Ticketshop (direkt eingebunden) ---------- */
.ticket-shop { border: 1px solid rgba(164,143,207,.35); border-radius: var(--radius); background: rgba(36,38,37,.85); overflow: hidden; padding: 6px; }
.ticket-shop iframe { display: block; }
#tickets .section-kicker { font-style: normal; font-weight: 700; color: var(--mustard); font-size: clamp(19px, 2.4vw, 28px); }
.nowrap { white-space: nowrap; }

/* ---------- Club Shows: Venue + Archiv ---------- */
.venue { text-align: center; margin: 0 auto clamp(36px, 6vw, 60px); color: var(--ink-dim); }
.venue p { margin: .2em 0; }
.venue__name { font-family: var(--f-display); font-weight: 700; color: var(--purple-lt); font-size: clamp(20px, 2.4vw, 26px); }
.shows--past { display: block; max-width: 820px; margin: 0 auto; }
.past { display: grid; grid-template-columns: 220px 1fr; gap: 4px 20px; padding: 14px 0; border-bottom: 1px solid rgba(104,82,139,.35); }
.past__date { color: var(--mustard); font-family: var(--f-display); font-weight: 700; }
.past__title { font-family: var(--f-display); font-weight: 700; color: var(--ink); font-size: 20px; }
.past__support { grid-column: 2; color: var(--ink-dim); font-size: 15px; }
@media (max-width: 600px) { .past { grid-template-columns: 1fr; } .past__support { grid-column: 1; } }
@media (max-width: 700px) {
  .hero__moth { width: 84%; perspective: 650px; }
  .moth__flight { animation-name: moth-drift-m; }
}
/* Mobile Flugbahn: relativ zur kleineren Motte größer, damit man das Fliegen klar sieht */
@keyframes moth-drift-m {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  12% { transform: translate3d(-6%, -6%, 0) rotate(-5deg); }
  26% { transform: translate3d(-9%, 2%, 0) rotate(-2deg); }
  40% { transform: translate3d(-4%, 6%, 0) rotate(2deg); }
  54% { transform: translate3d(3%, -3%, 0) rotate(4deg); }
  68% { transform: translate3d(9%, -8%, 0) rotate(6deg); }
  82% { transform: translate3d(7%, 3%, 0) rotate(1deg); }
  92% { transform: translate3d(2%, -2%, 0) rotate(-3deg); }
}

/* Handy: etwas mehr Luft zwischen den Bereichen (Desktop bleibt kompakt) */
@media (max-width: 700px) {
  .section { padding: 64px 0; }
  .hero { padding-bottom: 44px; }
  .section-kicker { margin-bottom: 30px; }
  .lineup-names { margin-bottom: 40px; }
  .footer { margin-top: 32px; }
}
.lineup-countdown { margin: -.2em 0 .6em; color: var(--ink-dim); }
.lineup-countdown b { font-family: var(--f-display); color: var(--mustard); font-size: clamp(26px, 3.4vw, 40px); font-variant-numeric: tabular-nums; margin-left: .2em; }
