/* ============================================================
   ALL 2GETHER — Urban Oldschool Secrets
   Design System
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/PlusJakartaSans-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/PlusJakartaSans-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/PlusJakartaSans-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/PlusJakartaSans-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Syne-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/Syne-ExtraBold.ttf') format('truetype');
}

/* ---------- Tokens ---------- */
:root {
  --bg:        #000000;
  --bg-2:      #000000;
  --surface:   #0d0d0f;
  --surface-2: #141417;
  --text:      #f4f1ea;
  --muted:     #9a968e;
  --muted-2:   #6f6c66;

  --gold:      #e7b53c;
  --gold-soft: #f0cd72;
  --red:       #e6382a;

  /* Button-Primärfarbe (unabhängig vom Gold-Akzent) */
  --btn-bg:       #073893;
  --btn-bg-hover: #0a4cc4;
  --btn-text:     #ffffff;

  --line:      rgba(255,255,255,.10);
  --line-2:    rgba(255,255,255,.06);

  --shadow:    0 30px 60px -20px rgba(0,0,0,.7);

  --maxw: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);

  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* Film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gap); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.center { text-align: center; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  overflow-wrap: break-word;   /* langes Wort bricht statt über den Rand zu laufen */
}
h1.display { font-size: clamp(2.6rem, 10vw, 6.5rem); }
h2.display { font-size: clamp(1.8rem, 5.5vw, 3.6rem); }
h3.display { font-size: clamp(1.4rem, 3.2vw, 2.2rem); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .74rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}
.eyebrow::before {
  content: "";
  width: 48px; height: 1px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  display: inline-block;
}
.eyebrow::after {
  content: "";
  width: 48px; height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  display: inline-block;
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 60ch; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }

.section-head { margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head .eyebrow { margin-bottom: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: .9rem; --pad-x: 1.9rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
  background: var(--btn-bg);
  color: var(--btn-text);
  border-radius: 180px;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.btn:hover { background: var(--btn-bg-hover); transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(7,56,147,.55); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--line); }
.btn--ghost:hover { background: rgba(255,255,255,.06); border-color: var(--text); box-shadow: none; }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: #ff4b3d; box-shadow: 0 12px 30px -10px rgba(230,56,42,.6); }
.btn-sm { --pad-y: .6rem; --pad-x: 1.15rem; font-size: .74rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,12,.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: .85rem var(--gap);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 46px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); transition: height .35s var(--ease); }
.site-header.scrolled .brand img { height: 40px; }

.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a:not(.btn) {
  font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .16em;
  color: var(--text); position: relative; padding-block: .3rem; opacity: .82;
  transition: opacity .2s;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--gold); transition: right .3s var(--ease);
}
.nav-links a:not(.btn):hover { opacity: 1; }
.nav-links a:not(.btn):hover::after,
.nav-links a.active::after { right: 0; }
.nav-links a.active { opacity: 1; color: var(--gold); }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; position: relative; z-index: 1010; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    padding: 2rem 2.2rem;
    background: var(--bg-2); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .4s var(--ease), visibility .4s var(--ease);
    visibility: hidden;
  }
  .nav-links.open { transform: translateX(0); visibility: visible; box-shadow: -30px 0 60px rgba(0,0,0,.5); }
  .nav-links a:not(.btn) { font-size: 1.05rem; }
  .nav-links .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 0; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--bg) 2%, rgba(12,12,14,.35) 45%, rgba(12,12,14,.65) 100%),
    radial-gradient(120% 90% at 50% 30%, transparent 40%, rgba(0,0,0,.55) 100%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero__logo { width: min(560px, 82%); margin: 0 auto 1.8rem; filter: drop-shadow(0 8px 30px rgba(0,0,0,.6)); }
.hero__tagline {
  font-family: var(--font-display); font-size: clamp(1.4rem, 4vw, 2.6rem);
  text-transform: uppercase; letter-spacing: .04em; line-height: 1; color: var(--text);
}
.hero__tagline .gold { color: var(--gold); }
.hero__sub { margin: 1.3rem auto 2rem; font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 46ch; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; margin-bottom: 2.2rem;
  font-weight: 600; letter-spacing: .04em;
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta .k { font-size: .7rem; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); }
.hero__meta .v { font-size: 1.15rem; }
.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scroll-cue::after { content: ""; width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line); overflow: hidden; background: var(--bg-2);
  padding-block: .9rem;
}
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: marquee 28s linear infinite; }
.marquee__track span {
  font-family: var(--font-display); font-size: 1.9rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted-2); display: inline-flex; align-items: center; gap: 3rem; white-space: nowrap;
}
.marquee__track span::after { content: "✌"; color: var(--gold); font-family: var(--font-body); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Intro / split ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: -1; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; }
.split__media--tape::before,
.split__media--tape::after {
  content: ""; position: absolute; width: 90px; height: 26px; background: rgba(231,181,60,.85);
  z-index: 2; box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.split__media--tape::before { top: -12px; left: 22px; transform: rotate(-6deg); }
.split__media--tape::after { bottom: -12px; right: 22px; transform: rotate(-4deg); background: rgba(255,255,255,.85); }

/* ---------- Feature cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } }
.card {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 8px;
  padding: 2rem 1.8rem; transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line); background: var(--surface-2); }
.card__ico {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 3px;
  background: rgba(231,181,60,.12); color: var(--gold); margin-bottom: 1.2rem; font-size: 1.4rem;
}
.card h3 { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: .02em; text-transform: uppercase; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .96rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 1000px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 7px; } }
.gallery-item {
  position: relative; overflow: hidden; border-radius: 3px; aspect-ratio: 1; background: var(--surface);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s; filter: saturate(.92) brightness(.95); }
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.05) brightness(1.05); }
.gallery-item::after {
  content: "✌"; position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: 1.6rem; opacity: 0; background: rgba(12,12,14,.35);
  transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: 1/2; }
@media (max-width: 640px) { .gallery-item--wide, .gallery-item--tall { grid-column: auto; grid-row: auto; aspect-ratio: 1; } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none; place-items: center;
  background: rgba(6,6,8,.94); backdrop-filter: blur(6px); padding: 4vw;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 3px; box-shadow: var(--shadow); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.08); border: 1px solid var(--line);
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.5rem; color: #fff; transition: background .2s, transform .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: #000; }
.lightbox__close { top: 4vw; right: 4vw; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 3vw; }
.lightbox__nav--next { right: 3vw; }
.lightbox__count { position: absolute; bottom: 3vw; left: 50%; transform: translateX(-50%); font-weight: 600; letter-spacing: .2em; color: var(--muted); font-size: .8rem; }
@media (max-width: 640px) { .lightbox__nav { width: 44px; height: 44px; } .lightbox__close { top: 5vw; right: 5vw; } }

/* ---------- Events list ---------- */
.event {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 1.8rem; align-items: center;
  padding: 1.6rem 0; border-bottom: 1px solid var(--line-2);
}
.event:first-child { border-top: 1px solid var(--line-2); }
.event__date {
  text-align: center; border: 1px solid var(--line); border-radius: 4px; padding: .7rem .4rem;
  line-height: 1;
}
.event__date .d { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); }
.event__date .m { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.event__body h3 { font-family: var(--font-display); font-size: 1.8rem; text-transform: uppercase; letter-spacing: .02em; }
.event__body p { color: var(--muted); font-size: .95rem; }
.event__tags { display: flex; gap: .5rem; margin-top: .5rem; flex-wrap: wrap; }
.tag { font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; padding: .3rem .7rem; border: 1px solid var(--line); border-radius: 40px; color: var(--muted); }
.event--past { opacity: .55; }
.event--past .event__date .d { color: var(--muted); }
@media (max-width: 720px) {
  .event { grid-template-columns: 84px 1fr; grid-template-areas: "date body" "date cta"; row-gap: 1rem; }
  .event__date { grid-area: date; align-self: start; }
  .event__cta { grid-area: cta; }
  .event__date .d { font-size: 2rem; }
}

/* ---------- Countdown (Mockup Style) ---------- */
.countdown { display: flex; justify-content: center; align-items: center; gap: clamp(1.2rem, 4vw, 3.5rem); }
.countdown__unit {
  background: transparent; border: none; border-radius: 0;
  padding: 0; text-align: center; min-width: clamp(60px, 12vw, 120px);
}
.countdown__num { 
  font-family: var(--font-display); 
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 6.5rem); 
  color: #ffffff; 
  line-height: 1; 
  letter-spacing: -0.02em;
}
.countdown__lab { 
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.65rem, 1.2vw, 0.8rem); 
  letter-spacing: .25em; 
  text-transform: uppercase; 
  color: var(--muted); 
  margin-top: .8rem; 
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 1.5rem 1rem; border: 1px solid var(--line-2); border-radius: 8px; background: var(--surface); }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 3.6rem); color: var(--text); line-height: 1; }
.stat__lab { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }

/* ---------- CTA band (Mockup Style) ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vh, 9rem);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
.cta-band__bg { position: absolute; inset: 0; z-index: 1; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(0.2) contrast(1.1); }
.cta-band__bg::after {
  content: ""; position: absolute; inset: 0;
  background: 
    radial-gradient(circle at center, transparent 20%, #000000 95%),
    linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%);
  z-index: 2;
}
.cta-band__backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(6rem, 21vw, 20rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.05em;
  user-select: none;
  pointer-events: none;
  text-align: center;
  white-space: nowrap;
  transform: translateY(-8%);
}
.cta-band__content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 5vh, 4rem);
}
.cta-band__event-info { text-align: center; }
.cta-band__venue {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 0.6rem;
}
.cta-band__date {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.cta-band__extra {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.7rem, 1.4vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.cta-band__action { margin-top: 1rem; }
.cta-band__action .btn--ticket {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  padding: 0.6rem 2.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 180px;
  transition: all 0.3s ease;
}
.cta-band__action .btn--ticket:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .45rem; }
.field label { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  background: var(--surface); border: 1px solid var(--line); border-radius: 4px;
  padding: .85rem 1rem; color: var(--text); font: inherit; transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--surface-2); }
.field textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: .82rem; color: var(--muted-2); }

/* ---------- Info list (contact) ---------- */
.info-list { display: grid; gap: 1.4rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .i { width: 44px; height: 44px; flex-shrink: 0; display: grid; place-items: center; border-radius: 3px; background: rgba(231,181,60,.12); color: var(--gold); font-size: 1.2rem; }
.info-item .k { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.info-item .v { font-size: 1.05rem; font-weight: 500; }
.info-item a.v:hover { color: var(--gold); }

/* ---------- Page hero (subpages) ---------- */
.page-hero { padding-top: 8rem; padding-bottom: 3rem; position: relative; overflow: hidden; border-bottom: 1px solid var(--line-2); }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; opacity: .28; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(12,12,14,.6), var(--bg)); }

/* ---------- Footer ---------- */
.footer { position: relative; border-top: 1px solid var(--line); background: var(--bg-2); padding-block: clamp(4rem, 8vw, 6rem) 2rem; overflow: hidden; z-index: 1; }
.footer__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.footer__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; filter: grayscale(0.2); }
.footer__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
}
.footer > .container { position: relative; z-index: 1; }
.footer__experience { text-align: center; max-width: 600px; margin: 0 auto clamp(2.5rem, 6vw, 4rem); }
.footer__experience h2.display { font-size: clamp(2.2rem, 5.5vw, 3.6rem); margin-bottom: .8rem; }
.footer__experience p { color: var(--muted); font-size: clamp(0.95rem, 1.3vw, 1.1rem); line-height: 1.5; }
.footer__mid {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding-block: 1.8rem; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
}
.footer__nav { display: flex; flex-wrap: wrap; gap: 1rem 1.8rem; }
.footer__nav a { font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); transition: color .2s; }
.footer__nav a:hover { color: var(--text); }
.socials { display: flex; gap: .7rem; }
.socials a {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; color: var(--text); transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.socials a:hover { background: var(--gold); color: #000; border-color: var(--gold); transform: translateY(-3px); }
.footer__bottom {
  margin-top: 1.8rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: var(--muted-2);
}
.footer__bottom a:hover { color: var(--text); }

@media (max-width: 768px) {
  .footer__mid { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; gap: .8rem 1.4rem; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: .6rem; }
}

/* ---------- Placeholder marker ---------- */
.ph { color: var(--gold); border-bottom: 1px dashed rgba(231,181,60,.5); }

/* ============================================================
   RnB Oldschool Party — erweiterte Komponenten
   ============================================================ */

/* ---------- Hero: Video ---------- */
.hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  display: inline-flex; align-items: center; justify-content: center; gap: 1.2rem;
  padding: 0; margin-bottom: 1.6rem;
  border: none; border-radius: 0;
  background: transparent; backdrop-filter: none;
  font-family: var(--font-body);
  font-size: .74rem; letter-spacing: .32em; text-transform: uppercase; font-weight: 600; color: var(--text);
}
.hero__badge .dot { display: none; }
.hero__badge::before {
  content: "";
  width: 48px; height: 1px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  display: inline-block;
}
.hero__badge::after {
  content: "";
  width: 48px; height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  display: inline-block;
}
.hero__mute {
  position: absolute; bottom: 1.5rem; right: var(--gap); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(0,0,0,.4); backdrop-filter: blur(6px); display: grid; place-items: center;
  color: var(--text); font-size: 1rem; transition: background .2s, transform .2s;
}
.hero__mute:hover { background: var(--gold); color: #000; transform: scale(1.05); }

/* ---------- Outline marquee ---------- */
.marquee--outline .marquee__track { gap: 4.5rem; }
.marquee--outline .marquee__track span { color: transparent; font-size: 2.6rem; -webkit-text-stroke: 1.3px rgba(255,255,255,.15); }
.marquee--outline .marquee__track span::after { display: none; }   /* Sterne entfernt */
.marquee--gold { background: var(--gold); border-color: var(--gold); }
.marquee--gold .marquee__track span { color: #16130a; }
.marquee--gold .marquee__track span::after { content: "✌"; color: #16130a; }

/* ---------- Photo slider (smooth) ---------- */
.slider-wrap { position: relative; }
.slider {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 4px 0 1.4rem; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; cursor: grab;
}
.slider::-webkit-scrollbar { display: none; }
.slider.dragging { cursor: grabbing; scroll-snap-type: none; }
.slide {
  position: relative; flex: 0 0 auto; width: min(78vw, 460px); aspect-ratio: 4/3;
  border-radius: 8px; overflow: hidden; scroll-snap-align: center; background: var(--surface);
}
.slide img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) brightness(.95); transition: transform .7s var(--ease), filter .4s; pointer-events: none; }
.slide:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(1.03); }
.slide__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.2rem .9rem; background: linear-gradient(transparent, rgba(0,0,0,.75)); font-weight: 600; letter-spacing: .04em; font-size: .82rem; text-transform: uppercase; color: var(--text); opacity: .9; }
.slider-ctrl { display: flex; gap: .6rem; }
.slider-btn {
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface);
  display: grid; place-items: center; font-size: 1.3rem; color: var(--text); transition: background .2s, color .2s, transform .2s, opacity .2s;
}
.slider-btn:hover { background: var(--gold); color: #000; }
.slider-btn:disabled { opacity: .35; cursor: default; }
.slider-btn:active { transform: scale(.94); }

/* ---------- City filter chips ---------- */
.filter { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.chip {
  padding: .55rem 1.15rem; border: 1px solid var(--line); border-radius: 40px;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--text); color: var(--text); }
.chip.active { background: var(--btn-bg); border-color: var(--btn-bg); color: var(--btn-text); }
.filter-select { display: none; }
@media (max-width: 560px) {
  .filter { display: none; }
  .filter-select {
    display: block; width: 100%; margin-bottom: 1.6rem;
    background: var(--surface); border: 1px solid var(--line); border-radius: 4px;
    padding: .85rem 1rem; color: var(--text); font: inherit;
  }
}

/* ---------- Event cards grid ---------- */
.ev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.5rem); }
@media (max-width: 900px) { .ev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ev-grid { grid-template-columns: 1fr; } }
.ev-card {
  display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 8px; overflow: hidden; transition: transform .3s var(--ease), border-color .3s;
}
.ev-card:hover { transform: translateY(-5px); border-color: var(--line); }
.ev-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.ev-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ev-card:hover .ev-card__media img { transform: scale(1.06); }
.ev-card__city {
  position: absolute; top: .8rem; left: .8rem; padding: .35rem .8rem; border-radius: 40px;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; color: var(--gold); border: 1px solid rgba(231,181,60,.4);
}
.ev-card__soldout { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(8,8,10,.72); font-family: var(--font-display); font-size: 1.8rem; letter-spacing: .1em; color: var(--red); text-transform: uppercase; }
.ev-card__body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.ev-card__date { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .4rem; }
.ev-card__body h3 { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: .02em; text-transform: uppercase; line-height: 1; margin-bottom: .5rem; }
.ev-card__meta { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
.ev-card__meta span { display: inline-flex; align-items: center; gap: .4em; }
.ev-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.ev-card__price { font-weight: 700; font-size: 1.05rem; }
.ev-empty { text-align: center; color: var(--muted); padding: 3rem 1rem; grid-column: 1 / -1; }

/* ---------- Showreel / video highlight (Scroll Scaling) ---------- */
.showreel-section {
  position: relative;
  height: 180vh; /* gives room for scrolling animation */
  background: #000;
}
.showreel-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.showreel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-block: clamp(3rem, 7vh, 5.5rem);
  position: relative;
  z-index: 2;
}
.showreel-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: var(--showreel-text-opacity, 1);
  transform: translateY(var(--showreel-text-translate, 0px));
  transition: opacity 0.1s linear, transform 0.1s linear;
  z-index: 3;
}
.showreel__title {
  font-family: var(--font-display); text-transform: uppercase; text-align: center;
  font-size: clamp(3.5rem, 16vw, 13rem); line-height: .82; letter-spacing: .01em;
  background: linear-gradient(180deg, #fff 0%, #6a6a6a 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  user-select: none;
}
.showreel-caption {
  opacity: var(--showreel-text-opacity, 1);
  transform: translateY(calc(-1 * var(--showreel-text-translate, 0px)));
  transition: opacity 0.1s linear, transform 0.1s linear;
  z-index: 3;
}
.video-frame-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.video-frame {
  pointer-events: auto;
  position: relative;
  width: var(--showreel-width, min(900px, 84vw));
  height: var(--showreel-height, calc(min(900px, 84vw) * 9 / 16));
  border-radius: var(--showreel-radius, 12px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  cursor: pointer;
  box-shadow: var(--shadow);
  will-change: width, height, border-radius;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-frame__play {
  position: absolute; inset: 0; display: grid; place-items: center; transition: opacity .3s;
  background: rgba(0,0,0,.25);
  z-index: 2;
}
.video-frame.playing .video-frame__play { opacity: 0; pointer-events: none; }
.play-btn {
  width: 84px; height: 84px; border-radius: 50%; background: var(--gold); color: #16130a;
  display: grid; place-items: center; font-size: 1.8rem; padding-left: 6px;
  box-shadow: 0 10px 40px rgba(231,181,60,.4); transition: transform .25s var(--ease);
}
.video-frame:hover .play-btn { transform: scale(1.08); }

/* ---------- Single Event detail ---------- */
.ev-hero { position: relative; padding-top: 7rem; overflow: hidden; }
.ev-hero__bg { position: absolute; inset: 0; z-index: -1; }
.ev-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.ev-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,12,.55), rgba(10,10,12,.85) 60%, var(--bg)); }
.ev-back { display: inline-flex; align-items: center; gap: .5em; color: var(--muted); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.5rem; }
.ev-back:hover { color: var(--gold); }
.ev-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 1024px) { .ev-layout { grid-template-columns: 1fr; } }
.ev-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: 8px; overflow: hidden; margin: 1.8rem 0; }
.ev-fact { background: var(--surface); padding: 1.1rem 1.2rem; }
.ev-fact .k { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.ev-fact .v { font-size: 1.05rem; font-weight: 600; }
.ev-tickbox {
  position: sticky; top: 90px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; padding: 1.6rem; box-shadow: var(--shadow);
}
.ev-tickbox h3 { font-family: var(--font-display); font-size: 1.6rem; text-transform: uppercase; margin-bottom: .3rem; }
.ev-tickbox .price-lg { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 1; margin: .6rem 0; }
.ev-tickbox .btn { width: 100%; margin-top: 1rem; }
.ev-tickbox ul { margin: 1rem 0 0; display: grid; gap: .6rem; }
.ev-tickbox li { display: flex; justify-content: space-between; font-size: .92rem; color: var(--muted); padding-bottom: .6rem; border-bottom: 1px solid var(--line-2); }
.ev-tickbox li b { color: var(--text); font-weight: 600; }

/* ---------- Ticket tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 820px) { .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.tier { position: relative; background: var(--surface); border: 1px solid var(--line-2); border-radius: 8px; padding: 2rem 1.8rem; display: flex; flex-direction: column; transition: transform .3s var(--ease), border-color .3s; }
.tier:hover { transform: translateY(-5px); }
.tier--featured { border-color: var(--btn-bg); }
.tier--featured::before { content: "Beliebt"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--btn-bg); color: var(--btn-text); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: .3rem .9rem; border-radius: 40px; }
.tier h3 { font-family: var(--font-display); font-size: 1.8rem; text-transform: uppercase; letter-spacing: .03em; }
.tier .price { font-family: var(--font-display); font-size: 3.4rem; color: var(--gold); line-height: 1; margin: .6rem 0 .2rem; }
.tier .per { font-size: .82rem; color: var(--muted); margin-bottom: 1.3rem; }
.tier ul { display: grid; gap: .7rem; margin-bottom: 1.6rem; }
.tier li { display: flex; gap: .6em; color: var(--muted); font-size: .94rem; }
.tier li::before { content: "✓"; color: var(--gold); font-weight: 700; }
.tier .btn { margin-top: auto; }

/* ---------- Legal pages ---------- */
.legal { max-width: 780px; }
.legal h2 { font-family: var(--font-display); font-size: 1.8rem; text-transform: uppercase; letter-spacing: .02em; margin: 2.2rem 0 .8rem; color: var(--gold); }
.legal h3 { font-size: 1.05rem; margin: 1.4rem 0 .4rem; }
.legal p, .legal li { color: var(--muted); margin-bottom: .8rem; line-height: 1.8; }
.legal ul { padding-left: 1.2rem; list-style: disc; }
.legal a { color: var(--gold); }
.legal a:hover { text-decoration: underline; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; scroll-behavior: auto; }
}

/* ============================================================
   Mobile-First Feinschliff
   ============================================================ */
@media (max-width: 680px) {
  :root { --gap: 1.15rem; }
  .brand img { height: 40px; }
  .nav-inner { padding-block: .7rem; }

  /* Hero: kompakter, Text gut lesbar */
  .hero { min-height: 100svh; padding-top: 0; }
  .hero__logo { width: min(340px, 74%); margin-bottom: 1.2rem; }
  .hero__sub { font-size: 1rem; }
  .hero__badge { font-size: .64rem; letter-spacing: .16em; padding: 0; }
  .btn-row .btn { flex: 1 1 auto; }        /* CTAs füllen die Breite */
  .hero__mute { bottom: 1rem; right: 1rem; }

  /* Abschnitte etwas enger */
  .section { padding-block: 3.25rem; }

  /* Marquee kleiner */
  .marquee__track span { font-size: 1.4rem; gap: 1.8rem; }
  .marquee__track { gap: 1.8rem; }

  /* Event-Detail: Ticketbox nicht kleben, klar getrennt */
  .ev-tickbox { position: static; }
  .ev-facts { grid-template-columns: 1fr 1fr; }
  .ev-fact .v { font-size: .98rem; }

  /* Countdown füllt Zeile */
  .countdown { gap: clamp(0.5rem, 3vw, 1.5rem); }
  .countdown__unit { flex: 1 1 0; min-width: 0; padding: 0; background: transparent; border: none; }

  /* Slider: eine große Karte pro Blick */
  .slide { width: 84vw; aspect-ratio: 3/4; }

  /* Footer gestapelt, Abstände */
  .footer__bottom { flex-direction: column; gap: .4rem; }

  /* Tap-Targets */
  .footer__nav a { padding-block: .5rem; }

  /* Display-Schrift (Syne ist breit) mobil verkleinern + Umbruchschutz gegen Overflow */
  .hero .display { font-size: clamp(2rem, 8.5vw, 3.2rem) !important; line-height: .96; overflow-wrap: anywhere; }
  .showreel__title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .countdown { gap: clamp(0.4rem, 2.5vw, 1.2rem); }
  .countdown__num { font-size: clamp(1.7rem, 8.5vw, 2.6rem); }
  .countdown__lab { font-size: .56rem; letter-spacing: .1em; margin-top: .5rem; }
  .cta-band__backdrop { font-size: clamp(3.5rem, 22vw, 9rem); }
}

@media (max-width: 400px) {
  .hero .display { font-size: clamp(1.7rem, 8vw, 2.6rem) !important; }
  h1.display { font-size: 2.1rem; }
  h2.display { font-size: 1.6rem; }
  .showreel__title { font-size: clamp(2rem, 11vw, 3.2rem); }
  .countdown__num { font-size: clamp(1.5rem, 8vw, 2.2rem); }
  .ev-facts { grid-template-columns: 1fr; }
  .slide { width: 88vw; }
}

/* Sehr breite Screens: Slider zeigt mehr */
@media (min-width: 1100px) { .slide { width: 420px; } }

/* ---------- Home: Upcoming Events List (Mockup Style) ---------- */
.ev-list-container {
  max-width: 1100px;
  margin: 3rem auto 0;
  border-top: 1px solid var(--line-2);
}
.ev-row {
  display: grid;
  grid-template-columns: 1.2fr 3fr 1.8fr;
  align-items: center;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line-2);
  gap: 2rem;
  transition: background-color 0.3s, border-color 0.3s;
  text-align: left;
  text-decoration: none;
  color: inherit;
}
.ev-row:hover {
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom-color: var(--gold);
}
.ev-row__date {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  letter-spacing: 0.05em;
}
.ev-row__info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ev-row__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0;
}
.ev-row__lineup {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.75rem, 1.4vw, 0.88rem);
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.ev-row__media {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ev-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.ev-row:hover .ev-row__media img {
  transform: scale(1.05);
}

/* Button centered below the list */
.ev-list-more {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ev-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-block: 1.5rem;
  }
  .ev-row__media {
    max-width: 320px;
    margin-top: 0.5rem;
  }
}

/* ============================================================
   WordPress-Kompatibilität (Menüs, Alignments, Editor)
   ============================================================ */
/* Menüs kommen als ul>li>a — flach darstellen wie das Original */
.nav-links li { list-style: none; }
.footer__nav ul, .footer__nav li { display: contents; }
.footer__nav ul { margin: 0; padding: 0; }

/* WooCommerce/Elementor Full-Width Grundlagen */
.wp-caption { max-width: 100%; }
.alignwide { width: 100%; }
.alignfull { width: 100%; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
}
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* Standard-Seiteninhalt (Legal etc.) */
.page-content { max-width: 820px; }
.page-content h2 { font-family: var(--font-display); text-transform: uppercase; color: var(--gold); margin: 2rem 0 .8rem; font-size: 1.7rem; }
.page-content h3 { margin: 1.4rem 0 .4rem; }
.page-content p, .page-content li { color: var(--muted); line-height: 1.8; margin-bottom: .8rem; }
.page-content a { color: var(--gold); }
.page-content ul { padding-left: 1.2rem; list-style: disc; }

/* ---------- Ticket-Kategorie mit Bild ---------- */
.tier__media { margin: -2rem -1.8rem 1.4rem; border-radius: 8px 8px 0 0; overflow: hidden; aspect-ratio: 16/9; }
.tier__media img { width: 100%; height: 100%; object-fit: cover; }
.tier__desc { color: var(--muted); font-size: .94rem; margin-bottom: 1rem; }
.tier__desc p { margin-bottom: .5rem; }

/* ---------- Scroll-to-Top ---------- */
.scroll-top {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--btn-bg); color: var(--btn-text);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.6);
}
.scroll-top.show { opacity: 1; transform: none; pointer-events: auto; }
.scroll-top:hover { background: var(--btn-bg-hover); transform: translateY(-3px); }
.scroll-top svg { display: block; }
.hero__mute svg { display: block; }
/* --- Contact Form 7 an Theme-Formular angleichen --- */
.wpcf7 .form { max-width: none; }
.wpcf7 .field .wpcf7-form-control-wrap { display: block; }
.wpcf7 .field input.wpcf7-form-control,
.wpcf7 .field textarea.wpcf7-form-control { width: 100%; }
.wpcf7 input.wpcf7-submit { width: auto; }

/* Hinweise / Fehlermeldungen */
.wpcf7-response-output {
  border: 1px solid var(--line-2) !important;
  border-left: 3px solid var(--gold) !important;
  border-radius: 8px !important;
  background: var(--surface);
  color: var(--text) !important;
  margin: 1.2rem 0 0 !important;
  padding: .9rem 1.1rem !important;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output { border-left-color: var(--red) !important; }
.wpcf7-not-valid-tip { color: var(--red) !important; font-size: .8rem; margin-top: .3rem; }
.wpcf7-spinner { filter: invert(1); }

/* CF7 Datenschutz-Checkbox */
.wpcf7 .field--consent { display: block; }
.wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}
.wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: .15rem;
  flex-shrink: 0;
  accent-color: var(--btn-bg);
}
.wpcf7-acceptance a { color: var(--gold); text-decoration: underline; }
