@font-face {
  font-family: Panton;
  src: url("panton-400.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Panton;
  src: url("panton-600.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Panton;
  src: url("panton-700.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255, 255, 255, 0.66);
  --dim: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.14);
  --panel: #0a0a0b;
  --panel-2: #0e0e10;
  --cyan: #74c7e2;
  --cyan-soft: #a3daec;
  --red: #ea5053;
  --red-deep: #b03f19;
  --max: 1240px;
  --pad: 5vw;
  --font: Panton, Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
}

body {
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--cyan-soft);
}

.eyebrow {
  font-family: var(--font);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

/* Motion */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFade1 {
  0%,
  20% {
    opacity: 1;
  }
  25%,
  94% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes heroFade2 {
  0%,
  20% {
    opacity: 0;
  }
  25%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}
@keyframes heroFade3 {
  0%,
  45% {
    opacity: 0;
  }
  50%,
  70% {
    opacity: 1;
  }
  75%,
  100% {
    opacity: 0;
  }
}
@keyframes heroFade4 {
  0%,
  70% {
    opacity: 0;
  }
  75%,
  94% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes heroZoomInA {
  0% {
    transform: scale(1);
  }
  22% {
    transform: scale(1.1);
  }
  25% {
    transform: scale(1.12);
  }
  26%,
  100% {
    transform: scale(1);
  }
}
@keyframes heroZoomOutB {
  0%,
  20% {
    transform: scale(1.12);
  }
  45%,
  50% {
    transform: scale(1);
  }
  51%,
  100% {
    transform: scale(1.12);
  }
}
@keyframes heroZoomInC {
  0%,
  45% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(1.12);
  }
  76%,
  100% {
    transform: scale(1);
  }
}
@keyframes heroZoomOutD {
  0%,
  70% {
    transform: scale(1.12);
  }
  94% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes swapA {
  0%,
  34% {
    opacity: 1;
  }
  42%,
  84% {
    opacity: 0;
  }
  92%,
  100% {
    opacity: 1;
  }
}
@keyframes swapB {
  0%,
  34% {
    opacity: 0;
  }
  42%,
  84% {
    opacity: 1;
  }
  92%,
  100% {
    opacity: 0;
  }
}
@keyframes introOut {
  0%,
  76% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

/* Intro */
.intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.5vh, 28px);
  padding: max(24px, 6vh) var(--pad);
  animation: introOut 4s ease forwards;
  pointer-events: none;
}

.intro__mark {
  height: clamp(64px, 14vh, 96px);
  width: auto;
  max-width: min(60vw, 220px);
}

.intro__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: riseIn 1s ease both;
  text-align: center;
  width: min(34rem, 92vw);
}

.intro__label {
  font-weight: 600;
  font-size: clamp(11px, 2.4vw, 12px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
}

.intro__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12em;
  font-size: clamp(17px, 2.4vw + 0.4rem, 30px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

/* Explicit 2-line invite; rem (not ch) so fallback font can't crush the wrap */
.intro__line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 380px) {
  .intro__text {
    font-size: clamp(15px, 4.2vw, 18px);
  }
}

.intro__tiktok {
  height: clamp(32px, 6vh, 44px);
  width: auto;
  opacity: 0.95;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px var(--pad);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header .btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

.site-header .btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.site-header.is-scrolled .btn {
  background: var(--red);
  border-color: transparent;
  font-weight: 700;
}

.site-header.is-scrolled .btn:hover {
  background: #f0686b;
  border-color: transparent;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand__ls {
  height: 28px;
  width: auto;
}

.brand__tiktok {
  height: 20px;
  width: auto;
}

.brand__rule {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.55);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 0;
  background: var(--red);
  color: var(--fg);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background: #f0686b;
  color: var(--fg);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

.btn--ghost:hover {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.btn--lg {
  padding: 19px 38px;
  font-size: 17px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center; /* vertical only — keeps CTA in view on notebooks */
  justify-content: flex-start;
  padding: 0 var(--pad);
}

@media (min-width: 960px) {
  .hero {
    /* 16:9, so wide photos fill the frame without an extra crop */
    min-height: min(100svh, 56.25vw);
  }
}

.hero__media {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slide:nth-child(1) {
  animation: heroFade1 32s ease-in-out infinite;
}
.hero__slide:nth-child(2) {
  animation: heroFade2 32s ease-in-out infinite;
}
.hero__slide:nth-child(3) {
  animation: heroFade3 32s ease-in-out infinite;
}
.hero__slide:nth-child(4) {
  animation: heroFade4 32s ease-in-out infinite;
}

.hero__pan {
  position: absolute;
  inset: 0;
  transform-origin: center center;
}

.hero__slide:nth-child(1) .hero__pan {
  animation: heroZoomInA 32s ease-in-out infinite;
}
.hero__slide:nth-child(2) .hero__pan {
  animation: heroZoomOutB 32s ease-in-out infinite;
}
.hero__slide:nth-child(3) .hero__pan {
  animation: heroZoomInC 32s ease-in-out infinite;
}
.hero__slide:nth-child(4) .hero__pan {
  animation: heroZoomOutD 32s ease-in-out infinite;
}

.hero__pan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  /* Top-left stays dark for the type. Top-right stays open.
     The photo dissolves into the page so the lower edge is not a cut. */
  background:
    radial-gradient(
      ellipse 84% 96% at 20% 38%,
      #000 0%,
      rgba(0, 0, 0, 0.9) 28%,
      rgba(0, 0, 0, 0.62) 48%,
      rgba(0, 0, 0, 0.22) 64%,
      transparent 80%
    ),
    linear-gradient(
      to top,
      #000 0%,
      rgba(0, 0, 0, 0.88) 9%,
      rgba(0, 0, 0, 0.5) 22%,
      rgba(0, 0, 0, 0.16) 36%,
      transparent 50%
    );
}

.hero__shade::before,
.hero__shade::after {
  content: "";
  position: absolute;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Darkness behind the words, drifting so the edge never sits still. */
.hero__shade::before {
  width: 76%;
  height: 130%;
  left: -10%;
  top: -10%;
  background: radial-gradient(
    ellipse 78% 72% at 30% 42%,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 52%,
    transparent 78%
  );
  animation: heroVeil 14s ease-in-out infinite alternate;
}

/* Bottom pool, heavier on the right, breathing so the fade is not a hard band. */
.hero__shade::after {
  width: 115%;
  height: 62%;
  left: -8%;
  bottom: -18%;
  background: radial-gradient(
    ellipse 70% 80% at 78% 100%,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 42%,
    transparent 72%
  );
  animation: heroFloor 16s ease-in-out infinite alternate;
}

@keyframes heroVeil {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }
  to {
    transform: translate3d(6%, 4%, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes heroFloor {
  from {
    transform: translate3d(0, 4%, 0) scale(1);
    opacity: 0.65;
  }
  to {
    transform: translate3d(-6%, -8%, 0) scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .hero__shade {
    background:
      radial-gradient(
        ellipse 130% 70% at 0% 0%,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.55) 46%,
        transparent 72%
      ),
      linear-gradient(
        to top,
        #000 0%,
        rgba(0, 0, 0, 0.72) 18%,
        transparent 46%
      );
  }

  .hero__shade::before {
    width: 150%;
    left: -30%;
  }

  .hero__shade::after {
    height: 48%;
  }
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--max); /* same content column as header / logo */
  margin: 0 auto;
  padding: clamp(120px, 18vh, 160px) 0 clamp(64px, 10vh, 96px);
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* left-aligned copy + CTA */
  gap: clamp(22px, 3.2vh, 34px);
  animation: riseIn 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
}

.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulseDot 2.4s ease-in-out infinite;
}

.swap {
  display: grid;
}

.swap > * {
  grid-area: 1 / 1;
}

.swap > :first-child {
  animation: swapA 13s ease 4.6s infinite both;
}

.swap > :last-child {
  animation: swapB 13s ease 4.6s infinite both;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.8vw, 84px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 15ch;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.75);
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.85);
}

.hero__title strong {
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero__title span {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.45;
  color: var(--cyan);
}

.hero__lede {
  margin: 0;
  max-width: 58ch;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.85);
}

/* Meta strip */
.meta {
  padding: 0 var(--pad);
}

.meta__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(240px, 45%, 600px), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.meta__item {
  background: var(--panel);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta__grid > .meta__item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.meta__item .eyebrow {
  color: var(--cyan);
}

.meta__item strong {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.meta__item > span:not(.eyebrow) {
  font-size: 16.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

/* Sections */
.section {
  padding: 112px var(--pad) 0;
}

.section--flush {
  padding-left: 0;
  padding-right: 0;
}

.section__intro {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 900px;
  margin-bottom: 56px;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section__intro p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 70ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(180deg, #0e0e10 0%, #08080a 100%);
  transition: border-color 0.2s ease;
}

.card:hover {
  border-color: var(--cyan);
}

.card:nth-child(1):hover {
  border-color: var(--red-deep);
}

.card:nth-child(3) {
  background: linear-gradient(180deg, #160a0c 0%, #08080a 100%);
}

.card:nth-child(3):hover {
  border-color: var(--red);
}

.card__n {
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.card:nth-child(1) .card__n {
  color: var(--red-deep);
}
.card:nth-child(2) .card__n {
  color: var(--cyan);
}
.card:nth-child(3) .card__n {
  color: var(--red);
}

.card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

.band {
  height: clamp(300px, 46vw, 620px);
  width: 100%;
}

.band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Programm */
.programm {
  padding: 112px var(--pad);
}

.programm__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.programm__aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 96px;
}

.programm__aside h2 {
  font-size: clamp(30px, 3.6vw, 48px);
}

.programm__aside p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.slot {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.slot:last-child {
  border-bottom: 1px solid var(--line);
}

.slot time {
  font-weight: 600;
  font-size: 16px;
  color: var(--cyan);
}

.slot:last-child time {
  color: var(--red);
}

.slot h3 {
  margin: 0 0 9px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.slot p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

/* Anmeldung / RSVP */
.anmeldung {
  padding: 16px var(--pad) 112px;
}

.anmeldung__box {
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--panel);
}

/* Single left column: variants switched by RSVP state */
.anmeldung__copy {
  padding: clamp(32px, 4vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 0;
}

.anmeldung__variant {
  display: none;
  flex-direction: column;
  gap: 26px;
  height: 100%;
}

.anmeldung__variant .eyebrow {
  color: var(--cyan);
}

.anmeldung__variant h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.anmeldung__variant > p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.anmeldung__variant > p.anmeldung__deadline {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
  color: #fff;
}

.anmeldung__note {
  margin-top: auto;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.anmeldung__copy .otl-rsvp-occ {
  margin: 0;
  flex: none;
}

/* Seat reserved — form / ticket (+ static shell without island) */
.anmeldung__box:not(:has([data-otl-rsvp-state])) [data-copy="seat"],
.anmeldung__box:has([data-otl-rsvp-state="form"]) [data-copy="seat"],
.anmeldung__box:has([data-otl-rsvp-state="ticket"]) [data-copy="seat"] {
  display: flex;
}

/* Capacity full — waitlist form (never “Platz reserviert”) */
.anmeldung__box:has([data-otl-rsvp-state="form_full"]) [data-copy="full"] {
  display: flex;
}

/* Message-only states: hide left column (status is already in the RSVP island) */
.anmeldung__box:has([data-otl-rsvp-state="closed"]),
.anmeldung__box:has([data-otl-rsvp-state="expired"]),
.anmeldung__box:has([data-otl-rsvp-state="cancelled"]),
.anmeldung__box:has([data-otl-rsvp-state="waitlist"]),
.anmeldung__box:has([data-otl-rsvp-state="invite_required"]),
.anmeldung__box:has([data-otl-rsvp-state="unsubscribed"]),
.anmeldung__box:has([data-otl-unsub]) {
  grid-template-columns: 1fr;
}

.anmeldung__box:has([data-otl-rsvp-state="closed"]) .anmeldung__copy,
.anmeldung__box:has([data-otl-rsvp-state="expired"]) .anmeldung__copy,
.anmeldung__box:has([data-otl-rsvp-state="cancelled"]) .anmeldung__copy,
.anmeldung__box:has([data-otl-rsvp-state="waitlist"]) .anmeldung__copy,
.anmeldung__box:has([data-otl-rsvp-state="invite_required"]) .anmeldung__copy,
.anmeldung__box:has([data-otl-rsvp-state="unsubscribed"]) .anmeldung__copy,
.anmeldung__box:has([data-otl-unsub]) .anmeldung__copy {
  display: none;
}

.anmeldung__form {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--panel-2);
  min-width: 0;
}

/* Injected onthelist RSVP */
.rsvp {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--fg);
}

.rsvp .eyebrow {
  color: var(--cyan);
}

.rsvp h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.rsvp .lede {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.anmeldung__form .otl-rsvp,
.anmeldung__form .rsvp {
  gap: 26px;
  height: 100%;
}

.anmeldung__form .otl-rsvp > .eyebrow,
.anmeldung__form .rsvp > .eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 1;
  color: var(--cyan);
}

/* Left column already shows «Anmeldung». Keep the right label in the flow so both headlines share one baseline. */
.anmeldung__box:has([data-otl-rsvp-state="form"]) .anmeldung__form .eyebrow,
.anmeldung__box:has([data-otl-rsvp-state="form_full"]) .anmeldung__form .eyebrow {
  visibility: hidden;
}

.anmeldung__form .otl-rsvp > h2,
.anmeldung__form .rsvp > h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.anmeldung__form .otl-rsvp > .lede,
.anmeldung__form .rsvp > .lede {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.anmeldung__form .otl-unsub {
  gap: 18px;
  max-width: 36rem;
}

.anmeldung__form .otl-unsub__email {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  word-break: break-word;
}

.otl-rsvp .field,
.rsvp .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
  min-width: 0;
}

.otl-rsvp .field:has(textarea),
.rsvp .field:has(textarea) {
  gap: 16px;
}

.otl-rsvp .field label,
.rsvp .field label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.otl-rsvp .field textarea,
.otl-rsvp .field input,
.otl-rsvp .field select,
.rsvp .field textarea,
.rsvp .field input,
.rsvp .field select {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.otl-rsvp .field select,
.rsvp .field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 14px) 50%;
  padding-right: 40px;
}

.otl-rsvp .field input[readonly],
.otl-rsvp .field input:disabled,
.otl-rsvp .field select:disabled,
.otl-rsvp .field textarea:disabled,
.rsvp .field input[readonly],
.rsvp .field input:disabled,
.rsvp .field select:disabled,
.rsvp .field textarea:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.otl-rsvp .field--text .field__label,
.rsvp .field--text .field__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.otl-rsvp .otl-rsvp__plaintext,
.rsvp .otl-rsvp__plaintext {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #fff;
  word-break: break-word;
}

.otl-rsvp .field textarea:focus,
.otl-rsvp .field input:focus,
.otl-rsvp .field select:focus,
.rsvp .field textarea:focus,
.rsvp .field input:focus,
.rsvp .field select:focus {
  outline: none;
  border-color: var(--cyan);
}

.otl-rsvp__grid,
.rsvp .otl-rsvp__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.otl-rsvp__grid--one,
.rsvp .otl-rsvp__grid--one {
  grid-template-columns: 1fr;
}

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

.otl-rsvp .chip,
.rsvp .chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--line);
}

.otl-rsvp .chip--ok,
.rsvp .chip--ok {
  color: #9be7a3;
  border-color: rgba(155, 231, 163, 0.35);
  background: rgba(155, 231, 163, 0.1);
}

.otl-rsvp-ticket {
  margin-top: 6px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  color: #000;
}

.otl-rsvp-ticket__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: #000;
  color: #fff;
}

.otl-rsvp-ticket__brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan, #74c7e2);
}

.otl-rsvp-ticket__code {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}

.otl-rsvp-ticket__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.otl-rsvp-ticket__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
}

.otl-rsvp-ticket__k {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #709faf;
  margin-bottom: 4px;
}

.otl-rsvp-ticket__v {
  display: block;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  color: #000;
}

.otl-rsvp-ticket__sub {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  color: #373838;
  margin-top: 4px;
}

.otl-rsvp-ticket__row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #b4b4b4;
}

.otl-rsvp-ticket__when {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.otl-rsvp-ticket__when .otl-rsvp-ticket__v {
  color: #003a5c;
}

.otl-rsvp-ticket__qr {
  flex: none;
  padding: 8px;
  border: 1px solid #b4b4b4;
  border-radius: 12px;
  background: #fff;
  line-height: 0;
}

.otl-rsvp-cal {
  margin-top: 4px;
  border: 1px solid #dee3e5;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  color: #0c0d0f;
}

.otl-rsvp-cal__top {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.otl-rsvp-cal__badge {
  flex: none;
  width: 44px;
  border: 1px solid #c5cdd1;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

.otl-rsvp-cal__month {
  display: block;
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 4px 0;
  background: #0c0d0f;
  color: #fff;
}

.otl-rsvp-cal__day {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding: 5px 0 6px;
  color: #003a5c;
  background: #fff;
}

.otl-rsvp-cal__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.otl-rsvp-cal__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5b5c5e;
}

.otl-rsvp-cal__detail {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #0c0d0f;
}

.otl-rsvp-cal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid #dee3e5;
  background: #fff;
}

.otl-rsvp-cal__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 11px 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #003a5c !important;
  text-decoration: none;
  font-weight: 700;
  min-height: 44px;
  box-sizing: border-box;
  border: 1.5px solid #003a5c;
  border-radius: 4px;
  background: #fff;
}

.otl-rsvp-cal__link[aria-disabled] {
  opacity: 0.55;
  pointer-events: none;
}

.otl-rsvp-wallet {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.otl-rsvp-wallet__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 calc(50% - 5px);
  min-width: 140px;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-sizing: border-box;
  min-height: 48px;
  font-weight: 600;
}

.otl-rsvp-wallet__btn--apple {
  background: #0c0d0f;
  color: #fff !important;
  border: 1.5px solid #fff;
}

.otl-rsvp-wallet__btn--google {
  background: #fff;
  color: #0c0d0f !important;
  border: 1.5px solid #0c0d0f;
}

.otl-rsvp-wallet__btn[aria-disabled] {
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 520px) {
  .otl-rsvp-wallet {
    flex-direction: column;
  }

  .otl-rsvp-wallet__btn {
    flex-basis: 100%;
  }
}

.otl-rsvp .chip--warn,
.rsvp .chip--warn {
  color: #e8a33a;
  border-color: rgba(232, 163, 58, 0.35);
  background: rgba(232, 163, 58, 0.1);
}

.otl-rsvp__notice {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14.5px;
  line-height: 1.5;
}

.otl-rsvp__notice--warn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: #fff;
  padding: 16px 18px;
  font-size: 15.5px;
  line-height: 1.5;
}

.otl-rsvp__notice--bad {
  background: rgba(234, 80, 83, 0.12);
  border: 1px solid rgba(234, 80, 83, 0.45);
  color: #f3a3a5;
}

.anmeldung__form .otl-rsvp__hint {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  opacity: 1;
}

.otl-rsvp-waitpos {
  margin-top: 4px;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: flex-start;
  width: max-content;
  max-width: 100%;
}

.otl-rsvp-waitpos__k {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.otl-rsvp-waitpos__v {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}

.otl-rsvp .chip--bad,
.rsvp .chip--bad {
  color: #f3a3a5;
  border-color: rgba(234, 80, 83, 0.4);
  background: rgba(234, 80, 83, 0.12);
}

.otl-rsvp .btn,
.rsvp .btn {
  padding: 14px 24px;
  font-size: 15px;
}

.otl-rsvp .btn__dot,
.rsvp .btn__dot {
  opacity: 0.8;
}

.otl-rsvp .eyebrow {
  color: var(--cyan);
}

.otl-rsvp h2 {
  color: #fff;
  font-family: var(--font);
}

.otl-rsvp .lede {
  color: rgba(255, 255, 255, 0.72);
}

/* Anreise */
.anreise {
  padding: 0 var(--pad) 112px;
}

.anreise__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.anreise__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.anreise__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.anreise__copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}

.anreise__copy > p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.anreise__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
  padding-top: 8px;
}

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

.fact .eyebrow {
  color: var(--cyan);
}

.fact:nth-child(2) .eyebrow {
  color: var(--red);
}

.fact:nth-child(n + 3) .eyebrow {
  color: #fff;
}

.fact span:last-child {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.anreise__media {
  min-width: 0;
  height: clamp(240px, 26vw, 360px);
  border-radius: 22px;
  overflow: hidden;
}

.anreise__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.site-footer {
  padding: 56px var(--pad) 40px;
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  text-align: left;
}

.site-footer .brand__ls {
  height: 78px;
}

.site-footer .brand__tiktok {
  height: 44px;
}

.site-footer .brand__rule {
  height: 72px;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__bar {
  max-width: var(--max);
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.site-footer__nav {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}

.site-footer__bar a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__bar a:hover {
  color: #fff;
}

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

  .programm__aside {
    position: static;
  }

  .anmeldung__box {
    grid-template-columns: 1fr;
  }

  .anmeldung__copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .anreise__grid {
    grid-template-columns: 1fr;
  }

  .anreise__facts {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__bar {
    flex-wrap: wrap;
    gap: 12px 30px;
  }

  .site-header .btn {
    display: none;
  }

  .hero__content {
    max-width: 100%;
  }

  .site-footer {
    padding-bottom: 32px;
  }

  .site-footer .brand {
    gap: 14px;
  }

  .site-footer .brand__ls {
    height: 52px;
  }

  .site-footer .brand__tiktok {
    height: 28px;
  }

  .site-footer .brand__rule {
    height: 48px;
  }
}

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

  .intro {
    display: none;
  }

  .hero__slide:not(:first-child) {
    display: none;
  }

  .hero__slide:first-child,
  .hero__pan {
    opacity: 1 !important;
    transform: none !important;
  }
}
