/* PumpTrack Bärau – Vorschlag 2 (youth / scroll-driven) */
:root {
  --bg: #070707;
  --bg-elevated: #121214;
  --text: #ffffff;
  --muted: #c4c4c9;
  --accent: #ff5722;
  --accent-2: #ffb74d;
  --accent-hover: #ff7043;
  --accent-bright: #ff8a50;
  --border: rgba(255, 255, 255, 0.12);
  --glow: rgba(255, 87, 34, 0.55);
  --header-h: 5.5rem;
  --video-grow-scroll: auto;
  --text-band-scroll: auto;
  --section-space: clamp(2.75rem, 5.5vw, 4.25rem);
  --section-space-sm: clamp(1.75rem, 3.5vw, 2.5rem);
  --home-hero-gap: clamp(1.75rem, 3.5vh, 2.5rem);
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-serif: "DM Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --layout-max: 1200px;
  --layout-gutter: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Ambient gradient orbs – dezent, Apple-artig */
.ambient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  will-change: transform;
}

.ambient__orb--a {
  width: min(55vw, 28rem);
  height: min(55vw, 28rem);
  top: -8%;
  left: -10%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.62), transparent 70%);
}

.ambient__orb--b {
  width: min(45vw, 22rem);
  height: min(45vw, 22rem);
  top: 35%;
  right: -12%;
  background: radial-gradient(circle, rgba(255, 183, 77, 0.42), transparent 70%);
}

.ambient__orb--c {
  width: min(40vw, 18rem);
  height: min(40vw, 18rem);
  bottom: 5%;
  left: 20%;
  background: radial-gradient(circle, rgba(255, 112, 67, 0.28), transparent 70%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3000;
  background: rgba(255, 255, 255, 0.06);
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px var(--glow);
  transform-origin: left center;
}

#content {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
}

.site-header__inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0.75rem var(--layout-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo img {
  width: clamp(8.5rem, 18vw, 11rem);
  height: auto;
}

.nav-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-top ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav-top__link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.nav-top__link.is-active,
.nav-top__link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.28rem;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: #fff;
}

/* Panel */
.nav-panel[hidden] {
  display: none !important;
}

.nav-panel {
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.nav-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.nav-panel__sheet {
  position: absolute;
  top: 0;
  right: 0;
  width: min(22rem, 92vw);
  height: 100%;
  background: #0d0d0d;
  border-left: 1px solid var(--border);
  padding: 4rem 1.75rem 2rem;
  overflow: auto;
  transform: translateX(0);
}

.nav-panel__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.75rem;
  line-height: 1;
}

.nav-panel a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  overflow-wrap: break-word;
  hyphens: manual;
  -webkit-hyphens: manual;
}

.nav-panel a.is-active {
  color: var(--accent);
}

body.panel-open {
  overflow: hidden;
}

/* Hero */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.25rem 1.25rem 0.75rem;
}

.hero--v2 {
  min-height: auto;
  padding: clamp(2rem, 4vh, 2.75rem) 1.25rem clamp(1.75rem, 3.5vh, 2.5rem);
}

.hero__frame {
  width: min(100%, calc(var(--layout-max) - 2 * var(--layout-gutter)));
  max-width: none;
  margin: 0 0 var(--home-hero-gap);
}

.hero__frame-link {
  position: relative;
  display: block;
  padding: 1.15rem 1.35rem;
  border-radius: 1.15rem;
  border: 2px solid rgba(255, 87, 34, 0.55);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 87, 34, 0.04));
  text-align: center;
  color: inherit;
  overflow: hidden;
  animation: hero-frame-pulse 2.8s ease-in-out infinite;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.hero__frame-link::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 183, 77, 0.95) 45%,
    rgba(255, 87, 34, 0.85) 55%,
    transparent 80%
  );
  background-size: 220% 100%;
  animation: hero-frame-shimmer 3.2s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero__frame-link > * {
  position: relative;
  z-index: 1;
}

.hero__frame-link:hover {
  color: #fff;
  border-color: rgba(255, 138, 80, 0.75);
  transform: translateY(-2px);
}

.hero__frame-tag {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.hero__frame-text {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.45;
  color: #fff;
}

.hero__frame-more {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes hero-frame-pulse {
  0%, 100% {
    border-color: rgba(255, 87, 34, 0.45);
    box-shadow:
      0 0 0 0 rgba(255, 87, 34, 0),
      0 12px 36px rgba(0, 0, 0, 0.34);
    transform: scale(1);
  }
  50% {
    border-color: rgba(255, 167, 94, 1);
    box-shadow:
      0 0 0 4px rgba(255, 87, 34, 0.18),
      0 0 36px rgba(255, 87, 34, 0.42),
      0 0 72px rgba(255, 87, 34, 0.16),
      0 16px 44px rgba(0, 0, 0, 0.38);
    transform: scale(1.025);
  }
}

@keyframes hero-frame-shimmer {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

.hero__sub {
  margin: clamp(1.25rem, 2.5vh, 1.75rem) 0 clamp(1.5rem, 3vh, 2.25rem);
  padding-top: 0.15rem;
  position: relative;
  z-index: 2;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__announce {
  width: min(100%, calc(var(--layout-max) - 2 * var(--layout-gutter)));
  max-width: none;
  margin: 0 0 var(--home-hero-gap);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  color: #fff;
}

.hero__announce a {
  color: inherit;
}

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

.hero__title {
  margin: 0 0 clamp(0.85rem, 2vh, 1.35rem);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5.2rem, 26vw, 14.5rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.04em;
}

.hero__title-line {
  display: block;
  line-height: 1;
}

.hero__title .split-char {
  color: #fff;
  opacity: 0;
  transform: translateY(1.15em) rotate(12deg) scale(0.72);
  filter: blur(6px);
  transition:
    opacity 0.72s var(--ease-out),
    transform 0.72s var(--ease-out),
    filter 0.72s var(--ease-out);
}

.hero__title.is-in .split-char {
  opacity: 1;
  transform: none;
  filter: none;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero__title.is-in .hero__title-line {
  background-image: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffe8d4 16%,
    var(--accent-bright) 38%,
    var(--accent) 52%,
    var(--accent-2) 68%,
    #ffffff 100%
  );
  background-size: 220% 100%;
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@keyframes hero-title-color {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes hero-title-line-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-0.45deg);
  }
  50% {
    transform: translate3d(0, -5px, 0) rotate(0.55deg);
  }
}

@keyframes hero-title-line-drift-alt {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0.5deg);
  }
  50% {
    transform: translate3d(0, -3px, 0) rotate(-0.65deg);
  }
}

.hero__title.is-in .hero__title-line:first-child {
  animation:
    hero-title-line-drift 5.8s ease-in-out infinite,
    hero-title-color 8s ease-in-out infinite;
}

.hero__title.is-in .hero__title-line:last-child {
  animation:
    hero-title-line-drift-alt 6.4s ease-in-out infinite,
    hero-title-color 8s ease-in-out infinite reverse;
  animation-delay: -1.5s, -3.25s;
}

/* Video – fixe Breite, weicher Reveal per Transform (kein Width-Resize) */
.video-grow {
  position: relative;
  height: auto;
  margin: clamp(0.5rem, 1.5vh, 1rem) auto var(--section-space-sm);
  padding: 0 var(--layout-gutter);
  max-width: var(--layout-max);
}

.video-grow__sticky {
  position: relative;
  top: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: visible;
}

.video-grow__frame {
  width: min(100%, calc(var(--layout-max) - 2 * var(--layout-gutter)));
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1.25rem;
  transform-origin: center center;
  will-change: opacity;
  opacity: 0.01;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.video-grow__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Scroll / text animations */
[data-animate] {
  opacity: 0;
  transition:
    opacity 0.95s var(--ease),
    transform 0.95s var(--ease);
  will-change: opacity, transform;
}

[data-animate="fade-up"] {
  transform: translateY(2.75rem);
}

[data-animate="fade-left"] {
  transform: translateX(-3.5rem);
}

[data-animate="fade-right"] {
  transform: translateX(3.5rem);
}

[data-animate="rise-in"] {
  transform: translateY(4.5rem);
}

.card[data-animate="rise-in"] {
  opacity: 0;
  transform: translateY(5rem);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}

.card[data-animate="rise-in"].is-in {
  opacity: 1;
  transform: none;
}

[data-animate="scale-in"] {
  transform: scale(0.92) translateY(1.5rem);
  filter: blur(6px);
}

[data-animate="scale-in"].is-in {
  filter: none;
}

[data-animate].is-in {
  opacity: 1;
  transform: none;
}

.split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.65em) rotate(4deg);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}

.is-in .split-char {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__frame-link {
    animation: none !important;
  }

  .hero__frame-link::before {
    animation: none !important;
    opacity: 0.35;
  }

  .hero__title.is-in .hero__title-line {
    animation: none !important;
    background-image: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
  }

  .hero__title.is-in .split-char {
    color: #fff;
    -webkit-text-fill-color: #fff;
  }

  [data-animate],
  .split-char,
  .marquee__track,
  .statement__line,
  .statement__accent {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Sections */
.section {
  padding: var(--section-space) var(--layout-gutter);
  max-width: var(--layout-max);
  margin: 0 auto;
}

.section--cards {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.section--cards .section__title {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.section--wide {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.section__label {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  line-height: 1.22;
}

.section__more {
  margin: 1.25rem 0 0;
}

/* Marquee under video */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: #050505;
  padding: 1rem 0;
}

.marquee--v2 .marquee__group span {
  background: linear-gradient(90deg, #fff 0%, var(--accent) 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}

.marquee__group {
  display: flex;
  flex: none;
}

.marquee__group span {
  flex: none;
  padding: 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fffefe;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Anführungszeichen – dekorativ, halb unter dem Text */
.quote-mark {
  position: absolute;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  color: var(--accent-bright);
  opacity: 0.3;
  text-shadow: none;
  user-select: none;
  pointer-events: none;
}

.quote-mark--open {
  z-index: 2;
  top: -0.2em;
  left: -0.08em;
  font-size: clamp(3.25rem, 9vw, 5.25rem);
}

.quote-mark--close {
  bottom: -0.35em;
  right: -0.12em;
  font-size: clamp(3.25rem, 9vw, 5.25rem);
}

/* Statement */
.section--statement {
  text-align: center;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space-sm);
}

.section--statement + .text-band {
  margin-top: calc(-1 * var(--section-space));
}

.statement-figure {
  margin: 0 auto;
  width: min(100%, calc(var(--layout-max) - 2 * var(--layout-gutter)));
  max-width: none;
}

.statement {
  position: relative;
  width: fit-content;
  max-width: min(100%, 42rem);
  margin-inline: auto;
  margin-block: 0;
  padding: 0.75rem 0.65rem 0.85rem;
  border: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.4vw, 2.35rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.22;
  color: #ececec;
  overflow-wrap: break-word;
}

.statement .quote-mark--open,
.statement .quote-mark--close {
  font-size: 2.15em;
  opacity: 0.26;
}

.statement .quote-mark--open {
  top: -0.28em;
  left: -0.42em;
}

.statement .quote-mark--close {
  bottom: 0.05em;
  right: 0.08em;
  transform: translateY(8%);
}

.statement__line {
  position: relative;
  z-index: 1;
  display: block;
  overflow-wrap: break-word;
  will-change: transform, opacity;
  opacity: 0.2;
  transform: translate3d(0, 2rem, 0);
}

.statement__line.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.statement__accent {
  color: var(--accent-bright);
  font-weight: 700;
  text-shadow: 0 0 24px var(--glow);
}

.statement__credit {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 1.3vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.section__lead {
  max-width: 36rem;
  color: var(--muted);
  margin: 0 0 2rem;
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
}

.card {
  position: relative;
  display: block;
  min-height: 18rem;
  overflow: hidden;
  background: var(--bg-elevated);
  color: #fff;
  will-change: transform;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.card--v2 {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card--v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 87, 34, 0.28);
}

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

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.06);
}

.card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 10%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.35));
}

.card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  z-index: 1;
}

.card__kicker {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.35rem;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.card__text {
  margin: 0;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Textband: scroll-gesteuert, vor/zurück beim Scrollen */
.text-band {
  position: relative;
  height: auto;
  margin-top: calc(-1 * var(--section-space-sm));
  margin-bottom: calc(-1 * var(--section-space-sm));
  padding: var(--section-space-sm) 0;
  overflow: hidden;
}

.text-band__pin {
  position: relative;
  top: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.text-band + .section {
  padding-top: var(--section-space-sm);
}

.text-band__stack {
  position: relative;
  width: min(100%, 76rem);
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.text-band__stack .text-band__line {
  pointer-events: none;
}

.text-band__stack .btn-round {
  pointer-events: auto;
}

.text-band__cta-mobile {
  display: none;
}

.text-band__line {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 9.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
  will-change: transform, opacity, filter;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  transition: none;
}

.text-band__line:nth-child(1) {
  margin-left: -2vw;
  z-index: 1;
}

.text-band__line:nth-child(2) {
  margin-top: 0.06em;
  z-index: 2;
}

.text-band__line:nth-child(3) {
  margin-top: 0.08em;
  margin-left: 3vw;
  z-index: 2;
}

.text-band__line:nth-child(4) {
  margin-top: 0.08em;
  margin-left: -1vw;
  z-index: 1;
}

.text-band__line--accent {
  color: var(--accent-bright);
  text-shadow: 0 0 50px var(--glow);
}

.text-band__line[data-from="left"],
.text-band__line[data-from="right"] {
  opacity: 0;
  filter: blur(14px);
}

.btn-round {
  position: absolute;
  left: 50%;
  top: 56%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(9.75rem, 24vw, 17rem);
  height: clamp(9.75rem, 24vw, 17rem);
  margin: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 32px var(--glow);
  transform: translate(-50%, -50%) scale(0.12) rotate(-34deg);
  opacity: 0;
  filter: blur(14px);
  transition: none;
  will-change: transform, opacity, filter;
}

.btn-round.is-settled {
  opacity: 1;
  transform: translate(-50%, -50%);
  filter: none;
  animation: btn-float 4.2s ease-in-out infinite;
}

.text-band__line.is-settled {
  opacity: 1;
  transform: none;
  filter: none;
}

.btn-round:hover {
  color: #fff;
  background: var(--accent-hover);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
}

.btn-round__label {
  display: block;
  max-width: 10.5em;
  padding: 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.55vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
}

@keyframes btn-float {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 0.45rem)); }
}

@media (prefers-reduced-motion: reduce) {
  .text-band__line[data-from="left"],
  .text-band__line[data-from="right"],
  .btn-round,
  .text-band__cta-mobile {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  .btn-round {
    transform: translate(-50%, -50%) !important;
  }

  .text-band {
    height: auto;
    min-height: 0;
    padding: 3rem 0;
  }

  .testimonial-carousel__viewport > .testimonial {
    transition: none;
    transform: none;
  }
}

/* Testimonials */
.section--testimonials {
  max-width: 820px;
}

.testimonial-carousel {
  margin-top: 0.25rem;
}

.testimonial-carousel--multi {
  position: relative;
}

.testimonial-carousel__viewport {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  touch-action: pan-y;
}

.testimonial-carousel__viewport > .testimonial {
  grid-area: 1 / 1;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.85rem);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease),
    visibility 0.55s;
  pointer-events: none;
}

.testimonial-carousel__viewport > .testimonial.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.testimonial-carousel__viewport > .testimonial:not(.is-active) img {
  display: none;
}

.testimonial-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.testimonial-carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.testimonial-carousel__dot.is-active {
  background: var(--accent-bright);
  transform: scale(1.25);
}

.testimonial-carousel__dot:hover,
.testimonial-carousel__dot:focus-visible {
  background: var(--accent);
  outline: none;
  transform: scale(1.15);
}

.testimonial-carousel__nav {
  display: none;
}

@media (min-width: 721px) {
  .testimonial-carousel--multi {
    padding: 0 2.75rem;
  }

  .testimonial-carousel__nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
    pointer-events: auto;
    transform: translateY(-50%);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
  }

  .testimonial-carousel__nav.is-unavailable {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .testimonial-carousel__nav[hidden] {
    display: none !important;
  }

  .testimonial-carousel__nav:hover,
  .testimonial-carousel__nav:focus-visible {
    background: rgba(255, 87, 34, 0.14);
    border-color: rgba(255, 87, 34, 0.45);
    color: var(--accent-bright);
    outline: none;
  }

  .testimonial-carousel__nav--prev {
    left: 0;
  }

  .testimonial-carousel__nav--next {
    right: 0;
  }
}

.testimonial {
  margin: 0;
  padding: 1.75rem 0 0;
}

.testimonial--v2 {
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.news-card--v2 {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.1rem 1.15rem;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}

.news-card--v2:hover {
  border-color: rgba(255, 87, 34, 0.4);
  transform: translateY(-3px);
}

.news-card--has-media {
  padding: 0;
  overflow: hidden;
}

.news-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-elevated);
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.news-card--v2:hover .news-card__media img {
  transform: scale(1.04);
}

.news-card--has-media .news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.95rem 1.1rem 1.1rem;
}

.testimonial blockquote {
  position: relative;
  margin: 0 0 1.5rem;
  padding: 0.85rem 1.5rem 0.95rem;
  border: 0;
}

.testimonial blockquote p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: #ececec;
}

.testimonial .quote-mark {
  opacity: 0.32;
}

.testimonial .quote-mark--open {
  top: -0.48em;
  left: 0;
}

.testimonial .quote-mark--close {
  bottom: 0.05em;
  right: 0.05em;
  transform: translateY(25%);
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial figcaption img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.testimonial figcaption span {
  color: var(--muted);
  font-size: 0.95rem;
}

.text-link {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

/* Page hero (inner) */
.page-hero {
  padding: 4rem var(--layout-gutter) 2rem;
  max-width: var(--layout-max);
  margin: 0 auto;
  min-width: 0;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  -webkit-hyphens: auto;
  line-height: 1.12;
}

.page-hero p {
  color: var(--muted);
  margin: 0;
  max-width: 40rem;
}

.page-content {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0 var(--layout-gutter) 4rem;
  min-width: 0;
}

.page-content p {
  color: #d7d7d7;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem var(--layout-gutter) 2rem;
  background: #070707;
}

.site-footer__grid {
  max-width: var(--layout-max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h2 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}

.site-footer p,
.site-footer li {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer a,
.site-footer__consent {
  overflow-wrap: break-word;
  hyphens: manual;
  -webkit-hyphens: manual;
}

.site-footer li + li {
  margin-top: 0.35rem;
}

.site-footer__copy {
  max-width: var(--layout-max);
  margin: 0 auto;
  color: #777;
  font-size: 0.85rem;
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 900;
}

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

/* News teaser */
.news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.news-list > * {
  min-width: 0;
  display: flex;
  height: 100%;
}

.news-card {
  border: 1px solid var(--border);
  padding: 1.25rem;
  background: var(--bg-elevated);
}

.news-card__meta {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.news-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.28;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  flex: 1 1 auto;
}

.news-card h3 a {
  display: inline;
}

.news-card__body > p:last-child {
  margin: 0;
  margin-top: auto;
}

.news-article__cover {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 1.5rem) var(--layout-gutter) 0;
}

.news-article__cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.news-article__cover figcaption {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.news-article__header.page-hero {
  padding-top: 2rem;
}

.news-pager {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem 1.25rem;
  align-items: start;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.news-pager__slot a {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--accent-2);
  text-decoration: none;
}

.news-pager__slot--newer {
  text-align: right;
}

.news-pager__slot--newer a {
  align-items: flex-end;
}

.news-pager__label {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-pager__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.3;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

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

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

  .news-pager__slot--newer {
    text-align: left;
  }

  .news-pager__slot--newer a {
    align-items: flex-start;
  }
}

/* Responsive */
@media (max-width: 640px) {
  .page-hero h1 {
    font-size: clamp(1.7rem, 7.5vw, 2.25rem);
    letter-spacing: 0.025em;
    line-height: 1.15;
  }
}

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

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 4.75rem;
    --video-grow-scroll: auto;
    --text-band-scroll: auto;
  }

  .nav-top ul {
    display: none;
  }

  .site-header__inner {
    padding: 0.55rem 1rem;
  }

  .site-logo img {
    width: clamp(7rem, 34vw, 9rem);
  }

  .hero--v2 {
    min-height: auto;
    padding: 1.75rem 1rem 1.25rem;
  }

  .hero__frame-link {
    padding: 0.95rem 1rem;
  }

  .hero__frame-text {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .hero__title {
    font-size: clamp(3.85rem, 19vw, 5.35rem);
    line-height: 0.96;
    margin-bottom: 0.25rem;
    gap: 0.06em;
  }

  .hero__sub {
    margin-top: 1.15rem;
    padding-top: 0.2rem;
    font-size: 0.82rem;
  }

  .section {
    padding: var(--section-space-sm) 1rem;
  }

  .section--statement {
    padding-top: var(--section-space-sm);
    padding-bottom: var(--section-space-sm);
  }

  .statement {
    font-size: clamp(1.05rem, 4.2vw, 1.45rem);
    line-height: 1.28;
    padding: 0.5rem 0.45rem 0.6rem;
  }

  .page-content .prose .prose-quote .statement {
    font-size: clamp(1.05rem, 4.2vw, 1.45rem);
    line-height: 1.28;
    padding: 0.5rem 0.45rem 0.6rem;
  }

  .statement .quote-mark--open,
  .statement .quote-mark--close {
    font-size: 2em;
    opacity: 0.24;
  }

  .statement .quote-mark--open {
    top: -0.26em;
    left: -0.35em;
  }

  .statement .quote-mark--close {
    right: 0.06em;
    bottom: 0.04em;
    transform: translateY(6%);
  }

  .statement__credit {
    margin: 0.75rem 0 0;
    font-size: 0.62rem;
    line-height: 1.45;
  }

  .section--statement + .text-band {
    margin-top: calc(-1 * var(--section-space-sm) / 2);
  }

  .section--cards {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
  }

  .text-band + .section {
    padding-top: var(--section-space-sm);
  }

  .card-grid,
  .news-list {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 15rem;
  }

  .video-grow {
    height: auto;
    margin: 0;
    padding: 0.35rem 1rem 0.75rem;
  }

  .video-grow__sticky {
    position: relative;
    top: auto;
    height: auto;
    display: block;
    padding: 0;
  }

  .video-grow__frame {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 10;
    border-radius: 1rem;
    transform-origin: center center;
    will-change: transform;
  }

  .video-grow__frame video {
    object-fit: cover;
  }

  .text-band {
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding: 1.25rem 0 2.5rem;
    overflow: hidden;
    background: var(--bg);
  }

  .text-band__pin {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .text-band__stack {
    position: relative;
    display: block;
    min-height: 0;
    padding: 0.35rem 0.75rem 1.25rem;
  }

  .text-band__line {
    font-size: clamp(1.75rem, 9.5vw, 2.75rem);
    position: relative;
    width: 100%;
  }

  .text-band__line:nth-child(1) {
    margin-left: 0;
  }

  .text-band__line:nth-child(3) {
    margin-left: 1.5vw;
  }

  .text-band__line:nth-child(4) {
    margin-left: 0;
  }

  .btn-round {
    display: none;
  }

  .text-band__cta-mobile {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    margin: 1.35rem auto 0;
    padding: 0.7rem 1.15rem;
    letter-spacing: 0.06em;
    touch-action: manipulation;
  }

  .card[data-animate="rise-in"] {
    transform: translateY(6rem);
  }

  .testimonial blockquote {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .testimonial .quote-mark--open {
    top: -0.48em;
    left: 0.12em;
  }

  .testimonial .quote-mark--close {
    right: 0.3em;
  }

}

/* ---- Importierte Inhaltsseiten ---- */
.page-content .prose {
  color: #d7d7d7;
}

.page-content .prose h2,
.page-content .prose h3,
.page-content .prose h4 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 2rem 0 0.75rem;
  line-height: 1.25;
}

.page-content .prose h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-content .prose h3 {
  font-size: 1.2rem;
}

.page-content .prose h4 {
  font-size: 1.05rem;
  color: var(--accent-2);
}

.page-content .prose p,
.page-content .prose li {
  line-height: 1.65;
}

.page-content .prose--news a {
  color: var(--accent-2);
  text-decoration: none;
}

.page-content .prose--news a:hover {
  color: var(--accent);
}

.page-content .prose ul {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 1.25rem;
}

.page-content .prose ul > li {
  position: relative;
  padding-left: 1.15em;
}

.page-content .prose ul > li::before {
  content: "−";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
  line-height: inherit;
}

.page-content .prose ul > li > p {
  margin: 0;
}

.page-content .prose ul ul {
  margin: 0.25rem 0 0.15rem;
}

.page-content .prose--offers h3,
.page-content .prose--offers h4 {
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
}

.page-content .prose--offers h4 {
  margin-top: 0.35rem;
}

.page-content .prose--offers ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.page-content .prose--offers li + li {
  margin-top: 0.55rem;
}

.page-content .prose li + li {
  margin-top: 0.4rem;
}

.page-content .prose figure {
  margin: 1.5rem 0;
}

.page-content .prose img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.page-content .prose iframe {
  display: block;
  width: 100%;
  height: 420px;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
  margin: 1rem 0;
}

.page-content .prose blockquote {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.25;
}

.page-content .prose figure.prose-quote {
  margin: 2.25rem auto;
  width: 100%;
  max-width: 100%;
  padding-inline: 1.75rem;
  text-align: center;
  overflow: visible;
}

.page-content .prose .prose-quote .statement {
  margin-inline: auto;
  margin-block: 0;
  padding: 0.75rem 0.65rem 0.85rem;
  border: 0;
  width: fit-content;
  max-width: min(100%, 42rem);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.4vw, 2.35rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.22;
  color: #ececec;
}

.page-content .prose .prose-quote .statement__line,
.page-content .prose .prose-quote .statement p {
  margin: 0;
  color: inherit;
}

.page-content .prose .prose-quote .statement__line.statement__accent,
.page-content .prose .prose-quote .statement__accent {
  color: var(--accent-bright);
  text-shadow: 0 0 24px var(--glow);
}

.page-content .prose .prose-quote .statement__credit {
  display: block;
  text-align: center;
}

.page-content .prose--center {
  text-align: center;
}

.page-content .prose--center img {
  margin-inline: auto;
  max-width: min(100%, 480px);
}

.page-eroeffnungsfest .prose--center img {
  max-width: min(100%, 820px);
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.page-content .prose--legal {
  max-width: none;
  width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.page-content .prose--legal > h2:first-child {
  display: none;
}

.page-content .prose--legal p,
.page-content .prose--legal li {
  font-size: 1.125rem;
  line-height: 1.75;
}

.page-content .prose--legal h5 {
  font-size: 1.25rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--accent-2);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.page-content .prose--legal h6 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.35rem 0 0.45rem;
  color: var(--text);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.page-content .prose--legal a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-content .prose--legal a[href^="http"],
.page-content .prose--legal a[href^="mailto:"] {
  color: var(--accent-2);
}

.page-content .prose--legal a:hover {
  color: var(--accent);
}

.page-content .prose--legal #inhaltsverzeichnis + ul a {
  font-weight: 500;
}

.rules-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: start;
}

.rules-layout__media {
  margin: 0;
}

.rules-layout__media img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.rules-layout__note {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.page-content .prose .rules-layout__subtitle {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.65rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text);
}

.rules-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rules-accordion__item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-elevated);
  overflow: hidden;
}

.rules-accordion__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 1rem 2.75rem 1rem 1.15rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: var(--text);
  position: relative;
  user-select: none;
}

.rules-accordion__summary::-webkit-details-marker {
  display: none;
}

.rules-accordion__summary::marker {
  content: "";
}

.rules-accordion__summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1.35rem;
  height: 1.35rem;
  transform: translateY(-50%);
  box-sizing: border-box;
  border: 1px solid rgba(255, 87, 34, 0.35);
  border-radius: 4px;
  color: var(--accent);
  background-color: transparent;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.72em 1.5px, 1.5px 0.72em;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.rules-accordion__item[open] > .rules-accordion__summary::after {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0.72em 1.5px;
}

.rules-accordion__summary:hover::after {
  background-color: rgba(255, 87, 34, 0.12);
}

.rules-accordion__item[open] > .rules-accordion__summary:hover::after {
  background-color: var(--accent-hover);
}

.rules-accordion__panel {
  padding: 0 1.15rem 1.15rem;
}

.rules-accordion__panel > :first-child {
  margin-top: 0;
}

.rules-accordion__panel > :last-child {
  margin-bottom: 0;
}

.page-content .prose .rules-accordion__panel ul {
  list-style: none;
  padding-left: 0;
  margin: 0.35rem 0 0;
}

.page-content .prose .rules-accordion__panel li {
  position: relative;
  padding-left: 1.15em;
}

.page-content .prose .rules-accordion__panel li::before {
  content: "−";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
  line-height: inherit;
}

.page-content .prose .rules-accordion__panel li > p {
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-layout__map iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 10px;
}

.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__notice {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-form__notice--success {
  border: 1px solid rgba(76, 175, 80, 0.45);
  background: rgba(76, 175, 80, 0.12);
  color: #d9f0da;
}

.contact-form__notice--error {
  border: 1px solid rgba(255, 87, 34, 0.55);
  background: rgba(255, 87, 34, 0.12);
  color: #ffd8cc;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-elevated);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.contact-form p {
  margin: 0 0 1rem;
}

.contact-form__legal {
  margin-bottom: 1.15rem;
}

.contact-form__legal label {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
  cursor: pointer;
}

.contact-form__legal a {
  overflow-wrap: break-word;
  hyphens: manual;
  -webkit-hyphens: manual;
}

.contact-form__legal input[type="checkbox"] {
  width: 1.35rem;
  height: 1.35rem;
  margin: 0.12rem 0 0;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

@media (min-width: 901px) {
  .contact-form__legal label {
    align-items: center;
    gap: 0.4rem;
  }

  .contact-form__legal input[type="checkbox"] {
    width: 1.45rem;
    height: 1.45rem;
    margin: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: #fff;
  background: transparent;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

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

.btn--accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

@media (min-width: 721px) {
  .text-band__cta-mobile.btn {
    display: none;
  }
}

.spreadshop-wrap {
  margin-top: 2rem;
  min-height: 480px;
}

@media (max-width: 900px) {
  .rules-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ---- Cookie / Consent Banner ---- */
html.consent-locked body {
  overflow: hidden;
}

.consent-banner {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.consent-banner[hidden] {
  display: none !important;
}

.consent-banner__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.consent-banner__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 32rem);
  padding: 1.35rem 1.4rem 1.25rem;
  border-radius: 8px;
  background: #fff;
  color: #2b2b2b;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.consent-banner__text {
  margin: 0 0 1.15rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.consent-banner__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  overflow-wrap: break-word;
  hyphens: manual;
  -webkit-hyphens: manual;
}

.consent-banner__text a:hover {
  color: var(--accent);
}

.consent-banner__actions {
  display: grid;
  gap: 0.65rem;
}

.consent-banner__btn {
  width: 100%;
  border: 0;
  border-radius: 4px;
  padding: 0.8rem 1rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.consent-banner__btn--primary {
  background: #111;
  color: #fff;
}

.consent-banner__btn--primary:hover {
  background: var(--accent);
}

.consent-banner__btn--secondary {
  background: #efefef;
  color: #0a0a0a;
}

.consent-banner__btn--secondary:hover {
  background: #e3e3e3;
}

.site-footer__consent {
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}

.site-footer__consent:hover {
  color: var(--accent-2);
}

@media (max-width: 480px) {
  .consent-banner {
    align-items: flex-end;
    padding: 0;
  }

  .consent-banner__dialog {
    width: 100%;
    border-radius: 8px 8px 0 0;
    padding: 1.15rem 1rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .consent-banner__dialog {
    animation: none;
  }
}

/* Error / 404 */
.page-error .ambient {
  display: none;
}

.error-page {
  min-height: calc(100vh - var(--header-h) - 14rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem var(--layout-gutter) 4.5rem;
}

.error-page__code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.05rem, 0.8vw, 0.45rem);
  margin: 0 0 1.5rem;
  line-height: 1;
  user-select: none;
  max-width: 100%;
}

.error-page__digit {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(7.5rem, 28vw, 22.5rem);
  color: var(--accent);
  letter-spacing: -0.06em;
}

.error-page__wheel {
  width: clamp(8rem, 30vw, 23.5rem);
  height: auto;
  flex-shrink: 0;
}

.error-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
}

.error-page__text {
  color: var(--muted);
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  max-width: 28rem;
}

.error-page__text p {
  margin: 0;
  color: inherit;
}

.error-page__btn {
  padding: 0.85rem 1.85rem;
  min-width: 8.75rem;
}

@media (max-width: 480px) {
  .error-page {
    min-height: calc(100vh - var(--header-h) - 18rem);
    padding-top: 2.25rem;
  }
}
