:root {
  /* Inspired by the cool steel-blue, warm silver and red balance of
     “The Colour and the Shape” — no album artwork is reproduced. */
  --ink: #101722;
  --ink-2: #182332;
  --slate: #35455d;
  --slate-deep: #233044;
  --steel: #65748a;
  --paper: #e7ded1;
  --paper-soft: #f2ebe1;
  --white: #fff9f1;
  --red: #d33b2e;
  --red-bright: #ff6550;
  --red-dark: #a9231d;
  --hero-accent: var(--red);
  --muted: #aab3bf;
  --line: rgba(231,222,209,.17);
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 24px 70px rgba(0,0,0,.28);
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}
body::selection { background: var(--red); color: white; }
:focus-visible { outline: 3px solid var(--red-bright); outline-offset: 4px; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
code { font-size: .9em; }
.shell { width: var(--shell); margin-inline: auto; }
.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; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: white; color: black; padding: 12px 18px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  top: 0;
  inset-inline: 0;
  z-index: 30;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.site-header.is-sticky { position: fixed; top: 0; background: rgba(16,23,34,.94); backdrop-filter: blur(18px); box-shadow: 0 8px 30px rgba(0,0,0,.25); }
.nav-wrap { min-height: 86px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand img { width: 50px; height: 50px; object-fit: contain; flex: 0 0 auto; }
.site-header .brand img, .subpage-header .brand img { transition: transform .2s ease, filter .2s ease; }
.site-header .brand:hover img, .subpage-header .brand:hover img { transform: rotate(-2deg) scale(1.04); filter: brightness(1.08); }
.brand-name { max-width: 116px; font-family: var(--font-display); font-size: 20px; font-weight: 400; font-synthesis: none; line-height: .92; letter-spacing: .025em; text-transform: uppercase; }
.site-nav { display: flex; justify-content: center; align-items: center; gap: 22px; }
.site-nav a { font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--red-bright); transition: right .2s; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.footer-social svg { width: 18px; height: 18px; flex: 0 0 auto; fill: currentColor; }
.menu-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px 0; background: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--red);
  background: var(--red);
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: #e65343; border-color: #e65343; }
.button-small { min-height: 42px; padding-inline: 18px; }
.button-outline { background: transparent; border-color: currentColor; }
.text-link { display: inline-flex; gap: 10px; align-items: center; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.play-icon { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 12px; }

.hero { min-height: 790px; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: saturate(.9) contrast(1.04); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,16,25,.97) 0%, rgba(16,23,34,.78) 45%, rgba(53,69,93,.16) 78%), linear-gradient(0deg, #101722 0%, transparent 25%); }
.hero-content { position: relative; z-index: 2; padding-top: 130px; }
.eyebrow { margin: 0 0 18px; color: var(--red-bright); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 400; font-synthesis: none; line-height: .92; text-transform: uppercase; letter-spacing: -.035em; }
h1 { max-width: 800px; font-size: clamp(86px, 12vw, 172px); }
h1 em { color: var(--hero-accent); font-style: normal; }
h2 { font-size: clamp(58px, 8vw, 102px); }
.hero-copy { max-width: 630px; margin: 28px 0 34px; color: #ded6ca; font-size: clamp(18px, 2vw, 24px); }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-stamp { position: absolute; right: 4vw; bottom: 70px; z-index: 2; width: 132px; height: 132px; display: grid; place-content: center; text-align: center; border: 2px solid rgba(255,255,255,.7); border-radius: 50%; transform: rotate(8deg); }
.hero-stamp::before { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(255,255,255,.35); border-radius: 50%; }
.hero-stamp span { font-family: var(--font-display); font-weight: 400; font-size: 42px; line-height: 1; }
.hero-stamp small { font-weight: 900; letter-spacing: .22em; }

.proof-strip {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(110deg, transparent 0 72%, rgba(231,222,209,.08) 72.2% 72.45%, transparent 72.7%),
    radial-gradient(circle at 82% 22%, rgba(231,222,209,.16) 0 18px, transparent 19px),
    #151f2d;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stats-grid > div { min-height: 155px; padding: 28px; display: grid; place-content: center; text-align: center; border-right: 1px solid var(--line); }
.stats-grid > div:last-child { border-right: 0; }
.stats-grid strong { font-family: var(--font-display); font-weight: 400; font-size: 54px; line-height: 1; color: white; }
.stats-grid strong span { color: var(--red-bright); font-size: .58em; }
.stat-established { font-size: 32px !important; letter-spacing: .08em; }
.stat-established span { display: block; margin-top: 3px; font-size: 1.25em !important; letter-spacing: .02em; }
.stats-grid > div > span { margin-top: 8px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.section { padding: 120px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 56px; }
.section-head > p { max-width: 410px; margin: 0 0 8px; color: #666970; }
.tour-section, .media-section { background: var(--paper); color: var(--ink); }
.tour-section .eyebrow, .media-section .eyebrow { color: var(--red-dark); }
.tour-list { border-top: 2px solid var(--ink); }
.tour-item { display: grid; grid-template-columns: 112px 1fr 260px; align-items: center; gap: 24px; min-height: 120px; padding: 20px 0; border-bottom: 1px solid rgba(16,23,34,.20); transition: background .2s ease; }
.tour-item:hover { background: rgba(211,59,46,.07); }
.tour-date { display: flex; align-items: center; gap: 10px; }
.tour-date strong { font-family: var(--font-display); font-weight: 400; font-size: 48px; line-height: 1; }
.tour-date span { font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.tour-city h3 { font-size: clamp(26px, 3vw, 42px); }
.tour-city p, .tour-venue { margin: 4px 0 0; color: #676a70; }
.tour-venue { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; font-weight: 650; font-size: 14px; }
.tour-venue b { color: var(--ink); }
.tour-venue em { display: inline-flex; margin-top: 5px; padding: 5px 9px; background: var(--red); color: white; font-size: 10px; font-style: normal; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.tour-footer { display: flex; justify-content: flex-end; align-items: center; gap: 18px; margin-top: 32px; }
.tour-footer p { margin: 0; color: #676a70; }
.tour-section .tour-footer .button-outline { color: var(--ink); border-color: var(--ink); }
.tour-section .tour-footer .button-outline:hover { color: white; background: var(--red); border-color: var(--red); }

.history-section {
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(118deg, transparent 0 27%, rgba(231,222,209,.08) 27.15% 27.42%, transparent 27.6%),
    linear-gradient(61deg, transparent 0 73%, rgba(231,222,209,.06) 73.12% 73.35%, transparent 73.55%),
    radial-gradient(circle at 11% 18%, rgba(231,222,209,.13) 0 22px, transparent 23px),
    radial-gradient(circle at 88% 76%, rgba(255,101,80,.13) 0 34px, transparent 35px),
    #253247;
}
.past-gigs-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.past-gig-card { min-height: 230px; box-shadow: inset 0 1px rgba(231,222,209,.07); padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; background: #151f2d; border: 1px solid var(--line); }
.past-gig-card::before { content: ""; position: absolute; width: 180px; height: 180px; right: -70px; top: -80px; border-radius: 50%; background: rgba(255,101,80,.17); filter: blur(6px); transition: transform .35s ease; }
.past-gig-card:hover::before { transform: scale(1.25); }
.past-gig-card p { margin: 0 0 auto; color: var(--red-bright); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.past-gig-card h3 { position: relative; font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 4vw, 56px); }
.past-gig-card strong { position: relative; margin-top: 10px; font-size: 16px; }
.past-gig-card span { position: relative; margin-top: 5px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.past-highlights-wrap { margin-top: 60px; padding-top: 46px; border-top: 1px solid var(--line); }
.past-highlights-wrap-standalone { margin-top: 0; padding-top: 0; border-top: 0; }
.past-highlights-toggle { display: none; margin: 24px auto 0; }
.past-highlights-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 26px; }
.past-highlights-head .eyebrow { margin-bottom: 8px; }
.past-highlights-head h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 5vw, 68px); }
.past-highlights-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.past-highlight { min-height: 92px; padding: 18px 20px; display: flex; align-items: center; gap: 16px; background: #182434; border: 1px solid var(--line); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.past-highlight:hover { transform: translateY(-2px); border-color: rgba(211,59,46,.68); background: #213047; }
.past-highlight-mark { color: var(--red-bright); font-size: 22px; }
.past-highlight strong, .past-highlight small { display: block; }
.past-highlight strong { line-height: 1.15; text-transform: uppercase; }
.past-highlight small { margin-top: 5px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.show-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(126deg, transparent 0 80%, rgba(231,222,209,.05) 80.15% 80.38%, transparent 80.6%),
    var(--ink);
}
.show-section::before { content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%; background: rgba(255,101,80,.12); filter: blur(110px); right: -200px; top: 80px; }
.split-grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: 90px; align-items: center; }
.lead { font-size: clamp(18px,2vw,24px); color: #cfc7bb; }
.feature-list { list-style: none; padding: 0; margin: 42px 0 0; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.feature-list span { color: var(--red-bright); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.poster-card { position: relative; transform: rotate(2deg); box-shadow: var(--shadow); }
.poster-card img { width: 100%; height: auto; aspect-ratio: 2 / 3; object-fit: cover; object-position: center; filter: saturate(.88) contrast(1.05); }
.poster-caption { position: absolute; left: -28px; right: 30px; bottom: -30px; padding: 20px 24px; background: var(--red); color: white; transform: rotate(-2deg); }
.poster-caption span, .poster-caption small { display: block; text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 800; }
.poster-caption strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 34px; letter-spacing: .02em; text-transform: uppercase; }

.band-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(116deg, transparent 0 33%, rgba(231,222,209,.10) 33.1% 33.34%, transparent 33.52%),
    linear-gradient(54deg, transparent 0 68%, rgba(231,222,209,.08) 68.1% 68.32%, transparent 68.5%),
    radial-gradient(circle at 9% 22%, rgba(231,222,209,.19) 0 28px, transparent 29px),
    radial-gradient(circle at 91% 68%, rgba(211,59,46,.22) 0 46px, transparent 47px),
    var(--slate);
}
.section-head-light .eyebrow { color: var(--red-bright); }
.section-head-light > p { color: rgba(255,255,255,.75); }
.band-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 14px; }
.member-card { position: relative; border: 1px solid rgba(231,222,209,.13); min-height: 480px; overflow: hidden; background: #172231; }
.member-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.96), transparent 58%); }
.member-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: saturate(.82) contrast(1.08); transition: transform .45s ease, filter .45s ease; }
.member-card:nth-child(2) img { object-position: center 34%; }
.member-card:nth-child(3) img { object-position: center 35%; }
.member-card:nth-child(4) img { object-position: center 38%; }
.member-card:nth-child(5) img { object-position: center 31%; }
.member-card:hover img { transform: scale(1.04); filter: saturate(1) contrast(1.05); }
.member-card > div { position: absolute; z-index: 2; inset: auto 24px 24px; }
.member-card p { margin: 0 0 4px; color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.band-section .member-card p { color: var(--red-bright); }
.member-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 48px; }
.member-card span { display: block; margin-top: 8px; color: #cfc7bb; font-size: 14px; }

.media-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr; grid-template-rows: 260px 260px; gap: 16px; }
.gallery-card { border: 0; padding: 0; background: #111a27; overflow: hidden; cursor: zoom-in; }
.gallery-card-tall { grid-row: 1 / 3; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.04); transition: transform .35s ease, filter .35s ease; }
.gallery-card-tall img { object-position: center 30%; }
.gallery-card:hover img { transform: scale(1.045); filter: saturate(1.06) contrast(1.1); }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: #172231; padding: 22px 0; }
.marquee div { width: max-content; font-family: var(--font-display); font-weight: 400; font-size: 30px; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.28); animation: marquee 22s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

.booking-section {
  background:
    radial-gradient(circle at 86% 16%, rgba(101,116,138,.17) 0 120px, transparent 121px),
    #172231;
}
.booking-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.contact-card { padding: 38px; background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.contact-kicker { margin: 0 0 10px; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.contact-card h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(38px, 5vw, 62px); }
.contact-list { margin: 30px 0; border-top: 1px solid rgba(16,23,34,.20); }
.contact-list > div { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 17px 0; border-bottom: 1px solid rgba(16,23,34,.20); }
.contact-list dt { color: #686b71; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-list dd { margin: 0; min-height: 1.4em; font-weight: 800; overflow-wrap: anywhere; }
.contact-empty { min-height: 1.4em; }
.contact-list a { color: var(--red-dark); }

.site-footer { padding: 62px 0 28px; background: #0a1019; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.footer-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.footer-grid nav { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.footer-social { display: inline-flex; align-items: center; gap: 7px; color: var(--red-bright); }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); color: #858e9a; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }

.lightbox { width: min(1000px, calc(100% - 32px)); padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(0,0,0,.9); backdrop-filter: blur(10px); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; background: #111a27; }
.lightbox button { position: absolute; right: -6px; top: -48px; border: 0; background: none; font-size: 38px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .header-cta { display: none; }
  .nav-wrap { grid-template-columns: auto auto; justify-content: space-between; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; left: 20px; right: 20px; display: none; padding: 24px; background: #172231; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; }
  .site-nav.is-open { display: flex; }
  .hero { min-height: 720px; }
  .hero-stamp { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid > div:nth-child(2) { border-right: 0; }
  .stats-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .tour-item { grid-template-columns: 92px 1fr; }
  .tour-venue { grid-column: 2; }
  .past-gigs-grid { grid-template-columns: repeat(2,1fr); }
  .past-highlights-grid { grid-template-columns: repeat(2,1fr); }
  .past-highlights-grid:not(.is-expanded) .past-highlight:nth-child(n+5) { display: none; }
  .past-highlights-toggle { display: inline-flex; }
  .split-grid, .booking-grid { grid-template-columns: 1fr; }
  .poster-card { max-width: 580px; margin-inline: auto; }
  .band-grid { grid-template-columns: repeat(2,1fr); }
  .member-card:last-child { grid-column: 1 / 3; }
  .media-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 260px; }
  .gallery-card-tall { grid-row: 2; }
  .gallery-card:last-child { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .section { padding: 82px 0; }
  .section-head { display: block; margin-bottom: 38px; }
  .section-head > p { margin-top: 18px; }
  .hero { min-height: 690px; }
  .hero-art { object-position: 61% center; }
  .hero-content { padding-top: 100px; }
  h1 { font-size: clamp(76px, 25vw, 116px); }
  h2 { font-size: clamp(50px, 15vw, 64px); }
  .hero-copy { font-size: 18px; }
  .stats-grid strong { font-size: 44px; }
  .stats-grid > div { min-height: 126px; padding: 18px 8px; }
  .tour-item { grid-template-columns: 84px 1fr; padding: 22px 0; }
  .tour-date strong { font-size: 38px; }
  .tour-venue { grid-column: 2; }
  .tour-footer { justify-content: space-between; }
  .past-gigs-grid { grid-template-columns: 1fr; }
  .past-highlights-head { display: block; }
  .past-highlights-grid { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: 1fr; }
  .member-card:last-child { grid-column: auto; }
  .member-card { min-height: 480px; }
  .media-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: 300px repeat(2,220px); }
  .gallery-card:last-child { display: block; }
  .contact-card { padding: 24px; }
  .contact-list > div { grid-template-columns: 1fr; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* Media- und Rechteseiten */
.legal-page { min-height: calc(100vh - 190px); background: var(--ink); }
.legal-copy { max-width: 760px; margin-top: 40px; color: #c6c0b7; }
.legal-copy a:not(.button) { color: var(--red-bright); text-decoration: underline; text-underline-offset: 3px; }
.subpage-header { border-bottom: 1px solid var(--line); background: #0a1019; }
.subpage-nav { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.press-hero { padding-top: 100px; background: radial-gradient(circle at 80% 18%, rgba(255,101,80,.13) 0 140px, transparent 141px), var(--ink); }
.press-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 70px; }
.press-hero h1 { font-size: clamp(82px, 12vw, 162px); }
.press-hero .lead a { color: var(--red-bright); text-decoration: underline; text-underline-offset: 4px; }
.press-downloads { background: var(--paper); color: var(--ink); }
.press-downloads .eyebrow { color: var(--red-dark); }
.download-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.download-card { overflow: hidden; border: 1px solid rgba(16,23,34,.18); box-shadow: 0 18px 45px rgba(16,23,34,.12); }
.download-preview { min-height: 360px; display: grid; place-items: center; padding: 54px; }
.download-preview img { width: min(290px, 78%); height: auto; object-fit: contain; }
.download-card-dark .download-preview { background: #111a27; }
.download-card-light .download-preview { background: #f6f0e8; }
.download-card-body { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 24px; background: var(--white); }
.download-card-body p { margin: 0 0 7px; color: #686b71; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.download-card-body h3 { font-family: var(--font-display); font-weight: 400; font-size: 34px; }
.press-photos { background: var(--slate); }
.press-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.press-note { padding: 34px; border: 1px solid rgba(231,222,209,.18); background: rgba(16,23,34,.35); }
.press-note p { color: rgba(255,255,255,.78); }
.press-note .text-link { margin-top: 16px; color: var(--red-bright); }
@media (max-width: 980px) {
  .press-hero-grid, .press-photo-grid { grid-template-columns: 1fr; gap: 42px; }
  .download-card-body { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 650px) {
  .subpage-nav .brand-name { display: none; }
  .press-hero { padding-top: 72px; }
  .download-grid { grid-template-columns: 1fr; }
  .download-preview { min-height: 260px; padding: 38px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Presseprofil */
.press-hero-copy > p:last-child { margin: 22px 0 0; color: rgba(255,255,255,.68); }
.press-profile {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, transparent 0 68%, rgba(231,222,209,.07) 68.1% 68.35%, transparent 68.5%),
    radial-gradient(circle at 91% 12%, rgba(255,101,80,.14) 0 46px, transparent 47px),
    var(--slate-deep);
}
.press-profile-head > p { color: rgba(255,255,255,.68); }
.press-profile-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: start; }
.press-story { max-width: 720px; }
.press-story > p { margin: 0 0 24px; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.75; }
.press-story blockquote {
  position: relative;
  margin: 38px 0;
  padding: 30px 34px 30px 74px;
  border-left: 4px solid var(--red-bright);
  background: rgba(16,23,34,.38);
}
.press-story blockquote span { position: absolute; left: 22px; top: 8px; color: var(--red-bright); font-family: Georgia, serif; font-size: 72px; line-height: 1; }
.press-story blockquote p { margin: 0; color: var(--white); font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 4vw, 46px); line-height: 1.05; letter-spacing: -.02em; text-transform: uppercase; }
.press-facts { border: 1px solid rgba(231,222,209,.2); background: rgba(16,23,34,.5); box-shadow: var(--shadow); }
.press-facts-block { padding: 34px; }
.press-facts-kicker { margin: 0 0 22px; color: var(--red-bright); font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.press-lineup { margin: 0; }
.press-lineup > div { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 15px 0; border-top: 1px solid rgba(231,222,209,.14); }
.press-lineup dt { font-weight: 850; color: var(--white); }
.press-lineup dd { margin: 0; color: var(--muted); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.press-base { padding: 30px 34px 34px; border-top: 1px solid rgba(231,222,209,.2); background: rgba(211,59,46,.12); }
.press-base span { display: block; color: var(--red-bright); font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.press-base strong { display: block; margin-top: 7px; color: var(--white); font-family: var(--font-display); font-weight: 400; font-size: 34px; line-height: 1; text-transform: uppercase; }
.press-base p { margin: 14px 0 0; color: rgba(255,255,255,.68); }

@media (max-width: 980px) {
  .press-profile-grid { grid-template-columns: 1fr; gap: 48px; }
  .press-facts { max-width: 720px; }
}
@media (max-width: 650px) {
  .press-story > p { font-size: 16px; }
  .press-story blockquote { padding: 26px 22px 26px 58px; }
  .press-story blockquote span { left: 16px; font-size: 58px; }
  .press-facts-block, .press-base { padding-inline: 24px; }
  .press-lineup > div { grid-template-columns: 1fr; gap: 3px; }
}


/* Veranstalterinformationen */
.organizer-info {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(211,59,46,.09) 0 90px, transparent 91px),
    linear-gradient(112deg, transparent 0 76%, rgba(16,23,34,.055) 76.1% 76.35%, transparent 76.5%),
    var(--paper-soft);
  color: var(--ink);
}
.organizer-info .eyebrow { color: var(--red-dark); }
.organizer-info-head > p { color: #5f6268; }
.organizer-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 22px; align-items: stretch; }
.organizer-card { position: relative; padding: 38px; border: 1px solid rgba(16,23,34,.16); box-shadow: 0 18px 48px rgba(16,23,34,.12); }
.organizer-card-offer { background: var(--white); }
.organizer-card-needs { background: var(--slate-deep); color: var(--white); border-color: rgba(231,222,209,.18); }
.organizer-kicker { margin: 0 0 14px; color: var(--red-dark); font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.organizer-card-needs .organizer-kicker { color: var(--red-bright); }
.organizer-card h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 4vw, 52px); line-height: .98; }
.organizer-list { list-style: none; padding: 0; margin: 30px 0 0; }
.organizer-list li { position: relative; padding: 16px 0 16px 34px; border-top: 1px solid rgba(16,23,34,.14); font-weight: 700; }
.organizer-list li::before { content: ""; position: absolute; left: 3px; top: 22px; width: 12px; height: 12px; background: var(--red); transform: rotate(45deg); }
.organizer-card-needs .organizer-list li { border-color: rgba(231,222,209,.16); color: rgba(255,255,255,.82); }
.organizer-card-needs .organizer-list li::before { background: var(--red-bright); }
.organizer-contact { margin-top: 30px; padding: 22px; border-left: 4px solid var(--red-bright); background: rgba(16,23,34,.42); }
.organizer-contact span { display: block; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.organizer-contact a { display: inline-block; margin-top: 7px; color: var(--white); font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3vw, 38px); line-height: 1; }
.organizer-contact a:hover { color: var(--red-bright); }

@media (max-width: 980px) {
  .organizer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .organizer-card { padding: 26px 22px; }
  .organizer-list li { padding-left: 30px; }
  .organizer-contact { padding: 19px; }
  .organizer-contact a { overflow-wrap: anywhere; }
}


/* Galerie und Pressefoto-Downloads */
.media-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 260px 260px 240px;
  gap: 16px;
}
.media-grid .gallery-card-featured {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}
.media-grid .gallery-card-tall {
  grid-column: 7 / 10;
  grid-row: 1 / 3;
}
.media-grid .gallery-card:nth-of-type(3) {
  grid-column: 10 / 13;
  grid-row: 1;
}
.media-grid .gallery-card:nth-of-type(4) {
  grid-column: 10 / 13;
  grid-row: 2;
}
.media-grid .gallery-card:nth-of-type(5) {
  grid-column: 1 / 5;
  grid-row: 3;
}
.media-grid .gallery-card:nth-of-type(6) {
  grid-column: 5 / 9;
  grid-row: 3;
}
.media-grid .gallery-card:nth-of-type(7) {
  grid-column: 9 / 13;
  grid-row: 3;
}
.media-grid .gallery-card-featured img { object-position: center 42%; }
.media-grid .gallery-card-tall img { object-position: center 44%; }
.media-grid .gallery-card:nth-of-type(3) img { object-position: center 38%; }
.media-grid .gallery-card:nth-of-type(4) img { object-position: center 42%; }
.media-grid .gallery-card:nth-of-type(5) img { object-position: center 56%; }
.media-grid .gallery-card:nth-of-type(6) img { object-position: center 24%; }
.media-grid .gallery-card:nth-of-type(7) img { object-position: center 45%; }

.press-photos-head > p { color: rgba(255,255,255,.72); }
.press-photo-download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.press-photo-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(231,222,209,.18);
  background: rgba(16,23,34,.55);
  box-shadow: var(--shadow);
}
.press-photo-card > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
}
.press-photo-card-portrait > img { object-position: center 24%; }
.press-photo-card > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
  padding: 22px;
}
.press-photo-card p {
  grid-column: 1 / -1;
  margin: 0 0 -5px;
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.press-photo-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}
.press-photo-card .button { white-space: nowrap; }
.press-photo-note {
  margin-top: 24px;
  padding: 24px 28px;
  border-left: 4px solid var(--red);
  background: rgba(16,23,34,.42);
}
.press-photo-note p { margin: 0; color: rgba(255,255,255,.72); }
.press-photo-note a { color: var(--red-bright); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 980px) {
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 400px;
    grid-auto-rows: 250px;
  }
  .media-grid .gallery-card-featured {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .media-grid .gallery-card-tall,
  .media-grid .gallery-card:nth-of-type(3),
  .media-grid .gallery-card:nth-of-type(4),
  .media-grid .gallery-card:nth-of-type(5),
  .media-grid .gallery-card:nth-of-type(6),
  .media-grid .gallery-card:nth-of-type(7) {
    grid-column: auto;
    grid-row: auto;
    display: block;
  }
  .press-photo-download-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 650px) {
  .media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 300px;
    grid-auto-rows: 230px;
  }
  .media-grid .gallery-card-featured,
  .media-grid .gallery-card-tall,
  .media-grid .gallery-card:nth-of-type(3),
  .media-grid .gallery-card:nth-of-type(4),
  .media-grid .gallery-card:nth-of-type(5),
  .media-grid .gallery-card:nth-of-type(6),
  .media-grid .gallery-card:nth-of-type(7) {
    grid-column: 1;
    grid-row: auto;
  }
  .media-grid .gallery-card { min-height: 0; }
  .press-photo-download-grid { grid-template-columns: 1fr; }
  .press-photo-card > div { align-items: start; grid-template-columns: 1fr; }
  .press-photo-card .button { justify-self: start; }
}

/* Struktur für ausführliche Rechtstexte */
.legal-copy h3 {
  margin: 34px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 400;
  letter-spacing: .01em;
}
.legal-copy p { line-height: 1.7; }
.legal-copy code { overflow-wrap: anywhere; }
.legal-date { color: var(--muted); font-size: 13px; }
.legal-placeholder { color: var(--white); font-weight: 700; }
.legal-note {
  margin-top: 38px;
  padding: 18px 20px;
  border: 1px solid rgba(255,101,80,.45);
  background: rgba(211,59,46,.1);
  color: #e7ded1;
}
