/* ═══════════════════════════════════════════════════════════════
   REDHILL54 STUDIO — Samt, Neon & Beton
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #08070a;
  --bg-2: #0e0c12;
  --panel: #14111a;
  --ink: #f5f1ea;
  --muted: #9b93a6;
  --magenta: #ff1f8f;
  --violet: #b429ff;
  --red: #e0234e;
  --grad: linear-gradient(100deg, var(--magenta), var(--violet));
  --font: "Avenir Next", "Futura", "Helvetica Neue", Helvetica, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--magenta); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2433; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--magenta); }

/* ═══════════ PRELOADER ═══════════ */
#preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pre-hex { display: grid; place-items: center; gap: 22px; }
.pre-hex svg { overflow: visible; }
.pre-hex-line {
  fill: none; stroke: var(--magenta); stroke-width: 2;
  stroke-dasharray: 280; stroke-dashoffset: 280;
  filter: drop-shadow(0 0 12px var(--magenta));
  animation: hexdraw 1.6s var(--ease) infinite;
}
@keyframes hexdraw {
  0% { stroke-dashoffset: 280; }
  55% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -280; }
}
.pre-word {
  font-size: 13px; letter-spacing: .55em; text-indent: .55em;
  color: var(--muted); font-weight: 600;
}

/* ═══════════ GRAIN & CURSOR ═══════════ */
.grain {
  position: fixed; inset: -50%; z-index: 900; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .05;
  animation: grainmove 8s steps(10) infinite;
}
@keyframes grainmove {
  0%,100% { transform: translate(0,0); } 10% { transform: translate(-5%,-8%); }
  20% { transform: translate(-12%,3%); } 30% { transform: translate(6%,-10%); }
  40% { transform: translate(-4%,12%); } 50% { transform: translate(-10%,4%); }
  60% { transform: translate(12%,0); } 70% { transform: translate(0,10%); }
  80% { transform: translate(-12%,0); } 90% { transform: translate(10%,6%); }
}

.cursor-dot, .cursor-glow {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 950;
  border-radius: 50%; opacity: 0;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 8px; height: 8px; background: var(--ink);
  mix-blend-mode: difference;
  transition: width .25s, height .25s, opacity .3s;
}
.cursor-glow {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255,31,143,.10), transparent 65%);
  transition: opacity .4s;
}
body.has-cursor .cursor-dot, body.has-cursor .cursor-glow { opacity: 1; }
body.cursor-big .cursor-dot { width: 52px; height: 52px; }

/* ═══════════ HEADER ═══════════ */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 56px);
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
.site-head.scrolled {
  background: rgba(8,7,10,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 12px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(255,31,143,.5)); }
.brand-word { font-weight: 800; letter-spacing: .18em; font-size: 15px; }
.brand-word em { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.site-nav { display: flex; gap: clamp(14px, 2.5vw, 34px); align-items: center; }
.site-nav a {
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  transition: color .25s;
  position: relative;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad); transition: width .3s var(--ease);
}
.site-nav a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid rgba(255,31,143,.55); border-radius: 999px;
  padding: 9px 20px; color: var(--ink) !important;
}
.nav-cta:hover { background: rgba(255,31,143,.14); box-shadow: 0 0 24px rgba(255,31,143,.35); }
.nav-cta::after { display: none; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center;
  overflow: hidden;
}
#hexCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-inner { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.hero-kicker {
  font-size: clamp(11px, 1.4vw, 14px); letter-spacing: .38em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 3vh; font-weight: 600;
  text-indent: .38em;
}
.hero-title {
  font-size: clamp(52px, 12.5vw, 190px);
  font-weight: 800; letter-spacing: .01em; line-height: .95;
  background: linear-gradient(175deg, #fff 30%, rgba(255,255,255,.28));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
  filter: drop-shadow(0 0 40px rgba(255,31,143,.35));
}
/* Animation und Verlauf getrennt: background-clip:text bricht in Chrome
   auf Elementen, die selbst Transforms/Filter animieren. Deshalb:
   äußerer Span animiert, innerer Span trägt den Verlauf. */
.hero-title .lt {
  display: inline-block;
  animation: ltIn 1s var(--ease) both;
  animation-delay: calc(.9s + var(--i) * 70ms);
}
.hero-title .lt-g {
  display: inline-block;
  background: linear-gradient(175deg, #fff 30%, rgba(255,255,255,.3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-title:has(.lt) { background: none; filter: none; }
@keyframes ltIn {
  from { opacity: 0; transform: translateY(.55em) rotate(6deg) scale(.85); filter: blur(10px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
.hero-sub {
  margin-top: 3.5vh;
  font-size: clamp(16px, 2.1vw, 24px);
  color: var(--muted); font-weight: 500;
  animation: fadeUp 1.2s var(--ease) 1.9s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 1px; height: 64px; overflow: hidden;
}
.scroll-hint-line {
  display: block; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--magenta));
  animation: hintdrop 1.8s var(--ease) infinite;
}
@keyframes hintdrop {
  0% { transform: translateY(-100%); } 60% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 22vh; z-index: 1;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  overflow: hidden; white-space: nowrap;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: var(--bg-2);
  position: relative; z-index: 2;
}
.marquee-track { display: inline-flex; animation: marquee 26s linear infinite; }
.marquee-chunk {
  font-size: clamp(15px, 2vw, 22px); font-weight: 800; letter-spacing: .3em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,241,234,.4);
  flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════ MANIFEST ═══════════ */
.manifest {
  padding: clamp(90px, 16vh, 200px) clamp(24px, 8vw, 140px);
  max-width: 1300px; margin: 0 auto;
}
.manifest-text {
  font-size: clamp(26px, 4.2vw, 56px);
  font-weight: 700; line-height: 1.25; letter-spacing: -.01em;
}
.manifest-text em {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 26px rgba(255,31,143,.4));
}

/* ═══════════ SECTION HEADS ═══════════ */
section { position: relative; }
.sec-head { padding: 0 clamp(20px, 5vw, 80px); margin-bottom: clamp(40px, 7vh, 90px); }
.sec-kicker {
  display: inline-block;
  font-size: 12px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--magenta); font-weight: 700;
  margin-bottom: 18px;
}
.sec-kicker::before {
  content: "⬢"; margin-right: 10px; color: var(--violet);
}
.sec-title {
  font-size: clamp(40px, 7.5vw, 110px);
  font-weight: 800; line-height: 1.02; letter-spacing: -.015em;
  text-transform: uppercase;
}

/* ═══════════ COLLAGE (Der Raum) ═══════════ */
.raum { padding: clamp(70px, 12vh, 150px) 0; }
.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 30px);
  padding: 0 clamp(20px, 5vw, 80px);
  align-items: start;
}
.collage-item { position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; }
.collage-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s;
  will-change: transform;
}
.collage-item:hover img { transform: scale(1.06); filter: saturate(1.2); }
.collage-item figcaption,
.reel-item figcaption,
.licht-img figcaption, .licht-img-2 figcaption,
.sound-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 18px 14px;
  font-size: 13px; letter-spacing: .1em; font-weight: 600;
  background: linear-gradient(to top, rgba(8,7,10,.85), transparent);
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
.collage-item:hover figcaption, .reel-item:hover figcaption,
.licht-img:hover figcaption, .licht-img-2:hover figcaption,
.sound-item:hover figcaption { opacity: 1; transform: none; }

.c-a { grid-column: 1 / 6; aspect-ratio: 3 / 4; margin-top: 60px; }
.c-b { grid-column: 6 / 13; aspect-ratio: 16 / 10; }
.c-c { grid-column: 3 / 9; aspect-ratio: 16 / 9; margin-top: -20px; }
.collage-text {
  grid-column: 9 / 13; align-self: center;
  color: var(--muted); font-size: clamp(15px, 1.4vw, 18px);
}

/* Hexagon-Clip als Leitmotiv */
.hexclip {
  clip-path: polygon(50% 0, 96% 25%, 96% 75%, 50% 100%, 4% 75%, 4% 25%);
  border-radius: 0;
}

/* ═══════════ REEL (horizontal) ═══════════ */
.reel { height: 340vh; }
.reel-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center;
  background: var(--bg-2);
}
.reel-track {
  display: flex; gap: clamp(24px, 4vw, 60px);
  padding: 0 8vw;
  will-change: transform;
}
.reel-item {
  position: relative; flex-shrink: 0;
  width: clamp(320px, 58vw, 900px);
  aspect-ratio: 16 / 10;
  overflow: hidden; border-radius: 8px;
  cursor: pointer;
}
.reel-item img { width: 100%; height: 100%; object-fit: cover; }
.reel-num {
  position: absolute; top: -6px; left: 10px;
  font-size: clamp(70px, 9vw, 150px); font-weight: 800; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.5);
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ═══════════ LICHT ═══════════ */
.licht { padding: clamp(90px, 15vh, 190px) 0; overflow: hidden; }
.licht-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(180,41,255,.12), transparent 70%),
    radial-gradient(50% 40% at 10% 80%, rgba(255,31,143,.10), transparent 70%);
}
.licht-grid {
  display: grid; grid-template-columns: 7fr 5fr;
  gap: clamp(20px, 3.5vw, 60px);
  padding: 0 clamp(20px, 5vw, 80px);
  align-items: start;
}
.licht-img { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 4 / 3; cursor: pointer; }
.licht-img img, .licht-img-2 img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.licht-img:hover img, .licht-img-2:hover img { transform: scale(1.05); }
.licht-copy { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 40px); }
.licht-copy > p { color: var(--muted); font-size: clamp(15px, 1.5vw, 19px); max-width: 46ch; }
.licht-img-2 { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 16 / 10; cursor: pointer; margin-top: 8vh; }

/* ═══════════ SOUND ═══════════ */
.sound { padding: clamp(90px, 15vh, 190px) 0 clamp(70px, 10vh, 120px); }
.eq-divider {
  display: flex; align-items: flex-end; gap: 6px;
  height: 60px; padding: 0 clamp(20px, 5vw, 80px);
  margin-bottom: clamp(40px, 6vh, 80px);
}
.eq-divider span {
  flex: 1; background: var(--grad); border-radius: 2px 2px 0 0;
  height: 20%; opacity: .8;
  animation: eq 1.1s ease-in-out infinite alternate;
  animation-delay: calc(var(--d, 0) * 1s);
}
.eq-divider span:nth-child(3n)   { --d: .15; }
.eq-divider span:nth-child(3n+1) { --d: .35; }
.eq-divider span:nth-child(4n)   { --d: .55; }
.eq-divider span:nth-child(5n)   { --d: .05; }
.eq-divider span:nth-child(7n)   { --d: .75; }
@keyframes eq { from { height: 12%; } to { height: 95%; } }

.sound-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 30px);
  padding: 0 clamp(20px, 5vw, 80px);
  align-items: start;
}
.sound-item { position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; }
.sound-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.sound-item:hover img { transform: scale(1.06); }
.s-a { grid-column: 1 / 8; aspect-ratio: 16 / 9; }
.s-b { grid-column: 8 / 13; aspect-ratio: 1; margin-top: 80px; }
.s-c { grid-column: 2 / 7; aspect-ratio: 4 / 3; margin-top: -30px; }
.sound-copy {
  grid-column: 8 / 12; align-self: center;
  color: var(--muted); font-size: clamp(15px, 1.4vw, 18px);
}

/* ═══════════ STATS ═══════════ */
.stats {
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: var(--bg-2);
}
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1400px; margin: 0 auto;
}
.stat {
  padding: clamp(40px, 6vh, 70px) 20px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.07);
}
.stat:first-child { border-left: none; }
.stat-n {
  display: block;
  font-size: clamp(44px, 6vw, 90px); font-weight: 800; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-l {
  display: block; margin-top: 12px;
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}

/* ═══════════ KONTAKT ═══════════ */
.kontakt { padding: clamp(100px, 16vh, 210px) 0; }
.kontakt-title {
  background: linear-gradient(120deg, #fff 40%, var(--magenta), var(--violet));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kontakt-card {
  margin: 0 clamp(20px, 5vw, 80px);
  max-width: 860px;
  background: linear-gradient(160deg, rgba(255,31,143,.07), rgba(180,41,255,.05)), var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: clamp(30px, 4vw, 56px);
  box-shadow: 0 40px 120px -40px rgba(255,31,143,.25);
}
.kontakt-text { color: var(--muted); font-size: clamp(16px, 1.6vw, 20px); margin-bottom: 34px; }
.kontakt-lines { display: flex; flex-direction: column; }
.kontakt-line {
  display: flex; align-items: baseline; gap: 26px;
  padding: 20px 4px;
  border-top: 1px solid rgba(255,255,255,.08);
  transition: padding-left .3s var(--ease), background .3s;
}
a.kontakt-line:hover { padding-left: 18px; background: rgba(255,31,143,.05); }
.kontakt-label {
  width: 90px; flex-shrink: 0;
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--magenta); font-weight: 700;
}
.kontakt-value { font-size: clamp(17px, 2.4vw, 26px); font-weight: 700; word-break: break-word; }

/* ═══════════ FOOTER ═══════════ */
.site-foot {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
  padding: 40px clamp(20px, 5vw, 80px);
  border-top: 1px solid rgba(255,255,255,.07);
  color: var(--muted); font-size: 14px;
}
.foot-brand { display: flex; align-items: center; gap: 14px; }
.foot-logo { width: 30px; height: 30px; object-fit: contain; opacity: .8; }
.foot-meta { display: flex; align-items: center; gap: 26px; }
.foot-link {
  background: none; border: none; color: var(--muted); font: inherit;
  cursor: pointer; letter-spacing: .05em;
  border-bottom: 1px solid transparent; padding-bottom: 1px;
  transition: color .25s, border-color .25s;
}
.foot-link:hover { color: var(--ink); border-color: var(--magenta); }
#secretTrigger { cursor: default; user-select: none; }

/* ═══════════ REVEALS ═══════════ */
[data-reveal] {
  opacity: 0; transform: translateY(48px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }

/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(5,4,7,.94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage {
  width: min(92vw, 1500px); height: min(80vh, 900px);
  display: grid; place-items: center;
  perspective: 1200px;
}
.lb-img {
  max-width: 100%; max-height: 100%;
  border-radius: 6px;
  box-shadow: 0 30px 120px -20px rgba(255,31,143,.35), 0 10px 60px rgba(0,0,0,.8);
}
.lb-img.anim-next { animation: lbNextIn .55s var(--ease); }
.lb-img.anim-prev { animation: lbPrevIn .55s var(--ease); }
@keyframes lbNextIn {
  from { opacity: 0; transform: translateX(90px) rotateY(-9deg) scale(.94); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes lbPrevIn {
  from { opacity: 0; transform: translateX(-90px) rotateY(9deg) scale(.94); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
.lb-close, .lb-arrow {
  position: fixed; z-index: 2;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--ink);
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 19px; cursor: pointer;
  display: grid; place-items: center;
  transition: background .25s, box-shadow .25s, transform .25s;
}
.lb-close:hover, .lb-arrow:hover {
  background: rgba(255,31,143,.25);
  box-shadow: 0 0 26px rgba(255,31,143,.4);
  transform: scale(1.08);
}
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }
.lb-meta {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 22px; align-items: baseline;
  font-size: 14px; color: var(--muted); letter-spacing: .08em;
}
.lb-counter { color: var(--magenta); font-weight: 700; }

/* ═══════════ MODALS ═══════════ */
.modal {
  position: fixed; inset: 0; z-index: 850;
  background: rgba(5,4,7,.8);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
  padding: 20px;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-box {
  position: relative;
  width: min(440px, 100%);
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 40px 120px -30px rgba(255,31,143,.3), 0 20px 80px rgba(0,0,0,.7);
  transform: scale(.96) translateY(10px);
  transition: transform .35s var(--ease);
}
.modal.open .modal-box { transform: none; }
.modal-wide { width: min(760px, 100%); max-height: 84vh; overflow-y: auto; }
.modal-title { font-size: 21px; font-weight: 800; letter-spacing: .04em; margin-bottom: 8px; }
.modal-sub { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.modal-x {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--muted);
  font-size: 18px; cursor: pointer; padding: 6px;
  transition: color .25s;
}
.modal-x:hover { color: var(--magenta); }

#loginPw {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  color: var(--ink);
  font: inherit; font-size: 16px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
#loginPw:focus { border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(255,31,143,.18); }
.login-error { color: var(--red); font-size: 13px; min-height: 20px; margin: 8px 0 6px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 12px; }

.btn {
  font: inherit; font-size: 14px; font-weight: 700; letter-spacing: .06em;
  border-radius: 999px; cursor: pointer;
  padding: 11px 24px;
  transition: transform .2s var(--ease), box-shadow .25s, background .25s;
}
.btn:active { transform: scale(.96); }
.btn.solid {
  background: var(--grad); color: #fff; border: none;
  box-shadow: 0 6px 30px -8px rgba(255,31,143,.6);
}
.btn.solid:hover { box-shadow: 0 8px 40px -6px rgba(255,31,143,.8); }
.btn.ghost {
  background: none; color: var(--muted);
  border: 1px solid rgba(255,255,255,.16);
}
.btn.ghost:hover { color: var(--ink); border-color: rgba(255,255,255,.4); }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* Impressum-Inhalt */
.impressum-body h3 { font-size: 24px; margin-bottom: 18px; }
.impressum-body p { margin-bottom: 16px; color: var(--muted); font-size: 15px; }
.impressum-body strong { color: var(--ink); }

/* ═══════════ EDIT-MODUS ═══════════ */
.editbar {
  position: fixed; bottom: 22px; left: 50%; transform: translate(-50%, 140%);
  z-index: 890;
  display: flex; align-items: center; gap: 14px;
  background: rgba(14,12,18,.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,31,143,.4);
  border-radius: 999px;
  padding: 10px 14px 10px 22px;
  box-shadow: 0 20px 60px -15px rgba(255,31,143,.5);
  transition: transform .5s var(--ease);
}
body.editing .editbar { transform: translate(-50%, 0); }
.editbar-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 12px var(--magenta);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .35; } }
.editbar-label { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.editbar-status { font-size: 12px; color: var(--muted); min-width: 90px; }

body.editing [data-edit] {
  outline: 1.5px dashed rgba(255,31,143,.5);
  outline-offset: 4px;
  border-radius: 2px;
  cursor: text;
  transition: outline-color .25s, background .25s;
  min-width: 10px;
}
body.editing [data-edit]:hover { outline-color: var(--magenta); background: rgba(255,31,143,.06); }
body.editing [data-edit]:focus { outline: 2px solid var(--magenta); background: rgba(255,31,143,.08); }
body.editing [data-img] { cursor: default; }
/* Bildunterschriften im Edit-Modus immer sichtbar & anklickbar */
body.editing figure figcaption {
  opacity: 1; transform: none; pointer-events: auto;
}
body.editing .collage-item:hover img,
body.editing .sound-item:hover img,
body.editing .licht-img:hover img,
body.editing .licht-img-2:hover img { transform: none; }

.img-edit-btn {
  position: absolute; top: 12px; right: 12px; z-index: 5;
  background: rgba(8,7,10,.85);
  border: 1px solid var(--magenta);
  color: var(--ink);
  font: inherit; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .3s, transform .3s, background .25s;
  backdrop-filter: blur(6px);
}
body.editing [data-img]:hover .img-edit-btn, body.editing .img-edit-btn { opacity: 1; transform: none; }
.img-edit-btn:hover { background: var(--magenta); }
.brand .img-edit-btn, .foot-brand .img-edit-btn {
  position: static; opacity: 1; transform: none; margin-left: 10px;
  font-size: 10px; padding: 5px 10px;
}
/* In hexagon-geclippten Figuren würde der Button oben rechts abgeschnitten */
.hexclip .img-edit-btn {
  top: 16%; right: auto; left: 50%; margin-left: -62px;
}

/* Fehlende Bilder → eleganter Platzhalter */
figure.missing img, .brand-logo.missing, .foot-logo.missing { display: none; }
figure.missing {
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(255,31,143,.16), transparent 60%),
    radial-gradient(120% 120% at 90% 100%, rgba(180,41,255,.14), transparent 60%),
    var(--panel);
  border: 1px dashed rgba(255,255,255,.15);
  display: grid; place-items: center;
  min-height: 200px;
}
figure.missing::before {
  content: "⬢  " attr(data-ph);
  color: var(--muted);
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  text-align: center; padding: 20px;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  .collage-item, .collage-text, .sound-item, .sound-copy { grid-column: 1 / -1 !important; margin-top: 0 !important; }
  .collage-text, .sound-copy { padding: 10px 0 20px; }
  .licht-grid { grid-template-columns: 1fr; }
  .licht-img-2 { margin-top: 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat { border-top: 1px solid rgba(255,255,255,.07); }
  .stat:nth-child(-n+2) { border-top: none; }
  .site-nav a:not(.nav-cta) { display: none; }
  .reel { height: 300vh; }
  .reel-item { width: 80vw; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-close { top: 12px; right: 12px; }
}

@media (hover: none) {
  .cursor-dot, .cursor-glow { display: none; }
  .collage-item figcaption, .reel-item figcaption, .sound-item figcaption,
  .licht-img figcaption, .licht-img-2 figcaption { opacity: 1; transform: none; }
}

/* Debug/Screenshots: alles sofort im Endzustand */
html.no-anim { scroll-behavior: auto; }
.no-anim *, .no-anim *::before, .no-anim *::after { animation: none !important; transition: none !important; }
.no-anim [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01s !important; transition-duration: .01s !important; }
  html { scroll-behavior: auto; }
}
