:root{
  --bg: #0b0b0b;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.22);
  --accent: #d1ab2f;
  --accent2: #f2e4b8;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
}

html,
body{
  height:100%;
}

html{
  scroll-behavior: smooth;
}

body{
  margin:0;
  color: var(--text);
  background: var(--bg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .2px;
  padding-top: 0;
}

/* Rauch + Vignette */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;

  background:
    linear-gradient(rgba(0,0,0,.20), rgba(0,0,0,.20)),
  linear-gradient(rgba(255,140,0,.05), rgba(0,0,0,0)),
    url("../img/bg-smoke.png") center 40% / auto 110% no-repeat;
}

body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background: radial-gradient(
    1200px 700px at 50% 30%,
    rgba(0,0,0,0),
    rgba(0,0,0,.45)
  );
}

main{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

h1,
h2,
h3{
  margin: 0 0 14px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

hr.sep{
  border:0;
  height:1px;
  background:linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,.12),
    rgba(255,255,255,.12),
    transparent
  );
  margin:48px 0;
}

.panel{
  padding: 18px 0;
}

.section{
  scroll-margin-top: var(--scroll-offset, 120px);
}

.kicker{
  color: var(--muted);
  margin-top: 6px;
}

.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;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-sizing: border-box;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  color: var(--text);
  text-decoration:none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  transition: transform .18s ease, opacity .18s ease;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn--accent{
  background: var(--accent);
  color: #1a1a1a;
  border-color: var(--accent);
}

.btn--ghost{
  background: transparent;
}

/* Allgemeine Cards */
.card{
  background: rgba(0,0,0,.28);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
}

/* Grids / Foto-Kacheln */
.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 900px){
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px){
  .grid{ grid-template-columns: 1fr; }
}

.photo{
  display:block;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow:hidden;
  text-decoration:none;
  color: var(--text);
  background: rgba(0,0,0,.25);
}

.photo img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo__cap{
  padding: 10px 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .9;
}

/* Modal allgemein nur behalten, falls anderswo noch genutzt */
.modal{
  display:none;
}

.modal--open{
  display:block;
}

.modal__backdrop{
  position: fixed;
  inset:0;
  background: rgba(0,0,0,.75);
}

.modal__panel{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  background: rgba(0,0,0,.75);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px;
  overflow: auto;
  z-index: 9999;
}

.modal__close{
  margin-bottom: 10px;
}

/* Optional alter Teaser-Container */
.video-teaser{
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}

.video-teaser:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.video-teaser img{
  display:block;
  width:100%;
  height:auto;
}

/* Self-hosted video two-click */
.sv2{
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0,0,0,.35);
}
.sv2::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width:220%;
  height:180%;

  background:
    linear-gradient(
      110deg,
      rgba(255,160,0,0) 35%,
      rgba(255,160,0,.18) 45%,
      rgba(255,160,0,0) 55%
    );

  transform: translateX(-40%);
  transition: transform .9s ease;

  pointer-events:none;
}

.sv2:hover::before{
  transform: translateX(40%);
}
.sv2__btn{
  position: relative;
  width:100%;
  height:100%;
  padding:0;
  border:0;
  background: transparent;
  cursor: pointer;
  display:block;
}

.sv2__thumb{
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

/* Bühnenlicht-Overlay */
.sv2__thumb::after{
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.55),
      rgba(0,0,0,.15)
    ),
    linear-gradient(
      to bottom,
      rgba(255,140,0,.08),
      rgba(0,0,0,0)
    );

  pointer-events: none;
}

.sv2{
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0,0,0,.35);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.sv2__thumb--ph{
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--muted);
  background: rgba(0,0,0,.25);
}

.sv2__play{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width:84px;
  height:84px;
  border-radius:999px;
  background: rgba(0,0,0,.55);
}

.sv2__play::after{
  content:"";
  position:absolute;
  left:34px;
  top:26px;
  width:0;
  height:0;
  border-left:26px solid rgba(255,255,255,.95);
  border-top:16px solid transparent;
  border-bottom:16px solid transparent;
}

.sv2__note{
  position:absolute;
  left:12px;
  right:12px;
  bottom:10px;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(0,0,0,.45);
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 11px;
}

/* Albums */
.albums{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 900px){
  .albums{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 389px){
  .albums{ grid-template-columns: 1fr; }
}

.album-card{
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0,0,0,.25);
}

.album-cover img{
  width: 100%;
  height: auto;
  display:block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.album-cover__ph{
  aspect-ratio: 1 / 1;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--muted);
  background: rgba(0,0,0,.25);
}

.album-body{
  padding: 12px;
}

.album-title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.album-meta{
  margin-top: 6px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.album-year{
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .6px;
}

.album-badge{
  display:inline-block;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  font-size: 11px;
  background: rgba(0,0,0,.18);
}

.album-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.album-links .btn{
  min-width:120px;
  justify-content:center;
}

.album-soon{
  margin-top: 12px;
  display:inline-block;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  font-size: 12px;
  background: rgba(0,0,0,.18);
}

/* Live */
.shows{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.show-card{
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(0,0,0,.25);
  overflow: hidden;
}

.show-card__top{
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 12px;
}

.show-card__date{
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.show-card__place{
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.show-card__cta{
  display:flex;
  justify-content:flex-end;
}

.show-card__media{
  padding: 0 14px 14px;
}

/* YouTube two-click */
.yt2{
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow:hidden;
  background: rgba(0,0,0,.35);
}

.yt2__btn{
  position: relative;
  width:100%;
  padding:0;
  border:0;
  background: transparent;
  cursor: pointer;
  display:block;
}

.yt2__thumb{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05);
}

.yt2__play{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width:84px;
  height:84px;
  border-radius:999px;
  background: rgba(0,0,0,.55);
}

.yt2__play::after{
  content:"";
  position:absolute;
  left:34px;
  top:26px;
  width:0;
  height:0;
  border-left:26px solid rgba(255,255,255,.95);
  border-top:16px solid transparent;
  border-bottom:16px solid transparent;
}

.yt2__note{
  position:absolute;
  left:12px;
  right:12px;
  bottom:10px;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(0,0,0,.45);
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 11px;
}

/* Media */
.media-grid{
  display:grid;
  gap: 14px;
}

.media-grid--video{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 720px){
  .media-grid--video{ grid-template-columns: 1fr; }
}

.media-grid--photo{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px){
  .media-grid--photo{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px){
  .media-grid--photo{ grid-template-columns: 1fr; }
}

.media-card{
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow:hidden;
  background: rgba(0,0,0,.25);
}

.media-card__media{
  padding: 12px;
}

.media-card__cap{
  padding: 0 12px 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .9;
}

.media-photo{
  display:block;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow:hidden;
  background: rgba(0,0,0,.25);
  text-decoration:none;
  color: var(--text);
}

.media-photo img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-photo__cap{
  padding: 10px 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .9;
}

/* Footer */
.footer{
  margin-top:60px;
  padding:40px 20px;
  border-top:1px solid var(--line);
}

.footer__inner{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.footer__legal{
  margin-bottom:14px;
  font-size:14px;
}

.footer__legal a{
  text-decoration:none;
  color:var(--muted);
}

.footer__legal a:hover{
  color:var(--text);
}

.footer__sep{
  margin:0 8px;
}

.legal-card{
  margin: 0 auto 18px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(0,0,0,.25);
  padding: 14px;
  max-width: 1100px;
  overflow: hidden;
}

.legal-card__top{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.legal-card__title{
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  min-width: 0;
}

.footer__social{
  margin-bottom:18px;
}

.footer__social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,.04);
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.footer__social-link:hover{
  border-color: var(--accent);
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.footer__social-link svg{
  opacity:.85;
}

.footer__copy{
  font-size:12px;
  color:var(--muted);
  letter-spacing:.6px;
}
.epk-card__head{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}


.photo-select{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.photo-select__toggle{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  letter-spacing:.4px;
}

.photo-select__toggle input{
  margin:0;
}

#downloadSelectedPhotos:disabled{
  opacity:1;
  cursor:not-allowed;
  transform:none;
  color: rgba(255,255,255,.5);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.02);
}

/* ausgewählte Pressefotos */
.photo-select.selected .photo{
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 24px rgba(0,0,0,.45);
}

.photo-select.selected .photo img{
  filter: contrast(1.05) saturate(1.05);
}

.photo-select.selected .photo__cap{
  color: var(--accent2);
}
.resume-hint{
  position:absolute;
  left:12px;
  right:12px;
  top:12px;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,.55);
  color: var(--muted);
  font-weight:800;
  letter-spacing:.8px;
  text-transform: uppercase;
  font-size:11px;
  opacity:0;
  pointer-events:auto;
  cursor:pointer;
  transition: opacity .2s ease;
}

.resume-hint.is-visible{
  opacity:1;
}
.news-timeline{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 6px;
}

.news-timeline::before{
  content:"";
  position:absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}

.news-item{
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
}

.news-item__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 6px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(11,11,11,.9);
}

.news-item__content{
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(0,0,0,.25);
  padding: 12px 14px;
}

.news-item__date{
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.news-item__title{
  margin: 6px 0 8px;
  font-size: 18px;
}

.news-item__excerpt p{
  margin: 0;
  color: var(--muted);
}

.news-more{
  margin-top: 24px;
  text-align: center;
}

.news-more__text{
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .6px;
  margin-bottom: 10px;
}

.news-more__socials{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.news-social{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:var(--radius-sm);
  font-size:13px;
  text-decoration:none;
  color:var(--text);
  background:rgba(0,0,0,.25);
}

.news-social:hover{
  border-color:var(--accent);
  color:var(--accent2);
}

.news-social svg{
  opacity:.85;
}
.section h2{
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 26px;
  position: relative;
}
.section h2{
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:120%;
  height:2px;
  background:linear-gradient(
    to right,
    var(--accent),
    rgba(255,255,255,.15)
  );
}

.booking-contact{
  margin-top:18px;
  font-size:18px;
  font-weight:700;
  letter-spacing:.4px;
}

.booking-contact a{
  color:var(--accent2);
  text-decoration:none;
}

.booking-contact a:hover{
  text-decoration:underline;
}

.booking-sep{
  margin:0 10px;
  color:var(--muted);
}
.booking-references{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 640px){
  .booking-references{
    grid-template-columns: 1fr;
  }
}

.booking-reference{
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(0,0,0,.18);
  padding: 12px;
}

.booking-reference__title{
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.booking-reference__meta{
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.booking-facts{
  margin-top:16px;
}

.booking-facts__list{
  list-style:none;
  padding:0;
  margin:10px 0 0;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px 18px;
}

@media (max-width:700px){
  .booking-facts__list{
    grid-template-columns:1fr;
  }
}

.booking-facts__list li{
  border-bottom:1px solid var(--line);
  padding-bottom:6px;
  color:var(--muted);
}
.booking-logo-strip{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}

@media (max-width:900px){
  .booking-logo-strip{
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

@media (max-width:640px){
  .booking-logo-strip{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

.booking-logo{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:6px;
  min-height:124px;
  padding:12px;
  border:1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(0,0,0,.18);
  text-decoration:none;
  text-align:center;
  transition: border-color .18s ease, transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.booking-logo:hover{
  border-color: var(--accent);
  transform: translateY(-1px);
  background: rgba(0,0,0,.24);
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
}

.booking-logo__title{
  display:block;
  font-weight:800;
  letter-spacing:.5px;
  line-height:1.2;
  color:var(--text);
}

.booking-logo__media{
  flex:1 1 auto;
  min-height:72px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.booking-logo img{
  max-width:100%;
  max-height:68px;
  width:auto;
  height:auto;
  display:block;
  object-fit: contain;
  opacity:1;
  filter:none;
}

.booking-logo__fallback{
  font-weight:900;
  letter-spacing:.8px;
  text-transform:uppercase;
  color: var(--muted);
  text-align:center;
  line-height:1.2;
}

@media (max-width:640px){
  .booking-logo{
    min-height:116px;
    padding:12px 10px;
  }

  .booking-logo__title{
    font-size:.95rem;
  }

  .booking-logo img{
    max-height:60px;
  }
}
.booking-facts{
  margin-top:16px;
}

.booking-facts__grid{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}

@media (max-width:700px){
  .booking-facts__grid{
    grid-template-columns:1fr;
  }
}

.booking-fact{
  border:1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(0,0,0,.18);
  padding:12px 14px;
}

.booking-fact__label{
  color: var(--muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.booking-fact__value{
  margin-top:6px;
  font-weight:800;
  letter-spacing:.2px;
  line-height:1.35;
}

 
.video-stack{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.band-intro{
  width:100%;
  max-width:none;
  box-sizing:border-box;
}

.band-intro p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.55;
}

.band-intro__actions{
  margin-top:16px;
  display:flex;
  gap:36px;
  flex-wrap:wrap;
}

.band-intro p{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.band-intro--dock{
  position: relative;
  margin: -12px 0 0 auto;
  width: min(720px, calc(100% - 40px));
  z-index: 2;
  box-shadow: 0 14px 36px rgba(0,0,0,.32);
  border-top: 3px solid var(--accent);
box-shadow:
  0 14px 36px rgba(0,0,0,.32),
  0 0 12px rgba(255,200,0,.15);
}

@media (max-width: 760px){
  .band-intro--dock{
    margin: 14px 0 0;
    width: 100%;
  }
}
.band-members{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

@media (max-width: 980px){
  .band-members{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .band-members{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
  }
}

@media (max-width: 389px){
  .band-members{
    grid-template-columns:1fr;
  }
}

.band-member{
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(0,0,0,.22);
  overflow: hidden;
}

.band-member__media{
  background: rgba(0,0,0,.2);
}

.band-member__media img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.band-member__ph{
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: rgba(0,0,0,.25);
  font-weight: 700;
  letter-spacing: .4px;
}

.band-member__body{
  padding: 14px;
}

.band-member__name{
  margin: 0;
  font-size: 20px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.band-member__role{
  margin-top: 6px;
  color: var(--accent2);
  font-weight: 800;
  letter-spacing: .4px;
}

.band-member__bio{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}
.band-lead{
  max-width: 820px;
  margin-bottom: 18px;
}

.band-lead p,
.band-lead .cms p{
  color: var(--muted);
  line-height: 1.6;
}

.band-bio{
  margin-top: 18px;
  scroll-margin-top: calc(var(--scroll-offset, 120px) + 12px);
}

.band-bio__toggle{
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  cursor: pointer;
}

.band-bio__toggle::after{
  content: "+";
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.band-bio.is-open .band-bio__toggle::after{
  content: "–";
}

.band-bio__content{
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  transition:
    grid-template-rows .42s cubic-bezier(.22,.61,.36,1),
    opacity .22s ease,
    margin-top .42s cubic-bezier(.22,.61,.36,1),
    padding-top .42s cubic-bezier(.22,.61,.36,1);
}

.band-bio.is-open .band-bio__content{
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 14px;
  padding-top: 14px;
}

.band-bio__inner{
  min-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
}

.band-bio.is-open .band-bio__inner{
  border-top: 1px solid var(--line);
}

.band-bio__close{
  margin-top: 18px;
  text-align: right;
}

.band-bio__closebtn{
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  letter-spacing: .6px;
  cursor: pointer;
}

.ref-subline{
  margin-top: 4px;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.ref-grid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 480px) {
  .ref-grid {
    grid-template-columns: 1fr;
  }
}

.ref-card{
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.08)),
    rgba(0,0,0,.22);
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.ref-card:hover{
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(0,0,0,.32);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.10)),
    rgba(0,0,0,.26);
}

.ref-card__inner{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap:18px;
  align-items:center;
  padding:18px;
  min-height:150px;
  text-decoration:none;
  color:inherit;
}

@media (max-width: 560px){
  .ref-card__inner{
    grid-template-columns: 1fr;
    gap:14px;
  }
}

.ref-card__logo{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:72px;
}

.ref-card__logo img{
  max-width:100%;
  max-height:56px;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
  filter: grayscale(1) brightness(1.08);
  opacity:.95;
}

.ref-card:hover .ref-card__logo img{
  filter: grayscale(.15) brightness(1.02);
  opacity:1;
}

.ref-card__logo-fallback{
  font-weight:900;
  letter-spacing:.8px;
  text-transform:uppercase;
  color:var(--muted);
  text-align:center;
  line-height:1.2;
}

.ref-card__content{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.ref-card__name{
  font-size:24px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
}

.ref-card__meta{
  color:var(--muted);
  font-size:14px;
  font-weight:700;
  letter-spacing:.3px;
}

.ref-card__link{
  margin-top:6px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--accent2);
  font-weight:800;
  letter-spacing:.4px;
}

.ref-card__link::after{
  content:"→";
  font-size:16px;
  line-height:1;
}


.show-card__title{
  margin: 6px 0 0;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.show-card__text{
  margin-top: 10px;
}

.show-card__text p:first-child{
  margin-top: 0;
}

.show-card__text p:last-child{
  margin-bottom: 0;
}
.shows-group + .shows-group{
  margin-top: 42px;
}

.shows-group__title{
  margin: 0 0 18px;
}

.shows--past .show-card{
  opacity: .95;
}
.shows-group + .shows-group{
  margin-top: 42px;
}

.shows-group__title{
  margin: 0 0 18px;
}


.music-group + .music-group{
  margin-top: 42px;
}

.album-cover__placeholder{
  width: 100%;
  aspect-ratio: 1 / 1;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 16px;
  color: var(--muted);
  background: rgba(0,0,0,.25);
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.album-links{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.album-links .btn{
  width: 100%;
  justify-content: center;
  text-align: center;
}

.album-links .btn:only-child{
  grid-column: 1 / -1;
}

@media (max-width: 420px){
  .album-links{
    grid-template-columns: 1fr;
  }
}

.album-links{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.album-link{
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
}

.album-link:hover{
  background: rgba(255,255,255,.08);
}

.album-link img{
  max-width: 58%;
  max-height: 58%;
  width: auto;
  height: auto;
  display: block;
}

.album-link__text{
  font-size: 11px;
  line-height: 1.1;
  text-align: center;
  padding: 4px;
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
}

@media (max-width: 420px){
  .album-link{
    width: 48px;
    height: 48px;
  }

  .album-link img{
    max-width: 24px;
    max-height: 24px;
  }
}

.album-link{
  border: 1px solid var(--accent);
  background: rgba(255,255,255,.04);
}

.album-link:hover{
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 1px var(--accent) inset;
}
.band-lead{
  max-width: 900px;
  margin-bottom: 24px;
  font-size: 1.06rem;
}

.band-lead p,
.band-lead .cms p{
  color: var(--text);
  line-height: 1.7;
}

.band-lead p:first-child,
.band-lead .cms p:first-child{
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--text);
}

.band-lead::after{
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin-top: 16px;
  background: linear-gradient(to right, var(--accent), transparent);
}
.band-bio-toggle{
  margin: 0 0 22px;
}

.band-bio-toggle__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.band-bio-toggle__icon{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.band-bio-card{
  margin: 0 0 28px;
}

.band-bio-card__inner{
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

.band-bio-card__content p:first-child{
  margin-top: 0;
}

.band-bio-card__content p:last-child{
  margin-bottom: 0;
}

.band-bio-card__actions{
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 640px){
  .band-bio-card__inner{
    padding: 18px;
  }

  .band-bio-card__actions{
    justify-content: stretch;
  }

  .band-bio-card__actions .btn{
    width: 100%;
    justify-content: center;
  }
}
.legal-card__body{
  color: var(--text);
}

.legal-card__body p:first-child{
  margin-top: 0;
}

.legal-card__body p:last-child{
  margin-bottom: 0;
}

.photo{
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  width: 100%;
  text-align: inherit;
  cursor: pointer;
}


.epk-lightbox__media img{
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 12px;
}


.news-item__title{
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .2px;
}

.news-item__title a{
  color: var(--text);
  text-decoration: none;
}

.news-item__title a:hover{
  color: var(--accent);
}

.news-item__excerpt{
  margin-top: 6px;
  color: var(--text);
}

.news-item__excerpt p{
  margin: 0;
  line-height: 1.6;
}

.news-item__date{
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .3px;
}
.media-groups{
  display: grid;
  gap: 18px;
}

.media-group__head{
  margin-bottom: 14px;
}

.media-group__title{
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .3px;
}

.media-group__text{
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.media-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.media-tile{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  cursor: pointer;
}

.media-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-tile__ph{
  width: 100%;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--text);
  font-weight: 700;
}

.media-tile__play{
  position: absolute;
  inset: auto auto 12px 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(0,0,0,.65);
  border: 1px solid rgba(255,255,255,.2);
}

.media-tile__play::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-40%, -50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
}

.media-lightbox{
  position: fixed;
  inset: 0;
  z-index: 1300;
}

.media-lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.50);
  backdrop-filter: blur(2px);
}

.media-lightbox__dialog{
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  margin: 12px auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10,10,10,.96);
  overflow: auto;
}

.media-lightbox__close{
  position: sticky;
  top: 0;
  margin-left: auto;
  display:flex;
  align-items:center;
  justify-content:center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.media-lightbox__body{
  margin-top: 8px;
}

.media-lightbox__body img,
.media-lightbox__body iframe{
  display: block;
  width: 100%;
  max-height: calc(100vh - 180px);
  border: 0;
  border-radius: 12px;
}

.media-lightbox__body img{
  object-fit: contain;
  height: auto;
}

.media-lightbox__body iframe{
  aspect-ratio: 16 / 9;
}

.media-lightbox__caption{
  margin-top: 12px;
  color: var(--text);
  font-weight: 700;
}

body.media-lightbox-open{
  overflow: hidden;
}

@media (max-width: 900px){
  .media-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .media-grid{
    grid-template-columns: 1fr;
  }
}
.media-groups{
  display:grid;
  gap:18px;
}

.media-group{
  scroll-margin-top: calc(var(--scroll-offset, 120px) + 8px);
}

.media-group--highlight{
  box-shadow: 0 0 0 1px var(--accent) inset, 0 0 28px rgba(255,255,255,.06);
}

.media-group__head{
  margin-bottom:14px;
}

.media-group__title{
  margin:0 0 6px;
  font-size:1.05rem;
  font-weight:800;
  letter-spacing:.3px;
}

.media-group__text p:first-child{
  margin-top:0;
}

.media-group__text p:last-child{
  margin-bottom:0;
}

.media-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
}

.media-grid[data-visible-rows="1"] .media-tile:nth-child(n+5){
  display:none;
}

.media-grid[data-visible-rows="2"] .media-tile:nth-child(n+9){
  display:none;
}

.media-grid[data-visible-rows="3"] .media-tile:nth-child(n+13){
  display:none;
}

.media-tile{
  position:relative;
  display:block;
  width:100%;
  aspect-ratio:16 / 10;
  padding:0;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  background:rgba(255,255,255,.03);
  cursor:pointer;
}

.media-tile img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.media-tile__ph{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text);
  font-weight:700;
}

.media-tile__play{
  position:absolute;
  inset:auto auto 12px 12px;
  width:42px;
  height:42px;
  border-radius:999px;
  background:rgba(0,0,0,.65);
  border:1px solid rgba(255,255,255,.2);
}

.media-tile__play::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-40%, -50%);
  border-top:8px solid transparent;
  border-bottom:8px solid transparent;
  border-left:13px solid #fff;
}

.media-group__actions{
  margin-top:14px;
}

.media-lightbox{
  position:fixed;
  inset:0;
  z-index:1300;
}

.media-lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.84);
  backdrop-filter:blur(4px);
}

.media-lightbox__dialog{
  position:relative;
  z-index:1;
  width:min(1100px, calc(100vw - 24px));
  max-height:calc(100vh - 24px);
  margin:12px auto;
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(10,10,10,.96);
  overflow:auto;
}

.media-lightbox__close{
  position:sticky;
  top:0;
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border:1px solid var(--accent);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.media-lightbox__nav{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin:8px 0 0;
}

.media-lightbox__prev,
.media-lightbox__next{
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.media-lightbox__body{
  margin-top:8px;
}

.media-lightbox__body img,
.media-lightbox__body iframe,
.media-lightbox__body video{
  display:block;
  width:100%;
  max-height:calc(100vh - 220px);
  border:0;
  border-radius:12px;
}

.media-lightbox__body img{
  object-fit:contain;
  height:auto;
}

.media-lightbox__body iframe,
.media-lightbox__body video{
  aspect-ratio:16 / 9;
  background:#000;
}

.media-lightbox__caption{
  margin-top:12px;
  color:var(--text);
  font-weight:700;
}

body.media-lightbox-open{
  overflow:hidden;
}

@media (max-width: 900px){
  .media-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .media-grid[data-visible-rows="1"] .media-tile:nth-child(n+4){
    display:none;
  }

  .media-grid[data-visible-rows="2"] .media-tile:nth-child(n+7){
    display:none;
  }

  .media-grid[data-visible-rows="3"] .media-tile:nth-child(n+10){
    display:none;
  }
}

@media (max-width: 560px){
  .media-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .media-grid[data-visible-rows="1"] .media-tile:nth-child(n+3){
    display:none;
  }

  .media-grid[data-visible-rows="2"] .media-tile:nth-child(n+5){
    display:none;
  }

  .media-grid[data-visible-rows="3"] .media-tile:nth-child(n+7){
    display:none;
  }
}

/* ===== Live: vergangene Shows + Media-Verknüpfung ===== */

.shows-group + .shows-group{
  margin-top: 42px;
}

.shows-group__title{
  margin: 0 0 18px;
}

.past-show{
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.past-show.is-hidden{
  display: none;
}

.past-show__row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.past-show__row--media{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
  align-items: stretch;
}

.past-show__info{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.past-show__info > span{
  margin: 0;
}

.past-show__date{
  color: var(--accent2);
  font-weight: 800;
}

.past-show__venue{
  font-weight: 900;
  letter-spacing: .2px;
}

.past-show__city{
  color: var(--muted);
}

.past-show__actions{
  width: 100%;
  margin-top: 12px;
}

.past-show__media-link{
  margin-left: 0;
}

.past-show__media{
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
}

.past-show__media .media-tile{
  width: 100%;
  height: 100%;
  min-height: 120px;
  margin: 0;
}

.past-shows__actions{
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.past-shows__actions .btn{
  min-width: 280px;
  justify-content: center;
}

@media (max-width: 760px){
  .past-show__row--media{
    grid-template-columns: 1fr;
  }

  .past-show__media{
    max-width: none;
  }
}

/* ===== Media ===== */

.media-groups{
  display: grid;
  gap: 18px;
}

.media-group{
  scroll-margin-top: calc(var(--scroll-offset, 120px) + 8px);
}

.media-group--highlight{
  box-shadow: 0 0 0 1px var(--accent) inset, 0 0 28px rgba(255,255,255,.06);
}

.media-group__head{
  margin-bottom: 14px;
}

.media-group__title{
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .3px;
}

.media-group__text p:first-child{
  margin-top: 0;
}

.media-group__text p:last-child{
  margin-bottom: 0;
}

.media-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.media-grid[data-visible-rows="1"] .media-tile:nth-child(n+5){
  display: none;
}

.media-grid[data-visible-rows="2"] .media-tile:nth-child(n+9){
  display: none;
}

.media-grid[data-visible-rows="3"] .media-tile:nth-child(n+13){
  display: none;
}

.media-tile{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  cursor: pointer;
}

.media-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-tile__ph{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-weight: 700;
}

.media-tile__play{
  position: absolute;
  inset: auto auto 12px 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(0,0,0,.65);
  border: 1px solid rgba(255,255,255,.2);
}

.media-tile__play::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
}

.media-group__actions{
  margin-top: 14px;
}

.media-lightbox{
  position: fixed;
  inset: 0;
  z-index: 1300;
}

.media-lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.50);
  backdrop-filter: blur(2px);
}

.media-lightbox__dialog{
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  margin: 12px auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10,10,10,.96);
  overflow: auto;
}

.media-lightbox__close{
  position: sticky;
  top: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.media-lightbox__nav{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 8px 0 0;
}

.media-lightbox__prev,
.media-lightbox__next{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.media-lightbox__body{
  margin-top: 8px;
}

.media-lightbox__body img,

.media-lightbox__body iframe{
  display: block;
  width: 100%;
  max-height: calc(100vh - 220px);
  border: 0;
  border-radius: 12px;
}

.media-lightbox__body img{
  object-fit: contain;
  height: auto;
}

.media-lightbox__body iframe{
  aspect-ratio: 16 / 9;
}

.media-lightbox__caption{
  margin-top: 12px;
  color: var(--text);
  font-weight: 700;
}

body.media-lightbox-open{
  overflow: hidden;
}

@media (max-width: 900px){
  .media-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-grid[data-visible-rows="1"] .media-tile:nth-child(n+4){
    display: none;
  }

  .media-grid[data-visible-rows="2"] .media-tile:nth-child(n+7){
    display: none;
  }

  .media-grid[data-visible-rows="3"] .media-tile:nth-child(n+10){
    display: none;
  }
}

@media (max-width: 560px){
  .media-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid[data-visible-rows="1"] .media-tile:nth-child(n+3){
    display: none;
  }

  .media-grid[data-visible-rows="2"] .media-tile:nth-child(n+5){
    display: none;
  }

  .media-grid[data-visible-rows="3"] .media-tile:nth-child(n+7){
    display: none;
  }
}
.photo-select .photo,
.epk-card .photo{
  display: block;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
}

.photo-select.selected .photo{
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset;
}

.references-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

.reference-card{
  padding:16px;
}

.reference-card__inner{
  display:grid;
  grid-template-columns:96px minmax(0, 1fr);
  gap:14px;
  align-items:center;
}

.reference-card__logo{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:72px;
}

.reference-card__logo img{
  display:block;
  max-width:100%;
  max-height:64px;
  width:auto;
  height:auto;
}

.reference-card__logo-fallback{
  font-weight:800;
  text-align:center;
  line-height:1.2;
}

.reference-card__content{
  min-width:0;
}

.reference-card__title{
  margin:0 0 6px;
  font-size:1rem;
  line-height:1.2;
  font-weight:800;
}

.reference-card__meta{
  color:var(--muted);
  line-height:1.4;
}

.reference-card__actions{
  margin-top:12px;
}

.reference-card__actions .btn{
  font-size:.95rem;
}

@media (max-width: 980px){
  .references-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .references-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
  }

  .reference-card__inner{
    grid-template-columns:80px minmax(0, 1fr);
    gap:12px;
  }

  .reference-card__logo img{
    max-height:56px;
  }
}

@media (max-width: 420px){
  .references-grid{
    grid-template-columns:1fr;
  }
}


.hero-profile__actions{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
  margin-top:16px;
}

.hero-profile__actions .btn{
  justify-content:center;
  width:100%;
  min-width:0;
  max-width:100%;
  box-sizing:border-box;
  padding:12px 18px;
  line-height:1.1;
}

.hero-profile__actions .btn--ghost{
  background: transparent;
  color: var(--text);
}

@media (max-width: 899px){
  .hero-profile__actions{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .hero-profile__actions .btn:first-child{
    grid-column:1 / -1;
  }
}

@media (max-width: 420px){
  .hero-profile__actions .btn{
    padding: 12px 16px;
    line-height: 1.1;
  }
}


.hero-lightbox{
  position:fixed;
  inset:0;
  z-index:1250;
}

.hero-lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.50);
  backdrop-filter:blur(2px);
}

.hero-lightbox__dialog{
  position:relative;
  z-index:1;
  width:min(1100px, calc(100vw - 24px));
  max-height:calc(100vh - 24px);
  margin:12px auto;
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(10,10,10,.96);
  overflow:auto;
}

.hero-lightbox__close{
  position:sticky;
  top:0;
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border:1px solid var(--accent);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.hero-lightbox__body{
  margin-top:8px;
}

.hero-lightbox__body video{
  display:block;
  width:100%;
  max-height:calc(100vh - 180px);
  border-radius:12px;
  background:#000;
}

.hero-lightbox__caption{
  margin-top:12px;
  color:var(--text);
  font-weight:700;
}

body.hero-lightbox-open{
  overflow:hidden;
}
.hero-video__trigger{
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0,0,0,.35);
  cursor: pointer;
}

.hero-video__trigger img{
  display: block;
  width: 100%;
  height: auto;
}

.hero-video__placeholder{
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.hero-video__play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
}

.hero-video__play::after{
  content: "";
  position: absolute;
  left: 34px;
  top: 26px;
  width: 0;
  height: 0;
  border-left: 26px solid rgba(255,255,255,.95);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}
.band-intro__title{
  margin: 0 0 12px;
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .3px;
}


.epk-card__head h2{
  margin:0;
}

.epk-card__actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.epk-select-all{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-weight:700;
  letter-spacing:.4px;
}

.epk-download{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:12px 0;
  border-bottom:1px solid var(--line);
}

.epk-download__text{
  flex:1 1 auto;
  min-width:0;
}

.epk-download__title{
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
}

.epk-download__label{
  margin-top:4px;
  color:var(--muted);
  line-height:1.4;
}

.epk-download__action{
  flex:0 0 auto;
}

@media (max-width: 640px){
  .epk-download{
    flex-direction:column;
    align-items:flex-start;
  }

  .epk-download__action{
    width:100%;
  }

  .epk-download__action .btn{
    width:100%;
    justify-content:center;
  }
}

.epk-title{
  position:relative;
  display:inline-block;
  margin-bottom:18px;
}

.epk-title::after{
  content:"";
  display:block;
  width:120px;
  height:2px;
  margin-top:10px;
  background:linear-gradient(to right, var(--accent), transparent);
}

.epk-lightbox{
  position:fixed;
  inset:0;
  z-index:1200;
}

.epk-lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.82);
  backdrop-filter:blur(4px);
}

.epk-lightbox__dialog{
  position:relative;
  z-index:1;
  width:min(1100px, calc(100vw - 24px));
  max-height:calc(100vh - 24px);
  margin:12px auto;
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(10,10,10,.96);
  overflow:auto;
}

.epk-lightbox__close{
  position:sticky;
  top:0;
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border:1px solid var(--accent);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.epk-lightbox__media{
  margin-top:8px;
}


/* References section stabilization: stop jump on button hover */
.references-grid .reference-card__actions .btn:hover{
  transform:none;
}

@media (max-width:1240px){
  .booking-layout--v3 .booking-layout__references{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
}

@media (max-width:1080px){
  .booking-layout--v3 .booking-layout__top{
    grid-template-columns:minmax(0, 1.2fr) minmax(280px, .95fr);
  }

  .booking-layout--v3 .booking-layout__references{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width:820px){
  .booking-layout--v3 .booking-layout__top{
    grid-template-columns:1fr;
  }

  .booking-layout--v3 .booking-layout__epk-text,
  .booking-layout--v3 .booking-layout__intro{
    max-width:none;
  }
}

@media (max-width:640px){
  .booking-layout--v3 .booking-layout__facts,
  .booking-layout--v3 .booking-layout__references{
    grid-template-columns:1fr;
  }

  .booking-layout--v3 .booking-layout__reference{
    grid-template-columns:68px minmax(0,1fr);
    min-height:96px;
  }

  .booking-layout--v3 .booking-layout__reference-logo{
    width:68px;
    height:52px;
  }

  .booking-layout--v3 .booking-layout__reference-logo img{
    max-height:48px;
  }

  .booking-layout--v3 .booking-layout__contact-value{
    font-size:19px;
  }

  .booking-layout--v3 .booking-layout__epk-actions .btn{
    width:100%;
    justify-content:center;
  }
}


.epk-lightbox__media img{
  display:block;
  width:100%;
  height:auto;
  max-height:calc(100vh - 160px);
  object-fit:contain;
  border-radius:12px;
}

.epk-lightbox__caption{
  margin-top:12px;
  color:var(--text);
  font-weight:700;
}

body.epk-lightbox-open{
  overflow:hidden;
}

.epk-card .photo{
  display:block;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  background:rgba(255,255,255,.03);
}
.epk-photo-actions{
  display:flex;
  justify-content:flex-end;
  margin-top:14px;
}


.epk-photo-actions{
  margin:0;
}


.epk-photo-actions{
  margin:0 0 0 auto;
}
@media (max-width: 640px){
  .epk-photo-actions{
    margin-left: 0;
    width: 100%;
    display:flex;
    justify-content:flex-end;
  }
}
.epk-card__head{
  width:100%;
}

.epk-card__actions{
  width:100%;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}



/* EPK: einheitliche Download-Buttons für <a> und <button> */
.epk-download-btn{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease, border-color .18s ease, background-color .18s ease;
}

.epk-download-btn:hover{
  transform: translateY(-1px);
}

.epk-download-btn:disabled{
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 640px){
  .epk-download__action .epk-download-btn,
  .epk-photo-actions .epk-download-btn{
    width: 100%;
    justify-content: center;
  }
}


/* ===== B3: Media / Band / Musik ===== */
.media-groups__actions{
  display:flex;
  justify-content:center;
  margin-top:18px;
}

.media-group.is-collapsed-by-limit{
  display:none;
}

.band-member__photo{
  appearance:none;
  -webkit-appearance:none;
  display:block;
  width:100%;
  padding:0;
  margin:0;
  border:0;
  border-radius:inherit;
  overflow:hidden;
  background:transparent;
  cursor:pointer;
}

.band-member__photo img{
  display:block;
  width:100%;
  height:auto;
}

.band-member__photo:hover img,
.band-member__photo:focus-visible img{
  transform:scale(1.02);
  transition:transform .18s ease;
}

.band-member__media{
  overflow:hidden;
}

.band-member__media img{
  transition:transform .18s ease;
}

@media (max-width: 560px){
  .media-groups__actions .btn{
    width:100%;
    justify-content:center;
  }
}

/* ===== B3.1: Media-Gruppentexte ===== */
.media-group__head{
  margin-bottom: 16px;
}

.media-group__title{
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: .2px;
}

.media-group__text{
  max-width: 62ch;
  color: color-mix(in srgb, var(--text) 78%, var(--muted));
  font-size: .98rem;
  line-height: 1.6;
}

.media-group__text p{
  margin: 0 0 10px;
}

.media-group__text p:first-child{
  font-weight: 500;
}

.media-group__text p:last-child{
  margin-bottom: 0;
}

.media-group__text strong,
.media-group__text b{
  color: var(--text);
  font-weight: 700;
}

.media-group__text a{
  color: var(--text);
  text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 2px;
}

.media-group__text a:hover,
.media-group__text a:focus-visible{
  text-decoration-color: rgba(255,255,255,.62);
}

.media-group__text ul,
.media-group__text ol{
  margin: 8px 0 10px 1.2em;
  padding: 0;
}

.media-group__text li + li{
  margin-top: 4px;
}

@media (max-width: 640px){
  .media-group__head{
    margin-bottom: 14px;
  }

  .media-group__text{
    max-width: none;
    font-size: .96rem;
    line-height: 1.55;
  }
}
/* Scoped media/shows patch for the existing site stylesheet */

.media-section {
  scroll-margin-top: var(--scroll-offset, 120px);
}

.media-groups {
  display: grid;
  gap: 20px;
}

.media-group.is-hidden {
  display: none;
}

.media-group__head {
  margin-bottom: 16px;
}

.media-group .media-group__title {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: none;
}

.media-group__meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.media-group--highlights .media-group__title,
.media-group .media-group__title--highlights {
  font-size: clamp(30px, 4vw, 38px);
  line-height: 1.08;
  margin-bottom: 2px;
  color: var(--text);
}

.media-group__text-wrap {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.media-group__text {
  color: var(--text);
}

.media-group__text.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.media-group__text.is-expanded {
  display: block;
  overflow: visible;
}

.media-group__text > *:first-child { margin-top: 0; }
.media-group__text > *:last-child { margin-bottom: 0; }

.media-inline-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-transform: none;
  letter-spacing: .2px;
}

.media-inline-toggle:hover {
  color: var(--accent2);
}

.media-inline-toggle__label-less {
  display: none;
}

.media-inline-toggle__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .18s ease;
}

.media-inline-toggle[aria-expanded="true"] .media-inline-toggle__label-more { display: none; }
.media-inline-toggle[aria-expanded="true"] .media-inline-toggle__label-less { display: inline; }
.media-inline-toggle[aria-expanded="true"] .media-inline-toggle__chevron { transform: rotate(-135deg) translateY(-1px); }

.media-inline-toggle--group {
  margin-top: 14px;
}

.media-group .media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 980px) {
  .media-group .media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .media-group .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .media-group .media-grid {
    grid-template-columns: 1fr;
  }
}

.media-tile.is-concealed {
  display: none;
}

.media-group__actions {
  display: flex;
  justify-content: flex-start;
}

.media-section__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.media-section__actions .btn {
  min-width: 280px;
  justify-content: center;
}

.media-lightbox__nav {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 14px;
  margin: 8px 0 0;
}

.media-lightbox__prev {
  justify-self: start;
}

.media-lightbox__next {
  justify-self: end;
}

.media-lightbox__title {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.2;
  letter-spacing: .2px;
  text-align: center;
}

.media-lightbox__title[hidden] {
  display: none;
}

.media-lightbox__body {
  margin-top: 12px;
}

.media-lightbox__caption {
  text-transform: none;
  letter-spacing: .2px;
  font-weight: 700;
}


/* UAT-021 mobile lightbox sizing */
:root {
  --media-lightbox-vh: 100dvh;
}

.media-lightbox__dialog {
  width: min(1100px, calc(100vw - 24px));
  max-height: calc(var(--media-lightbox-vh, 100dvh) - 24px);
  height: auto;
  display: block;
  overflow: auto;
  overscroll-behavior: contain;
}

.media-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
}

.media-lightbox__nav {
  flex: 0 0 auto;
  min-height: 42px;
  margin-top: 0;
  padding-right: 56px;
}

.media-lightbox__body {
  --media-lightbox-media-max-height: calc(var(--media-lightbox-vh, 100dvh) - 180px);
  min-height: 0;
  margin-top: 12px;
  display: block;
  overflow: visible;
  text-align: center;
}

.media-lightbox__body img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: var(--media-lightbox-media-max-height);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.media-lightbox__body iframe {
  display: block;
  width: min(100%, calc(var(--media-lightbox-media-max-height) * 16 / 9));
  max-width: 100%;
  height: min(var(--media-lightbox-media-max-height), calc((100vw - 72px) * 9 / 16));
  border: 0;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  background: #000;
}

@media (max-width: 700px) {
  .media-lightbox__dialog {
    width: calc(100vw - 16px);
    max-height: calc(var(--media-lightbox-vh, 100dvh) - 16px);
    height: auto;
    margin: 8px auto;
    padding: 14px;
  }

  .media-lightbox__close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .media-lightbox__nav {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 10px;
    padding-right: 46px;
  }

  .media-lightbox__body {
    margin-top: 10px;
  }

  .media-lightbox__body iframe {
    width: 100%;
    height: min(var(--media-lightbox-media-max-height), calc((100vw - 44px) * 9 / 16));
  }
}

/* UAT-025 Band Lightbox: lokaler Clip vor Bild */
.media-lightbox__body video{
  display:block;
  width:min(100%, calc(var(--media-lightbox-media-max-height, calc(100vh - 220px)) * 16 / 9));
  max-width:100%;
  height:min(var(--media-lightbox-media-max-height, calc(100vh - 220px)), calc((100vw - 72px) * 9 / 16));
  border:0;
  border-radius:12px;
  background:#000;
  object-fit:contain;
}

@media (max-width: 700px){
  .media-lightbox__body video{
    width:100%;
    height:min(var(--media-lightbox-media-max-height, calc(100vh - 220px)), calc((100vw - 44px) * 9 / 16));
  }
}


/* UAT-008 â€“ Referenzen: "Zur Location" immer unten in der Card */
.references-grid .reference-card{
  height: 100%;
}

.references-grid .reference-card__inner{
  height: 100%;
  align-items: stretch;
}

.references-grid .reference-card__content{
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.references-grid .reference-card__actions{
  margin-top: auto;
  padding-top: 12px;
}
.booking-epk{
  display:flex;
  flex-direction:column;
  min-height:220px;
}

.booking-epk__text{
  margin:0;
  max-width:58ch;
  color:var(--text);
  line-height:1.65;
}

.booking-epk__actions{
  margin-top:auto;
  padding-top:18px;
  display:flex;
  justify-content:flex-start;
  align-items:flex-end;
}

@media (max-width:640px){
  .booking-epk{
    min-height:0;
  }

  .booking-epk__text{
    max-width:none;
  }

  .booking-epk__actions{
    padding-top:16px;
  }
}

/* Scoped media/shows patch for the existing site stylesheet */

.media-section {
  scroll-margin-top: var(--scroll-offset, 120px);
}

.media-groups {
  display: grid;
  gap: 20px;
}

.media-group.is-hidden {
  display: none;
}

.media-group__head {
  margin-bottom: 16px;
}

.media-group .media-group__title {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: none;
}

.media-group__meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.media-group--highlights .media-group__title,
.media-group .media-group__title--highlights {
  font-size: clamp(30px, 4vw, 38px);
  line-height: 1.08;
  margin-bottom: 2px;
  color: var(--text);
}

.media-group__text-wrap {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.media-group__text {
  color: var(--text);
}

.media-group__text.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.media-group__text.is-expanded {
  display: block;
  overflow: visible;
}

.media-group__text > *:first-child { margin-top: 0; }
.media-group__text > *:last-child { margin-bottom: 0; }

.media-inline-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-transform: none;
  letter-spacing: .2px;
}

.media-inline-toggle:hover {
  color: var(--accent2);
}

.media-inline-toggle__label-less {
  display: none;
}

.media-inline-toggle__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .18s ease;
}

.media-inline-toggle[aria-expanded="true"] .media-inline-toggle__label-more { display: none; }
.media-inline-toggle[aria-expanded="true"] .media-inline-toggle__label-less { display: inline; }
.media-inline-toggle[aria-expanded="true"] .media-inline-toggle__chevron { transform: rotate(-135deg) translateY(-1px); }

.media-inline-toggle--group {
  margin-top: 14px;
}

.media-group .media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 980px) {
  .media-group .media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .media-group .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .media-group .media-grid {
    grid-template-columns: 1fr;
  }
}

.media-tile.is-concealed {
  display: none;
}

.media-group__actions {
  display: flex;
  justify-content: flex-start;
}

.media-section__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.media-section__actions .btn {
  min-width: 280px;
  justify-content: center;
}

.media-lightbox__nav {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 14px;
  margin: 8px 0 0;
}

.media-lightbox__prev {
  justify-self: start;
}

.media-lightbox__next {
  justify-self: end;
}

.media-lightbox__title {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.2;
  letter-spacing: .2px;
  text-align: center;
}

.media-lightbox__title[hidden] {
  display: none;
}

.media-lightbox__body {
  margin-top: 12px;
}

.media-lightbox__caption {
  text-transform: none;
  letter-spacing: .2px;
  font-weight: 700;
}


/* UAT-021 mobile lightbox sizing */
:root {
  --media-lightbox-vh: 100dvh;
}

.media-lightbox__dialog {
  width: min(1100px, calc(100vw - 24px));
  max-height: calc(var(--media-lightbox-vh, 100dvh) - 24px);
  height: auto;
  display: block;
  overflow: auto;
  overscroll-behavior: contain;
}

.media-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
}

.media-lightbox__nav {
  flex: 0 0 auto;
  min-height: 42px;
  margin-top: 0;
  padding-right: 56px;
}

.media-lightbox__body {
  --media-lightbox-media-max-height: calc(var(--media-lightbox-vh, 100dvh) - 180px);
  min-height: 0;
  margin-top: 12px;
  display: block;
  overflow: visible;
  text-align: center;
}

.media-lightbox__body img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: var(--media-lightbox-media-max-height);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.media-lightbox__body iframe {
  display: block;
  width: min(100%, calc(var(--media-lightbox-media-max-height) * 16 / 9));
  max-width: 100%;
  height: min(var(--media-lightbox-media-max-height), calc((100vw - 72px) * 9 / 16));
  border: 0;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  background: #000;
}

@media (max-width: 700px) {
  .media-lightbox__dialog {
    width: calc(100vw - 16px);
    max-height: calc(var(--media-lightbox-vh, 100dvh) - 16px);
    height: auto;
    margin: 8px auto;
    padding: 14px;
  }

  .media-lightbox__close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .media-lightbox__nav {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 10px;
    padding-right: 46px;
  }

  .media-lightbox__body {
    margin-top: 10px;
  }

  .media-lightbox__body iframe {
    width: 100%;
    height: min(var(--media-lightbox-media-max-height), calc((100vw - 44px) * 9 / 16));
  }
}


/* ===== Referenzen-Sektion: stabilisieren ===== */
#referenzen .references-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  column-gap:16px;
  row-gap:16px !important;
  align-items:start;
}

#referenzen .reference-card{
  position:relative;
  margin:0;
  height:auto;
  transform:none !important;
}

#referenzen .reference-card__inner{
  display:grid;
  grid-template-columns:96px minmax(0,1fr);
  gap:14px;
  align-items:center;
}

#referenzen .reference-card__content{
  min-width:0;
  display:flex;
  flex-direction:column;
  min-height:72px;
}

#referenzen .reference-card__actions{
  margin-top:auto;
}

#referenzen .reference-card__actions .btn,
#referenzen .reference-card__actions .btn:hover,
#referenzen .reference-card__actions .btn:focus-visible{
  transform:none !important;
}

@media (max-width: 980px){
  #referenzen .references-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 640px){
  #referenzen .references-grid{
    grid-template-columns:1fr;
  }

  #referenzen .reference-card__inner{
    grid-template-columns:80px minmax(0,1fr);
    gap:12px;
  }
}

/* Restore main References section layout without affecting Booking */
.references-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  align-items:start;
}

.references-grid > *{
  min-width:0;
}

.reference-card{
  display:block;
  height:auto !important;
  min-height:0;
  padding:16px;
  overflow:hidden;
}

.reference-card__inner{
  display:grid;
  grid-template-columns:96px minmax(0, 1fr);
  gap:14px;
  align-items:center;
  height:auto !important;
  min-height:0;
}

.reference-card__logo{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:72px;
}

.reference-card__logo img{
  display:block;
  max-width:100%;
  max-height:64px;
  width:auto;
  height:auto;
}

.reference-card__content{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:0 !important;
}

.reference-card__title{
  margin:0 0 6px;
}

.reference-card__meta{
  margin:0;
}

.reference-card__actions{
  margin-top:14px;
  padding-top:0 !important;
}

.references-grid .reference-card .btn{
  transform:none !important;
}

.references-grid .reference-card .btn:hover{
  transform:none !important;
}

@media (max-width:980px){
  .references-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:16px;
  }
}

@media (max-width:640px){
  .references-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
  }

  .reference-card__inner{
    grid-template-columns:80px minmax(0, 1fr);
    gap:12px;
  }

  .reference-card__logo img{
    max-height:56px;
  }
}

@media (max-width:420px){
  .references-grid{
    grid-template-columns:1fr;
  }
}

/* Referenzen – finaler Fix: letzte Equal-Height-Experimente NICHT behalten */
#referenzen .references-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  align-items:stretch;
}

#referenzen .reference-card{
  display:flex;
  height:100%;
  margin:0;
  padding:16px;
  overflow:hidden;
  transform:none !important;
}

#referenzen .reference-card__inner{
  display:grid;
  grid-template-columns:96px minmax(0,1fr);
  gap:14px;
  align-items:center;
  width:100%;
}

#referenzen .reference-card__content{
  min-width:0;
  display:flex;
  flex-direction:column;
}

#referenzen .reference-card__actions{
  margin-top:auto;
  padding-top:12px;
}

#referenzen .reference-card__actions .btn,
#referenzen .reference-card__actions .btn:hover,
#referenzen .reference-card__actions .btn:focus-visible{
  transform:none !important;
}

@media (max-width:980px){
  #referenzen .references-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:640px){
  #referenzen .references-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  #referenzen .reference-card__inner{
    grid-template-columns:80px minmax(0,1fr);
    gap:12px;
  }

  #referenzen .reference-card__logo img{
    max-height:56px;
  }
}

/* Referenzen: Buttons auf gleicher Höhe und mit mehr Abstand zum Text */
#referenzen .reference-card__inner{
  align-items: stretch;
}

#referenzen .reference-card__content{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

#referenzen .reference-card__actions{
  margin-top: auto;
  padding-top: 18px;
}

#referenzen .reference-card__actions .btn{
  transform: none !important;
}

#referenzen .reference-card__actions .btn:hover{
  transform: none !important;
}


@media (max-width: 640px){
  .band-member__media img,
  .band-member__ph{
    aspect-ratio: 1 / 1;
  }

  .band-member__body{
    padding: 10px 12px 12px;
  }

  .band-member__name{
    font-size: 16px;
    letter-spacing: .5px;
    margin-bottom: 4px;
  }

  .band-member__role{
    margin-top: 0;
    font-size: 13px;
    line-height: 1.3;
  }

  .band-member__bio{
    display: none;
  }
}

.media-lightbox__caption{
  margin-top:12px;
  color:var(--text);
  font-weight:900;
  font-size:clamp(20px, 2.4vw, 24px);
  line-height:1.2;
  letter-spacing:.2px;
  text-transform:none;
}

.media-lightbox__band{
  display:flex;
  flex-direction:column;
  gap:16px;
  width:100%;
}

.media-lightbox__band-bio{
  max-width:72ch;
  color:var(--muted);
  font-size:clamp(15px, 1.8vw, 18px);
  line-height:1.6;
  text-transform:none;
  letter-spacing:0;
}

/* UAT-026 Mobile Verdichtung Media */
@media (max-width: 520px){
  .media-section .media-grid,
  .media-group .media-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .media-section .media-tile,
  .media-group .media-tile{
    aspect-ratio: 1 / 1;
  }

  .media-section .media-group__head,
  .media-group .media-group__head{
    margin-bottom: 12px;
  }

  .media-section .media-group__text-wrap,
  .media-group .media-group__text-wrap{
    margin-top: 12px;
    padding-top: 10px;
  }

  .media-section__actions .btn,
  .media-groups__actions .btn,
  .media-group__actions .btn{
    width: 100%;
    justify-content: center;
  }
}
/* --- Musik: Streaming kompakt (Mobile, 2x2 Grid) --- */
@media (max-width: 640px){
  .album-links{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .album-link{
    aspect-ratio: 1 / 1;
    min-width: 0;
  }

  .album-link img{
    max-width: 50%;
    max-height: 50%;
  }
}

@media (max-width: 900px){
  .album-badge{
    display: none;
  }
}



/* ===== Referenzen: Card innen 3-zeilig, nur in der Sektion ===== */
#referenzen .references-grid{
  gap: 12px;
  align-items: stretch;
}

#referenzen .reference-card{
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

#referenzen .reference-card > .reference-card__inner,
#referenzen .reference-card.card > .reference-card__inner{
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto auto auto !important;
  gap: 12px;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  height: 100%;
  min-height: 0px;
  box-sizing: border-box;
}

#referenzen .reference-card__title{
  margin: 0;
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
}

#referenzen .reference-card__middle{
  display: grid !important;
  grid-template-columns: 2fr 1fr !important;
  gap: 10px;
  align-items: center;
  min-height: 0;
}

#referenzen .reference-card__logo{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

#referenzen .reference-card__logo img{
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
}

#referenzen .reference-card__logo-fallback{
  font-weight: 900;
  letter-spacing: .4px;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  color: var(--muted);
}

#referenzen .reference-card__meta{
  display: grid;
  grid-template-rows: repeat(2, auto);
  align-content: center;
  gap: 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
  min-height: 48px;
}

#referenzen .reference-card__city,
#referenzen .reference-card__type{
  display: block;
}

#referenzen .reference-card__actions{
  margin-top: auto;
}

#referenzen .reference-card__link{
  display: inline-flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--accent2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15px;
  text-transform: none;
}

#referenzen .reference-card:hover .reference-card__link,
#referenzen .reference-card:focus-within .reference-card__link{
  border-color: var(--accent);
  color: var(--text);
}

@media (max-width: 640px){
  #referenzen .references-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #referenzen .reference-card > .reference-card__inner,
  #referenzen .reference-card.card > .reference-card__inner{
    padding: 12px;
    gap: 10px;
    min-height: 0px;
  }

  #referenzen .reference-card__title{
    font-size: 1.45rem;
  }

  #referenzen .reference-card__middle{
    gap: 10px;
    min-height: 0px;
  }

  #referenzen .reference-card__logo{
    min-height: 0px;
  }

  #referenzen .reference-card__logo img{
    max-height: 50px;
  }

  #referenzen .reference-card__meta{
    font-size: 12px;
    min-height: 44px;
  }

  #referenzen .reference-card__link{
    min-height: 36px;
    font-size: 12px;
  }
}

@media (max-width: 389px){
  #referenzen .references-grid{
    grid-template-columns: 1fr;
  }
}
#referenzen .reference-card__title{
  line-height: .95;
  text-align: center;
  word-break: keep-all;
}
#referenzen .reference-card__link{
  text-decoration: none;
}
.booking-v4__refs-list{
  margin-top:12px;
  display:grid;
  gap:10px;
}

.booking-v4__ref-row{
  display:grid;
  grid-template-columns:58px minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}

.booking-v4__ref-row:last-child{
  border-bottom:0;
}

.booking-v4__ref-logo{
  width:58px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.booking-v4__ref-logo img{
  display:block;
  max-width:100%;
  max-height:38px;
  width:auto;
  height:auto;
  object-fit:contain;
}

.booking-v4__ref-fallback{
  display:block;
  font-size:10px;
  font-weight:900;
  line-height:1.1;
  text-transform:uppercase;
  text-align:center;
  color:var(--muted);
}

.booking-v4__ref-body{
  min-width:0;
}

.booking-v4__ref-title{
  font-size:15px;
  line-height:1.15;
  font-weight:900;
  letter-spacing:.2px;
}


.booking-v4__ref-action{
  justify-self:end;
}

@media (max-width: 820px){
  .booking-v4__top{
    grid-template-columns:1fr;
  }

  .booking-v4__contact-card{ order:1; }
  .booking-v4__refs-card{ order:2; }
  .booking-v4__epk-card{ order:3; }
}

@media (max-width: 640px){
  .booking-v4__ref-row{
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
  }

  .booking-v4__ref-logo{
    width: 44px;
    height: 34px;
  }

  .booking-v4__ref-logo img{
    max-height: 30px;
  }

  .booking-v4__ref-action{
    grid-column: auto;
    justify-self: end;
    margin-top: 0;
  }

  .booking-v4__ref-link{
    font-size: 11px;
    white-space: nowrap;
  }
}

.epk-download__title{
  font-size: 15px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .45px;
  color: var(--text);
}

.epk-download__label{
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.35;
}
.epk-download__title{
  font-size: 16px;
}
/* ===== Booking v4: Typo-Hierarchie + mobile Ref-Zeile ===== */
.booking-v4__ref-title{
  font-size: 16px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .35px;
  color: var(--text);
}

.booking-v4__ref-meta{
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.booking-v4__ref-link{
  color: var(--accent2);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.booking-v4__ref-link:hover{
  color: var(--text);
}

.epk-download__title{
  font-size: 16px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .45px;
  color: var(--text);
}

.epk-download__label{
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.35;
}

@media (max-width: 640px){
  .booking-v4__ref-row{
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
  }

  .booking-v4__ref-logo{
    width: 44px;
    height: 34px;
  }

  .booking-v4__ref-logo img{
    max-height: 30px;
  }

  .booking-v4__ref-action{
    grid-column: auto;
    justify-self: end;
    margin-top: 0;
  }

  .booking-v4__ref-link{
    font-size: 11px;
    white-space: nowrap;
  }
}
/* ===== Booking v4: bestehendes Ref-Grid lesbarer machen ===== */
.booking-v4__ref-title{
  display:block;
  font-size:16px;
  line-height:1.1;
  font-weight:900;
  letter-spacing:.35px;
  color:var(--text);
}

.booking-v4__ref-meta{
  display:block;
  margin-top:3px;
  color:var(--muted);
  font-size:12px;
  line-height:1.3;
}

.booking-v4__ref-link{
  display:inline-block;
  margin-top:4px;
  color:var(--accent2);
  font-size:12px;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
}

.booking-v4__ref-link:hover{
  color:var(--text);
}

.epk-download__title{
  font-size:16px;
  line-height:1.15;
  font-weight:900;
  letter-spacing:.45px;
  color:var(--text);
}

.epk-download__label{
  margin-top:3px;
  color:var(--muted);
  line-height:1.35;
}

  .booking-v4__ref-logo{
    width:44px;
    height:34px;
  }

  .booking-v4__ref-logo img{
    max-height:30px;
  }

  .booking-v4__ref-title{
    font-size:15px;
  }

  .booking-v4__ref-meta{
    font-size:11px;
  }

  .booking-v4__ref-link{
    display:inline;
    margin-top:0;
    margin-left:6px;
    font-size:11px;
    white-space:nowrap;
  }
}

/* ===== Booking v4 – final ===== */
.booking-v4{
  margin-top:18px;
  display:grid;
  gap:28px;
  isolation:isolate;
}

.booking-v4__intro,
.booking-v4 .cms{
  max-width:78ch;
}

.booking-v4__top{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(320px,.9fr);
  gap:24px;
  align-items:stretch;
}

.booking-v4__contact-card,
.booking-v4__refs-card,
.booking-v4__epk-card{
  position:relative;
}

.booking-v4__contact-card,
.booking-v4__epk-card{
  display:flex;
  flex-direction:column;
}

.booking-v4__contact-list{
  margin-top:12px;
  display:grid;
  gap:12px;
}

.booking-v4__contact-box{
  display:block;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  background:rgba(0,0,0,.18);
  color:var(--text);
  text-decoration:none;
}

.booking-v4__contact-box:hover{
  border-color:var(--accent);
  background:rgba(0,0,0,.24);
}

.booking-v4__contact-label,
.booking-v4__fact-label{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.booking-v4__contact-value{
  display:block;
  margin-top:5px;
  color:var(--accent2);
  font-size:clamp(18px,2.1vw,24px);
  font-weight:900;
  line-height:1.2;
  word-break:break-word;
}

.booking-v4__facts{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.booking-v4__fact{
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  background:rgba(0,0,0,.14);
}

.booking-v4__fact-value{
  display:block;
  margin-top:4px;
  font-weight:800;
  line-height:1.35;
}

.booking-v4__refs-card{
  padding-top:18px;
}

.booking-v4__empty{
  margin:10px 0 0;
  color:var(--muted);
}

.booking-v4__refs-list{
  margin-top:12px;
  display:grid;
  gap:10px;
}

.booking-v4__ref-row{
  display:grid;
  grid-template-columns:58px minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}

.booking-v4__ref-row:last-child{
  border-bottom:0;
}

.booking-v4__ref-logo{
  width:58px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.booking-v4__ref-logo img{
  display:block;
  max-width:100%;
  max-height:38px;
  width:auto;
  height:auto;
  object-fit:contain;
}

.booking-v4__ref-fallback{
  display:block;
  font-size:10px;
  font-weight:900;
  line-height:1.1;
  text-transform:uppercase;
  text-align:center;
  color:var(--muted);
}

.booking-v4__ref-body{
  min-width:0;
}

.booking-v4__ref-title{
  font-size:16px;
  line-height:1.1;
  font-weight:900;
  letter-spacing:.35px;
  color:var(--text);
}

.booking-v4__ref-meta{
  margin-top:3px;
  color:var(--muted);
  font-size:12px;
  line-height:1.3;
}

.booking-v4__ref-action{
  justify-self:end;
}

.booking-v4__ref-link{
  color:var(--accent2);
  font-size:12px;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
}

.booking-v4__ref-link:hover{
  color:var(--text);
}

.booking-v4__epk-text{
  margin:10px 0 0;
  max-width:44ch;
  line-height:1.6;
}

.booking-v4__epk-actions{
  margin-top:16px;
}

/* kein Hüpfen */
.booking-v4 .btn:hover,
.booking-v4 .btn:focus-visible{
  transform:none !important;
}

.epk-download__title{
  font-size:16px;
  line-height:1.15;
  font-weight:900;
  letter-spacing:.45px;
  color:var(--text);
}

.epk-download__label{
  margin-top:3px;
  color:var(--muted);
  line-height:1.35;
}

@media (max-width:820px){
  .booking-v4__top{
    grid-template-columns:1fr;
  }

  .booking-v4__contact-card{ order:1; }
  .booking-v4__refs-card{ order:2; }
  .booking-v4__epk-card{ order:3; }

  .booking-v4__epk-text{
    max-width:none;
  }
}

@media (max-width:640px){
  .booking-v4__facts{
    grid-template-columns:1fr;
  }

  .booking-v4__ref-row{
    grid-template-columns:44px minmax(0,1fr) auto;
    gap:8px;
    align-items:center;
  }

  .booking-v4__ref-logo{
    width:44px;
    height:34px;
  }

  .booking-v4__ref-logo img{
    max-height:30px;
  }

  .booking-v4__ref-link{
    font-size:11px;
  }

  .booking-v4__contact-value{
    font-size:19px;
  }

  .booking-v4__epk-actions .btn{
    width:100%;
    justify-content:center;
  }
}

/* ===== Booking: Card-Überschriften kräftiger ===== */
.booking-v4__contact-card .kicker,
.booking-v4__refs-card .kicker,
.booking-v4__epk-card .kicker{
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .35px;
  text-transform: none;
}

.booking-v4__refs-card .booking-v4__ref-title{
  font-size: 18px;
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: .35px;
  color: var(--text);
}

@media (max-width: 640px){
  .booking-v4__contact-card .kicker,
  .booking-v4__refs-card .kicker,
  .booking-v4__epk-card .kicker{
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .booking-v4__refs-card .booking-v4__ref-title{
    font-size: 17px;
  }
}
@media (orientation: landscape) and (max-height: 520px){
  .media-lightbox__dialog{
    width: calc(100vw - 8px);
    max-height: calc(100dvh - 8px);
    height: calc(100dvh - 8px);
    margin: 4px auto;
    padding: 10px 12px 12px;
    box-sizing: border-box;
  }

  .media-lightbox__close{
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
  }

  .media-lightbox__nav{
    display: grid;
    grid-template-columns: 42px minmax(0,1fr) 42px 42px;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding-right: 0;
    min-height: 42px;
  }

  .media-lightbox__prev{
    grid-column: 1;
    justify-self: start;
  }

  .media-lightbox__title{
    grid-column: 2;
    text-align: center;
    font-size: 18px;
    line-height: 1.15;
    margin: 0;
  }

  .media-lightbox__next{
    grid-column: 3;
    justify-self: end;
  }

  .media-lightbox__close{
    grid-column: 4;
  }

  .media-lightbox__body{
    --media-lightbox-media-max-height: calc(100dvh - 92px);
    margin-top: 8px;
  }

  .media-lightbox__body img,
  .media-lightbox__body iframe,
  .media-lightbox__body video{
    max-height: var(--media-lightbox-media-max-height);
  }

  .media-lightbox__caption{
    margin-top: 8px;
  }
}

@media (orientation: landscape) and (max-height: 520px){
  .media-lightbox__body{
    --media-lightbox-media-max-height: calc(100dvh - 92px);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .media-lightbox__body iframe,
  .media-lightbox__body video,
  .media-lightbox__body img{
    display: block;
    margin: 0 auto;
  }

  .media-lightbox__body iframe,
  .media-lightbox__body video{
    width: min(
      calc((100dvh - 92px) * 16 / 9),
      calc(100vw - 56px)
    );
    max-width: 100%;
    height: min(
      calc(100dvh - 92px),
      calc((100vw - 56px) * 9 / 16)
    );
    max-height: calc(100dvh - 92px);
  }

  .media-lightbox__body img{
    max-width: calc(100vw - 56px);
    max-height: calc(100dvh - 92px);
    width: auto;
    height: auto;
    object-fit: contain;
  }
}



/* ===== Hero-Grundlayout ===== */

:root{
  --hero-logo-scale: 1;
  --hero-logo-tx: 0px;
  --hero-logo-ty: 0px;
  --hero-logo-opacity: 1;
  --hero-claim-y: 0px;
  --hero-crowd-opacity: 1;
  --hero-claim-glow: 0;
  --hero-stage-light: 0;

  --hero-header-h: 72px;
  --hero-claim-gap-top: 30px;
  --hero-claim-h: 52px;
  --hero-claim-gap-bottom: 56px;
  --hero-claim-start-top: 597px;
  --hero-claim-end-top: calc(var(--hero-header-h) + var(--hero-claim-gap-top));
  --hero-intro-range: calc(var(--hero-claim-start-top) - var(--hero-claim-end-top));

  --hero-stage-w: min(980px, calc(100vw - 40px));
  --hero-stage-h: calc(var(--hero-stage-w) * 9 / 16);
  --hero-stage-bottom: 0px;
  --hero-logo-start-h: calc(var(--hero-crowd-h) * 0.42);
  --hero-logo-start-top: calc(var(--hero-crowd-h) * 0.09);
  --hero-logo-start-h-min: 280px;
  --hero-logo-start-top-min: 56px;
  --hero-crowd-h: calc(
    var(--hero-header-h) +
    var(--hero-claim-gap-top) +
    var(--hero-claim-h) +
    var(--hero-claim-gap-bottom) +
    var(--hero-stage-h)
  );
}

.hero{
  position: relative;
  width: 100%;
}

.hero__visual{
  position: relative;
  width: var(--hero-stage-w);
  height: var(--hero-crowd-h);
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
}

.hero__intro{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--hero-crowd-h);
  z-index: 8;
  pointer-events: none;
  overflow: visible;
}

.hero__intro-crowd{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: var(--hero-crowd-opacity);
  z-index: -1;
}

.hero__intro-logo{
  position: absolute;
  left: 50%;
  top: max(var(--hero-logo-start-top), var(--hero-logo-start-top-min));
  width: auto;
  height: max(var(--hero-logo-start-h), var(--hero-logo-start-h-min));
  opacity: var(--hero-logo-opacity);
  transform:
    translateX(-50%)
    translate(var(--hero-logo-tx), var(--hero-logo-ty))
    scale(var(--hero-logo-scale));
  transform-origin: center top;
  z-index: 12;
  will-change: transform, opacity;
}

.hero__intro-logo img{
  display: block;
  width: auto;
  height: 100%;
}

.hero__claim{
  position: absolute;
  left: 50%;
  top: var(--hero-claim-start-top);
  width: min(1180px, calc(100% - 48px));
  transform: translateX(-50%) translateY(var(--hero-claim-y));
  z-index: 10;
  pointer-events: none;
}

.hero__stage{
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--hero-stage-bottom);
  width: 100%;
  height: var(--hero-stage-h);
  z-index: 2;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}

.hero__stage-media,
.hero__stage-trigger,
.hero__stage-fallback{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: hidden;
}

.hero__stage-poster,
.hero__stage-trigger .hero__stage-poster,
.hero__stage-fallback .hero__stage-poster{
  display: block;
  width: 100%;
  height: 100% !important;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__stage-video{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  background: #000;
}

.hero__stage-media.is-started .hero__stage-video,
.hero__stage-media.is-playing .hero__stage-video{
  opacity: 1;
  pointer-events: auto;
}

.hero__stage-media.is-started .hero__stage-poster,
.hero__stage-media.is-started .hero__stage-placeholder,
.hero__stage-media.is-playing .hero__stage-poster,
.hero__stage-media.is-playing .hero__stage-placeholder{
  opacity: 0;
}

.hero__stage-media.is-starting .hero__stage-poster,
.hero__stage-media.is-starting .hero__stage-placeholder,
.hero__stage-media.is-started .hero__stage-poster,
.hero__stage-media.is-started .hero__stage-placeholder,
.hero__stage-media.is-playing .hero__stage-poster,
.hero__stage-media.is-playing .hero__stage-placeholder{
  transition: opacity .28s ease;
}

.hero__stage-claim{
  margin: 0 auto;
  text-align: center;
  color: var(--text);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
  font-weight: 900;
  text-shadow:
    0 6px 24px rgba(0,0,0,.55),
    0 0 calc(18px * var(--hero-claim-glow)) rgba(255,233,186,.55),
    0 0 calc(34px * var(--hero-claim-glow)) rgba(255,233,186,.22);
  filter: brightness(calc(1 + var(--hero-claim-glow) * .08));
  transition: text-shadow .24s ease, filter .24s ease;
  white-space: nowrap;
}

.hero__stage-play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .12s linear;
  z-index: 12;
}

.hero__stage-trigger{
  cursor: pointer;
  pointer-events: auto;
  z-index: 14;
}

.hero__stage-media.is-started .hero__stage-trigger,
.hero__stage-media.is-playing .hero__stage-trigger{
  opacity: 0;
  pointer-events: none;
}

.hero__stage::before,
.hero__stage::after{
  content: "";
  position: absolute;
  inset: -6% -10%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .45s ease;
}

.hero__stage::before{
  z-index: 4;
  background:
    radial-gradient(ellipse at 50% -12%, rgba(255,255,255,.58), rgba(255,255,255,0) 44%),
    radial-gradient(ellipse at 18% 0%, rgba(255,214,140,.30), rgba(255,214,140,0) 36%),
    radial-gradient(ellipse at 82% 0%, rgba(255,214,140,.30), rgba(255,214,140,0) 36%);
  mix-blend-mode: screen;
}

.hero__stage::after{
  z-index: 5;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.16), rgba(255,255,255,0) 32%),
    radial-gradient(circle at 50% 12%, rgba(255,240,200,.18), rgba(255,240,200,0) 42%);
}

.hero.is-stage-lighting .hero__stage::before,
.hero.is-stage-lighting .hero__stage::after,
.hero.is-stage-live .hero__stage::before,
.hero.is-stage-live .hero__stage::after{
  opacity: calc(.45 + var(--hero-stage-light) * .55);
}

.hero.is-stage-lighting .hero__stage::before,
.hero.is-stage-lighting .hero__stage::after{
  animation: heroStageLightUp .65s ease-out 1;
}

.hero__profile{
  position: relative;
  z-index: 2;
  width: var(--hero-stage-w);
  margin: 32px auto 0;
}

@keyframes heroStageLightUp{
  0%{ opacity: .08; }
  35%{ opacity: 1; }
  100%{ opacity: .62; }
}

/* ===== Responsive ===== */

@media (max-width: 899px){
  :root{
    --hero-header-h: 64px;
    --hero-claim-gap-top: 18px;
    --hero-claim-h: 42px;
    --hero-claim-gap-bottom: 24px;
    --hero-claim-start-top: calc(var(--hero-crowd-h) * 0.75);
    --hero-claim-end-top: calc(var(--hero-header-h) + var(--hero-claim-gap-top));
    --hero-intro-range: calc(var(--hero-claim-start-top) - var(--hero-claim-end-top));
    --hero-stage-bottom: 0px;
    --hero-logo-start-h: calc(var(--hero-crowd-h) * 0.38);
    --hero-logo-start-top: calc(var(--hero-crowd-h) * 0.11);
    --hero-logo-start-h-min: 190px;
    --hero-logo-start-top-min: 54px;
    --hero-crowd-h: calc(
      var(--hero-header-h) +
      var(--hero-claim-gap-top) +
      var(--hero-claim-h) +
      var(--hero-claim-gap-bottom) +
      var(--hero-stage-h)
    );
  }

  .hero{
    --hero-stage-w: 100%;
    --hero-stage-h: calc(var(--hero-stage-w) * 9 / 16);
  }

  .hero__intro-logo{
    width: auto;
    height: var(--hero-logo-start-h);
  }

  .hero__claim{
    width: calc(100% - 32px);
  }

  .hero__stage-claim{
    font-size: clamp(17px, 3.6vw, 24px);
    white-space: normal;
  }

  .hero__profile{
    margin-top: 28px;
  }
}

@media (max-width: 640px){
  :root{
    --hero-header-h: 60px;
    --hero-claim-gap-top: 16px;
    --hero-claim-h: 40px;
    --hero-claim-gap-bottom: 18px;
    --hero-claim-start-top: calc(var(--hero-crowd-h) * 0.75);
    --hero-claim-end-top: calc(var(--hero-header-h) + var(--hero-claim-gap-top));
    --hero-intro-range: calc(var(--hero-claim-start-top) - var(--hero-claim-end-top));
    --hero-stage-bottom: 0px;
    --hero-logo-start-h: calc(var(--hero-crowd-h) * 0.34);
    --hero-logo-start-top: calc(var(--hero-crowd-h) * 0.12);
    --hero-logo-start-h-min: 150px;
    --hero-logo-start-top-min: 46px;
    --hero-crowd-h: calc(
      var(--hero-header-h) +
      var(--hero-claim-gap-top) +
      var(--hero-claim-h) +
      var(--hero-claim-gap-bottom) +
      var(--hero-stage-h)
    );
  }

  .hero{
    --hero-stage-w: 100%;
    --hero-stage-h: calc(var(--hero-stage-w) * 9 / 16);
  }

  .hero__intro-logo{
    width: auto;
    height: var(--hero-logo-start-h);
  }

  .hero__claim{
    width: calc(100% - 20px);
  }

  .hero__stage-claim{
    font-size: clamp(16px, 4.9vw, 21px);
    white-space: normal;
  }

  .hero__profile{
    margin-top: 22px;
  }
}

/* ===== Masthead (FINAL) ===== */
.masthead{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 8px 20px;
  background: rgba(0,0,0,.38);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  pointer-events: none;
  transition: opacity .18s linear;
}

.masthead.is-visible{
  opacity: 1;
  pointer-events: auto;
}

.masthead__inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 980px;
  box-sizing: border-box;
  min-height: 72px;
  margin: 0 auto;
}

.masthead__left,
.masthead__right{
  min-width: 0;
}

.masthead__left{
  justify-self: start;
}

.masthead__right{
  justify-self: end;
}

.masthead__left{
  justify-self: start;
  min-width: 0;
}

.masthead__right{
  justify-self: end;
  min-width: 0;
}

.masthead__logo{
  grid-column: 2;
  justify-self: center;
  display: block;
}

.masthead__logo img{
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 260px);
  max-height: 64px;
  margin: 0 auto;
}

/* Booking bleibt sichtbar, aber dezenter */
.masthead__booking{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  line-height: 1;
  white-space: nowrap;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}

.masthead__booking:hover{
  border-color: var(--accent);
  color: var(--text);
  background: rgba(255,255,255,.06);
}

@media (max-width: 640px){
  .masthead__booking{
    min-height: 34px;
    padding: 0 10px;
    font-size: .82rem;
  }

  .masthead__logo img{
    max-height: 52px;
  }
}

@media (max-width: 640px){
  .masthead{
    padding-left: 20px;
    padding-right: 20px;
  }

  .masthead__inner{
    width: 100%;
    max-width: 100%;
    min-height: 60px;
    gap: 8px;
  }

  .masthead__logo img{
    max-width: min(100%, 180px);
    max-height: 44px;
  }

  .masthead__booking{
    min-height: 32px;
    padding: 0 10px;
    font-size: .78rem;
  }
}

.legal-card,
.band-bio-card__inner{
  background: rgba(0,0,0,.42);
}

.band-bio__content a,
.band-bio-card__content a,
.legal-card__body a{
  color: var(--accent);
  text-decoration-color: rgba(209,171,47,.7);
  text-underline-offset: 2px;
}

.band-bio__content a:hover,
.band-bio__content a:focus-visible,
.band-bio-card__content a:hover,
.band-bio-card__content a:focus-visible,
.legal-card__body a:hover,
.legal-card__body a:focus-visible{
  color: var(--accent2);
  text-decoration-color: rgba(242,228,184,.8);
}
/* Mobile/Desktop: dunklere Text-Cards + besser lesbare Links */
.legal-card,
.band-bio-card__inner,
.band-bio.is-open .band-bio__inner{
  background: rgba(0,0,0,.42);
}

.band-bio__content a,
.band-bio-card__content a,
.legal-card__body a{
  color: var(--accent);
  text-decoration-color: rgba(209,171,47,.7);
  text-underline-offset: 2px;
}

.band-bio__content a:hover,
.band-bio__content a:focus-visible,
.band-bio-card__content a:hover,
.band-bio-card__content a:focus-visible,
.legal-card__body a:hover,
.legal-card__body a:focus-visible{
  color: var(--accent2);
  text-decoration-color: rgba(242,228,184,.8);
}

@media (max-width: 640px){
  .legal-card,
  .band-bio-card__inner,
  .band-bio.is-open .band-bio__inner{
    background: rgba(0,0,0,.56);
  }
}

.footer__inner,
.legal-card{
  max-width: 980px;
  box-sizing: border-box;
}