/* ============================================================
   airborne UG – Service rund ums Haus
   „Blaue Stunde" – Low-Poly-Diorama, Scroll-Kinematografie
   ============================================================ */

@property --beam {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

:root {
  --night:      #060B1A;
  --dusk:       #0B1730;
  --dusk-2:     #12234A;
  --glass:      rgba(255, 255, 255, 0.045);
  --glass-edge: rgba(255, 255, 255, 0.10);
  --sky:        #7FB8FF;
  --sky-soft:   #93A3C4;
  --warm:       #F2C14E;
  --ember:      #D99A2B;
  --text:       #EAF0FF;
  --text-dim:   #A7B4D0;

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background:
    radial-gradient(1200px 700px at 78% -10%, rgba(18, 35, 74, 0.85), transparent 60%),
    radial-gradient(900px 600px at 8% 32%, rgba(255, 122, 61, 0.05), transparent 55%),
    linear-gradient(180deg, var(--night) 0%, var(--dusk) 55%, var(--night) 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: rgba(255, 178, 92, 0.35); color: #fff; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 200;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--night);
  box-shadow: inset 0 0 0 1.5px var(--warm);
  font-weight: 700;
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

/* ---------- Ambient-Canvas (ganze Seite) ---------- */

#ambient {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Typo-Helfer ---------- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
}

.warm {
  background: linear-gradient(100deg, var(--warm), var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  position: relative;
}
.ghost {
  position: absolute;
  top: -0.72em;
  left: -0.03em;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.6rem, 13vw, 10rem);
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(127, 184, 255, 0.09);
  pointer-events: none;
  user-select: none;
}
.section-head > :not(.ghost) { position: relative; z-index: 1; }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4.4vw, 3.1rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin-top: 18px;
  perspective: 900px;
}
.js .section-title .tw {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.85em) rotateX(-65deg);
  transform-origin: 50% 100%;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: calc(var(--w, 0) * 0.055s);
}
.js .section-title.in .tw {
  opacity: 1;
  transform: none;
}

.section-sub {
  max-width: 640px;
  margin-top: 20px;
  color: var(--text-dim);
  font-size: 1.06rem;
}

/* ---------- Intro / Preloader ---------- */

.intro {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background:
    radial-gradient(900px 600px at 50% 32%, #FFFFFF, transparent 75%),
    linear-gradient(180deg, #F7F5F0, #EDEAE2);
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.2, 1);
}
.intro.done { transform: translateY(-100%); }
.intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.6s ease, opacity 0.5s ease;
}
.intro.done .intro-inner {
  transform: translateY(60px) scale(0.96);
  opacity: 0;
}

.intro-logo-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.intro-svg {
  width: clamp(260px, 42vw, 420px);
  height: auto;
  display: block;
}

/* Kräne zeichnen sich */
.iv-draw {
  stroke-dasharray: var(--len, 200);
  stroke-dashoffset: var(--len, 200);
  animation: iv-draw var(--dur, 0.6s) ease var(--del, 0s) forwards;
}
@keyframes iv-draw {
  to { stroke-dashoffset: 0; }
}

/* Seile senken sich */
.iv-cable {
  transform-box: fill-box;
  transform-origin: top center;
  transform: scaleY(0);
  animation: iv-cable 0.35s ease var(--del, 0s) forwards;
}
@keyframes iv-cable {
  to { transform: scaleY(1); }
}

/* Gegengewichte, Haken, First-Kugel */
.iv-pop {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  transform: scale(0.3);
  animation: iv-pop 0.4s var(--ease-out) var(--del, 0s) forwards;
}
@keyframes iv-pop {
  to { opacity: 1; transform: scale(1); }
}

/* Gebäude fährt hoch */
.iv-build {
  opacity: 0;
  transform: translateY(30px);
  animation: iv-rise 0.75s var(--ease-out) 0.55s forwards;
}
@keyframes iv-rise {
  to { opacity: 1; transform: none; }
}

/* Dach setzt auf */
.iv-roof {
  opacity: 0;
  transform: translateY(-16px);
  animation: iv-rise 0.45s var(--ease-out) 1.05s forwards;
}

/* Fenster gehen an */
.iv-win {
  opacity: 0;
  animation: iv-on 0.3s ease var(--del, 1.2s) forwards;
}
@keyframes iv-on {
  to { opacity: 1; }
}

/* Schriftzug */
.iv-text {
  opacity: 0;
  transform: translateY(14px);
  animation: iv-rise 0.7s var(--ease-out) forwards;
}
.iv-word { animation-delay: 1.35s; }
.iv-sub  { animation-delay: 1.55s; }

.intro-logo-wrap::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: skewX(-18deg);
  animation: logo-shine 0.8s ease 1.95s forwards;
}
@keyframes logo-shine {
  to { left: 145%; }
}
.intro-bar {
  width: 150px;
  height: 2px;
  margin-top: 30px;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(27, 42, 74, 0.15);
}
.intro-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--warm), var(--ember));
  transform: translateX(-101%);
  animation: ih-load 2.3s cubic-bezier(0.2, 0.6, 0.3, 1) 0.2s forwards;
}
@keyframes ih-load {
  to { transform: translateX(0); }
}

body.intro-lock { overflow: hidden; }
html:not(.js) .intro { display: none; }

@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
}

/* ---------- Fortschritt & Cursor ---------- */

.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 120;
  pointer-events: none;
}
.progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--sky), var(--warm), var(--ember));
  box-shadow: 0 0 12px rgba(255, 178, 92, 0.7);
}

.cursor-glow {
  position: fixed;
  left: 0; top: 0;
  width: 520px; height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 184, 255, 0.10) 0%, rgba(255, 178, 92, 0.05) 35%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  will-change: transform;
}
.js .cursor-glow.on { opacity: 1; transition: opacity 0.6s ease; }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 clamp(20px, 4vw, 48px);
  z-index: 100;
  transition: transform 0.45s var(--ease-out), background 0.35s ease;
}
.nav.scrolled {
  background: rgba(6, 11, 26, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav.hidden { transform: translateY(-100%); }
.nav.hidden:focus-within { transform: none; }

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}
.brand-plate {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 12px;
  background: #F7F5F0;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(27, 42, 74, 0.08);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.brand:hover .brand-plate {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(242, 193, 78, 0.5);
}
.brand-plate img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-weight: 600;
  font-size: 0.94rem;
}
.nav-links a {
  position: relative;
  padding: 6px 2px;
  color: var(--text-dim);
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--warm), var(--ember));
  transition: width 0.3s var(--ease-out), left 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; left: 0; }

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  transform: translate(var(--mag-x, 0px), var(--mag-y, 0px));
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, background 0.3s ease;
  will-change: transform;
}
.btn-ico { width: 17px; height: 17px; }

.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn:hover::before { left: 130%; }

.btn-primary {
  color: #1C1006;
  background: linear-gradient(120deg, var(--warm), var(--ember));
  box-shadow: 0 8px 30px rgba(255, 122, 61, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary:hover {
  transform: translate(var(--mag-x, 0px), var(--mag-y, 0px)) translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(255, 122, 61, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-ghost {
  color: var(--text);
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--glass-edge);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translate(var(--mag-x, 0px), var(--mag-y, 0px)) translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(127, 184, 255, 0.45), 0 10px 30px rgba(0, 0, 0, 0.35);
}

.btn-small { padding: 11px 22px; font-size: 0.88rem; }
.btn-wide { width: 100%; }

/* ---------- Burger + Mobil-Menü ---------- */

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-edge);
  border-radius: 12px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}
body.menu-open { overflow: hidden; }
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
  padding: 100px clamp(28px, 8vw, 60px) 48px;
  background: rgba(6, 11, 26, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
body.menu-open .menu-overlay { opacity: 1; visibility: visible; }

.menu-links { display: flex; flex-direction: column; gap: 10px; }
.menu-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 7vw, 2.6rem);
  padding: 8px 0;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.25s ease;
}
.menu-links a:hover { color: var(--warm); }
body.menu-open .menu-links a {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.08s + var(--i) * 0.06s);
}
.menu-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--sky);
}

/* ---------- Hero ---------- */

.hero { position: relative; height: 260vh; }

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

#scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 clamp(24px, 7vw, 96px);
  max-width: 900px;
  z-index: 3;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 6.2vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-top: 22px;
  text-shadow: 0 6px 40px rgba(6, 11, 26, 0.9);
}
.hero-title .glow {
  background: linear-gradient(100deg, var(--warm), var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 26px rgba(255, 140, 66, 0.45));
}
.js .hero-title .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.65em) rotate(2deg);
  filter: blur(6px);
}
html.intro-go .hero-title .w {
  animation: word-in 1s var(--ease-out) forwards;
  animation-delay: calc(0.25s + var(--wi, 0) * 0.09s);
}
@keyframes word-in {
  to { opacity: 1; transform: none; filter: blur(0); }
}

.hero-sub {
  margin-top: 26px;
  max-width: 520px;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  text-shadow: 0 4px 24px rgba(6, 11, 26, 0.9);
}
.js .hero-sub,
.js .hero-cta,
.js .hero-copy .eyebrow {
  opacity: 0;
}
html.intro-go .hero-sub,
html.intro-go .hero-cta,
html.intro-go .hero-copy .eyebrow {
  animation: soft-in 1s var(--ease-out) forwards;
}
html.intro-go .hero-copy .eyebrow { animation-delay: 0.15s; }
html.intro-go .hero-sub { animation-delay: 0.9s; }
html.intro-go .hero-cta { animation-delay: 1.1s; }
@keyframes soft-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-phase2 {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding: 0 clamp(24px, 7vw, 96px);
  z-index: 3;
  pointer-events: none;
}
.js .hero-phase2 { opacity: 0; }
.phase2-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-top: 20px;
  text-shadow: 0 6px 40px rgba(6, 11, 26, 0.9);
}
.phase2-sub {
  margin-top: 22px;
  max-width: 460px;
  color: var(--text-dim);
  font-size: 1.05rem;
  text-shadow: 0 4px 24px rgba(6, 11, 26, 0.9);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  z-index: 3;
  color: var(--sky-soft);
  transition: opacity 0.4s ease;
}
.mouse {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(147, 163, 196, 0.7);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.wheel {
  width: 3px; height: 7px;
  border-radius: 3px;
  background: var(--warm);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.hint-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ---------- Marquee (zwei gegenläufige Bänder) ---------- */

.marquee-zone {
  position: relative;
  z-index: 4;
  padding: 30px 0 10px;
}
.marquee {
  overflow: hidden;
  padding: 22px 0;
  background: linear-gradient(90deg, rgba(255, 122, 61, 0.10), rgba(127, 184, 255, 0.08), rgba(255, 122, 61, 0.10));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), inset 0 -1px 0 rgba(255, 255, 255, 0.07);
}
.marquee-a { transform: rotate(-1.4deg) scale(1.02); }
.marquee-b {
  transform: rotate(1.2deg) scale(1.02);
  margin-top: -14px;
  opacity: 0.55;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-b .marquee-track { animation-direction: reverse; animation-duration: 48s; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Sektionen ---------- */

.section {
  position: relative;
  z-index: 2;
  padding: clamp(96px, 13vw, 170px) clamp(20px, 5vw, 48px);
  scroll-margin-top: calc(var(--nav-h) + 8px);
}
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

/* Scroll-Reveals */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 0.05s);
}
.js [data-reveal="card"] {
  transform: translateY(70px) rotateX(16deg) scale(0.95);
}
.js [data-reveal].in {
  opacity: 1;
  transform: none;
}

/* ---------- Leistungs-Karten ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
  perspective: 1400px;
}

.card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  padding: 30px 26px 34px;
  border-radius: 20px;
  transform-style: preserve-3d;
}
.card-grid .card:nth-child(even) { margin-top: 30px; }

.card-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--glass-edge);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateZ(0);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.card-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--mx) var(--my), rgba(255, 178, 92, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.card-bg::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s ease;
}
.card:hover .card-bg::before { opacity: 1; }
.card:hover .card-bg::after { left: 135%; }
.card:hover .card-bg {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 178, 92, 0.35), 0 24px 60px rgba(0, 0, 0, 0.4);
}

.card-ico {
  position: relative;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--warm);
  background: linear-gradient(150deg, rgba(255, 178, 92, 0.14), rgba(255, 122, 61, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 178, 92, 0.28);
  animation: ico-float 5.5s ease-in-out infinite;
  animation-delay: calc(var(--d, 0) * -0.7s);
  transition: box-shadow 0.35s ease;
}
.card-ico svg { width: 26px; height: 26px; }
.card:hover .card-ico {
  box-shadow: inset 0 0 0 1px rgba(255, 178, 92, 0.55), 0 0 26px rgba(255, 122, 61, 0.4);
}
@keyframes ico-float {
  0%, 100% { transform: translateZ(38px) translateY(0) rotate(0deg); }
  50%      { transform: translateZ(38px) translateY(-6px) rotate(-2.5deg); }
}

.card h3 {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.35;
  margin-top: 20px;
  transform: translateZ(24px);
}
.card p {
  position: relative;
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--text-dim);
  transform: translateZ(14px);
}

.card-cta .card-bg {
  background: linear-gradient(155deg, rgba(255, 122, 61, 0.14), rgba(255, 178, 92, 0.05));
  box-shadow: inset 0 0 0 1px rgba(255, 178, 92, 0.30);
}
.card-link {
  position: relative;
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--warm);
  transform: translateZ(24px);
  transition: color 0.25s ease;
}
.card-link:hover { color: var(--ember); }

/* ---------- Referenz: 3D-Carousel + Vorher/Nachher ---------- */

.carousel {
  margin-top: 64px;
}
.carousel-stage {
  position: relative;
  height: clamp(320px, 58vw, 620px);
  perspective: 1500px;
}
.slide {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(560px, 92%);
  transform: translateX(-50%);
  transition: transform 0.85s var(--ease-out), opacity 0.85s ease, filter 0.85s ease;
  will-change: transform;
}
.slide.is-active {
  z-index: 3;
  transform: translateX(-50%);
  opacity: 1;
  filter: none;
}
.slide.is-next {
  z-index: 2;
  transform: translateX(-50%) translateX(44%) translateZ(-280px) rotateY(-26deg);
  opacity: 0.4;
  filter: saturate(0.6) brightness(0.7);
  pointer-events: none;
}
.slide.is-prev {
  z-index: 2;
  transform: translateX(-50%) translateX(-44%) translateZ(-280px) rotateY(26deg);
  opacity: 0.4;
  filter: saturate(0.6) brightness(0.7);
  pointer-events: none;
}

.cmp {
  position: relative;
  aspect-ratio: 1 / 1;
  max-height: min(58vh, 540px);
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--glass-edge), 0 30px 80px rgba(0, 0, 0, 0.55);
  touch-action: pan-y;
}
.cmp img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cmp-before-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--split, 50%)) 0 0);
}

.ba-tag {
  position: absolute;
  top: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ba-tag-before {
  left: 16px;
  color: #E8DCC4;
  background: rgba(30, 24, 16, 0.6);
  box-shadow: inset 0 0 0 1px rgba(232, 220, 196, 0.35);
}
.ba-tag-after {
  right: 16px;
  color: var(--warm);
  background: rgba(6, 11, 26, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 178, 92, 0.45);
}

.cmp-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--split, 50%);
  width: 0;
  z-index: 3;
  pointer-events: none;
}
.cmp-handle::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -1.5px;
  width: 3px;
  background: linear-gradient(180deg, var(--warm), var(--ember));
  box-shadow: 0 0 18px rgba(255, 140, 66, 0.8);
}
.cmp-handle span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(6, 11, 26, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1.5px rgba(255, 178, 92, 0.7), 0 6px 20px rgba(0, 0, 0, 0.5);
}
.cmp-handle span::before,
.cmp-handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0; height: 0;
  border-style: solid;
  transform: translateY(-50%);
}
.cmp-handle span::before {
  left: 9px;
  border-width: 5px 7px 5px 0;
  border-color: transparent var(--warm) transparent transparent;
}
.cmp-handle span::after {
  right: 9px;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent var(--warm);
}

.cmp-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.cmp:has(.cmp-range:focus-visible) {
  outline: 2px solid var(--warm);
  outline-offset: 4px;
}

.slide-cap {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-soft);
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}
.slide.is-active .slide-cap { opacity: 1; }

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 26px;
}
.car-btn {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--glass-edge);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, background 0.3s ease;
}
.car-btn svg { width: 20px; height: 20px; color: var(--warm); }
.car-btn:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 178, 92, 0.5), 0 0 24px rgba(255, 122, 61, 0.25);
}
.car-dots { display: flex; gap: 10px; }
.car-dot {
  width: 10px; height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(147, 163, 196, 0.35);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), background 0.3s ease, box-shadow 0.3s ease;
}
.car-dot.on {
  background: var(--warm);
  transform: scale(1.35);
  box-shadow: 0 0 12px rgba(255, 178, 92, 0.8);
}

/* ---------- USP-Punkte (Flyer) ---------- */

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.usp {
  padding: 24px 22px;
  border-radius: 16px;
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--glass-edge);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.usp:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(242, 193, 78, 0.4), 0 16px 40px rgba(0, 0, 0, 0.35);
}
.usp-ico {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: #1C1006;
  background: linear-gradient(120deg, var(--warm), var(--ember));
  box-shadow: 0 6px 18px rgba(217, 154, 43, 0.4);
  margin-bottom: 14px;
}
.usp-ico svg { width: 21px; height: 21px; }
.usp h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.usp p {
  margin-top: 5px;
  font-size: 0.86rem;
  color: var(--text-dim);
}

/* ---------- Slogan (Handschrift) ---------- */

.slogan {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  color: var(--warm);
  transform: rotate(-1.5deg);
  margin-top: 22px;
  text-shadow: 0 0 30px rgba(242, 193, 78, 0.25);
}
.footer .footer-tag { font-family: "Caveat", cursive; font-size: 1.3rem; color: var(--warm); }

/* ---------- Über uns / Standorte ---------- */

.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 64px;
  perspective: 1400px;
}

.loc-card {
  position: relative;
  padding: 40px 36px 44px;
  border-radius: 22px;
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--glass-edge);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: box-shadow 0.35s ease, background 0.35s ease, transform 0.4s var(--ease-out);
}
.loc-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(127, 184, 255, 0.4), 0 24px 60px rgba(0, 0, 0, 0.4);
}

.beacon {
  position: relative;
  width: 58px; height: 58px;
  margin-bottom: 26px;
}
.beacon i,
.beacon b {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
}
.beacon i:nth-child(1) {
  width: 12px; height: 12px;
  background: var(--warm);
  box-shadow: 0 0 18px rgba(255, 178, 92, 0.9);
}
.beacon i:nth-child(2),
.beacon i:nth-child(3) {
  width: 100%; height: 100%;
  border: 1.5px solid rgba(255, 178, 92, 0.6);
  opacity: 0;
  animation: pulse 2.6s ease-out infinite;
}
.beacon i:nth-child(3) { animation-delay: 1.3s; }
.beacon b {
  width: 100%; height: 100%;
  background: conic-gradient(from 0deg, rgba(255, 178, 92, 0.35), transparent 70deg, transparent);
  -webkit-mask: radial-gradient(circle, transparent 34%, #000 36%, #000 62%, transparent 64%);
  mask: radial-gradient(circle, transparent 34%, #000 36%, #000 62%, transparent 64%);
  animation: radar 4s linear infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.25); opacity: 0.9; }
  100% { transform: scale(1.25); opacity: 0; }
}
@keyframes radar {
  to { transform: rotate(360deg); }
}

.loc-region {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
}
.loc-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  margin-top: 10px;
}
.loc-addr {
  margin-top: 14px;
  color: var(--text-dim);
}

/* ---------- Kontakt: das Highlight ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  margin-top: 64px;
  align-items: start;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 28px;
  border-radius: 18px;
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--glass-edge);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, background 0.35s ease;
}
a.contact-tile:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 178, 92, 0.4), 0 18px 46px rgba(0, 0, 0, 0.4);
}
.tile-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
}
.tile-value {
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.5;
}

/* Leuchtrahmen um das Formular */
.form-shell {
  position: relative;
  border-radius: 26px;
  padding: 1.5px;
  background:
    conic-gradient(from var(--beam),
      rgba(127, 184, 255, 0.0) 0deg,
      rgba(127, 184, 255, 0.35) 40deg,
      rgba(255, 178, 92, 0.9) 90deg,
      rgba(255, 122, 61, 0.5) 140deg,
      rgba(127, 184, 255, 0.0) 200deg);
  animation: beam-spin 6s linear infinite;
}
@keyframes beam-spin {
  to { --beam: 360deg; }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 34px 40px;
  border-radius: 24.5px;
  background:
    radial-gradient(600px 300px at 85% 0%, rgba(255, 122, 61, 0.08), transparent 60%),
    rgba(9, 16, 34, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.form-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 6px;
}
.form-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.25;
}
.form-note {
  margin-top: 10px;
  max-width: 300px;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.form-house {
  flex: 0 0 auto;
  width: clamp(120px, 16vw, 170px);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}
.fh-roof    { fill: #22345C; stroke: rgba(127, 184, 255, 0.4); stroke-width: 1.5; }
.fh-body    { fill: #101E3C; stroke: rgba(127, 184, 255, 0.35); stroke-width: 1.5; }
.fh-chimney { fill: #1A2A4E; stroke: rgba(127, 184, 255, 0.3); stroke-width: 1.5; }
.fh-win,
.fh-door {
  fill: #0A1428;
  stroke: rgba(127, 184, 255, 0.35);
  stroke-width: 1.5;
  transition: fill 0.5s ease, filter 0.5s ease, stroke 0.5s ease;
}
.fh-win.lit,
.fh-door.lit {
  fill: var(--warm);
  stroke: rgba(255, 226, 168, 0.9);
  filter: drop-shadow(0 0 10px rgba(242, 193, 78, 0.9));
}
.form-house.all-lit {
  animation: house-cheer 0.9s var(--ease-out);
}
@keyframes house-cheer {
  0%   { transform: scale(1) rotate(0); }
  30%  { transform: scale(1.06) rotate(-2deg); }
  60%  { transform: scale(1.03) rotate(1.5deg); }
  100% { transform: scale(1) rotate(0); }
}

.chip-set {
  border: 0;
  margin: 4px 0 2px;
}
.chip-legend {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}
.chip-legend span { opacity: 0.6; text-transform: none; letter-spacing: 0.04em; }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.chip {
  padding: 9px 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 11, 26, 0.6);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.chip:hover {
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 178, 92, 0.45);
  transform: translateY(-2px);
}
.chip.on {
  color: #1C1006;
  background: linear-gradient(120deg, var(--warm), var(--ember));
  box-shadow: 0 6px 20px rgba(255, 122, 61, 0.4);
  transform: translateY(-2px);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  position: relative;
  display: block;
}
.field input,
.field textarea {
  width: 100%;
  padding: 24px 18px 12px;
  border: 0;
  border-radius: 13px;
  background: rgba(6, 11, 26, 0.6);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.98rem;
  outline: none;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  box-shadow: inset 0 0 0 1.5px rgba(255, 178, 92, 0.65), 0 0 0 4px rgba(255, 178, 92, 0.12), 0 0 30px rgba(255, 122, 61, 0.15);
  background: rgba(6, 11, 26, 0.8);
}
.field span {
  position: absolute;
  left: 18px;
  top: 18px;
  font-size: 0.95rem;
  color: var(--sky-soft);
  pointer-events: none;
  transition: transform 0.25s var(--ease-out), font-size 0.25s ease, color 0.25s ease;
  transform-origin: left top;
}
.field input:focus + span,
.field input:not(:placeholder-shown) + span,
.field textarea:focus + span,
.field textarea:not(:placeholder-shown) + span {
  transform: translateY(-11px);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--warm);
}

.form-hint {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--sky-soft);
}
.form-status {
  min-height: 1.2em;
  font-size: 0.9rem;
  color: var(--warm);
}

/* ---------- Footer ---------- */

.footer {
  position: relative;
  z-index: 2;
  padding: 70px clamp(20px, 5vw, 48px) 46px;
  background: rgba(4, 8, 18, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "brand tag links"
    "legal legal legal"
    "credit credit credit";
  gap: 22px 40px;
  align-items: center;
}
.footer .brand { grid-area: brand; }
.footer-tag { grid-area: tag; color: var(--text-dim); font-size: 0.95rem; }
.footer-links {
  grid-area: links;
  display: flex;
  gap: 22px;
  font-weight: 600;
  font-size: 0.92rem;
}
.footer-links a { color: var(--text-dim); transition: color 0.25s ease; }
.footer-links a:hover { color: var(--warm); }
.footer-legal {
  grid-area: legal;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--sky-soft);
}
.footer-credit {
  grid-area: credit;
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
}
.credit-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #0ABAB5;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.credit-link img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(10, 186, 181, 0.35), 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.credit-link strong { font-weight: 700; }
.credit-link:hover {
  color: #3FE0DB;
  text-shadow: 0 0 14px rgba(10, 186, 181, 0.6);
}
.credit-link:hover img {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 0 0 1px rgba(10, 186, 181, 0.7), 0 0 18px rgba(10, 186, 181, 0.5);
}

/* ---------- Animations-Pause (WCAG 2.2.2) ---------- */

.anim-toggle {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 80;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 11, 26, 0.75);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  color: var(--sky-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.anim-toggle:hover { color: var(--text); }

html.anim-paused *,
html.anim-paused *::before,
html.anim-paused *::after {
  animation-play-state: paused !important;
}

/* ---------- Impressum ---------- */

.legal-main {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 70px) clamp(20px, 5vw, 48px) 120px;
}
.legal-main h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-top: 14px;
}
.legal-block {
  margin-top: 44px;
  padding: 34px 32px;
  border-radius: 20px;
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--glass-edge);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.legal-block h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.legal-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px 28px;
}
.legal-list dt {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
  padding-top: 3px;
}
.legal-list dd { color: var(--text); }
.legal-back {
  display: inline-block;
  margin-top: 40px;
  font-weight: 700;
  color: var(--warm);
}
.legal-back:hover { color: var(--ember); }

/* ---------- Responsive ---------- */

.only-desktop { display: inline; }

@media (max-width: 1020px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-shell { order: -1; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .only-desktop { display: none; }
  .nav { gap: 16px; }
  .js .nav-links, .nav-cta { display: none; }
  .js .burger { display: flex; }
  .nav-links { flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 760px) {
  :root { --nav-h: 66px; }
  .hero { height: 230vh; }
  .hero-copy { padding-top: var(--nav-h); }
  .hero-phase2 { align-items: flex-start; text-align: left; }
  .card-grid { grid-template-columns: 1fr; gap: 14px; }
  .card-grid .card:nth-child(even) { margin-top: 0; }
  .loc-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .usp { padding: 18px 16px; }
  .brand-plate img { height: 36px; }
  .brand-plate { padding: 5px 9px; }
  .field-row { grid-template-columns: 1fr; }
  .form-top { flex-direction: column-reverse; align-items: center; text-align: center; }
  .form-note { max-width: none; }
  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "brand" "tag" "links" "legal" "credit";
    align-items: start;
  }
  .footer-links { flex-wrap: wrap; }
  .marquee { padding: 18px 0; }
  .slide.is-next { transform: translateX(-50%) translateX(30%) translateZ(-320px) rotateY(-24deg); }
  .slide.is-prev { transform: translateX(-50%) translateX(-30%) translateZ(-320px) rotateY(24deg); }
  .legal-list { grid-template-columns: 1fr; gap: 2px; }
  .legal-list dd { margin-bottom: 14px; }
}

/* ---------- Ohne JavaScript ---------- */

html:not(.js) #scene,
html:not(.js) #ambient,
html:not(.js) .cursor-glow,
html:not(.js) .scroll-hint,
html:not(.js) .anim-toggle { display: none; }
html:not(.js) .hero { height: auto; }
html:not(.js) .hero-sticky {
  position: relative;
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: calc(var(--nav-h) + 40px) 0 60px;
}
html:not(.js) .hero-copy,
html:not(.js) .hero-phase2 {
  position: static;
  align-items: flex-start;
  text-align: left;
  pointer-events: auto;
}

/* ---------- Reduzierte Bewegung ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .hero-title .w,
  .js .hero-sub,
  .js .hero-cta,
  .js .hero-copy .eyebrow { opacity: 1; transform: none; filter: none; animation: none; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js .section-title .tw { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .cursor-glow, .scroll-hint, .anim-toggle { display: none; }
  .hero { height: auto; }
  .hero-sticky {
    position: relative;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: calc(var(--nav-h) + 40px) 0 60px;
  }
  .hero-copy,
  .hero-phase2 {
    position: static;
    align-items: flex-start;
    text-align: left;
    pointer-events: auto;
  }
  .js .hero-phase2 { opacity: 1; }
}
