/* ═══════════════════════════════════════════════════
   PROFIX – SITE.CSS · Neuer Grundaufbau (Split-Screen)
   Links: feste Kommandozentrale (Rail)
   Rechts: editorialer Content-Strom mit Kapiteln
   Lädt nach variables/fonts/components/integrations.
═══════════════════════════════════════════════════ */

:root {
  --railw: clamp(340px, 31vw, 460px);
  --pad: clamp(1.6rem, 4vw, 4rem);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --rb: 5px;
}

html { scroll-behavior: smooth; scrollbar-color: #2a2a2a var(--black); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #262626; border-radius: 5px; border: 2px solid var(--black); }
::-webkit-scrollbar-thumb:hover { background: var(--red-dark); }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

body { background: var(--black); }
section[id] { scroll-margin-top: 20px; }

/* ═══════════ RAIL (links, fixiert) ═══════════ */
.rail {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--railw);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2.2rem 2.4rem 1.6rem;
  background:
    radial-gradient(560px circle at 20% 12%, rgba(74,141,196,.06), transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 44px, rgba(255,255,255,.022) 44px 45px),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255,255,255,.022) 44px 45px),
    #0c0c0c;
  border-right: 1px solid var(--border);
  overflow: hidden;
  z-index: 20;
}
/* roter Lichtstreifen zieht durch die Rail */
.rail::after {
  content: '';
  position: absolute;
  top: -25%; left: -40%;
  width: 70%; height: 150%;
  background: linear-gradient(100deg, transparent 42%, rgba(224,26,26,.08) 50%, transparent 58%);
  transform: rotate(10deg);
  animation: beamDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes beamDrift { from { translate: 0 0; } to { translate: 150% 0; } }
/* rote Kante an der Trennlinie */
.rail::before {
  content: '';
  position: absolute;
  top: 0; right: -1px;
  width: 3px; height: 140px;
  background: linear-gradient(180deg, var(--red), transparent);
}

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

.rail-brand { line-height: 1; }
.wordmark {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 2.1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: inline-block;
  transform: skewX(-7deg);
  filter: drop-shadow(0 3px 5px rgba(0,0,0,.65)) drop-shadow(0 0 18px rgba(224,26,26,.18));
}
/* Chrom-Verlauf im Schriftzug – wie die Metallic-Buchstaben im Logo.
   Layer 1: wandernder Lichtstreifen · Layer 2: Farbverlauf */
.wordmark .b, .wordmark .r {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-size: 260% 100%, 100% 100%;
  background-position: 130% 0, 0 0;
  animation: wmShine 5.5s ease-in-out infinite;
}
.wordmark .b {
  background-image:
    linear-gradient(105deg, transparent 40%, rgba(255,255,255,.85) 50%, transparent 60%),
    linear-gradient(180deg, #b9dcf7 0%, #6aa8d8 38%, var(--blue) 55%, #1c4a75 100%);
}
.wordmark .r {
  background-image:
    linear-gradient(105deg, transparent 40%, rgba(255,255,255,.85) 50%, transparent 60%),
    linear-gradient(180deg, #ffb3a8 0%, #ff5340 38%, var(--red) 58%, #7c0a0a 100%);
}
@keyframes wmShine {
  0%, 62%   { background-position: 130% 0, 0 0; }
  86%, 100% { background-position: -60% 0, 0 0; }
}
.rail-tag {
  margin-top: .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gray);
}

/* Logo-Bühne */
.rail-logo { position: relative; display: flex; justify-content: center; padding: .2rem 0; }
/* pulsierender roter Unterglow hinter dem Logo */
.rail-logo::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 240px; height: 240px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,26,26,.32), transparent 65%);
  filter: blur(14px);
  animation: glowPulse 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity: .45; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: .9;  transform: translate(-50%,-50%) scale(1.12); }
}
.logo-anim {
  position: relative;
  display: inline-block;
  width: min(188px, 54%);
  animation: logoIn .9s var(--ease-out) .2s backwards, logoFloat 7s ease-in-out 1.4s infinite;
}
.logo-anim img { width: 100%; height: auto; display: block; filter: drop-shadow(0 18px 40px rgba(0,0,0,.6)); }
@keyframes logoIn { from { opacity: 0; transform: scale(.9) translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes logoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.logo-anim::before {
  content: '';
  position: absolute;
  left: 50%; top: 48.4%;
  width: 106%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    transparent 0deg 26deg, rgba(224,26,26,.75) 40deg 92deg,
    transparent 106deg 152deg, rgba(74,141,196,.55) 166deg 200deg,
    transparent 214deg 244deg, rgba(224,26,26,.45) 258deg 320deg,
    transparent 334deg 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  animation: ringSpin 16s linear infinite;
  pointer-events: none;
}
.logo-anim::after {
  content: '';
  position: absolute;
  left: 50%; top: 48.4%;
  width: 114%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle 4.5px at 50% 2.5%, var(--red) 60%, transparent 62%);
  filter: drop-shadow(0 0 6px var(--red-glow));
  animation: ringSpinRev 9s linear infinite;
  pointer-events: none;
}
@keyframes ringSpin    { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes ringSpinRev { to { transform: translate(-50%,-50%) rotate(-360deg); } }

/* Nummerierte Navigation */
.rail-nav { flex: 1; display: flex; align-items: center; }
.rail-nav ol { list-style: none; margin: 0; padding: 0; width: 100%; }
.rail-nav a {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  padding: .4rem 0;
  color: #d6d6d6;
  text-decoration: none;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color .25s ease, transform .3s var(--ease-out);
}
.rail-nav .no {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gray);
  min-width: 22px;
  transition: color .25s ease;
}
.rail-nav a::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  margin-left: .6rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.rail-nav a:hover { color: #fff; transform: translateX(6px); }
.rail-nav a:hover::after { transform: scaleX(1); }
.rail-nav a.active { color: var(--red); }
.rail-nav a.active .no { color: var(--red); }
.rail-nav a.active::after { transform: scaleX(1); background: var(--red); }

/* Rail-CTAs */
.rail-cta { display: grid; gap: .6rem; }
.btn-rail {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s var(--ease-out), box-shadow .25s ease, background .25s ease, color .25s;
  position: relative;
  overflow: hidden;
}
.btn-rail.solid {
  background: linear-gradient(180deg, #f02525, var(--red-dark));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 6px 22px rgba(224,26,26,.3);
}
.btn-rail.solid:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 10px 28px rgba(224,26,26,.42); }
.btn-rail.ghost { border: 1px solid var(--border); color: #ddd; background: rgba(255,255,255,.02); }
.btn-rail.ghost:hover { border-color: var(--border-red); color: #fff; background: rgba(224,26,26,.07); }
.btn-rail.solid::after {
  content: '';
  position: absolute;
  top: 0; left: -85%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
  pointer-events: none;
}
.btn-rail.solid:hover::after { left: 135%; }

.rail-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  font-size: .72rem;
  color: var(--gray);
  line-height: 1.6;
}
.rail-foot a { color: var(--gray); text-decoration: none; transition: color .2s; }
.rail-foot a:hover { color: var(--red); }
.rail-social { display: flex; gap: .55rem; }
.rail-social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #cfcfcf;
  transition: transform .3s var(--ease-out), color .25s, border-color .25s;
}
.rail-social a svg { width: 16px; height: 16px; }
.rail-social a:hover { transform: translateY(-3px); color: var(--red); border-color: var(--border-red); }

/* ═══════════ CONTENT (rechts, scrollt) ═══════════ */
.content { margin-left: var(--railw); min-height: 100vh; }

/* Rotator-Strip oben */
.topbar {
  position: relative;
  height: 36px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--red-dark), var(--red) 45%, var(--red-dark));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0,0,0,.35);
}
.topbar-item {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(100%);
  transition: transform .55s var(--ease-out), opacity .4s ease;
  padding: 0 1rem;
}
.topbar-item.active { opacity: 1; transform: none; }
.topbar-item.leave  { opacity: 0; transform: translateY(-100%); }
.topbar-item a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* Intro */
#intro { padding: clamp(3rem, 7vw, 6rem) var(--pad) clamp(2.4rem, 5vw, 4rem); position: relative; overflow: hidden; }
#intro::before {
  content: 'PROFIX';
  position: absolute;
  right: -2%; top: 6%;
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 10rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.05);
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.3rem;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--red); }
.intro-title {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--white);
  position: relative;
}
.intro-title .o { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.32); }
.intro-title .r { color: var(--red); }
.intro-title .b { color: var(--blue); }
.intro-sub { max-width: 560px; color: var(--gray); font-size: 1.05rem; line-height: 1.75; margin-top: 1.4rem; }

.hero-stats { display: flex; gap: clamp(1.6rem, 4vw, 3.2rem); margin-top: 2.2rem; flex-wrap: wrap; }
.stat-item { border-left: 2px solid var(--red); padding-left: 1rem; }
.stat-num {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 1.85rem;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: .3rem; }

.kg-note {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  margin-top: 2.4rem;
  padding: .95rem 1.2rem;
  max-width: 640px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  background: rgba(255,255,255,.02);
  font-size: .86rem;
  color: #c9c9c9;
  line-height: 1.65;
}
.kg-note strong { color: #fff; }

/* Marquee */
.marquee {
  position: relative;
  z-index: 5;
  background: linear-gradient(90deg, var(--red-dark), var(--red) 30%, var(--red) 70%, var(--red-dark));
  transform: rotate(-1.3deg) scale(1.03);
  margin: -14px 0 -10px;
  padding: .8rem 0;
  overflow: hidden;
  box-shadow: 0 14px 46px rgba(224,26,26,.26), 0 -8px 30px rgba(0,0,0,.45);
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(0,0,0,.35);
}
.marquee-track {
  display: flex; align-items: center; gap: 2.4rem;
  width: max-content; white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(.9rem, 1.3vw, 1.08rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}
.marquee-track i { font-style: normal; font-weight: 900; color: rgba(0,0,0,.38); letter-spacing: -1px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ═══════════ KAPITEL ═══════════ */
.chapter { padding: clamp(2.4rem, 5vw, 4rem) var(--pad); border-top: 1px solid var(--border); }
.chapter.tint { background: #0e0e0e; }
.ch-head {
  display: flex;
  align-items: flex-end;
  gap: 1.4rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 1.1rem;
  margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem);
  position: relative;
}
.ch-head::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 90px; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease-out) .25s;
}
.ch-head.visible::after, .visible .ch-head::after { transform: scaleX(1); }
.ch-no {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(224,26,26,.75);
}
.ch-title {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}
.ch-hint { margin-left: auto; font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); padding-bottom: .4rem; white-space: nowrap; }
.ch-desc { color: var(--gray); max-width: 640px; margin: -0.8rem 0 2rem; line-height: 1.7; }

/* ── 01 Leistungen: Ledger-Zeilen statt Karten ── */
.svc-rows { border-top: 1px solid var(--border); }
.svc-row {
  --mx: 50%; --my: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr auto 40px;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem .5rem;
  border-bottom: 1px solid var(--border);
  transition: background .3s ease;
  overflow: hidden;
}
.svc-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transition: transform .35s var(--ease-out);
}
.svc-row::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(224,26,26,.09), transparent 65%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.svc-row:hover { background: rgba(255,255,255,.015); }
.svc-row:hover::before { transform: scaleY(1); }
.svc-row:hover::after { opacity: 1; }
.r-no {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 1.4rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.28);
  transition: -webkit-text-stroke .3s, color .3s;
}
.svc-row:hover .r-no { color: var(--red); -webkit-text-stroke: 1px var(--red); }
.r-name {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  transition: transform .35s var(--ease-out);
}
.svc-row:hover .r-name { transform: translateX(8px); }
.r-text { color: var(--gray); font-size: .93rem; margin-top: .3rem; max-width: 540px; line-height: 1.6; }
.r-tag {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--border-red);
  border-radius: 99px;
  padding: .3rem .75rem;
  white-space: nowrap;
}
.r-arrow {
  font-size: 1.4rem;
  color: var(--gray);
  transition: transform .35s var(--ease-out), color .3s;
  text-align: right;
}
.svc-row:hover .r-arrow { transform: translateX(8px); color: var(--red); }

/* ── 02 Team: Personen-Zeilen ── */
.person {
  --mx: 50%; --my: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.1rem .5rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.person:first-of-type { border-top: 1px solid var(--border); }
.person::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(74,141,196,.08), transparent 65%);
  opacity: 0; transition: opacity .35s ease; pointer-events: none;
}
.person:hover::after { opacity: 1; }
.p-ava {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(150deg, #1e1e1e, #121212);
  border: 2px solid var(--red);
  box-shadow: 0 8px 26px rgba(0,0,0,.4);
  transition: transform .35s var(--ease-out), box-shadow .3s;
}
.person.alt .p-ava { border-color: var(--blue); }
.person:hover .p-ava { transform: scale(1.07) rotate(-4deg); box-shadow: 0 10px 32px rgba(224,26,26,.3); }
.p-name { font-family: var(--font-condensed); font-weight: 800; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 1px; color: var(--white); }
.p-role { color: var(--gray); font-size: .85rem; letter-spacing: 1.5px; text-transform: uppercase; margin-top: .2rem; }
.p-tel {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1.1rem;
  color: #eee;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  white-space: nowrap;
}
.p-tel::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.p-tel:hover::after { transform: scaleX(1); }

/* ── 03 Standort ── */
.loc-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(1.6rem, 3vw, 3rem); align-items: stretch; }
.sinfo-item { display: flex; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.sinfo-item:first-child { border-top: 1px solid var(--border); }
.sinfo-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  background: linear-gradient(150deg, #1d1d1d, #131313);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.sinfo-label { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: .25rem; }
.sinfo-val { color: #e8e8e8; font-weight: 600; line-height: 1.55; }
.sinfo-val a { color: #e8e8e8; text-decoration: none; border-bottom: 1px solid var(--border-red); transition: color .2s; }
.sinfo-val a:hover { color: var(--red); }
.loc-cta { margin-top: 1.4rem; }

.map-wrap { position: relative; min-height: 420px; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--dark); display: flex; flex-direction: column; }
.map-wrap iframe { display: block; width: 100%; flex: 1; min-height: 420px; border: 0; filter: grayscale(85%) invert(90%) hue-rotate(180deg); }
.map-consent {
  flex: 1;
  min-height: 420px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .9rem; text-align: center; padding: 1.5rem;
  background:
    radial-gradient(420px circle at 50% 30%, rgba(224,26,26,.08), transparent 70%),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(255,255,255,.025) 34px 35px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255,255,255,.025) 34px 35px),
    var(--dark);
}
.map-consent-icon { font-size: 2.2rem; animation: bob 4s ease-in-out infinite; }
@keyframes bob { 0%,100% { translate: 0 0; } 50% { translate: 0 -5px; } }
.map-consent p { font-size: .9rem; color: var(--gray); max-width: 340px; line-height: 1.55; }
.map-consent strong { color: var(--white); }
.map-ext { font-size: .8rem; color: var(--gray); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.map-ext:hover { color: var(--red); }

/* ── 04 Bewertungen: horizontaler Snap-Scroller ── */
.bewertungen-grid {
  display: flex !important;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .4rem .2rem 1.1rem;
  scrollbar-width: thin;
}
.bewertungen-grid::-webkit-scrollbar { height: 8px; }
.bewertungen-grid .bcard { min-width: min(340px, 82%); scroll-snap-align: start; flex-shrink: 0; }
.scroll-hint { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: .2rem; }

.ig-inline { margin-top: 2.6rem; padding-top: 2.2rem; border-top: 1px dashed var(--border); }
.ig-inline-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.3rem; flex-wrap: wrap; }
.ig-inline-head .t { font-family: var(--font-condensed); font-weight: 800; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; color: var(--white); }
.ig-head-link { margin-left: auto; }
.insta-icon-wrap { background-size: 250% 250%; animation: igGradient 7s ease-in-out infinite, bob 4.5s ease-in-out infinite; }
@keyframes igGradient { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.ig-story-ring { animation: storyPulse 3.2s ease-in-out infinite; }
@keyframes storyPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(220,39,103,0); } 50% { box-shadow: 0 0 0 4px rgba(220,39,103,.22); } }

/* Google-Animationen (Sterne/Buchstaben poppen) */
.greview-summary.visible .grev-stars span { display: inline-block; animation: starPop .55s var(--ease-out) backwards; }
.grev-stars span:nth-child(1) { animation-delay: .30s; } .grev-stars span:nth-child(2) { animation-delay: .42s; }
.grev-stars span:nth-child(3) { animation-delay: .54s; } .grev-stars span:nth-child(4) { animation-delay: .66s; }
.grev-stars span:nth-child(5) { animation-delay: .78s; }
@keyframes starPop { from { opacity: 0; transform: scale(0) rotate(-40deg); } 60% { transform: scale(1.25) rotate(8deg); } to { opacity: 1; transform: none; } }
.greview-summary.visible .grev-glogo span { display: inline-block; animation: gPop .5s var(--ease-out) backwards; }
.grev-glogo span:nth-child(1) { animation-delay: .55s; } .grev-glogo span:nth-child(2) { animation-delay: .62s; }
.grev-glogo span:nth-child(3) { animation-delay: .69s; } .grev-glogo span:nth-child(4) { animation-delay: .76s; }
.grev-glogo span:nth-child(5) { animation-delay: .83s; } .grev-glogo span:nth-child(6) { animation-delay: .90s; }
@keyframes gPop { from { opacity: 0; transform: translateY(14px) scale(.6); } to { opacity: 1; transform: none; } }
.bcard.visible::before { animation: quotePop .7s var(--ease-out) .25s backwards; }
@keyframes quotePop { from { opacity: 0; transform: scale(0) rotate(-30deg); } to { opacity: .2; transform: none; } }

/* ── 06 Termin: Formular-Panel ── */
.form-panel { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: #0e0e0e; }
.form-panel-head {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1.1rem 1.6rem;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  color: #fff;
}
.form-panel-head .no { font-family: var(--font-condensed); font-weight: 900; font-size: 1.3rem; opacity: .55; }
.form-panel-head .t { font-family: var(--font-condensed); font-weight: 900; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1.5px; }
.form-panel-head .s { margin-left: auto; font-size: .78rem; opacity: .9; }
.form-panel-body { display: grid; grid-template-columns: .9fr 1.3fr; gap: clamp(1.5rem, 3vw, 3rem); padding: clamp(1.5rem, 3vw, 2.6rem); }
.fic-item { display: flex; gap: .9rem; align-items: flex-start; padding: .9rem 0; border-bottom: 1px solid var(--border); }
.fic-icon { font-size: 1.2rem; }
.fic-label { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }
.fic-val { color: #eee; font-weight: 700; text-decoration: none; }
a.fic-val:hover { color: var(--red); }
.form-side-desc { color: var(--gray); line-height: 1.7; font-size: .95rem; margin-bottom: 1rem; }
.form-submit { background: linear-gradient(180deg, #f02525, var(--red-dark)) !important; box-shadow: inset 0 1px 0 rgba(255,255,255,.22), var(--shadow-red); position: relative; overflow: hidden; }
.form-submit::after {
  content: ''; position: absolute; top: 0; left: -85%; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-20deg); transition: left .55s ease; pointer-events: none;
}
.form-submit:hover::after { left: 135%; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Footer */
.site-foot {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
  padding: 1.6rem var(--pad);
  border-top: 1px solid var(--border);
  color: var(--gray);
  font-size: .78rem;
}
.site-foot .links { margin-left: auto; display: flex; gap: 1.4rem; }
.site-foot a { color: var(--gray); text-decoration: none; transition: color .2s; }
.site-foot a:hover { color: var(--red); }

/* ═══════════ REVEAL 3.0 ═══════════ */
.reveal { opacity: 0; --rx: 0px; --ry: 30px; --rs: 1; }
.reveal-left  { --rx: -44px; --ry: 0px; }
.reveal-right { --rx: 44px;  --ry: 0px; }
.reveal-scale { --rs: .93;   --ry: 16px; }
.reveal.visible { opacity: 1; animation: revealIn .85s var(--ease-out) backwards; }
@keyframes revealIn {
  from { opacity: 0; transform: translate(var(--rx), var(--ry)) scale(var(--rs)); filter: blur(var(--rb)); }
  to   { opacity: 1; transform: none; filter: none; }
}

/* Back-to-Top + Progress */
.back-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(17,17,17,.92); border: 1px solid var(--border-red); color: var(--red);
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s, background .2s, box-shadow .2s;
  backdrop-filter: blur(8px);
}
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.page-progress {
  position: fixed; top: 0; left: var(--railw); right: 0; height: 2px; z-index: 950;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  transform-origin: left; transform: scaleX(0);
}

/* ═══════════ MOBILE TOP-BAR + OVERLAY ═══════════ */
.mtop {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 58px; align-items: center; gap: .9rem;
  padding: 0 1.1rem;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.mtop .wordmark { font-size: 1.55rem; }
.mtop-tel {
  margin-left: auto;
  width: 40px; height: 40px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #f02525, var(--red-dark));
  color: #fff; text-decoration: none;
}
.mtop-tel svg { width: 17px; height: 17px; }
.mtop-burger {
  width: 40px; height: 40px; border-radius: 9px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: rgba(255,255,255,.02);
}
.mtop-burger i { width: 18px; height: 2px; background: #fff; transition: transform .3s var(--ease-out), opacity .2s; }
.mtop-burger.open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mtop-burger.open i:nth-child(2) { opacity: 0; }
.mtop-burger.open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mmenu {
  position: fixed; inset: 0; z-index: 990;
  background: rgba(8,8,8,.98);
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 2rem 2.4rem;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}
.mmenu.open { opacity: 1; visibility: visible; }
.mmenu ol { list-style: none; margin: 0; padding: 0; }
.mmenu a {
  display: flex; align-items: baseline; gap: 1rem;
  padding: .7rem 0;
  color: #eee; text-decoration: none;
  font-family: var(--font-condensed); font-weight: 900;
  font-size: 2rem; text-transform: uppercase; letter-spacing: 1px;
  transform: translateX(-20px); opacity: 0;
  transition: transform .5s var(--ease-out), opacity .4s ease;
}
.mmenu.open a { transform: none; opacity: 1; }
.mmenu.open li:nth-child(1) a { transition-delay: .04s; }
.mmenu.open li:nth-child(2) a { transition-delay: .09s; }
.mmenu.open li:nth-child(3) a { transition-delay: .14s; }
.mmenu.open li:nth-child(4) a { transition-delay: .19s; }
.mmenu.open li:nth-child(5) a { transition-delay: .24s; }
.mmenu.open li:nth-child(6) a { transition-delay: .29s; }
body.menu-open { overflow: hidden; }
.mmenu a .no { font-size: .8rem; color: var(--red); min-width: 26px; }
.mmenu a:active, .mmenu a:hover { color: var(--red); }
.mmenu .mmenu-foot { margin-top: 2rem; color: var(--gray); font-size: .8rem; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1180px) {
  :root { --railw: clamp(300px, 30vw, 380px); }
  .rail { padding: 1.8rem 1.7rem 1.3rem; }
  .wordmark { font-size: 2.1rem; }
  .rail-nav a { font-size: 1.15rem; }
}
@media (max-width: 1023px) {
  :root { --rb: 0px; }
  body { padding-top: 58px; }
  .mtop { display: flex; }
  .rail {
    position: static;
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 2rem 1.4rem 1.6rem;
    text-align: center;
    gap: 1.2rem;
  }
  .rail::before { display: none; }
  .rail-brand { display: none; }             /* Wordmark sitzt in der mtop-Leiste */
  .rail-nav { display: none; }               /* Navigation übernimmt das Overlay */
  .rail-cta { grid-template-columns: 1fr 1fr; max-width: 460px; margin: 0 auto; width: 100%; }
  .rail-foot { justify-content: center; text-align: center; flex-direction: column; align-items: center; gap: .8rem; }
  .content { margin-left: 0; }
  .page-progress { left: 0; top: 58px; }
  .logo-anim { width: min(165px, 46%); }
  .reveal-left { --rx: -22px; } .reveal-right { --rx: 22px; }
  .topbar-item { font-size: .62rem; letter-spacing: 1px; }
}
@media (max-width: 720px) {
  .intro-title { font-size: clamp(2.35rem, 12.5vw, 3.3rem); }
  .rail-foot { display: none; }
  .map-wrap, .map-consent, .map-wrap iframe { min-height: 340px; }
  .form-panel-head .s { display: none; }
  .svc-row { grid-template-columns: 52px 1fr; gap: .9rem 1rem; padding: 1.4rem .2rem; }
  .r-no { font-size: 1.4rem; }
  .r-tag { grid-column: 2; justify-self: start; }
  .r-arrow { display: none; }
  .person { grid-template-columns: 68px 1fr; }
  .p-ava { width: 64px; height: 64px; font-size: 1.2rem; }
  .p-tel { grid-column: 2; justify-self: start; font-size: 1.15rem; }
  .loc-grid, .form-panel-body { grid-template-columns: 1fr; }
  .ch-hint { display: none; }
  .hero-stats { gap: 1.3rem; }
  .marquee { margin: -8px 0; padding: .6rem 0; }
  .back-top { right: 14px; bottom: 14px; width: 42px; height: 42px; }
}

/* Reduced-Motion-Gating bewusst entfernt – Betreiber-Entscheidung:
   Slides & Icon-Loops laufen auf allen Systemen. */

/* ═══════════ WERKSTATT-KACHELN (animierte SVG-Icons) ═══════════ */
.ch-subhead {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 2rem 0 1rem;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
}
.ch-subhead::before { content: ''; width: 26px; height: 2px; background: var(--red); }

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.tile {
  --mx: 50%; --my: 50%;
  position: relative;
  overflow: hidden;
  padding: 1.1rem 1.05rem 1rem;
  background: linear-gradient(160deg, #151515, #0e0e0e);
  border: 1px solid var(--border);
  border-top-color: rgba(255,255,255,.12);
  border-radius: 14px;
  transition: transform .35s var(--ease-out), border-color .3s ease, box-shadow .3s ease;
}
.tile::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(340px circle at var(--mx) var(--my), rgba(224,26,26,.10), transparent 65%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.tile:hover { transform: translateY(-5px); border-color: var(--border-red); box-shadow: 0 14px 34px rgba(0,0,0,.45); }
.tile:hover::after { opacity: 1; }

.tile svg {
  width: 40px;
  height: 40px;
  color: #e8e8e8;
  margin-bottom: .9rem;
  overflow: visible;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.4));
}
.tile:hover svg { color: var(--red); }
.tile svg { transition: color .3s ease; }
.tile-name {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}
.tile-text { color: var(--gray); font-size: .8rem; line-height: 1.55; margin-top: .3rem; }


/* ── Icon-Animationen: das GANZE Icon bewegt sich (robust) ── */
.ic-spin      { animation: icSpin 9s linear infinite; }
.ic-spin-slow { animation: icSpin 12s linear infinite; }
.tile:hover .ic-spin      { animation-duration: 2.2s; }
.tile:hover .ic-spin-slow { animation-duration: 2.8s; }
@keyframes icSpin { to { transform: rotate(360deg); } }

.ic-rock { animation: icRock 3.4s ease-in-out infinite; }
.tile:hover .ic-rock { animation-duration: 1.1s; }
@keyframes icRock { 0%, 100% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }

.ic-ratchet { animation: icRatchet 2.8s ease-in-out infinite; }
@keyframes icRatchet {
  0%, 55%, 100% { transform: rotate(0deg); }
  68% { transform: rotate(-16deg); }
  82% { transform: rotate(10deg); }
}

.ic-stack { position: relative; width: 40px; height: 40px; display: block; margin-bottom: .9rem; }
.ic-stack svg { position: absolute; inset: 0; margin: 0; }
.ic-fade-a { animation: icFadeA 6s ease-in-out infinite; }
.ic-fade-b { animation: icFadeB 6s ease-in-out infinite; }
@keyframes icFadeA { 0%, 38%, 100% { opacity: 1; transform: scale(1); } 50%, 88% { opacity: 0; transform: scale(.7) rotate(40deg); } }
@keyframes icFadeB { 0%, 38%, 100% { opacity: 0; transform: scale(.7) rotate(-40deg); } 50%, 88% { opacity: 1; transform: scale(1); } }

.ic-draw path { stroke-dasharray: 1; stroke-dashoffset: 1; animation: icDraw 2.6s ease-in-out infinite; }
@keyframes icDraw { 0% { stroke-dashoffset: 1; } 45%, 60% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -1; } }

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

/* ═══════════ INSTAGRAM-KANAL-KARTE ═══════════ */
.ig-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.3rem 1.5rem;
  border-radius: 16px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#101010, #101010) padding-box,
    linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7, #f9ce34) border-box;
  background-size: 100% 100%, 300% 300%;
  animation: igBorder 8s ease-in-out infinite;
}
@keyframes igBorder {
  0%, 100% { background-position: 0 0, 0% 50%; }
  50%      { background-position: 0 0, 100% 50%; }
}
.ig-card-ava {
  width: 78px; height: 78px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  animation: bob 5s ease-in-out infinite;
}
.ig-card-ava span {
  width: 100%; height: 100%;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #141414;
  border: 2.5px solid #101010;
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
}
.ig-card-handle {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: .5px;
  text-decoration: none;
  background: linear-gradient(90deg, #f9ce34, #ee2a7b 45%, #6228d7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: filter .25s;
}
.ig-card-handle:hover { filter: brightness(1.25); }
.ig-card-line { color: #ddd; font-weight: 600; font-size: .88rem; margin-top: .15rem; }
.ig-card-desc { color: var(--gray); font-size: .84rem; line-height: 1.55; margin-top: .45rem; max-width: 460px; }
.ig-follow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .8rem;
  padding: .55rem 1.05rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #ee2a7b, #6228d7);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 6px 20px rgba(238,42,123,.3);
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.ig-follow:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 10px 26px rgba(238,42,123,.45); }
.ig-card-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
}
.ig-card-qr img {
  display: block;
  width: 118px; height: 118px;
  border-radius: 12px;
  background: #fff;
  padding: 4px;
}
.ig-card-qr span { font-size: .66rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); }

@media (max-width: 640px) {
  .ig-card { grid-template-columns: auto 1fr; }
  .ig-card-qr { display: none; }   /* am Handy ist man schon am Gerät – Button reicht */
}


/* ═══════════ LOGO-GLANZ (reines CSS)
   Läuft auch, wenn der Browser animierte Bilder
   pausiert (Windows „Animationseffekte" aus). ═══════════ */
.logo-anim .glint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask: url('../img/logo-hero.webp') center / contain no-repeat;
  mask: url('../img/logo-hero.webp') center / contain no-repeat;
  background: linear-gradient(115deg,
    transparent 38%,
    rgba(255,255,255,.30) 46%,
    rgba(255,255,255,.8) 50%,
    rgba(255,255,255,.30) 54%,
    transparent 62%);
  background-size: 300% 300%;
  background-position: 120% 120%;
  animation: logoGlint 4.2s ease-in-out infinite;
}
@keyframes logoGlint {
  0%, 40%   { background-position: 120% 120%; }
  70%, 100% { background-position: -20% -20%; }
}
.logo-anim .glint::before,
.logo-anim .glint::after {
  content: '✦';
  position: absolute;
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,.9), 0 0 18px rgba(224,26,26,.5);
  opacity: 0;
  animation: sparkle 4.2s ease-in-out infinite;
}
.logo-anim .glint::before { left: 15%; top: 20%; font-size: 15px; animation-delay: 2.3s; }
.logo-anim .glint::after  { right: 13%; top: 52%; font-size: 11px; animation-delay: 2.6s; }
@keyframes sparkle {
  0%, 88%, 100% { opacity: 0; transform: scale(.2) rotate(0deg); }
  92%           { opacity: 1; transform: scale(1.1) rotate(40deg); }
  96%           { opacity: .6; transform: scale(.7) rotate(80deg); }
}


/* zweiter, gegenläufiger Ring (gestrichelt, blau) + Logo atmet */
.logo-anim .ring2 {
  position: absolute;
  left: 50%; top: 48.4%;
  width: 120%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px dashed rgba(74, 141, 196, .4);
  animation: ring2Spin 22s linear infinite;
  pointer-events: none;
}
@keyframes ring2Spin { to { transform: translate(-50%, -50%) rotate(-360deg); } }
.logo-anim img { animation: logoBreathe 6s ease-in-out infinite; }
@keyframes logoBreathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
/* Hover: alles dreht auf */
.logo-anim:hover::before { animation-duration: 3.5s; }
.logo-anim:hover .ring2 { animation-duration: 6s; border-color: rgba(74,141,196,.7); }
.rail-logo:hover::before { animation-duration: 1.6s; }


/* ═══════════ HERO-HINTERGRUND: VIDEO-LAYER + LASER ═══════════ */
/* Roter Laser-Drift (läuft sofort; verschwindet, wenn das Video aktiv ist) */
#intro::after {
  content: '';
  position: absolute;
  left: -20%;
  top: 66%;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red) 35%, #ff5340 50%, var(--red) 65%, transparent);
  box-shadow: 0 0 14px var(--red-glow), 0 0 34px rgba(224,26,26,.25);
  transform: rotate(-6deg);
  animation: laserDrift 9s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes laserDrift {
  from { transform: rotate(-6deg) translateY(0);      opacity: .30; }
  50%  {                                              opacity: .65; }
  to   { transform: rotate(-6deg) translateY(-150px); opacity: .35; }
}
#intro.has-video::after { display: none; }

/* Video-Layer (wird per JS eingesetzt, sobald assets/video/hero-loop.mp4 existiert) */
.intro-video { position: absolute; inset: 0; z-index: 0; }
.intro-video video { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.intro-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,.94), rgba(10,10,10,.5) 55%, rgba(10,10,10,.82)),
    linear-gradient(0deg, var(--black), transparent 28%, transparent 72%, var(--black));
}
#intro.has-video > :not(.intro-video) { position: relative; z-index: 1; }
