:root{
  --bg-1:#050505;
  --bg-2:#0e0e0f;
  --bg-3:#1a120d;
  --panel:rgba(18,18,18,.82);
  --panel-strong:rgba(8,8,8,.88);
  --line:rgba(255,191,110,.16);
  --text:#f7f2eb;
  --muted:#c9b8a3;
  --accent:#ffb347;
  --accent-2:#ff6a00;
  --accent-3:#ffd27a;
  --shadow:0 24px 64px rgba(0,0,0,.45);
  --radius:24px;
  --radius-sm:16px;
  --max:1200px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.88), rgba(0,0,0,0.94)),
    radial-gradient(circle at 50% -10%, rgba(255,145,40,0.12), transparent 35%),
    linear-gradient(180deg,var(--bg-1) 0%,var(--bg-2) 48%,var(--bg-3) 100%);
  min-height:100vh;
  overflow-x:hidden;
 display:flex;
  flex-direction:column;
}

main{
  flex:1;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-3;
  opacity:.16;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 14px),
    linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0px, rgba(255,255,255,.02) 2px, transparent 2px, transparent 7px);
}

.stage-lights{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
}

.beam{
  position:absolute;
  top:-18vh;
  width:28vw;
  height:82vh;
  transform-origin:top center;
  filter:blur(4px);
  opacity:.28;
  clip-path:polygon(48% 0%,52% 0%,100% 100%,0% 100%);
  background:linear-gradient(
    to bottom,
    rgba(255,225,170,.55) 0%,
    rgba(255,145,40,.25) 30%,
    rgba(255,110,20,.09) 60%,
    rgba(255,110,20,0) 100%
  );
}

.beam-left{
  left:6%;
  animation:beamLeft 7s ease-in-out infinite alternate;
}

.beam-center{
  left:36%;
  width:30vw;
  animation:beamCenter 6s ease-in-out infinite alternate;
}

.beam-right{
  right:6%;
  animation:beamRight 8s ease-in-out infinite alternate;
}

@keyframes beamLeft{
  0%{transform:rotate(-16deg)}
  100%{transform:rotate(-6deg)}
}

@keyframes beamCenter{
  0%{transform:rotate(-4deg)}
  100%{transform:rotate(6deg)}
}

@keyframes beamRight{
  0%{transform:rotate(14deg)}
  100%{transform:rotate(5deg)}
}

a{
  color:var(--accent-3);
  text-decoration:none;
}

a:hover{
  color:#fff;
}

img{
  max-width:100%;
  display:block;
}

iframe{
  max-width:100%;
}

.container{
  width:min(var(--max), calc(100% - 2rem));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.45));
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.05);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  min-height:76px;
  position:relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:1rem;
  color:#fff;
}

.brand-mark{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,179,71,.25);
  background:radial-gradient(circle at 50% 30%, rgba(255,179,71,.22), rgba(255,106,0,.05) 55%, transparent 70%);
  box-shadow:0 0 24px rgba(255,145,40,.18);
}

.brand-title{
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.95rem;
  transform:skewX(-8deg);
  line-height:1.1;
}

.brand-title span{
  display:block;
  font-size:.62em;
  color:var(--accent-3);
  letter-spacing:.28em;
}

.nav-toggle{
  display:none;
  background:none;
  border:1px solid rgba(255,179,71,.25);
  color:#fff;
  border-radius:999px;
  padding:.7rem .9rem;
}

.nav-links{
  display:flex;
  gap:.4rem;
  flex-wrap:wrap;
}

.nav-links a{
  padding:.8rem 1rem;
  border-radius:999px;
  color:#f3e6d6;
  font-size:.92rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.nav-links a.active,
.nav-links a:hover{
  background:linear-gradient(135deg, rgba(255,179,71,.16), rgba(255,106,0,.12));
  box-shadow:
    inset 0 0 0 1px rgba(255,179,71,.18),
    0 10px 24px rgba(0,0,0,.25);
}

.hero-section{
  padding:5rem 0 3rem;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(300px, 420px);
  gap:3rem;
  align-items:start;
}

.hero-text{
  min-width:0;
  padding-top:2.5rem;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  padding:.5rem .9rem;
  border-radius:999px;
  background:rgba(255,179,71,.1);
  border:1px solid rgba(255,179,71,.18);
  color:var(--accent-3);
  text-transform:uppercase;
  font-size:.78rem;
  letter-spacing:.18em;
}

.hero-title{
  margin:.9rem 0 1rem;
  font-size:clamp(2.4rem, 6vw, 4.9rem);
  font-weight:900;
  line-height:.95;
  letter-spacing:.04em;
  text-transform:uppercase;
  transform:skewX(-6deg);
  text-shadow:
    0 0 5px rgba(255,255,255,.35),
    0 0 20px rgba(255,160,60,.26),
    0 5px 20px rgba(0,0,0,.65);
  max-width:12ch;
}

.hero-title .top{
  display:block;
  background:linear-gradient(#fff8ef,#ff9d36);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero-title .bottom{
  display:block;
  font-size:.24em;
  letter-spacing:.22em;
  color:var(--accent-3);
  margin-top:.75rem;
  line-height:1.25;
}

.hero-copy{
  font-size:1.04rem;
  line-height:1.75;
  color:var(--muted);
  max-width:none;
  margin-left:0;
  margin-right:0;
  text-align:left;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.9rem;
  margin-top:1.5rem;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:1rem 1.25rem;
  border-radius:999px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.84rem;
  font-weight:700;
  border:1px solid rgba(255,179,71,.18);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 38px rgba(0,0,0,.28);
}

.button-primary{
  background:linear-gradient(135deg, rgba(255,179,71,.22), rgba(255,106,0,.16));
  color:#fff;
}

.button-secondary{
  background:rgba(255,255,255,.03);
  color:#f4ddc2;
}

.hero-media{
  display:block;
  width:100%;
  min-width:0;
  max-width:420px;
  position:relative;
  z-index:2;
  justify-self:end;
}

.hero-frame,
.panel,
.stat,
.tile,
.embed-card,
.contact-card,
.legal-card,
.gallery-card,
.audio-card,
.show-card,
.message-card{
  background:linear-gradient(180deg, rgba(24,24,24,.88), rgba(12,12,12,.82));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero-frame{
  display:block;
  width:100%;
  padding:0;
  overflow:hidden;
  position:relative;
  z-index:2;
  background:none;
  border:none;
  box-shadow:none;
}

.hero-frame img{
  display:block;
  width:100%;
  height:auto;
  max-width:100%;
  border-radius:18px;
  opacity:1;
  visibility:visible;
  transform:none;
  filter:none;
  mask-image:none;
  -webkit-mask-image:none;
  object-fit:cover;
  box-shadow:0 24px 60px rgba(0,0,0,.35);
}

.section{
  padding:1.2rem 0 3.2rem;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:1rem;
  margin-bottom:1.4rem;
}

.section-head h2{
  margin:0;
  font-size:clamp(1.6rem,3.6vw,2.6rem);
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#fff6ea;
}

.section-head p{
  margin:0;
  color:var(--muted);
  max-width:60ch;
  line-height:1.7;
}

.grid{
  display:grid;
  gap:1.2rem;
}

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

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

.panel,
.tile,
.embed-card,
.contact-card,
.legal-card,
.gallery-card,
.audio-card,
.show-card,
.message-card{
  padding:1.3rem;
}

.kicker{
  font-size:.78rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--accent-3);
  margin-bottom:.55rem;
}

.card-title{
  margin:0 0 .5rem;
  font-size:1.1rem;
  line-height:1.35;
}

.card-text{
  color:var(--muted);
  line-height:1.7;
  margin:0;
}

.media-thumb{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
  margin:.95rem 0;
}

.media-thumb img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}

.embed-wrap{
  position:relative;
  width:100%;
  background:#000;
  padding-top:56.25%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
}

.embed-wrap iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.list{
  display:grid;
  gap:.8rem;
  margin:0;
  padding:0;
  list-style:none;
}

.list li{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  padding:.9rem 1rem;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.04);
}

.list li span:last-child{
  color:var(--muted);
  text-align:right;
}

.stat-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  margin-top:1.4rem;
}

.stat{
  padding:1rem 1.1rem;
}

.stat strong{
  display:block;
  font-size:1.6rem;
  color:#fff4dd;
}

.stat span{
  display:block;
  margin-top:.35rem;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.5;
}

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

.member-card{
  padding:0;
  overflow:hidden;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(24,24,24,.9), rgba(10,10,10,.82));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.member-card img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}

.member-card .body{
  padding:1rem 1rem 1.2rem;
}

.member-card h3{
  margin:.1rem 0 .35rem;
  font-size:1.05rem;
}

.member-card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.shows-table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:20px;
}

.shows-table th,
.shows-table td{
  padding:1rem;
  border-bottom:1px solid rgba(255,255,255,.06);
  vertical-align:top;
}

.shows-table th{
  text-align:left;
  color:var(--accent-3);
  font-size:.82rem;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.shows-table td{
  color:#f7efe5;
}

.shows-table tr:last-child td{
  border-bottom:none;
}

.badge{
  display:inline-flex;
  padding:.35rem .6rem;
  border-radius:999px;
  background:rgba(255,179,71,.12);
  border:1px solid rgba(255,179,71,.16);
  font-size:.74rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--accent-3);
}

.audio-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
}

.audio-card audio{
  width:100%;
  margin-top:.8rem;
}

.download-grid,
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
}

.download-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.9rem 1rem;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.05);
  color:#fff;
}

.download-link small{
  display:block;
  color:var(--muted);
  margin-top:.2rem;
}

.contact-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:1.2rem;
}

.contact-list{
  display:grid;
  gap:.9rem;
}

.contact-item{
  padding:1rem;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.05);
}

.contact-item strong{
  display:block;
  margin-bottom:.3rem;
  color:#fff6ea;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
}

.form-grid .full{
  grid-column:1/-1;
}

label{
  display:grid;
  gap:.45rem;
  color:#f7efe2;
  font-size:.94rem;
}

input,
textarea{
  width:100%;
  padding:.95rem 1rem;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:#fff;
  font:inherit;
}

textarea{
  min-height:150px;
  resize:vertical;
}

.form-note{
  font-size:.86rem;
  color:var(--muted);
}

.legal-card a{
  color:var(--accent-3);
  text-decoration:none;
  word-break:break-word;
  overflow-wrap:anywhere;
}

.legal-card p,
.legal-card li{
  margin:.5rem 0;
}

.legal-card h3{
  margin:1.2rem 0 .45rem;
}

.legal-card ul{
  padding-left:1.4rem;
}

.legal-card li{
  margin:.35rem 0;
}

.center-message{
  min-height:46vh;
  display:grid;
  place-items:center;
  padding:2rem 0 4rem;
}

.message-card{
  max-width:720px;
  text-align:center;
}

.site-footer{
  border-top:1px solid rgba(255,255,255,.06);
  padding:1.2rem 0 2.2rem;
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.26));
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:center;
  color:var(--muted);
  font-size:.92rem;
}

.socials{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}

.socials a{
  color:#f4dcc0;
}

.cookie-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  background-color:#333;
  color:#fff;
  padding:16px;
  text-align:center;
  font-size:14px;
  border-radius:16px;
  z-index:9999;
  display:none;
}

.cookie-banner p{
  margin:0 0 12px;
  line-height:1.5;
}

.cookie-banner a{
  color:#f1a40e;
  text-decoration:none;
}

.cookie-button{
  background-color:#f1a40e;
  color:#fff;
  border:none;
  padding:10px 20px;
  cursor:pointer;
  font-size:14px;
  width:100%;
  min-height:44px;
  border-radius:10px;
}

.cookie-button:hover{
  background-color:#d88e00;
}

@media (max-width: 992px){
  .hero-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .hero-text{
    padding-top:0;
  }

  .hero-media{
    order:-1;
    min-width:0;
    max-width:520px;
    justify-self:center;
  }

  .contact-layout,
  .grid-3,
  .grid-2,
  .members,
  .download-grid,
  .gallery-grid,
  .audio-grid,
  .stat-row{
    grid-template-columns:1fr 1fr;
  }

  .hero-title .bottom{
    font-size:.28em;
    letter-spacing:.20em;
  }
}

@media (max-width: 768px){
  .nav-toggle{
    display:inline-flex;
  }

  .header-inner{
    min-height:70px;
  }

  .nav-links{
    position:absolute;
    right:1rem;
    top:calc(100% + .6rem);
    flex-direction:column;
    min-width:220px;
    padding:.75rem;
    background:rgba(8,8,8,.94);
    border:1px solid var(--line);
    border-radius:20px;
    box-shadow:var(--shadow);
    display:none;
  }

  .nav-links.open{
    display:flex;
  }

  .hero-section{
    padding:40px 0 20px;
  }

  .hero-grid,
  .contact-layout,
  .grid-3,
  .grid-2,
  .members,
  .download-grid,
  .gallery-grid,
  .audio-grid,
  .stat-row,
  .form-grid{
    grid-template-columns:1fr;
  }

  .hero-media{
    order:0;
    min-width:0;
    max-width:100%;
    justify-self:stretch;
  }

  .hero-frame img{
    height:260px;
    object-fit:cover;
    object-position:center top;
  }

  .hero-title{
    font-size:clamp(2.2rem, 13vw, 4rem);
    max-width:none;
  }

  .hero-title .top{
    font-size:2rem;
    line-height:1.1;
  }

  .hero-title .bottom{
    display:block;
    font-size:.24em;
    letter-spacing:.18em;
    color:var(--accent-3);
    margin-top:.75rem;
    line-height:1.25;
  }

  .hero-actions{
    flex-direction:column;
    gap:12px;
  }

  .hero-actions .button{
    width:100%;
    text-align:center;
  }

  .section-head,
  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .shows-table,
  .shows-table thead,
  .shows-table tbody,
  .shows-table th,
  .shows-table td,
  .shows-table tr{
    display:block;
    width:100%;
  }

  .shows-table thead{
    display:none;
  }

  .shows-table tr{
    padding:1rem;
    border-bottom:1px solid rgba(255,255,255,.06);
  }

  .shows-table td{
    padding:.45rem 0;
    border:0;
  }

  .shows-table td::before{
    content:attr(data-label);
    display:block;
    color:var(--accent-3);
    font-size:.76rem;
    letter-spacing:.14em;
    text-transform:uppercase;
    margin-bottom:.15rem;
  }
}

@media (max-width: 480px){
  .hero-frame img{
    height:220px;
  }

  .hero-title .top{
    font-size:1.7rem;
  }

  .hero-title .bottom{
    font-size:.22em;
    letter-spacing:.14em;
  }
}

@media (min-width: 769px){
  .cookie-button{
    width:auto;
  }
}

/* =========================
   KONTAKTSEITE OPTIMIERT
========================= */

.page-kontakt .hero-section-kontakt{
  padding:4rem 0 1.2rem;
}

.page-kontakt .hero-grid-kontakt{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(280px, 380px);
  gap:2.4rem;
  align-items:start;
}

.page-kontakt .hero-text-kontakt{
  padding-top:1rem;
}

.page-kontakt .hero-text-kontakt .hero-title{
  max-width:10ch;
  margin-bottom:.8rem;
}

.page-kontakt .hero-text-kontakt .hero-copy{
  max-width:42ch;
  margin-top:.4rem;
}

.page-kontakt .hero-media-kontakt{
  max-width:380px;
  justify-self:end;
}

.page-kontakt .hero-media-kontakt .hero-frame{
  padding:0;
  background:none;
  border:none;
  box-shadow:none;
}

.page-kontakt .hero-media-kontakt .hero-frame img{
  width:100%;
  height:auto;
  border-radius:18px;
  box-shadow:0 24px 60px rgba(0,0,0,.35);
}

.page-kontakt .section-kontakt-card{
  padding:.2rem 0 6rem;
}

.page-kontakt .contact-layout-kontakt{
  display:grid;
  grid-template-columns:minmax(320px, 520px);
  gap:0;
  margin-top:0;
  align-items:start;
  justify-content:center;
}

.page-kontakt .centered-contact{
  max-width:520px;
  width:100%;
}

.page-kontakt .contact-card.centered-contact{
  padding:1.35rem;
}

.page-kontakt .section-head-kontakt{
  margin-bottom:.9rem;
}

.page-kontakt .section-head-kontakt h2{
  margin:0;
}

.page-kontakt .contact-list{
  gap:.65rem;
}

.page-kontakt .contact-item{
  padding:.8rem .95rem;
}

.page-kontakt .site-footer{
  padding:.8rem 0 1.6rem;
}

@media (max-width: 992px){
  .page-kontakt .hero-section-kontakt{
    padding:3rem 0 1rem;
  }

  .page-kontakt .hero-grid-kontakt{
    grid-template-columns:1fr;
    gap:1.8rem;
  }

  .page-kontakt .hero-text-kontakt{
    padding-top:0;
  }

  .page-kontakt .hero-media-kontakt{
    justify-self:center;
    max-width:460px;
  }

  .page-kontakt .section-kontakt-card{
    padding:.4rem 0 1.2rem;
  }

  .page-kontakt .contact-layout-kontakt{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .page-kontakt .hero-section-kontakt{
    padding:2.2rem 0 .8rem;
  }

  .page-kontakt .hero-grid-kontakt{
    grid-template-columns:1fr;
    gap:1.2rem;
  }

  .page-kontakt .hero-text-kontakt .hero-title{
    max-width:none;
  }

  .page-kontakt .hero-media-kontakt{
    max-width:100%;
    justify-self:stretch;
  }

  .page-kontakt .hero-media-kontakt .hero-frame img{
    height:240px;
    object-fit:cover;
    object-position:center top;
  }

  .page-kontakt .section-kontakt-card{
    padding:.3rem 0 1rem;
  }

  .page-kontakt .contact-card.centered-contact{
    padding:1.1rem;
  }
}

/* =========================
   DATENSCHUTZ / IMPRESSUM
========================= */

.legal-card{
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
  overflow-wrap:anywhere;
}

.legal-card a{
  color:var(--accent-3);
  text-decoration:none;
  word-break:break-word;
  overflow-wrap:anywhere;
}

.legal-card p,
.legal-card li{
  margin:.5rem 0;
}

.legal-card h3{
  margin:1.2rem 0 .45rem;
}

.legal-card ul{
  padding-left:1.4rem;
}

.legal-card li{
  margin:.35rem 0;
}

@media (max-width:768px){
  .legal-card{
    padding:1.4rem;
  }

  .legal-card p,
  .legal-card li{
    font-size:.98rem;
    line-height:1.8;
  }

  .legal-card h3{
    margin-top:1.6rem;
    margin-bottom:.6rem;
  }
}

@media (min-width:1200px){
  .legal-card{
    padding:2rem 2.4rem;
  }
}

/* =========================
   LESEBREITE / MESSAGE CARD
========================= */

.message-card{
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

/* =========================
   SPOTLIGHT GLOW
========================= */

.contact-card,
.legal-card,
.message-card{
  position:relative;
}

.contact-card::before,
.legal-card::before,
.message-card::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:radial-gradient(
    circle at 50% 20%,
    rgba(255,170,70,.18),
    rgba(255,120,20,.10) 40%,
    transparent 70%
  );
  filter:blur(30px);
  z-index:-1;
  pointer-events:none;
  opacity:.6;
  transition:opacity .3s ease;
}

.contact-card:hover::before,
.legal-card:hover::before,
.message-card:hover::before{
  opacity:1;
}

/* =========================
   MOBILE MENÜ
========================= */

.nav-toggle{
  background:linear-gradient(135deg, rgba(255,179,71,.18), rgba(255,106,0,.12));
  border:1px solid rgba(255,179,71,.35);
  color:#fff;
  border-radius:999px;
  padding:.7rem 1rem;
  font-size:.9rem;
  letter-spacing:.06em;
  transition:all .25s ease;
}

.nav-toggle:hover{
  background:linear-gradient(135deg, rgba(255,179,71,.28), rgba(255,106,0,.18));
  box-shadow:0 6px 18px rgba(0,0,0,.35);
}

.nav-links a.active{
  background:linear-gradient(135deg, rgba(255,179,71,.22), rgba(255,106,0,.16));
  box-shadow:
    inset 0 0 0 1px rgba(255,179,71,.28),
    0 6px 16px rgba(0,0,0,.35);
  color:#fff;
}

@media (max-width:768px){
  .nav-links{
    position:absolute;
    right:1rem;
    top:calc(100% + .6rem);
    flex-direction:column;
    min-width:220px;
    padding:.8rem;
    background:rgba(10,10,10,.96);
    border:1px solid rgba(255,179,71,.25);
    border-radius:18px;
    box-shadow:
      0 20px 60px rgba(0,0,0,.6),
      inset 0 0 0 1px rgba(255,255,255,.04);
    backdrop-filter:blur(10px);
    display:none;
  }

  .nav-links.open{
    display:flex;
  }
}

/* =========================
   EMBED / VIMEO
========================= */

.embed-wrap{
  transition:transform .35s ease, box-shadow .35s ease;
}

.embed-wrap iframe{
  transition:transform .5s ease;
}

.embed-wrap:hover{
  transform:translateY(-4px);
  box-shadow:0 25px 70px rgba(0,0,0,.65);
}

.embed-wrap:hover iframe{
  transform:scale(1.05);
}

.embed-wrap::after{
  content:"▶";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:70px;
  height:70px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(4px);
  transition:all .3s ease;
  pointer-events:none;
}

.embed-wrap:hover::after{
  background:rgba(255,179,71,.85);
  transform:translate(-50%,-50%) scale(1.1);
}

@media (hover:none){
  .embed-wrap:hover{
    transform:none;
    box-shadow:none;
  }

  .embed-wrap:hover iframe{
    transform:none;
  }
}

/* =========================
   VIDEO WALL
========================= */

.video-wall{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1.2rem;
}

.video-box{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  border-radius:20px;
  overflow:hidden;
  cursor:pointer;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 24px 60px rgba(0,0,0,.35);
  background:#000;
  transition:transform .35s ease, box-shadow .35s ease;
}

.video-thumb{
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  transform:scale(1);
  transition:transform .45s ease, filter .35s ease;
}

.video-box:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 70px rgba(0,0,0,.55);
}

.video-box:hover .video-thumb{
  transform:scale(1.06);
  filter:brightness(.82);
}

.video-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:1rem;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 35%, rgba(0,0,0,.72) 100%);
}

.video-play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:74px;
  height:74px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#fff;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(6px);
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  transition:transform .3s ease, background .3s ease, box-shadow .3s ease;
  pointer-events:none;
}

.video-box:hover .video-play{
  transform:translate(-50%,-50%) scale(1.08);
  background:rgba(255,179,71,.9);
  box-shadow:0 0 0 8px rgba(255,179,71,.10), 0 18px 40px rgba(0,0,0,.45);
}

.video-meta h3{
  margin:.2rem 0 0;
  font-size:1.05rem;
  color:#fff;
}

.video-meta .kicker{
  margin-bottom:.1rem;
}

.video-box iframe{
  width:100%;
  height:100%;
  border:0;
  opacity:0;
  background: #000;
  animation:videoFadeIn .35s ease forwards;
}

@keyframes videoFadeIn{
  from{
    opacity:0;
    transform:scale(1.02);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

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

.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* =========================
   REVEAL SCROLL ANIMATION
========================= */

.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* =========================
   BAND MEMBER HOVER EFFECT
========================= */

.member-card{
  position:relative;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.member-card img{
  transition:transform .45s ease, filter .35s ease;
}

.member-card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 70px rgba(0,0,0,.5);
  border-color:rgba(255,179,71,.22);
}

.member-card:hover img{
  transform:scale(1.04);
  filter:brightness(.9) contrast(1.05);
}

.member-card .body{
  transition:transform .35s ease;
}

.member-card:hover .body{
  transform:translateY(-2px);
}

.member-card::before{
  content:"";
  position:absolute;
  inset:-30px;
  background:radial-gradient(circle at 50% 20%, rgba(255,170,70,.14), transparent 68%);
  filter:blur(24px);
  opacity:0;
  transition:opacity .35s ease;
  pointer-events:none;
  z-index:-1;
}

.member-card:hover::before{
  opacity:1;
}

/* =========================
   PAGE LOADER (IMPROVED)
========================= */

.page-loader{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;

  background:
    linear-gradient(180deg, rgba(0,0,0,.96), rgba(0,0,0,.98)),
    radial-gradient(circle at 50% 20%, rgba(255,145,40,.12), transparent 35%);

  z-index:999; /* NICHT mehr 99999 */
  opacity:1;
  transition:opacity .45s ease, visibility .45s ease;
}

.page-loader.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.page-loader-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.loader-mark{
  width:70px;
  height:70px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:2rem;

  border:1px solid rgba(255,179,71,.35);

  background:radial-gradient(
    circle at 50% 30%,
    rgba(255,179,71,.25),
    rgba(255,106,0,.08) 55%,
    transparent 70%
  );

  box-shadow:0 0 28px rgba(255,145,40,.25);

  animation:loaderPulse 1.2s ease-in-out infinite;
}

.loader-text{
  font-size:.75rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:#f4ddc2;
}

@keyframes loaderPulse{
  0%{ transform:scale(1); }
  50%{ transform:scale(1.08); }
  100%{ transform:scale(1); }
}

/* MOBILE FAILSAFE */
@media (max-width:768px){
  .page-loader{
    display:none !important;
  }
}

/* =========================
   HERO IMAGE LIGHT SWEEP
========================= */

.hero-frame{
  position:relative;
  overflow:hidden;
}

.hero-frame::before{
  content:"";
  position:absolute;
  top:-20%;
  left:-35%;
  width:30%;
  height:140%;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,220,160,.10) 45%,
    rgba(255,255,255,.18) 50%,
    rgba(255,220,160,.10) 55%,
    rgba(255,255,255,0) 100%
  );
  transform:rotate(14deg);
  pointer-events:none;
  opacity:.65;
  animation:heroSweep 7s ease-in-out infinite;
}

@keyframes heroSweep{
  0%{
    left:-38%;
    opacity:0;
  }
  10%{
    opacity:.45;
  }
  45%{
    opacity:.7;
  }
  60%{
    opacity:.25;
  }
  100%{
    left:125%;
    opacity:0;
  }
}

@media (min-width: 993px){
  .hero-frame{
    position:relative;
    overflow:hidden;
  }

  .hero-frame::before{
    content:"";
    position:absolute;
    top:-20%;
    left:-35%;
    width:30%;
    height:140%;
    background:linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,220,160,.10) 45%,
      rgba(255,255,255,.18) 50%,
      rgba(255,220,160,.10) 55%,
      rgba(255,255,255,0) 100%
    );
    transform:rotate(14deg);
    pointer-events:none;
    opacity:.65;
    animation:heroSweep 7s ease-in-out infinite;
  }
}


/* =========================
   PREMIUM COOKIE UI
========================= */

.cookie-ui-open{
  overflow:hidden;
}

.cookie-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.58);
  backdrop-filter:blur(8px);
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease, visibility .25s ease;
  z-index:9997;
}

.cookie-backdrop.is-open{
  opacity:1;
  visibility:visible;
}

.cookie-premium{
  position:fixed;
  right:18px;
  bottom:18px;
  width:min(560px, calc(100% - 24px));
  max-height:min(86vh, 760px);
  overflow:auto;
  padding:22px;
  border-radius:24px;
  background:
    linear-gradient(180deg, rgba(18,18,18,.97), rgba(8,8,8,.96)),
    radial-gradient(circle at top right, rgba(255,179,71,.16), transparent 30%);
  border:1px solid rgba(255,179,71,.2);
  box-shadow:0 30px 80px rgba(0,0,0,.55);
  color:#fff;
  z-index:9998;
  opacity:0;
  visibility:hidden;
  transform:translateY(20px) scale(.98);
  transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.cookie-premium.is-open{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
}

.cookie-premium__glow{
  position:absolute;
  inset:auto auto -80px -80px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,145,40,.18) 0%, rgba(255,145,40,0) 68%);
  pointer-events:none;
}

.cookie-premium__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.cookie-premium__badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--accent-3);
  padding:.5rem .85rem;
  border-radius:999px;
  border:1px solid rgba(255,179,71,.22);
  background:rgba(255,179,71,.08);
}

.cookie-premium__close{
  appearance:none;
  border:none;
  background:rgba(255,255,255,.05);
  color:#fff;
  width:42px;
  height:42px;
  border-radius:50%;
  font-size:1.4rem;
  cursor:pointer;
}

.cookie-premium__title{
  margin:0 0 .7rem;
  font-size:clamp(1.35rem, 3vw, 2rem);
  line-height:1.1;
  letter-spacing:.02em;
}

.cookie-premium__copy{
  margin:0 0 1rem;
  color:var(--muted);
  line-height:1.68;
}

.cookie-premium__options{
  display:grid;
  gap:.8rem;
  margin-bottom:1rem;
}

.cookie-option{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1rem;
  border-radius:18px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.06);
}

.cookie-option strong{
  display:block;
  margin-bottom:.25rem;
}

.cookie-option span{
  display:block;
  color:var(--muted);
  line-height:1.55;
  font-size:.95rem;
}

.cookie-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.55rem .8rem;
  border-radius:999px;
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#fff;
  white-space:nowrap;
}

.cookie-chip--active{
  background:linear-gradient(135deg, rgba(255,179,71,.2), rgba(255,106,0,.15));
  border:1px solid rgba(255,179,71,.22);
}

.cookie-switch{
  position:relative;
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  width:58px;
  height:34px;
  cursor:pointer;
}

.cookie-switch input{
  position:absolute;
  inset:0;
  opacity:0;
}

.cookie-switch__track{
  width:58px;
  height:34px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.08);
  transition:background .2s ease, border-color .2s ease;
  position:relative;
}

.cookie-switch__track::after{
  content:"";
  position:absolute;
  top:3px;
  left:3px;
  width:26px;
  height:26px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,.28);
  transition:transform .2s ease;
}

.cookie-switch input:checked + .cookie-switch__track{
  background:linear-gradient(135deg, rgba(255,179,71,.95), rgba(255,106,0,.95));
  border-color:rgba(255,179,71,.75);
}

.cookie-switch input:checked + .cookie-switch__track::after{
  transform:translateX(24px);
}

.cookie-premium__actions{
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
  margin-bottom:1rem;
}

.cookie-premium__meta{
  display:flex;
  align-items:center;
  gap:.65rem;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:.92rem;
}

.cookie-link-button{
  appearance:none;
  border:none;
  background:none;
  padding:0;
  color:var(--accent-3);
  cursor:pointer;
  font:inherit;
}

.cookie-button{
  appearance:none;
  border:none;
  padding:12px 18px;
  cursor:pointer;
  font-size:14px;
  min-height:44px;
  border-radius:999px;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.cookie-button-primary{
  background:linear-gradient(135deg, rgba(255,179,71,.95), rgba(255,106,0,.92));
  color:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}

.cookie-button-secondary{
  background:rgba(255,255,255,.06);
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
}

.cookie-settings-pill{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9996;
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.85rem 1rem;
  border-radius:999px;
  background:rgba(8,8,8,.88);
  border:1px solid rgba(255,179,71,.18);
  box-shadow:0 16px 36px rgba(0,0,0,.35);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.72rem;
  backdrop-filter:blur(12px);
}

.cookie-settings-pill:hover{
  color:#fff;
}

.site-footer .footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
}

.video-consent-placeholder{
  position:relative;
  width:100%;
  min-height:320px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.78) 100%),
    radial-gradient(circle at 50% 20%, rgba(255,170,70,.18), transparent 45%),
    #050505;
  display:flex;
  align-items:stretch;
  justify-content:stretch;
  border-radius:20px;
  overflow:hidden;
}

.video-consent-overlay{
  position:relative;
  inset:0;
  width:100%;
  min-height:320px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:.8rem;
  padding:1rem;
}

.video-consent-play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:74px;
  height:74px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#fff;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(6px);
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  pointer-events:none;
}

.video-consent-text h3{
  margin:.15rem 0;
  color:#fff;
  font-size:1.05rem;
}

.video-consent-text p{
  margin:.2rem 0 0;
  color:var(--muted);
  line-height:1.55;
  max-width:44ch;
}

@media (max-width: 768px){
  .cookie-premium{
    left:12px;
    right:12px;
    bottom:12px;
    width:auto;
    padding:16px;
    border-radius:20px;
  }

  .cookie-option{
    align-items:flex-start;
  }

  .cookie-premium__actions{
    flex-direction:column;
  }

  .cookie-button{
    width:100%;
  }

  .cookie-settings-pill{
    right:12px;
    bottom:12px;
    font-size:.66rem;
    padding:.78rem .92rem;
  }
}


/* ===== Minimaler Fix: Datenschutzerklärung auf Mobile immer sichtbar ===== */
@media (max-width:768px){
  .legal-card,
  .legal-card.reveal,
  .legal-card.is-visible{
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
  }
}
