/* =========================================================
   elendostudio — Design-System „Aurora Noir"
   Tiefes Violett-Schwarz, lebendige Aurora, moderne Grotesk-Typo
   ========================================================= */

:root {
  /* Flächen — tiefes Violett-Schwarz, damit die Aurora durchglüht */
  --ink:        #08080f;   /* Basis */
  --ink-2:      #0c0c18;   /* abgesetzte Sektion */
  --glass:      rgba(26, 24, 52, 0.42);
  --glass-2:    rgba(26, 24, 52, 0.66);
  --line:       rgba(180, 186, 230, 0.12);
  --line-2:     rgba(180, 186, 230, 0.22);

  /* Text */
  --cream:      #f3f4fc;
  --muted:      #aab0d6;
  --dim:        #7d82ab;

  /* Aurora-Akzent */
  --acc-1:      #8b6cff;   /* Violett */
  --acc-2:      #22d3ee;   /* Cyan */
  --acc-3:      #ff5ca8;   /* Magenta */
  /* Aliasnamen (im Code weiterhin „gold" genannt) auf die Aurora gezeigt */
  --gold:       #8b6cff;
  --gold-soft:  #b9a6ff;
  --gold-deep:  #5a3fd6;
  --gold-grad:  linear-gradient(120deg, #8b6cff 0%, #22d3ee 55%, #ff5ca8 100%);
  --grad:       linear-gradient(100deg, #8b6cff 0%, #22d3ee 100%);

  /* Typografie — moderne Grotesk */
  --serif: "Space Grotesk", system-ui, sans-serif;   /* Display/Headlines */
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Maße */
  --shell:   1280px;
  --radius:  16px;
  --radius-lg: 22px;
  --pad-y:   clamp(4.5rem, 10vw, 9rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: rgba(139, 108, 255, 0.35); color: #fff; }

/* ---------- Typo-Skala ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.9rem, 8vw, 7rem); }
h2 { font-size: clamp(2.1rem, 5vw, 4rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-weight: 600; letter-spacing: -0.015em; }

h1 em, h2 em, h3 em, .manifest__statement em {
  font-style: normal;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.lead {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  color: var(--muted);
  max-width: 34rem;
  margin-top: 1.6rem;
}
.lead--sm { font-size: 1rem; color: var(--dim); margin-top: 1rem; }

.placeholder {
  color: var(--gold-soft);
  background: rgba(139, 108, 255, 0.10);
  border-bottom: 1px dashed rgba(139, 108, 255, 0.45);
  padding: 0 0.28em;
  border-radius: 3px;
}

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

.skip-link {
  position: absolute; left: 1rem; top: -100px;
  z-index: 200;
  background: var(--gold); color: var(--ink);
  padding: 0.7rem 1.2rem; border-radius: 999px;
  font-size: 0.9rem; font-weight: 500;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.shell { width: min(var(--shell), 100% - 2.5rem); margin-inline: auto; }
.shell--narrow { max-width: 860px; }
/* Alias für Unterseiten (Impressum, Datenschutz, AGB) */
.container { width: min(var(--shell), 100% - 2.5rem); margin-inline: auto; }
.container--narrow { max-width: 860px; }

.band { padding: var(--pad-y) 0; position: relative; }
.band--tint { background: var(--ink-2); }

.head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.head--center { margin-inline: auto; text-align: center; }
.head__sub { color: var(--muted); margin-top: 1.25rem; font-size: 1.05rem; }
.head--center .head__sub { margin-inline: auto; max-width: 40rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.25s cubic-bezier(.2,.7,.3,1),
              box-shadow 0.25s ease, background 0.25s ease,
              border-color 0.25s ease, color 0.25s ease;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 30px -10px rgba(139, 108, 255, 0.6);
}
.btn--gold {
  /* --tx/--ty setzt die Bewegungsschicht (magnetischer Effekt) */
  transform: translate3d(var(--tx, 0px), var(--ty, 0px), 0);
}
.btn--gold:hover {
  background: var(--gold-soft);
  transform: translate3d(var(--tx, 0px), calc(var(--ty, 0px) - 2px), 0);
  box-shadow: 0 16px 40px -12px rgba(139, 108, 255, 0.75);
}

.btn--glass {
  background: var(--glass);
  border-color: var(--line);
  color: var(--cream);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--glass:hover {
  border-color: rgba(139, 108, 255, 0.45);
  background: var(--glass-2);
  transform: translateY(-2px);
}

.btn--sm  { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn--lg  { padding: 1rem 2.1rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s ease, padding 0.4s ease,
              border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 14, 20, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  padding: 0.8rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo { display: inline-flex; align-items: center; gap: 0.7rem; }
.nav__logo-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--gold-grad);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: var(--cream);
}
.nav__logo-back { color: var(--muted); font-size: 0.9rem; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a:not(.btn) {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(.2,.7,.3,1);
}
.nav__links a:not(.btn):hover { color: var(--cream); }
.nav__links a:not(.btn):hover::after { width: 100%; }

.burger {
  display: none;
  background: none; border: 0;
  padding: 8px; cursor: pointer;
  position: relative; z-index: 110;
}
.burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream); border-radius: 2px;
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1), opacity 0.25s;
}
.burger span + span { margin-top: 6px; }
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(9rem, 17vh, 13rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: -1;
}
.hero__aura--gold {
  width: 620px; height: 620px;
  background: rgba(139, 108, 255, 0.16);
  top: -220px; right: -140px;
}
.hero__aura--cool {
  width: 480px; height: 480px;
  background: rgba(70, 110, 150, 0.14);
  bottom: -200px; left: -160px;
}
.hero__grain {
  position: absolute; inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(201,162,39,0.05) 0, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.03) 0, transparent 40%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin-bottom: 0.2em; }
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 0.9rem;
  margin-top: 2.5rem;
}

.hero__facts {
  display: flex; flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.fact dt {
  font-family: var(--serif);
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.fact dt span { color: var(--gold); }
.fact dd {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 0.2rem;
}
.hero__footnote { margin-top: 1.25rem; color: var(--dim); font-size: 0.85rem; }

/* Hero-Bühne */
.stage { position: relative; }
.frame {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8);
}
.frame--main { transform: rotate(-1.2deg); }
.frame__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 15px;
  background: rgba(10, 14, 20, 0.6);
  border-bottom: 1px solid var(--line);
}
.tl {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(184, 192, 204, 0.25);
  flex-shrink: 0;
}
.frame__url {
  margin-left: 10px;
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  color: var(--dim);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 3px 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.frame__body { padding: 22px; }

.mock { display: flex; flex-direction: column; gap: 9px; }
.mock__eyebrow { height: 6px; width: 26%; border-radius: 3px; background: rgba(201,162,39,0.55); }
.mock__title   { height: 14px; width: 72%; border-radius: 4px; background: rgba(244,240,232,0.30); }
.mock__title--short { width: 48%; }
.mock__text    { height: 7px; width: 92%; border-radius: 3px; background: rgba(184,192,204,0.16); }
.mock__text--short { width: 64%; }
.mock__cta     { height: 24px; width: 108px; border-radius: 999px; background: var(--gold-grad); margin-top: 6px; }
.mock--sm { gap: 7px; }
.mock--sm .mock__title { height: 11px; }
.mock--sm .mock__cta { height: 18px; width: 78px; }

.mock__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.mock__tiles i {
  height: 50px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.chip {
  position: absolute;
  display: flex; align-items: center; gap: 11px;
  background: rgba(18, 24, 32, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.9);
  animation: bob 6s ease-in-out infinite;
  z-index: 3;
}
.chip--video { top: -2.2rem; right: -1.4rem; }
.chip--photo { bottom: -2.4rem; left: -1.8rem; animation-delay: 1.4s; }
.chip__meta strong { display: block; font-size: 0.8rem; font-weight: 500; }
.chip__meta small { font-size: 0.7rem; color: var(--dim); letter-spacing: 0.05em; }
.chip__play {
  display: grid; place-items: center;
  width: 74px; height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201,162,39,0.85), rgba(138,112,32,0.9));
}
.chip__play i {
  width: 0; height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--ink);
  margin-left: 2px;
}
.chip__shots { display: flex; gap: 4px; }
.chip__shots .sh { width: 30px; height: 42px; border-radius: 6px; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* Foto-Platzhalter-Töne */
.sh { display: block; border-radius: 9px; }
.sh--a { background: linear-gradient(150deg, #3c4a5e, #6b7a90); }
.sh--b { background: linear-gradient(150deg, #5a3fd6, #8b6cff); }
.sh--c { background: linear-gradient(150deg, #2e3d4f, #4c6076); }
.sh--d { background: linear-gradient(150deg, #6b5a2a, #a3894a); }
.sh--e { background: linear-gradient(150deg, #4a4238, #7b6f5e); }
.sh--f { background: linear-gradient(150deg, #263445, #3f5468); }
.sh--g { background: linear-gradient(150deg, #a3894a, #b9a6ff); }

/* Branchen-Laufband */
.marquee {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 0.9rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}
.marquee i { color: var(--gold); font-style: normal; }

/* ---------- Vorher / Nachher ---------- */
.compare { max-width: 940px; margin-inline: auto; }
.compare__stage {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, 0.9);
  touch-action: pan-y;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.shot { position: absolute; inset: 0; }
.shot--before {
  /* wird per --split von JS beschnitten */
  clip-path: inset(0 calc(100% - var(--split, 50%)) 0 0);
}
.shot__tag {
  position: absolute; top: 14px;
  z-index: 5;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.shot__tag--before {
  left: 14px;
  background: rgba(10, 14, 20, 0.85);
  border: 1px solid var(--line-2);
  color: var(--muted);
}
.shot__tag--after {
  right: 14px;
  background: rgba(139, 108, 255, 0.9);
  color: var(--ink);
}

.site { position: absolute; inset: 0; padding: 5% 6%; }
.site--new {
  background:
    radial-gradient(circle at 78% 12%, rgba(201,162,39,0.16), transparent 55%),
    linear-gradient(165deg, #10161f, #0a0e14);
}
.site--old { background: #e9e9e6; }

.site__nav {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 5%;
}
.site__nav i {
  height: 5px; width: 34px; border-radius: 3px;
  background: rgba(184, 192, 204, 0.25);
}
.site__nav--old i { background: #b9b9b2; height: 6px; width: 40px; border-radius: 2px; }
.site__logo {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--gold-grad);
  margin-right: auto;
  flex-shrink: 0;
}
.site__logo--old {
  background: #9a9a92;
  border-radius: 3px;
  width: 58px; height: 24px;
}
.site__pill {
  margin-left: auto;
  width: 74px; height: 22px;
  border-radius: 999px;
  background: var(--gold);
}

.site__hero { display: flex; flex-direction: column; gap: 3.5%; }
.site__hero--old { gap: 2.4%; }
.l { display: block; border-radius: 4px; }
.l--eyebrow { height: 5px;  width: 20%; background: rgba(201,162,39,0.75); }
.l--h1      { height: 20px; width: 76%; background: rgba(244,240,232,0.55); border-radius: 5px; }
.l--h1short { width: 52%; }
.l--p       { height: 7px;  width: 66%; background: rgba(184,192,204,0.22); }
.l--pshort  { width: 44%; }
.l--oldtitle{ height: 15px; width: 58%; background: #5f6b7a; border-radius: 2px; }
.l--oldp    { height: 7px;  width: 88%; background: #c2c2bb; border-radius: 2px; }

.site__btns { display: flex; gap: 8px; margin-top: 3%; }
.b { display: block; height: 22px; border-radius: 999px; }
.b--gold  { width: 88px; background: var(--gold-grad); }
.b--ghost { width: 70px; background: transparent; border: 1px solid rgba(184,192,204,0.3); }
.b--old   { width: 92px; height: 24px; border-radius: 3px; background: #7d8a99; }

.site__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3%; margin-top: 5%; }
.site__grid i {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  background: linear-gradient(150deg, rgba(201,162,39,0.22), rgba(255,255,255,0.05));
  border: 1px solid var(--line);
}
.site__grid--old { grid-template-columns: repeat(2, 1fr); gap: 4%; }
.site__grid--old i {
  background: #cfcfc8;
  border: 1px solid #b9b9b2;
  border-radius: 2px;
}

.compare__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--split, 50%);
  width: 2px;
  background: var(--gold);
  transform: translateX(-1px);
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 0 24px rgba(139, 108, 255, 0.7);
}
.compare__grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}
.compare__grip svg { width: 20px; height: 20px; }

.compare__control { display: block; margin-top: 1.5rem; }
.compare__control input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 999px;
  background: var(--line-2);
  cursor: ew-resize;
}
.compare__control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--ink);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  cursor: ew-resize;
}
.compare__control input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--ink);
  cursor: ew-resize;
}

.uplift {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.uplift__item {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.uplift__item h3 { margin-bottom: 0.5rem; }
.uplift__item p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Muster-Galerie ---------- */
.chips {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.chipbtn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.chipbtn:hover { color: var(--cream); border-color: var(--line-2); }
.chipbtn.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 500;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.tile {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1),
              border-color 0.35s ease, box-shadow 0.35s ease;
}
.tile:hover {
  --lift: -6px;
  border-color: rgba(139, 108, 255, 0.4);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.9);
}
.tile.is-hidden { display: none; }
.tile__visual { padding: 1.1rem 1.1rem 0; }
.tile__meta { padding: 1.2rem 1.4rem 1.5rem; }
.tile__meta h3 { margin: 0.55rem 0 0.35rem; }
.tile__meta p { color: var(--dim); font-size: 0.87rem; }

.kicker {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.frame--tile .frame__body { padding: 16px; }
.frame--tile .mock__tiles i { height: 30px; }
.tone--teal  .mock__cta { background: linear-gradient(135deg, #7fd8cf, #2c8f86); }
.tone--gold  .mock__cta { background: var(--gold-grad); }
.tone--rose  .mock__cta { background: linear-gradient(135deg, #e8a5b8, #a8455f); }

.split { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 12px; align-items: center; }
.split > div:first-child { display: flex; flex-direction: column; gap: 7px; }
.split__img {
  height: 72px; border-radius: 9px;
  background: linear-gradient(150deg, rgba(201,162,39,0.4), rgba(184,192,204,0.12));
}
.shopgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.shopgrid i {
  aspect-ratio: 1;
  border-radius: 7px;
  background: linear-gradient(150deg, rgba(232,212,139,0.28), rgba(138,112,32,0.22));
}

.reel {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  display: grid; place-items: center;
  overflow: hidden;
}
.reel::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 22%, rgba(255,255,255,0.16), transparent 55%);
}
.reel--vertical { aspect-ratio: 16 / 10; }
.tone--amber  { background: linear-gradient(140deg, #6b5a2a, #8b6cff); }
.tone--forest { background: linear-gradient(140deg, #24463c, #4d8071); }
.reel.tone--rose { background: linear-gradient(140deg, #5a2f3c, #a8455f); }
.reel__play {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(244, 240, 232, 0.94);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.reel__play i {
  width: 0; height: 0;
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent var(--ink);
  margin-left: 3px;
}
.reel__dur, .reel__format {
  position: absolute;
  z-index: 2;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  background: rgba(10, 14, 20, 0.7);
  color: var(--cream);
  padding: 3px 9px;
  border-radius: 6px;
}
.reel__dur { right: 10px; bottom: 10px; }
.reel__format { left: 10px; top: 10px; }

.shots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  aspect-ratio: 16 / 10;
}
.shots--portrait { grid-template-columns: repeat(3, 1fr); }
.feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  aspect-ratio: 16 / 10;
}

.gallery__empty {
  text-align: center;
  color: var(--dim);
  margin-top: 2.5rem;
}

.cta-strip {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border: 1px solid rgba(139, 108, 255, 0.3);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(201,162,39,0.10), rgba(201,162,39,0) 60%),
    var(--glass);
}
.cta-strip p { color: var(--muted); margin-top: 0.4rem; font-size: 0.95rem; }

/* ---------- Leistungen ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.svc {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1),
              border-color 0.35s ease, background 0.35s ease;
}
.svc:hover {
  --lift: -5px;
  border-color: rgba(139, 108, 255, 0.4);
  background: var(--glass-2);
}
.svc__icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(139, 108, 255, 0.12);
  border: 1px solid rgba(139, 108, 255, 0.22);
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.svc__icon svg { width: 21px; height: 21px; }
.svc h3 { margin-bottom: 0.45rem; }
.svc p { color: var(--dim); font-size: 0.88rem; line-height: 1.6; }

/* ---------- Pakete ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.9rem;
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1),
              border-color 0.35s ease, box-shadow 0.35s ease;
}
.plan:hover {
  --lift: -5px;
  border-color: var(--line-2);
  box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.85);
}
.plan--featured {
  border-color: rgba(139, 108, 255, 0.45);
  background:
    linear-gradient(160deg, rgba(201,162,39,0.10), rgba(201,162,39,0) 55%),
    var(--glass-2);
  box-shadow: 0 40px 80px -35px rgba(139, 108, 255, 0.35);
}
.plan--featured:hover { border-color: rgba(139, 108, 255, 0.7); }

.plan__ribbon {
  position: absolute;
  top: -0.75rem; left: 1.9rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.plan__ribbon--quiet {
  background: transparent;
  border: 1px solid rgba(139, 108, 255, 0.45);
  color: var(--gold);
}
.plan__name { font-size: clamp(1.6rem, 2.4vw, 2rem); }
.plan__for { color: var(--dim); font-size: 0.9rem; margin-top: 0.5rem; min-height: 3.2em; }
.plan__price {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 1.4rem;
  color: var(--cream);
}
.plan__from {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.plan__cycle { font-family: var(--sans); font-size: 1rem; color: var(--dim); letter-spacing: 0; }
.plan__note { font-size: 0.78rem; color: var(--dim); margin-top: 0.35rem; }

.plan__list {
  margin: 1.8rem 0 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  flex: 1;
}
.plan__list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.plan__list li strong { color: var(--cream); font-weight: 500; }
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.75;
}
.plans__fine {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--dim);
  font-size: 0.84rem;
  max-width: 52rem;
  margin-inline: auto;
}

/* ---------- Kennzahlen ---------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.metric {
  text-align: center;
  padding: 2rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
}
.metric__value {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  letter-spacing: -0.03em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.metric__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.6rem;
}
.metric__text { color: var(--dim); font-size: 0.86rem; margin-top: 0.9rem; }

/* ---------- Ablauf ---------- */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.flow__step {
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  position: relative;
}
.flow__step::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 38%; height: 1px;
  background: var(--gold);
}
.flow__num {
  font-family: var(--serif);
  font-size: 2.6rem;
  letter-spacing: -0.03em;
  color: rgba(139, 108, 255, 0.35);
  display: block;
  line-height: 1;
  margin-bottom: 0.7rem;
}
.flow__step h3 { margin-bottom: 0.5rem; }
.flow__step p { color: var(--dim); font-size: 0.9rem; }

/* ---------- Über uns / Team ---------- */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.about__copy p { color: var(--muted); margin-top: 1.2rem; }
.about__place {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.about__place svg { width: 17px; height: 17px; flex-shrink: 0; }

.crew { display: flex; flex-direction: column; gap: 1.1rem; }
.member {
  display: flex;
  align-items: flex-start;
  gap: 1.3rem;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.member:hover { border-color: rgba(139, 108, 255, 0.35); --lift: -4px; }
.member__portrait {
  display: grid; place-items: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  flex-shrink: 0;
  color: rgba(244, 240, 232, 0.75);
  border: 1px solid var(--line-2);
}
.member__portrait svg { width: 30px; height: 30px; }
.member__portrait--a { background: linear-gradient(145deg, #2c3a4c, #4a5f78); }
.member__portrait--b { background: linear-gradient(145deg, #5a4a20, #a3894a); }
.member__portrait--c { background: linear-gradient(145deg, #26403c, #3f6b62); }
.member__role {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.3rem 0 0.6rem;
}
.member p:last-child { color: var(--dim); font-size: 0.88rem; }

.team__hint,
.voices__notice {
  margin-top: 2.5rem;
  border: 1px dashed rgba(139, 108, 255, 0.4);
  background: rgba(139, 108, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.team__hint strong,
.voices__notice strong { color: var(--gold-soft); font-weight: 500; }

/* ---------- Kundenstimmen ---------- */
.voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.voice {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
}
.voice--empty { border-style: dashed; }
.voice > p {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--muted);
}
.voice footer { display: flex; align-items: center; gap: 0.9rem; }
.voice__mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(139, 108, 255, 0.12);
  border: 1px solid rgba(139, 108, 255, 0.28);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.voice footer strong { display: block; font-size: 0.92rem; font-weight: 500; }
.voice footer small { display: block; font-size: 0.78rem; color: var(--dim); margin-top: 0.15rem; }

/* ---------- FAQ ---------- */
.qa {
  border-bottom: 1px solid var(--line);
}
.qa summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  letter-spacing: -0.015em;
  color: var(--cream);
  transition: color 0.25s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--gold-soft); }
.qa summary::after {
  content: "";
  position: absolute;
  right: 0.4rem; top: 50%;
  width: 13px; height: 13px;
  margin-top: -7px;
  background:
    linear-gradient(var(--gold), var(--gold)) center/100% 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center/1.5px 100% no-repeat;
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1);
}
.qa[open] summary { color: var(--gold); }
.qa[open] summary::after { transform: rotate(135deg); }
.qa__body { padding: 0 3rem 1.6rem 0; }
.qa__body p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Kontakt ---------- */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.reach { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.3rem; }
.reach li { display: flex; align-items: center; gap: 1rem; }
.reach__icon {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(139, 108, 255, 0.10);
  border: 1px solid rgba(139, 108, 255, 0.22);
  color: var(--gold);
  flex-shrink: 0;
}
.reach__icon svg { width: 19px; height: 19px; }
.reach__body strong {
  display: block;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}
.reach__body a, .reach__body > span { font-size: 1rem; color: var(--cream); }
.reach__body a:hover { color: var(--gold-soft); }

.promise {
  margin-top: 2.2rem;
  border-left: 2px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.promise strong { color: var(--cream); font-weight: 500; }

.form {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.4rem);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.25rem; }
.field label, .field legend {
  display: block;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.55rem;
}
.req { color: var(--gold); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  background: rgba(10, 14, 20, 0.6);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--cream);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(139, 151, 168, 0.55); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(139, 108, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(139, 108, 255, 0.14);
  background: rgba(10, 14, 20, 0.85);
}
.field input:user-invalid,
.field textarea:user-invalid { border-color: rgba(224, 122, 122, 0.65); }

.field--choice { border: 0; }
.choices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.choice { cursor: pointer; }
.choice input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.choice__box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  height: 100%;
  text-align: center;
  padding: 0.9rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 14, 20, 0.4);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.choice__box strong { font-size: 0.92rem; font-weight: 500; color: var(--cream); }
.choice__box small { font-size: 0.72rem; color: var(--dim); }
.choice__flag {
  position: absolute;
  top: -0.55rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}
.choice:hover .choice__box { border-color: var(--line-2); transform: translateY(-2px); }
.choice input:checked + .choice__box {
  border-color: var(--gold);
  background: rgba(139, 108, 255, 0.12);
}
.choice input:focus-visible + .choice__box {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.consent input {
  width: 17px; height: 17px;
  margin-top: 0.25rem;
  accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}
.consent a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }

.form__status {
  margin-top: 1.1rem;
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-size: 0.87rem;
}
.form__status--ok {
  background: rgba(122, 190, 140, 0.10);
  border: 1px solid rgba(122, 190, 140, 0.35);
  color: #a9dcb8;
}
.form__status--warn {
  background: rgba(139, 108, 255, 0.08);
  border: 1px dashed rgba(139, 108, 255, 0.4);
  color: var(--muted);
}
.form__status--warn strong { color: var(--gold-soft); font-weight: 500; }

/* ---------- Schluss-CTA ---------- */
.closer {
  padding: var(--pad-y) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(139, 108, 255, 0.16), transparent 60%),
    var(--ink);
  border-top: 1px solid var(--line);
}
.closer__inner { max-width: 44rem; margin-inline: auto; }
.closer p { color: var(--muted); margin-top: 1.2rem; }
.closer__cta {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0.9rem;
  margin-top: 2.4rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__brand p {
  color: var(--dim);
  font-size: 0.88rem;
  margin-top: 1.2rem;
  max-width: 22rem;
}
.footer__col h3 {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer__col a,
.footer__col span {
  display: block;
  color: var(--dim);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color 0.25s;
}
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--dim);
}
.footer__bottom a { color: var(--dim); }
.footer__bottom a:hover { color: var(--cream); }

/* ---------- Rechtstexte (Impressum / Datenschutz / AGB) ---------- */
.legal { padding: clamp(7rem, 14vh, 10rem) 0 clamp(4rem, 8vw, 6rem); }
.legal__back { display: inline-block; margin-bottom: 2.5rem; font-size: 0.9rem; color: var(--gold); }
.legal__back:hover { color: var(--gold-soft); }
.legal h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); margin-bottom: 2rem; }
.legal h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin: 2.5rem 0 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.legal h3 { margin: 1.75rem 0 0.6rem; }
.legal p, .legal li { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.9rem; }
.legal ul, .legal ol { margin: 0 0 1.2rem 1.3rem; }
.legal li { list-style: disc; margin-bottom: 0.5rem; }
.legal a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.legal__notice {
  border: 1px dashed rgba(139, 108, 255, 0.45);
  background: rgba(139, 108, 255, 0.07);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}
.legal__notice strong { color: var(--gold-soft); font-weight: 500; }

/* ---------- Reveal ---------- */
/* Der Einblend-Versatz läuft bewusst über die Variable --reveal-y statt
   über eine eigene transform-Deklaration. Sonst würde .reveal.is-visible
   (zwei Klassen) die Karten-Regel .svc/.tile/… (eine Klasse) überstimmen
   und die 3D-Neigung wäre wirkungslos. */
.reveal {
  --reveal-y: 24px;
  opacity: 0;
  transform: translate3d(0, var(--reveal-y), 0);
  transition: opacity 0.8s cubic-bezier(.2,.7,.3,1),
              transform 0.8s cubic-bezier(.2,.7,.3,1);
  /* Staffelung: --i wird von js/motion.js gesetzt, gedeckelt bei 7 */
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal--late { transition-delay: 0.14s; }
.reveal.is-visible { opacity: 1; --reveal-y: 0px; }
.no-js .reveal { opacity: 1; --reveal-y: 0px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; --reveal-y: 0px; transition: none; }
  .chip { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   Bewegung & 3D
   ========================================================= */

/* ---------- Scroll-Fortschritt ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 120;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
  pointer-events: none;
}

/* ---------- Gold-Schimmer auf Akzent-Wörtern ---------- */
h1 em, h2 em, h3 em, .manifest__statement em {
  background: linear-gradient(100deg,
    #5a3fd6 0%, #8b6cff 22%, #d9ccff 44%, #8b6cff 66%, #5a3fd6 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position:   0% 0; }
  50%      { background-position: 100% 0; }
}

/* ---------- 3D-Kristall ---------- */
.crystal {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  aspect-ratio: 1;
  isolation: isolate;
}
.crystal__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  /* Der Kristall ist reine Dekoration – Zeigerereignisse gehen
     an die Seite darunter, damit nichts blockiert wird. */
  pointer-events: none;
}
.crystal__glow {
  position: absolute;
  inset: 14%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 108, 255, 0.34), transparent 66%);
  filter: blur(46px);
  animation: breathe 9s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.09); }
}
.crystal__ring {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}
.crystal__ring--1 {
  inset: 4%;
  border: 1px solid rgba(139, 108, 255, 0.20);
  animation: spin 26s linear infinite;
}
.crystal__ring--2 {
  inset: -5%;
  border: 1px dashed rgba(184, 192, 204, 0.14);
  animation: spin 44s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* CSS-Ersatz, wenn WebGL nicht verfügbar ist —
   es entsteht nie ein leeres Loch im Hero. */
.crystal__fallback { display: none; }
.no-webgl .crystal__canvas { display: none; }
.no-webgl .crystal__fallback {
  display: block;
  position: absolute;
  inset: 15%;
  z-index: 2;
  border-radius: 46% 54% 52% 48% / 50% 46% 54% 50%;
  background: conic-gradient(from 210deg,
    #6d5819, #8b6cff, #f0e0a4, #8b6cff, #5a3fd6, #6d5819);
  box-shadow:
    inset -22px -30px 70px rgba(0, 0, 0, 0.55),
    inset 18px 20px 50px rgba(255, 245, 210, 0.25),
    0 40px 90px -25px rgba(139, 108, 255, 0.45);
  animation: morph 14s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 46% 54% 52% 48% / 50% 46% 54% 50%; transform: rotate(0deg); }
  33%      { border-radius: 56% 44% 42% 58% / 44% 56% 44% 56%; transform: rotate(120deg); }
  66%      { border-radius: 42% 58% 56% 44% / 56% 48% 52% 44%; transform: rotate(240deg); }
}

/* Chips um den Kristall — bewusst ohne negative Versätze, damit sie
   am Rand der Bühne nicht abgeschnitten werden. Die runde Silhouette
   des Kristalls erzeugt die Überlappung von allein. */
.chip--web   { top: 1%;    left: 0;  animation-delay: 0.7s; }
.chip--video { top: 36%;   right: 0; }
.chip--photo { bottom: 3%; left: 4%; }
.chip__mini {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 74px; height: 46px;
  padding: 8px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(184,192,204,0.16), rgba(184,192,204,0.05));
}
.chip__mini-bar  { height: 4px; width: 58%; border-radius: 2px; background: var(--gold); }
.chip__mini-line { height: 3px; width: 100%; border-radius: 2px; background: rgba(244,240,232,0.22); }
.chip__mini-line--short { width: 62%; }

/* ---------- Endlos-Laufband ---------- */
.marquee {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.marquee__viewport {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: 0 0 auto;
  padding-right: 0.9rem;
  white-space: nowrap;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.marquee__track i { color: var(--gold); font-style: normal; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ---------- 3D-Neigung auf Karten ---------- */
.svc, .tile, .plan, .metric, .member {
  --rx: 0deg; --ry: 0deg; --lift: 0px;
  /* --reveal-y kommt aus .reveal und wird hier mitgerechnet, damit
     Einblendung und Neigung sich nicht gegenseitig überschreiben */
  transform: perspective(900px)
             rotateX(var(--rx)) rotateY(var(--ry))
             translate3d(0, calc(var(--lift) + var(--reveal-y, 0px)), 0);
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1),
              border-color 0.35s ease,
              box-shadow 0.35s ease,
              background 0.35s ease;
}
.svc.is-tilting, .tile.is-tilting, .plan.is-tilting,
.metric.is-tilting, .member.is-tilting {
  transition: transform 0.12s linear,
              border-color 0.35s ease,
              box-shadow 0.35s ease,
              background 0.35s ease;
}

/* Lichtreflex, der dem Zeiger folgt (nur wo sauber beschnitten wird) */
.svc { position: relative; overflow: hidden; }
.svc::after, .tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%),
              rgba(185, 166, 255, 0.14), transparent 62%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}
.svc.is-tilting::after, .tile.is-tilting::after { opacity: 1; }
.svc > *, .tile > * { position: relative; z-index: 2; }

/* Ablauf-Ziffern bekommen beim Scrollen leichten Versatz */
.flow__step:hover .flow__num { color: rgba(139, 108, 255, 0.6); }
.flow__num { transition: color 0.4s ease; }

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  h1 em, h2 em, h3 em, .manifest__statement em { animation: none; background-position: 30% 0; }
  .crystal__glow, .crystal__ring, .marquee__track,
  .no-webgl .crystal__fallback { animation: none; }
  .svc, .tile, .plan, .metric, .member { transform: none; }
}

/* =========================================================
   Experience-Layer: Intro · Cursor · kinetische Headline
   ========================================================= */

/* ---------- Intro / Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: var(--ink);
  /* CSS-Ausfallsicherung: verschwindet auch ohne JS nach 2.6 s */
  animation: preloaderOut 0.7s cubic-bezier(.7, 0, .2, 1) 2.6s forwards;
}
.preloader.is-done {
  animation: preloaderOut 0.7s cubic-bezier(.7, 0, .2, 1) forwards;
}
@keyframes preloaderOut {
  to { opacity: 0; visibility: hidden; transform: translateY(-26px); }
}
.no-js .preloader { display: none; }

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}
.preloader__mark {
  display: grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--gold-grad);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  box-shadow: 0 20px 50px -15px rgba(139, 108, 255, 0.6);
  animation: preMark 2.1s ease-in-out infinite;
}
@keyframes preMark {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
.preloader__name {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.preloader__bar {
  position: relative;
  width: 190px; height: 2px;
  border-radius: 2px;
  background: var(--line-2);
  overflow: hidden;
}
.preloader__bar i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--gold-grad);
}
.preloader__pct {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--dim);
  font-variant-numeric: tabular-nums;
}

/* ---------- Eigener Cursor (nur echte Maus) ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  z-index: 400;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: transform;
}
.cursor-dot { width: 7px; height: 7px; background: var(--gold); }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(139, 108, 255, 0.6);
  transition: opacity 0.3s ease, width 0.25s ease, height 0.25s ease,
              background 0.25s ease, border-color 0.25s ease;
}
html.has-cursor.cursor-ready .cursor-dot,
html.has-cursor.cursor-ready .cursor-ring { opacity: 1; }
.cursor-ring.is-hover {
  width: 54px; height: 54px;
  background: rgba(139, 108, 255, 0.12);
  border-color: rgba(139, 108, 255, 0.9);
}
/* Nativen Cursor nur ausblenden, solange der eigene aktiv ist */
html.has-cursor, html.has-cursor * { cursor: none; }
html.has-cursor input,
html.has-cursor textarea,
html.has-cursor select { cursor: auto; }

/* ---------- Kinetische Headline ---------- */
[data-kinetic].is-kinetic .kw { display: inline-block; }
[data-kinetic].is-kinetic .kw__in {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  filter: blur(8px);
  transition: opacity 0.7s ease,
              transform 0.9s cubic-bezier(.2, .8, .2, 1),
              filter 0.9s ease;
}
[data-kinetic].is-kinetic.is-playing .kw__in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .preloader { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
  html.has-cursor, html.has-cursor * { cursor: auto; }
  [data-kinetic].is-kinetic .kw__in { opacity: 1; transform: none; filter: none; }
}

/* =========================================================
   Showpieces: Atmosphäre · Manifest · Showreel · Cursor-Label
   ========================================================= */

/* ---------- Filmkorn + Vignette (filmische Atmosphäre) ---------- */
.fx-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}
.fx-overlay::before {
  content: "";
  position: absolute;
  inset: -60%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  animation: grain 0.55s steps(3) infinite;
}
.fx-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 240px 30px rgba(0, 0, 0, 0.55);
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-3%, 2%); }
  50%  { transform: translate(2%, -3%); }
  75%  { transform: translate(-2%, -1%); }
  100% { transform: translate(1%, 3%); }
}
.no-js .fx-overlay { display: none; }

/* ---------- Driftendes Zusatzlicht im Hero ---------- */
.hero__drift {
  position: absolute;
  z-index: -1;
  width: 340px; height: 340px;
  top: 24%; left: 46%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 108, 255, 0.18), transparent 62%);
  filter: blur(60px);
  pointer-events: none;
  animation: drift 18s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(-40px, -20px) scale(1); }
  33%      { transform: translate(60px, 30px) scale(1.15); }
  66%      { transform: translate(20px, -40px) scale(0.95); }
}

/* ---------- Manifest-Aussage ---------- */
.manifest {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(6rem, 15vw, 13rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifest__ghost {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: min(46vw, 680px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(139, 108, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.manifest__inner { position: relative; }
.manifest__kicker {
  justify-content: center;
  margin-bottom: 1.6rem;
}
.manifest__statement {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  font-size: clamp(2.3rem, 6.5vw, 5.6rem);
  line-height: 1.08;
  max-width: 18ch;
  margin-inline: auto;
  color: var(--cream);
}
.manifest .word { display: inline-block; }
.manifest__note {
  margin-top: 2.4rem;
  color: var(--dim);
  font-size: 0.95rem;
  max-width: 34rem;
  margin-inline: auto;
}

/* ---------- Showreel-Streifen ---------- */
.showreel { margin-bottom: clamp(2.4rem, 5vw, 3.5rem); }
.showreel__viewport {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.showreel__track {
  display: flex;
  gap: 1rem;
  flex: 0 0 auto;
  padding-right: 1rem;
  animation: marquee 52s linear infinite;
  will-change: transform;
}
.showreel:hover .showreel__track { animation-play-state: paused; }
.reelcard {
  flex: 0 0 auto;
  width: 236px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--glass);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.reelcard:hover { border-color: rgba(139, 108, 255, 0.4); transform: translateY(-4px); }
.reelcard__thumb {
  position: relative;
  height: 132px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.reelcard__thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.16), transparent 55%);
}
/* Thumb-Hintergründe eng auf die Showreel-Karte begrenzt,
   damit die Galerie-Frames unberührt bleiben */
.reelcard__thumb.tone--amber  { background: linear-gradient(140deg, #6b5a2a, #8b6cff); }
.reelcard__thumb.tone--teal   { background: linear-gradient(140deg, #0d5a52, #22d3ee); }
.reelcard__thumb.tone--rose   { background: linear-gradient(140deg, #5a2f3c, #a8455f); }
.reelcard__thumb.tone--gold   { background: var(--gold-grad); }
.reelcard__thumb.tone--ocean  { background: linear-gradient(140deg, #1e3a5f, #4a7bb0); }
.reelcard__thumb.tone--forest { background: linear-gradient(140deg, #24463c, #4d8071); }
.reelcard__thumb.tone--sunset { background: linear-gradient(140deg, #7a3b1f, #e08a3c); }
.reelcard__tag {
  position: absolute;
  left: 10px; top: 10px;
  z-index: 2;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(10, 14, 20, 0.6);
  padding: 3px 9px;
  border-radius: 6px;
}
.reelcard__label { padding: 0.75rem 0.95rem 0.9rem; }
.reelcard__label strong { display: block; font-size: 0.9rem; font-weight: 500; }
.reelcard__label small { font-size: 0.76rem; color: var(--dim); }

/* ---------- Kontext-Cursor-Label ---------- */
.cursor-label {
  position: fixed;
  top: 0; left: 0;
  z-index: 400;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
html.has-cursor.cursor-ready .cursor-label.is-on { opacity: 1; }
/* Wenn ein Label aktiv ist, tritt der Ring dezent zurück */
.cursor-ring.has-label { opacity: 0.25; }

@media (prefers-reduced-motion: reduce) {
  .fx-overlay::before { animation: none; }
  .hero__drift { animation: none; }
  .showreel__track { animation: none; }
  .cursor-label { display: none; }
}

/* =========================================================
   Aurora Noir — Hintergrund-Ebenen, Sektionsflächen, Hero-Karten
   ========================================================= */
html { background: var(--ink); }
body { background: transparent; }

/* Lebendiger Aurora-Nebel, fixiert hinter der ganzen Seite */
.aurora-bg {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  z-index: -3;
  display: block;
}
/* Statischer Ersatz, wenn kein WebGL / kein JS */
.aurora-fallback {
  position: fixed;
  inset: 0;
  z-index: -3;
  display: none;
  background:
    radial-gradient(120% 90% at 75% 6%, rgba(139, 108, 255, 0.50), transparent 55%),
    radial-gradient(110% 90% at 12% 94%, rgba(34, 211, 238, 0.34), transparent 55%),
    radial-gradient(90% 80% at 50% 55%, rgba(255, 92, 168, 0.16), transparent 60%),
    var(--ink);
}
.no-aurora .aurora-bg,
.no-js .aurora-bg { display: none; }
.no-aurora .aurora-fallback,
.no-js .aurora-fallback { display: block; }

/* Kontrast-Schleier: hält Text lesbar, lässt den Hero (oben) am hellsten */
.aurora-veil {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(8, 8, 15, 0.14) 0%,
    rgba(8, 8, 15, 0.50) 42%,
    rgba(8, 8, 15, 0.56) 100%);
}

/* Inhaltssektionen leicht getönt → Text sicher lesbar.
   Hero und Manifest bleiben transparent → Aurora dort am stärksten. */
.band { background: rgba(9, 9, 18, 0.46); }
.band--tint { background: rgba(15, 13, 30, 0.56); }
.footer { background: rgba(9, 9, 18, 0.82); }
.nav.is-scrolled {
  background: rgba(9, 9, 18, 0.72);
}

/* ---------- Hero: schwebende Capability-Karten über der Aurora ---------- */
.orbit {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
  aspect-ratio: 1;
}
.orbit__core {
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(139, 108, 255, 0.85), rgba(34, 211, 238, 0.45) 45%, transparent 70%);
  filter: blur(26px);
  animation: breathe 8s ease-in-out infinite;
}
.orbit__ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orbit__ring--1 {
  inset: 13%;
  border: 1px solid rgba(139, 108, 255, 0.22);
  animation: spin 30s linear infinite;
}
.orbit__ring--2 {
  inset: 1%;
  border: 1px dashed rgba(34, 211, 238, 0.16);
  animation: spin 48s linear infinite reverse;
}
.ocard {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  background: var(--glass-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.85);
  animation: bob 6s ease-in-out infinite;
}
.ocard--web   { top: 3%;    left: -3%; }
.ocard--video { top: 43%;   right: -5%; animation-delay: 1s; }
.ocard--foto  { bottom: 3%; left: 7%;   animation-delay: 2s; }
.ocard__icon {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(139, 108, 255, 0.14);
  border: 1px solid rgba(139, 108, 255, 0.28);
  color: var(--acc-2);
  flex-shrink: 0;
}
.ocard__icon svg { width: 20px; height: 20px; }
.ocard__meta strong { display: block; font-size: 0.85rem; font-weight: 600; }
.ocard__meta small { font-size: 0.72rem; color: var(--dim); }

@media (max-width: 620px) {
  .orbit { max-width: 320px; }
  .ocard { padding: 0.55rem 0.7rem; gap: 0.55rem; }
  .ocard__icon { width: 34px; height: 34px; }
  .ocard__icon svg { width: 17px; height: 17px; }
  .ocard__meta strong { font-size: 0.78rem; }
  .ocard__meta small { font-size: 0.66rem; }
  .ocard--web   { top: 0; left: 0; }
  .ocard--video { top: 44%; right: 0; }
  .ocard--foto  { bottom: 0; left: 4%; }
}

@media (prefers-reduced-motion: reduce) {
  .orbit__core, .orbit__ring, .ocard { animation: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .services { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 4.5rem; }
  .hero__stage { max-width: 560px; margin-inline: auto; width: 100%; }
  .gallery, .voices, .uplift { grid-template-columns: repeat(2, 1fr); }
  .metrics, .flow { grid-template-columns: repeat(2, 1fr); }
  .about, .contact { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: rgba(10, 14, 20, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(.2,.7,.3,1);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a:not(.btn) { font-size: 1rem; letter-spacing: 0.2em; }
  .burger { display: block; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .compare__stage { aspect-ratio: 4 / 3; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .shell, .container { width: min(var(--shell), 100% - 1.75rem); }
  .gallery, .voices, .uplift, .services,
  .metrics, .flow { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .choices { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__facts { gap: 1.5rem 2rem; }
  .crystal { max-width: 340px; }
  .chip { padding: 8px; gap: 8px; }
  .chip__meta strong { font-size: 0.72rem; }
  .chip__meta small { font-size: 0.62rem; }
  .chip__mini, .chip__play { width: 52px; height: 34px; }
  .chip__shots .sh { width: 20px; height: 30px; }
  .chip--web   { top: 0;      left: 0; }
  .chip--video { top: 34%;    right: 0; }
  .chip--photo { bottom: 0;   left: 0; }
  .compare__stage { aspect-ratio: 3 / 4; }
  .plan { padding: 2rem 1.5rem; }
  .qa summary { font-size: 1.08rem; padding-right: 2.5rem; }
  .qa__body { padding-right: 0; }
}
