/* ═══════════════════════════════════════════
   ISEK — Official Website
   ═══════════════════════════════════════════ */

:root {
  --bg: #0a0a0c;
  --bg-elevated: #121215;
  --text: #f4f4f5;
  --text-dim: #9d9da6;
  --accent: #ff2e3f;
  --accent-dark: #c11220;
  --line: rgba(255, 255, 255, 0.09);
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section { padding: clamp(90px, 12vw, 160px) 0; }

/* ── Typography ─────────────────────────── */

.section__kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: clamp(30px, 4vw, 56px);
}

/* ── Buttons ────────────────────────────── */

.btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  background: transparent;
  padding: 16px 38px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  font-family: var(--font);
}

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

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* ── Navigation ─────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav--solid {
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line);
}

.nav__inner {
  width: min(1300px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img { height: 22px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav__links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s ease;
}

.nav__links a:hover { color: #fff; }

.nav__links a.nav__cta {
  color: #fff;
  border: 1px solid var(--accent);
  padding: 10px 24px;
  transition: background 0.25s ease;
}

.nav__links a.nav__cta:hover { background: var(--accent); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── Hero ───────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  animation: kenburns 22s ease-in-out infinite alternate;
  filter: saturate(0.85) contrast(1.05);
}

/* Scroll-Effekt (nur mit JS aktiv): Gesicht startet geblurrt unter dem Logo,
   beim Scrollen fährt das Logo nach oben weg und der Blur löst sich auf.
   Bild leicht überdimensioniert, damit die Blur-Ränder nicht sichtbar werden. */
.hero--fx .hero__image {
  position: absolute;
  inset: -28px;
  width: calc(100% + 56px);
  height: calc(100% + 56px);
  filter: saturate(0.85) contrast(1.05) blur(var(--hero-blur, 14px));
  will-change: filter, transform;
}

.hero--fx .hero__content {
  will-change: opacity, transform;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(255, 46, 63, 0.22), transparent 55%),
    linear-gradient(to bottom, rgba(10, 10, 12, 0.55) 0%, rgba(10, 10, 12, 0.25) 45%, rgba(10, 10, 12, 0.92) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 6vw 17svh;
}

.hero__logo {
  width: min(460px, 72vw);
  margin: 0 auto 26px;
  opacity: 0;
  animation: heroRise 1.2s var(--ease) 0.2s forwards;
}

.hero__tagline {
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 600;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 44px;
  opacity: 0;
  animation: heroRise 1.2s var(--ease) 0.45s forwards;
}

.hero__actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroRise 1.2s var(--ease) 0.7s forwards;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  animation: scrollHint 2.2s ease-in-out infinite;
}

@keyframes scrollHint {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}

/* ── Marquee ────────────────────────────── */

.marquee {
  border-block: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-dim);
}

.marquee__track i {
  color: var(--accent);
  font-style: normal;
  font-size: 12px;
}

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

/* ── About ──────────────────────────────── */

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about__image-accent {
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid var(--accent);
  z-index: 0;
}

.about__copy p + p { margin-top: 1.2em; }

.about__copy,
.about__copy p:first-child {
  color: var(--text-dim);
}

.about__artists {
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.about__artists-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.about__artists ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.about__artists li {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ── Facts ──────────────────────────────── */

.facts {
  border-block: 1px solid var(--line);
  background: var(--bg-elevated);
}

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

.facts__item {
  padding: clamp(40px, 5vw, 64px) clamp(20px, 3vw, 48px);
  text-align: center;
}

.facts__item + .facts__item { border-left: 1px solid var(--line); }

.facts__value {
  display: block;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.facts__value em {
  font-style: normal;
  color: var(--accent);
}

.facts__label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Music ──────────────────────────────── */

.music__embed {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  min-height: 352px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.music__embed iframe {
  width: 100%;
  height: 352px;
  border: 0;
  display: block;
}

.music__consent {
  text-align: center;
  padding: 40px;
}

.music__consent p:first-child {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.music__consent-note {
  color: var(--text-dim);
  font-size: 14px;
  max-width: 460px;
  margin: 0 auto 26px;
}

.music__consent-note a {
  color: var(--text);
  text-decoration: underline;
}

.music__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.platform {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: all 0.3s var(--ease);
}

.platform svg { width: 20px; height: 20px; }

.platform:hover {
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ── Live / Showreel ───────────────────── */

.live { background: var(--bg-elevated); border-block: 1px solid var(--line); }

.live__player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  display: block;
}

.live__note {
  margin-top: 26px;
  color: var(--text-dim);
  font-size: 15px;
  letter-spacing: 0.06em;
}

.live__clip {
  margin-top: clamp(38px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  padding-top: clamp(32px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.live__clip-copy {
  max-width: 520px;
}

.live__clip-copy h3 {
  margin: 8px 0 16px;
  font-size: clamp(2.1rem, 5vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.live__clip-copy p:not(.section__kicker) {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.live__clip-media {
  align-self: end;
}

.live__clip-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 640px;
  background: #000;
  display: block;
  object-fit: cover;
}

.live__clip-credit {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live__clip-credit a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── YouTube (Zwei-Klick) ──────────────── */

.yt { margin-top: clamp(50px, 7vw, 90px); }

.yt__heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.yt__frame {
  background: var(--bg);
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.yt__consent { text-align: center; padding: 30px; }

.yt__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ── Tour ───────────────────────────────── */

.tour__list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.tour__item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 10px 28px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}

.tour__item:hover { background: rgba(255, 255, 255, 0.025); }

.tour__date {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.tour__date small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour__what { min-width: 0; }

.tour__title-text {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
}

.tour__location {
  display: block;
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 2px;
}

.tour__badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 7px 14px;
  white-space: nowrap;
}

.tour__empty {
  padding: 34px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
}

.tour__cta {
  margin-top: 26px;
  font-size: 15px;
  color: var(--text-dim);
}

.tour__cta a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── Follow ─────────────────────────────── */

.follow {
  padding: clamp(90px, 12vw, 160px) 0;
  background: var(--bg-elevated);
  border-block: 1px solid var(--line);
}

.follow__card {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 46, 63, 0.14), transparent 36%),
    var(--bg);
  overflow: hidden;
}

.follow__ticker {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
}

.follow__ticker-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: followTicker 24s linear infinite;
}

.follow__ticker-track span {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.follow__ticker-track i {
  color: var(--accent);
  font-style: normal;
}

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

.follow__card-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  padding: clamp(28px, 5vw, 56px);
}

.follow__copy h3 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.follow__copy p {
  color: var(--text-dim);
  max-width: 300px;
}

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

.follow__platform {
  min-height: 142px;
  border: 1px solid var(--line);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.follow__platform:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.follow__platform span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.follow__platform strong {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.follow__platform small {
  color: var(--text-dim);
  font-size: 14px;
  letter-spacing: 0.06em;
}

/* ── Gallery ────────────────────────────── */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: min(1400px, 96vw);
  margin-inline: auto;
}

.gallery__grid figure {
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 2 / 3;
}

.gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  filter: saturate(0.9);
}

.gallery__grid figure:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.gallery__credit {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 6, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 90svh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

/* ── Booking ────────────────────────────── */

.booking {
  position: relative;
  overflow: hidden;
}

.booking__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(255, 46, 63, 0.16), transparent 55%),
    linear-gradient(to bottom, rgba(10, 10, 12, 0.9), rgba(10, 10, 12, 0.82)),
    url("../img/press-17.jpg");
  background-size: auto, auto, cover;
  background-position: center, center, 50% 25%;
}

.booking__inner { position: relative; z-index: 1; }

.section__kicker--light { color: var(--accent); }

.booking__lead {
  font-size: 15px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: -20px 0 48px;
}

.booking__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 820px;
  margin-bottom: 36px;
}

.booking__card {
  border: 1px solid var(--line);
  background: rgba(18, 18, 21, 0.72);
  backdrop-filter: blur(6px);
  padding: 30px 28px;
  transition: all 0.35s var(--ease);
}

.booking__card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  background: rgba(18, 18, 21, 0.9);
}

.booking__card-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.booking__card-value {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  word-break: break-word;
}

.booking__mgmt {
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

/* ── Footer ─────────────────────────────── */

.footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 46px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.footer__logo { height: 26px; width: auto; opacity: 0.9; }

.footer__socials,
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.footer__socials a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s ease;
}

.footer__socials a:hover { color: #fff; }

.footer__legal a,
.footer__link-button {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__link-button {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: inherit;
  line-height: inherit;
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.footer__legal a:hover,
.footer__link-button:hover {
  color: #fff;
}

.footer__copy {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

/* ── Privacy / Cookie banner ───────────── */

.privacy-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 180;
  display: none;
  width: min(430px, calc(100vw - 32px));
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 46, 63, 0.12), transparent 42%),
    rgba(10, 10, 12, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.55);
}

.privacy-banner.open { display: block; }

.privacy-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
}

.privacy-banner__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.privacy-banner__text {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.privacy-banner__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 0;
}

.privacy-banner .btn {
  width: 100%;
  min-width: 0;
  padding: 13px 18px;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
  line-height: 1.35;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(5, 5, 6, 0.78);
}

.privacy-modal.open { display: flex; }

.privacy-modal__panel {
  width: min(560px, 100%);
  border: 1px solid var(--line);
  background: var(--bg);
  padding: clamp(28px, 5vw, 44px);
}

.privacy-modal__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.privacy-modal__copy {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 24px;
}

.privacy-option {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.privacy-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  margin-top: 4px;
}

.privacy-option strong { display: block; line-height: 1.3; }

.privacy-option span {
  display: block;
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 3px;
}

.privacy-modal__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 8px;
}

/* ── Scroll-Reveal ──────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal--left { transform: translateX(-36px); }

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--left { opacity: 1; transform: none; transition: none; }
  .hero__image, .marquee__track, .follow__ticker-track, .hero__scroll-line::after { animation: none; }
  .hero__logo, .hero__tagline, .hero__actions { opacity: 1; animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Legal pages ───────────────────────── */

.legal-page {
  padding: 170px 0 100px;
  max-width: 760px;
}

.legal-page h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 50px;
}

.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 44px 0 14px;
}

.legal-page h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 30px 0 10px;
}

.legal-page p, .legal-page ul {
  color: var(--text-dim);
  margin-bottom: 14px;
}

.legal-page ul { padding-left: 22px; }

.legal-page a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page .backlink {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

/* ── 404 ────────────────────────────────── */

.error-page { text-align: center; }

.error-page__logo {
  height: 34px;
  width: auto;
  margin: 0 auto 40px;
}

.error-page__action { margin-top: 30px; }

.error-page .btn { text-decoration: none; }

/* ── Responsive ─────────────────────────── */

@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__image { max-width: 480px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .booking__cards { grid-template-columns: 1fr; }
  .facts__grid { grid-template-columns: 1fr; }
  .facts__item + .facts__item { border-left: none; border-top: 1px solid var(--line); }
  .follow__card-inner { grid-template-columns: 1fr; align-items: start; }
  .follow__actions { grid-template-columns: 1fr; }

  .tour__item { grid-template-columns: 1fr; gap: 6px; }
  .tour__badge { justify-self: start; margin-top: 6px; }
  .live__clip { grid-template-columns: 1fr; align-items: start; }
  .live__clip-video { width: min(360px, 100%); }

  .nav__burger {
    display: flex;
    position: relative;
    z-index: 110;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    z-index: 105;
    display: none;
    background: rgba(10, 10, 12, 0.72);
    backdrop-filter: blur(18px) saturate(0.9);
    -webkit-backdrop-filter: blur(18px) saturate(0.9);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
  }

  .nav__links.open { display: flex; }

  .nav__links a { font-size: 17px; }

  .nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  body.nav-open > section,
  body.nav-open > footer {
    filter: blur(10px);
    transform: scale(1.01);
    pointer-events: none;
    transition: filter 0.25s ease, transform 0.25s ease;
  }
}

@media (max-width: 760px) {
  /* Hero mobil: gleiche Anmutung wie Desktop (Vollbild, Logo über dem Bild),
     nur Größen angepasst */
  .hero__content { padding-bottom: 13svh; }

  .hero__image {
    object-position: 50% 50%;
    min-width: 100%;
    min-height: 100%;
  }

  .hero--fx .hero__image {
    left: -28px;
    right: -28px;
    top: -28px;
    bottom: -28px;
    width: auto;
    height: auto;
    min-width: calc(100% + 56px);
    min-height: calc(100% + 56px);
  }

  .hero__logo { width: min(320px, 82vw); }

  .hero__tagline { letter-spacing: 0.4em; margin-bottom: 36px; }

  .hero__actions { gap: 12px; }

  .hero__actions .btn { width: min(320px, 82vw); }

  .reveal--left { transform: translateY(36px); }

  .about__image-accent { inset: 16px 0 -16px 16px; }

  .privacy-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    max-width: none;
  }
  .privacy-banner__actions,
  .privacy-modal__actions {
    justify-content: stretch;
  }
  .privacy-banner .btn,
  .privacy-modal .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    letter-spacing: 0.13em;
  }
}
