:root{
  --bg: #ffffff;
  --bg2:#f6f6f6;
  --text:#111111;
  --muted:#545454;
  --line: rgba(0,0,0,.14);
  --accent:#e8843d;
  --accent2:#a75f2c;
  --radius: 14px;
  --max: 1520px;
}
*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: var(--bg);
  line-height:1.55;
}
a{color:inherit}
.container{width:min(var(--max), calc(100% - clamp(28px, 4vw, 96px))); margin:0 auto}
.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#111; color:#fff; border-radius:10px; z-index:999}
.visuallyHidden{
  position:absolute !important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0, 0, 0, 0);
  white-space:nowrap;
  border:0;
}
body.legalPage{
  min-height:100%;
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
}
body.legalPage .brand{
  font-size:.95rem;
}
.legalTop{
  padding:20px 0 8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.legalTopLinks{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  font-size:.92rem;
  color:var(--muted);
}
.legalTopLinks a{
  text-decoration:none;
}
.legalTopLinks a:hover{
  color:var(--accent);
}
.legalMain{
  padding:18px 0 72px;
}
.legalBlock{
  max-width:none;
}
.legalBlock h1,
.legalBlock h2{
  margin:0 0 6px;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  letter-spacing:-.02em;
}
.legalBlock h3{
  margin:24px 0 8px;
  font-size:1.06rem;
  letter-spacing:-.01em;
}
.legalBlock p{
  margin:0 0 12px;
  max-width:none;
}
.legalMeta{
  color:var(--muted);
  font-size:.93rem;
}
.legalList{
  margin:0 0 12px;
  padding-left:20px;
}
.legalList li{
  margin-bottom:6px;
}

header{
  position:relative;
  overflow:visible;
  height:100vh;
  height:100svh;
  display:flex;
  flex-direction:column;
  background:#fff;
}
header > .container{
  display:grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height:100%;
  width:100%;
  max-width:none;
  margin:0;
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  width:min(var(--max), calc(100% - clamp(28px, 4vw, 96px)));
  margin:0 auto;
  padding:18px 0 14px;
}
.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  font-size:1rem;
  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;
}
.navlinks{display:flex; gap:18px; color:#262626; font-size:.95rem}
.navlinks a{
  text-decoration:none;
  padding:4px 2px;
  transition:color .18s ease;
}
.navlinks a:hover{
  color:var(--accent);
}

.hero{
  position:relative;
  width:100%;
  overflow:hidden;
  min-height:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
}
.heroImage{
  display:block;
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  margin:auto;
}
.scrollArrow{
  position:relative;
  margin: 0 auto 16px;
  width:52px;
  height:52px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-size:1.7rem;
  text-decoration:none;
  color:var(--accent);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
  animation:arrowPulse 1.8s ease-in-out infinite;
}
@keyframes arrowPulse{
  0%{transform:translateY(0)}
  50%{transform:translateY(6px)}
  100%{transform:translateY(0)}
}

main{padding: 44px 0 92px}
section{
  margin-top: 56px;
  padding-top: 20px;
}
section:first-of-type{
  margin-top: 0;
  padding-top: 0;
  border-top:0;
}
.sectionHead{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:36px; margin-bottom: 24px;
}
.sectionHead h2{
  margin:0;
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
  letter-spacing:-.02em;
}
.sectionHead p{
  margin:0; color:var(--muted);
  max-width: 86ch;
}
#about .sectionHead p{
  max-width:none;
}
#about .sectionHead p + p{
  margin-top:12px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.card{
  grid-column: span 12;
  border:0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow:visible;
}
.cardInner{padding: 0}
.links{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 40px;
}
.linkCard{
  text-decoration:none;
  border:0;
  background: transparent;
  padding: 14px 2px 13px;
  border-radius: 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  transition: transform .18s ease;
}
.linkCard:hover{
  transform: translateX(4px);
}
.linkMeta{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.linkLogo{
  width:28px;
  height:28px;
  border-radius: 7px;
  flex:0 0 28px;
  object-fit:cover;
  background:#f1f1f1;
}
.linkText{
  min-width:0;
}
.linkCard small{color:var(--muted); display:block; margin-top:2px}
.badge{
  font-size:.78rem;
  color: var(--accent);
  border:0;
  padding:0;
  border-radius:0;
  background: transparent;
  white-space:nowrap;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.media{
  display:block;
}
.embedWrap{
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 12px;
  overflow:hidden;
  background: #0a0f18;
  position:relative;
}
iframe{width:100%; height:100%; border:0}
.consentGate{
  position:absolute;
  inset:0;
  background: rgba(10,15,24,.9);
  color:#f2f2f2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  gap:14px;
  padding: clamp(16px, 3vw, 28px);
}
.consentGate p{
  margin:0;
  max-width:58ch;
}
.consentGateActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.consentGateButton{
  border:0;
  background:var(--accent);
  color:#111;
  padding:8px 12px;
  border-radius:8px;
  font-size:.88rem;
  cursor:pointer;
}
.consentGateButton.primary{
  background:var(--accent);
  color:#111;
}
.channelLinks{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:12px;
  font-size:.92rem;
}
.channelLinks a{
  text-decoration:none;
  color: var(--muted);
}
.channelLinks a:hover{
  color: var(--text);
}
.photoRail{
  position:relative;
  display:flex;
  align-items:center;
}
.photoStrip{
  width:100%;
  display:flex;
  gap:16px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  padding: 4px 44px 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(168,180,199,.42) transparent;
}
.photoStrip::-webkit-scrollbar{
  height:10px;
}
.photoStrip::-webkit-scrollbar-thumb{
  background: rgba(168,180,199,.38);
  border-radius: 999px;
}
.photo{
  flex: 0 0 clamp(240px, 22vw, 380px);
  margin:0;
  height: clamp(190px, 17vw, 290px);
  border-radius: 10px;
  overflow:hidden;
  background:#0a0f18;
  cursor: zoom-in;
  scroll-snap-align:start;
}
.photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.galleryArrow{
  position:absolute;
  z-index:3;
  top:50%;
  transform:translateY(-50%);
  border:0;
  width:36px;
  height:36px;
  border-radius:999px;
  background:#ffffff;
  color:#000000;
  font-size:1.25rem;
  line-height:1;
  cursor:pointer;
  display:grid;
  place-items:center;
  box-shadow: 0 8px 18px rgba(0,0,0,.2);
}
.galleryArrow.left{left:0;}
.galleryArrow.right{right:0;}
.galleryArrow:hover{
  background:#f2f2f2;
}
.galleryArrow:disabled{
  opacity:.35;
  cursor:default;
}

.lightbox{
  position:fixed;
  inset:0;
  z-index:1200;
  background: rgba(4,8,14,.92);
  display:none;
  align-items:center;
  justify-content:center;
  padding: clamp(16px, 4vw, 48px);
}
.lightbox.isOpen{display:flex;}
.lightboxFigure{
  margin:0;
  max-width:min(1400px, 92vw);
  max-height:92vh;
  display:grid;
  gap:10px;
}
.lightboxFigure img{
  max-width:100%;
  max-height: calc(92vh - 52px);
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius: 10px;
  display:block;
}
.lightboxFigure figcaption{
  margin:0;
  color: rgba(232,238,247,.84);
  font-size:.92rem;
  text-align:center;
}
.lightboxFigure figcaption a{
  color:inherit;
  text-decoration:underline;
  text-underline-offset:2px;
}
.lightboxClose{
  position:absolute;
  top: clamp(12px, 2vw, 20px);
  right: clamp(12px, 2vw, 20px);
  border:0;
  background: rgba(255,255,255,.1);
  color:var(--text);
  padding:10px 12px;
  border-radius: 8px;
  font-size:.95rem;
  cursor:pointer;
}
.lightboxClose:hover{background: rgba(255,255,255,.18);}

.shows{
  display:grid;
  grid-template-columns: 1.15fr .95fr;
  gap:48px;
}
.showList{
  margin-top:10px;
  padding-top:6px;
  display:grid;
  gap:0;
}
.show{
  display:grid;
  grid-template-columns: 150px 1fr auto;
  gap:16px;
  align-items:center;
  padding:14px 0;
  border:0;
  border-radius: 0;
  background: transparent;
}
.show + .show{
  border-top:1px solid #e5e5e5;
}
.date{
  font-weight:800;
  letter-spacing:.02em;
}
.place{color:var(--muted); font-size:.95rem}
.tag{
  font-size:.78rem;
  padding:0;
  border-radius: 0;
  border:0;
  color: var(--accent);
  background: transparent;
  white-space:nowrap;
  letter-spacing:.05em;
  text-transform:uppercase;
}

footer{
  padding: 46px 0 48px;
  color: var(--muted);
  background: transparent;
}
footer h3{
  margin:0 0 10px;
  color: var(--text);
  font-size: 1.05rem;
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:34px;
}
.impressum{
  background: transparent;
  border-radius: 0;
  padding: 2px 0 2px 20px;
}
.impressum p{margin:8px 0}
.fine{font-size:.9rem; color: var(--muted)}
.muted{color:var(--muted)}
.hr{height:1px; background: rgba(0,0,0,.16); margin: 16px 0}
.cookieSettingsLink{
  border:0;
  background:transparent;
  color:var(--muted);
  text-decoration:underline;
  text-underline-offset:2px;
  padding:0;
  cursor:pointer;
}
.cookieSettingsLink:hover{
  color:var(--text);
}

.cookieBanner[hidden],
.cookieModal[hidden],
.consentGate[hidden]{
  display:none !important;
}
.cookieBanner{
  position:fixed;
  left:20px;
  right:20px;
  bottom:20px;
  z-index:1300;
}
.cookieBannerInner{
  max-width:min(960px, 100%);
  margin:0 auto;
  background:#fff;
  border-radius:12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  padding:14px 16px;
}
.cookieText{
  margin:0 0 12px;
  color:#1d1d1d;
  font-size:.94rem;
}
.cookieActions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.cookieButton{
  border:0;
  background:var(--accent);
  color:#111;
  border-radius:8px;
  padding:9px 12px;
  font-size:.88rem;
  font-weight:600;
  cursor:pointer;
}
.cookieButton.primary{
  background:var(--accent);
}
.cookieButton:hover,
.consentGateButton:hover{
  filter: brightness(.96);
}
.cookieModal{
  position:fixed;
  inset:0;
  z-index:1400;
  background: rgba(17,17,17,.45);
  display:grid;
  place-items:center;
  padding:20px;
}
.cookieModalCard{
  width:min(680px, 100%);
  max-height:90vh;
  overflow:auto;
  background:#fff;
  border-radius:12px;
  padding:18px;
}
.cookieModalCard h3{
  margin:0 0 10px;
  font-size:1.18rem;
}
.cookieOption{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  background:#f8f8f8;
  border-radius:10px;
  padding:12px;
}
.cookieOption + .cookieOption{
  margin-top:8px;
}
.cookieOption strong{
  display:block;
}
.cookieOption p{
  margin:4px 0 0;
}
.cookieOption input[type="checkbox"]{
  width:18px;
  height:18px;
  margin-top:2px;
}

@media (max-width: 980px){
  .container{width:min(var(--max), calc(100% - 32px));}
  .legalTop{
    padding:16px 0 8px;
    align-items:flex-start;
    flex-direction:column;
  }
  .nav{padding:14px 0 12px;}
  .scrollArrow{
    width:44px;
    height:44px;
    font-size:1.4rem;
    margin-bottom:10px;
  }
  main{padding-top:26px}
  section{margin-top:32px; padding-top:20px;}
  .links{grid-template-columns:repeat(2, minmax(0, 1fr)); gap:8px 18px;}
  .shows{grid-template-columns:1fr}
  .show{grid-template-columns: 1fr; align-items:flex-start}
  .tag{justify-self:start}
  .footerGrid{grid-template-columns:1fr}
  .impressum{border-left:0; padding-left:0;}
  .photoStrip{padding:4px 40px 10px;}
  .photo{
    flex-basis: clamp(230px, 42vw, 340px);
    height: clamp(180px, 30vw, 250px);
  }
  .navlinks{display:none}
}
@media (max-width: 640px){
  .photoStrip{padding:4px 34px 8px;}
  .photo{
    flex-basis: 80vw;
    height: clamp(180px, 52vw, 260px);
  }
  .galleryArrow{
    width:30px;
    height:30px;
    font-size:1rem;
  }
  .links{grid-template-columns:1fr;}
  .lightbox{padding:14px;}
  .lightboxFigure img{max-height: calc(92vh - 72px);}
  .cookieBanner{
    left:12px;
    right:12px;
    bottom:12px;
  }
  .cookieActions{
    flex-direction:column;
    align-items:stretch;
  }
  .cookieButton{
    width:100%;
    text-align:center;
  }
}
