/* ════════════════════════════════════════════════════════════
   bitmak – Potenziale digital entfesseln
   Design: "Der goldene Faden" – dunkle Bühne, goldene Energie,
   warme helle Räume. IBM Plex Sans + Lora.
   ════════════════════════════════════════════════════════════ */

:root {
  /* Brand palette (aus bitmak.at übernommen) */
  --gold: #d8c687;
  --gold-soft: rgba(216, 198, 135, 0.16);
  --gold-line: rgba(216, 198, 135, 0.35);
  --navy: #081219;
  --navy-2: #0c1a24;
  --navy-3: #122431;
  --ink: #081219;
  --cream: #f7f3ea;
  --cream-2: #efe9da;
  --sage: #85a692;
  --rose: #a68785;
  --white: #ffffff;
  --muted-dark: rgba(247, 243, 234, 0.62);
  --muted-light: rgba(8, 18, 25, 0.64);

  --font-sans: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Lora', Georgia, serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --radius: 20px;
  --container: 1180px;
}

/* ─────────────── Reset & Base ─────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--navy);
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--navy); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
address { font-style: normal; }

.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}
.container--narrow { width: min(880px, 100% - 3rem); }

section { position: relative; }
.section--dark { background: var(--navy); color: var(--cream); }
.section--light { background: var(--cream); color: var(--ink); }

/* Grain / texture overlay for depth */
.section--light::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(rgba(8, 18, 25, 0.045) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.section--light > * { position: relative; z-index: 1; }

/* ─────────────── Typography ─────────────── */
.heading-xl {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.heading-lg {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  opacity: 0.75;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow--gold { color: var(--gold); opacity: 1; }

.accent-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  position: relative;
  display: inline-block;
  padding-bottom: 0.08em;
}

.marker {
  background: linear-gradient(120deg, transparent 0%, transparent 2%, rgba(216, 198, 135, 0.55) 2%, rgba(216, 198, 135, 0.4) 98%, transparent 98%);
  background-size: 100% 0.55em;
  background-repeat: no-repeat;
  background-position: 0 78%;
  color: inherit;
  font-weight: 600;
  padding: 0 0.1em;
}

/* Swoosh (das Logo-Motiv als roter Faden) */
.swoosh-svg {
  position: absolute;
  left: 0; bottom: -0.28em;
  width: 100%; height: 0.42em;
  overflow: visible;
  pointer-events: none;
}
.swoosh-svg--sm { bottom: -0.2em; height: 0.34em; }
/* Das Zeichnen der Pfade steuert js/main.js über echte Pfadlängen */

/* ─────────────── Preloader ─────────────── */
.preloader {
  position: fixed; inset: 0;
  z-index: 1000;
  background: var(--navy);
  display: grid;
  place-items: center;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__word {
  display: inline-flex;
  font-size: clamp(2.6rem, 8vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.preloader__word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  animation: plLetter 0.55s var(--ease-out) forwards;
}
.preloader__word span:nth-child(1) { animation-delay: 0.05s; }
.preloader__word span:nth-child(2) { animation-delay: 0.11s; }
.preloader__word span:nth-child(3) { animation-delay: 0.17s; }
.preloader__word span:nth-child(4) { animation-delay: 0.23s; }
.preloader__word span:nth-child(5) { animation-delay: 0.29s; }
.preloader__word span:nth-child(6) { animation-delay: 0.35s; }
@keyframes plLetter { to { opacity: 1; transform: translateY(0); } }
.preloader__swoosh {
  width: min(220px, 50vw);
  margin: 0.4rem auto 0;
  display: block;
  overflow: visible;
}

/* ─────────────── Scroll progress & cursor ─────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 100%;
  background: var(--gold);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 900;
  pointer-events: none;
}

.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 950;
  opacity: 0;
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold-line);
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
              border-color 0.25s, background-color 0.25s;
}
body.cursor-on .cursor-dot, body.cursor-on .cursor-ring { opacity: 1; }
body.cursor-grow .cursor-ring {
  width: 62px; height: 62px;
  border-color: var(--gold);
  background: rgba(216, 198, 135, 0.08);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ─────────────── Navigation ─────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(8, 18, 25, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(216, 198, 135, 0.18), 0 12px 32px rgba(0, 0, 0, 0.25);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav.menu-open {
  z-index: 860;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.nav__inner {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo img {
  width: 148px; height: auto;
  transition: transform 0.3s var(--ease-out);
}
.nav__logo:hover img { transform: translateY(-2px); }
.nav__links {
  display: flex;
  gap: 1.9rem;
  margin-left: auto;
}
.nav__links a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.85;
  padding: 0.3rem 0;
  transition: opacity 0.25s, color 0.25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.35s var(--ease-out);
}
.nav__links a:hover, .nav__links a.is-active { opacity: 1; color: var(--gold); }
.nav__links a:hover::after, .nav__links a.is-active::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}
.btn--nav { padding: 0.62rem 1.15rem; font-size: 0.9rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  margin-left: auto;
  z-index: 860;
}
.nav__burger span {
  display: block;
  width: 26px; height: 2px;
  margin-inline: auto;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 850;
  background: rgba(8, 18, 25, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.mobile-menu__links a,
.mobile-menu__links button {
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 600;
  color: var(--cream);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.25s;
  transition-delay: calc(var(--i) * 70ms);
}
.mobile-menu.is-open .mobile-menu__links a,
.mobile-menu.is-open .mobile-menu__links button { opacity: 1; transform: translateY(0); }
.mobile-menu__links a:hover,
.mobile-menu__links button:hover { color: var(--gold); }
.mobile-menu__cta { color: var(--gold) !important; font-family: var(--font-serif); font-style: italic; }
.mobile-menu__foot {
  display: flex;
  gap: 1.8rem;
  font-size: 0.9rem;
  color: var(--muted-dark);
}

/* ─────────────── Buttons ─────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
              background-color 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 0 0 rgba(216, 198, 135, 0.4);
}
.btn--gold:hover {
  box-shadow: 0 10px 34px rgba(216, 198, 135, 0.35);
}
.btn--gold::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  background-size: 250% 100%;
  background-position: 120% 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.btn--gold:hover::after {
  opacity: 1;
  animation: shine 0.9s ease forwards;
}
@keyframes shine { to { background-position: -120% 0; } }
.btn--ghost {
  border: 1.5px solid var(--gold-line);
  color: var(--cream);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(216, 198, 135, 0.07);
}
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn--xl { padding: 1.2rem 2.3rem; font-size: 1.15rem; }

/* ─────────────── Hero ─────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 78% -10%, rgba(216, 198, 135, 0.09), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(133, 166, 146, 0.07), transparent 55%),
    var(--navy);
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero__glow {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 900px; max-height: 900px;
  right: -18vw; top: -22vw;
  background: radial-gradient(circle, rgba(216, 198, 135, 0.13), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { opacity: 0.7; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
  /* großzügiges Bottom-Padding hält die Zone für den Scroll-Indikator frei */
  padding: calc(var(--nav-h) + 4.5rem) 0 7rem;
}
[data-load] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
body.is-loaded [data-load] { opacity: 1; transform: translateY(0); }
body.is-loaded [data-load="0"] { transition-delay: 0.10s; }
body.is-loaded [data-load="1"] { transition-delay: 0.22s; }
body.is-loaded [data-load="2"] { transition-delay: 0.34s; }
body.is-loaded [data-load="3"] { transition-delay: 0.52s; }
body.is-loaded [data-load="4"] { transition-delay: 0.64s; }
body.is-loaded [data-load="5"] { transition-delay: 0.76s; }
body.is-loaded [data-load="6"] { transition-delay: 1.1s; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.05rem;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(216, 198, 135, 0.06);
  margin-bottom: 2.2rem;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(216, 198, 135, 0.55); }
  55% { box-shadow: 0 0 0 8px rgba(216, 198, 135, 0); }
}

.hero__title {
  font-size: clamp(2.8rem, 7.6vw, 5.6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
  max-width: 14ch;
}
.hero__line { display: block; }
.hero__word { display: inline-block; }
.hero__word--accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  position: relative;
  padding-bottom: 0.06em;
  margin-left: 0.08em;
}

.hero__sub {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--muted-dark);
  margin-bottom: 1.1rem;
}
.hero__rotator {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--cream);
  margin-bottom: 2.6rem;
  min-height: 1.8em;
}
.rotator {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  text-align: left;
  transition: width 0.4s var(--ease-out);
  white-space: nowrap;
}
.rotator__word {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15em;
  color: var(--gold);
  opacity: 0;
  transform: translateY(0.6em);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  position: absolute;
  left: 0; bottom: 0;
  white-space: nowrap;
}
.rotator__word.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}
.rotator__word.is-leaving {
  opacity: 0;
  transform: translateY(-0.6em);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  pointer-events: none;
  z-index: 3;
}
.hero__scroll-line {
  width: 2px; height: 42px;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, var(--gold));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  left: 0; top: -40%;
  width: 100%; height: 40%;
  background: var(--cream);
  animation: scrollDrip 1.8s ease-in-out infinite;
}
@keyframes scrollDrip {
  0% { top: -40%; }
  100% { top: 110%; }
}
.hero__scroll-label {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

/* ─────────────── Hero: Split-Layout + Entfesselung ─────────────── */
.hero__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 6.4fr) minmax(0, 4.6fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero__inner--split .hero__title { font-size: clamp(2.5rem, 5vw, 4.6rem); }

.hero__figure {
  position: relative;
  width: 100%;
  max-width: min(480px, calc((100svh - 280px) * 0.806));
  margin-left: auto;
  justify-self: end;
}
.unfessel__frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(216, 198, 135, 0.28),
    0 0 70px rgba(216, 198, 135, 0.10);
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  will-change: transform;
}
.unfessel__img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Hotspots */
.unfessel__hotspots { position: absolute; inset: 0; }
.unfessel-spot {
  position: absolute;
  width: 58px; height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(8, 18, 25, 0.45);
  border: 2px solid var(--gold);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  cursor: pointer;
  touch-action: none;
  transition: background-color 0.25s, opacity 0.4s, border-color 0.25s;
  z-index: 3;
}
.unfessel-spot svg { width: 24px; height: 24px; pointer-events: none; }
.unfessel-spot::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(216, 198, 135, 0.85);
  animation: spotRipple 2.1s ease-out infinite;
  pointer-events: none;
}
@keyframes spotRipple {
  0% { transform: scale(1); opacity: 0.9; }
  70%, 100% { transform: scale(1.85); opacity: 0; }
}
.unfessel-spot:hover, .unfessel-spot:focus-visible {
  background: rgba(216, 198, 135, 0.22);
}
.unfessel-spot:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }
.unfessel-spot.is-locked {
  width: 44px; height: 44px;
  color: rgba(247, 243, 234, 0.65);
  border-color: rgba(247, 243, 234, 0.3);
  background: rgba(8, 18, 25, 0.4);
  cursor: default;
}
.unfessel-spot.is-locked svg { width: 18px; height: 18px; }
.unfessel-spot.is-locked::before { animation: none; opacity: 0; }
.unfessel-spot.is-wiggle { animation: spotWiggle 0.45s ease; }
@keyframes spotWiggle {
  0%, 100% { transform: translate(-50%, -50%) rotate(0); }
  25% { transform: translate(-50%, -50%) rotate(-8deg); }
  75% { transform: translate(-50%, -50%) rotate(8deg); }
}

/* Fortschrittsring beim Gedrückthalten */
.unfessel-spot .spot-ring {
  position: absolute;
  inset: -9px;
  pointer-events: none;
  transform: rotate(-90deg);
}
.unfessel-spot .spot-ring circle {
  fill: none;
  stroke: var(--cream);
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0;
  transition: opacity 0.15s;
}
.unfessel-spot.is-holding .spot-ring circle { opacity: 1; }

/* Risse */
.unfessel__crack {
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
.unfessel__crack path {
  stroke: rgba(255, 248, 230, 0.95);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(216, 198, 135, 0.8));
  opacity: 0;
  transition: opacity 0.12s;
}
.unfessel__crack.s1 path:nth-child(-n+2) { opacity: 1; }
.unfessel__crack.s2 path { opacity: 1; }

/* Blitz beim Zerbersten */
.unfessel__flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--fx, 50%) var(--fy, 50%),
              rgba(255, 250, 235, 0.98), rgba(216, 198, 135, 0.65) 35%, transparent 75%);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  transition: opacity 0.5s ease;
}
.unfessel__flash.is-on { opacity: 1; transition: opacity 0.07s ease; }

/* Partikel */
.unfessel__burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: visible;
}
.unfessel__burst span {
  position: absolute;
  border-radius: 3px;
  background: linear-gradient(135deg, #efe3b8, var(--gold) 55%, #6b5c33);
  box-shadow: 0 0 8px rgba(216, 198, 135, 0.7);
}

/* Finale */
.unfessel__final {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 6;
  width: max-content;
  max-width: calc(100% - 1.6rem);
  text-align: center;
  background: rgba(8, 18, 25, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gold);
  border-radius: 18px;
  padding: 1.05rem 1.4rem 1.05rem;
  animation: finalPop 0.6s var(--ease-spring);
}
@keyframes finalPop {
  from { opacity: 0; transform: translateX(-50%) translateY(16px) scale(0.9); }
  to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
.unfessel__final-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--gold);
}
.unfessel__final-sub {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: var(--muted-dark);
}
.unfessel__final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.9rem;
  margin-top: 0.8rem;
}
.unfessel__final-actions .btn {
  padding: 0.55rem 1.05rem;
  font-size: 0.88rem;
}
.unfessel__replay {
  font-size: 0.82rem;
  color: var(--muted-dark);
  transition: color 0.25s;
}
.unfessel__replay:hover { color: var(--gold); }

/* Hinweis unterm Bild */
.unfessel__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
  font-size: 0.86rem;
  color: var(--muted-dark);
  text-align: center;
  transition: opacity 0.4s;
}
.unfessel__hint-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: hintPress 1.6s ease-in-out infinite;
}
@keyframes hintPress {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(216, 198, 135, 0.5); }
  50% { transform: scale(0.72); box-shadow: 0 0 0 7px rgba(216, 198, 135, 0); }
}

@media (max-width: 860px) {
  .hero__inner--split { grid-template-columns: 1fr; }
  .hero__figure {
    max-width: min(400px, 88vw);
    margin: 2.4rem auto 0;
    justify-self: center;
  }
}
/* Auf sehr flachen Fenstern braucht es keinen Scroll-Hinweis */
@media (max-height: 700px) {
  .hero__scroll { display: none; }
}

/* ─────────────── Marquee ─────────────── */
.marquee {
  background: var(--navy-2);
  border-block: 1px solid rgba(216, 198, 135, 0.14);
  overflow: hidden;
  padding: 1.05rem 0;
  position: relative;
  z-index: 3;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 0;
}
.marquee__group span {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.75);
  padding: 0 1.6rem;
  white-space: nowrap;
}
.marquee__group i {
  font-style: normal;
  color: var(--gold);
  font-size: 0.8rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────────── Reveal system ─────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform;
}
[data-reveal="up"] { transform: translateY(44px); }
[data-reveal="left"] { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ─────────────── Section head ─────────────── */
.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.6rem, 6vw, 4.2rem);
}
.section-head__sub {
  margin-top: 1.2rem;
  font-size: 1.08rem;
  opacity: 0.78;
  max-width: 58ch;
}

/* ─────────────── About ─────────────── */
.about { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.about__media {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.about__frame {
  position: relative;
  border-radius: var(--radius);
  transform-style: preserve-3d;
}
.about__frame img {
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(8, 18, 25, 0.22);
  position: relative;
  z-index: 1;
}
.about__frame-border {
  position: absolute;
  inset: 0;
  border: 2.5px solid var(--gold);
  border-radius: var(--radius);
  transform: translate(16px, 16px);
  transition: transform 0.5s var(--ease-out);
  z-index: 0;
}
.about__frame:hover .about__frame-border { transform: translate(8px, 8px); }
.about__card {
  position: relative;
  margin: -2.4rem 1.4rem 0;
  z-index: 2;
  background: var(--navy);
  color: var(--cream);
  border-radius: 16px;
  padding: 1.5rem 1.7rem;
  box-shadow: 0 24px 48px rgba(8, 18, 25, 0.28);
  border: 1px solid rgba(216, 198, 135, 0.25);
}
.about__card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.14rem;
  line-height: 1.5;
  color: var(--gold);
}
.about__card figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted-dark);
}
.about__content > p { margin-bottom: 1.15rem; }
.about__content .heading-xl { margin-bottom: 1.4rem; }
.about__content .lead { margin-bottom: 1.4rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin: 2.2rem 0;
}
.stat {
  background: var(--white);
  border: 1px solid rgba(8, 18, 25, 0.08);
  border-radius: 16px;
  padding: 1.4rem 1.5rem 1.25rem;
  box-shadow: 0 10px 26px rgba(8, 18, 25, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(8, 18, 25, 0.12);
}
.stat__num {
  display: flex;
  align-items: baseline;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.stat__num em {
  font-style: normal;
  color: var(--gold);
  margin-left: 2px;
  font-size: 0.75em;
}
.stat__label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.88rem;
  color: var(--muted-light);
}

/* ─────────────── Services ─────────────── */
.services { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  --accent: var(--gold);
  position: relative;
  background: linear-gradient(160deg, var(--navy-2), var(--navy-3));
  border: 1px solid rgba(247, 243, 234, 0.09);
  border-radius: var(--radius);
  padding: 2.3rem 2rem 2rem;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.service-card[data-accent="sage"] { --accent: var(--sage); }
.service-card[data-accent="rose"] { --accent: #c9a5a2; }
.service-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%),
              color-mix(in srgb, var(--accent) 13%, transparent), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card__num {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--accent) 45%, transparent);
  letter-spacing: -0.02em;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover .service-card__num { transform: translateY(-4px) rotate(3deg); }
.service-card__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  margin-bottom: 1.6rem;
  transition: transform 0.4s var(--ease-spring);
}
.service-card:hover .service-card__icon { transform: translateY(-4px) scale(1.06); }
.service-card__icon svg { width: 34px; height: 34px; }
.icon-spark {
  transform-origin: center;
  animation: spark 3.2s ease-in-out infinite;
}
@keyframes spark {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.55; transform: scale(0.82) rotate(18deg); }
}
.service-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.98rem;
  color: var(--muted-dark);
  margin-bottom: 1.5rem;
}
.service-card__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
}

/* ─────────────── Potenzial-Check ─────────────── */
.check { padding: clamp(2rem, 5vw, 4rem) 0 clamp(5rem, 10vw, 8rem); }
.check__panel {
  position: relative;
  background:
    radial-gradient(700px 300px at 85% 0%, rgba(216, 198, 135, 0.10), transparent 60%),
    linear-gradient(165deg, var(--navy-2), var(--navy-3));
  border: 1px solid rgba(216, 198, 135, 0.3);
  border-radius: 28px;
  padding: clamp(2.4rem, 6vw, 4.2rem);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}
.check__panel::before {
  content: "";
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.check__lead {
  max-width: 52ch;
  margin: 1.1rem auto 2rem;
  color: var(--muted-dark);
}
.check__intro, .check__quiz, .check__result {
  animation: checkFade 0.5s var(--ease-out);
}
@keyframes checkFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.check__progress { margin-bottom: 2.2rem; }
.check__progress-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.check__progress-bar {
  height: 4px;
  border-radius: 4px;
  background: rgba(247, 243, 234, 0.12);
  overflow: hidden;
  max-width: 320px;
  margin-inline: auto;
}
.check__progress-bar span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: var(--gold);
  transition: width 0.5s var(--ease-out);
}

.check__q {
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
  min-height: 2.5em;
  display: grid;
  place-items: center;
}
.check__answers {
  display: grid;
  gap: 0.85rem;
  max-width: 620px;
  margin-inline: auto;
}
.check__answer {
  position: relative;
  text-align: left;
  padding: 1.05rem 1.4rem;
  border: 1.5px solid rgba(247, 243, 234, 0.16);
  border-radius: 14px;
  background: rgba(247, 243, 234, 0.03);
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.45;
  transition: border-color 0.25s, background-color 0.25s, transform 0.25s var(--ease-out);
  opacity: 0;
  transform: translateY(14px);
  animation: answerIn 0.5s var(--ease-out) forwards;
  animation-delay: calc(var(--ai) * 90ms + 120ms);
}
@keyframes answerIn { to { opacity: 1; transform: translateY(0); } }
.check__answer:hover {
  border-color: var(--gold);
  background: rgba(216, 198, 135, 0.09);
  transform: translateX(6px);
}
.check__answer:active { transform: scale(0.985); }

.check__gauge {
  position: relative;
  width: min(280px, 70vw);
  margin: 0 auto 1.4rem;
}
#gaugeArc {
  filter: drop-shadow(0 0 10px rgba(216, 198, 135, 0.45));
}
.check__score {
  position: absolute;
  left: 50%; bottom: 6px;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
.check__score small {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted-dark);
  margin-left: 4px;
}
.check__result-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.check__result-text {
  max-width: 56ch;
  margin: 0 auto 2rem;
  color: var(--muted-dark);
}
.check__result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

/* ─────────────── Produkte ─────────────── */
.products { padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(2rem, 5vw, 3.5rem); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(8, 18, 25, 0.08);
  border-radius: var(--radius);
  padding: 2.4rem 2.3rem 2.2rem;
  box-shadow: 0 14px 34px rgba(8, 18, 25, 0.07);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  transform-style: preserve-3d;
  overflow: hidden;
}
.product-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(216, 198, 135, 0.2));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.5s var(--ease-out);
}
.product-card:hover::after { transform: scaleX(1); }
.product-card:hover {
  box-shadow: 0 30px 64px rgba(8, 18, 25, 0.14);
}
.product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.7rem;
  min-height: 54px;
}
.product-card__logo {
  max-height: 40px;
  width: auto;
  max-width: 62%;
  object-fit: contain;
}
.product-card__logo--austrify { max-height: 54px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.badge i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.badge--live {
  color: #2c7a4b;
  background: rgba(133, 166, 146, 0.18);
  border: 1px solid rgba(133, 166, 146, 0.45);
}
.badge--live i { animation: pulseDot 2s ease-in-out infinite; }
.badge--soon {
  color: #8a6d69;
  background: rgba(166, 135, 133, 0.14);
  border: 1px solid rgba(166, 135, 133, 0.4);
}
.badge--soon i { animation: pulseDot 2.6s ease-in-out infinite; }
.product-card h3 {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 0.9rem;
  color: var(--ink);
}
.product-card p {
  color: var(--muted-light);
  margin-bottom: 1.6rem;
}
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
}
.product-card__link svg {
  width: 1.05em; height: 1.05em;
  transition: transform 0.3s var(--ease-out);
}
.product-card__link:hover svg { transform: translate(3px, -3px); }
.product-card__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.35s var(--ease-out);
}
.product-card__link:hover::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}
.product-card__link--muted {
  color: var(--muted-light);
  font-weight: 500;
}
.product-card__link--muted::after { display: none; }

/* ─────────────── Testimonials ─────────────── */
.testimonials { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(5rem, 10vw, 8rem); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.quote-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(8, 18, 25, 0.08);
  border-radius: var(--radius);
  padding: 2.6rem 2.3rem 2.2rem;
  box-shadow: 0 14px 34px rgba(8, 18, 25, 0.07);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  transform-style: preserve-3d;
}
.quote-card:hover { box-shadow: 0 28px 60px rgba(8, 18, 25, 0.13); }
.quote-card__mark {
  position: absolute;
  top: 0.4rem; right: 1.6rem;
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: 1;
  color: rgba(216, 198, 135, 0.4);
  pointer-events: none;
}
.quote-card__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  -webkit-text-stroke: 0.2px rgba(8,18,25,0.35);
  margin-bottom: 1rem;
}
.quote-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--muted-light);
}
.quote-card figcaption strong { color: var(--ink); }
.quote-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #e8dcae);
  flex-shrink: 0;
}
.quote-card__avatar--sage {
  background: linear-gradient(135deg, var(--sage), #a8c4b3);
}

/* ─────────────── CTA ─────────────── */
.cta {
  padding: clamp(5rem, 11vw, 8.5rem) 0;
  text-align: center;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  left: 50%; top: 50%;
  width: 80vw; height: 80vw;
  max-width: 1000px; max-height: 1000px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(216, 198, 135, 0.11), transparent 58%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite alternate;
}
.cta .container--narrow { position: relative; z-index: 1; }
.cta__lead {
  max-width: 54ch;
  margin: 1.4rem auto 2.4rem;
  color: var(--muted-dark);
  font-size: 1.12rem;
}
.cta__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  max-width: 480px;
  margin: 0 auto 2.8rem;
  text-align: left;
}
.cta__list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.05rem;
}
.cta__check {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
}
.cta__check svg { width: 16px; height: 16px; }
.cta__micro {
  margin-top: 1.1rem;
  font-size: 0.88rem;
  color: var(--muted-dark);
  letter-spacing: 0.04em;
}

/* ─────────────── Big quote ─────────────── */
.quote-section {
  padding: 0 0 clamp(6rem, 12vw, 9rem);
  text-align: center;
}
.big-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 24ch;
  margin: 0 auto 1.6rem;
}
.bq-word {
  display: inline-block;
  opacity: 0.12;
  transition: opacity 0.5s ease;
}
.bq-word.is-lit { opacity: 1; }
.bq-word--accent { color: var(--gold); position: relative; }
.big-quote cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

/* ─────────────── Footer ─────────────── */
.footer {
  position: relative;
  background: #050d13;
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 6.5rem;
  overflow: hidden;
  border-top: 1px solid rgba(216, 198, 135, 0.16);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand img { width: 140px; margin-bottom: 1.1rem; }
.footer__brand p {
  font-size: 0.95rem;
  color: var(--muted-dark);
  line-height: 1.6;
}
.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer__col a, .footer__col address {
  display: block;
  font-size: 0.95rem;
  color: var(--muted-dark);
  margin-bottom: 0.55rem;
  transition: color 0.25s, transform 0.25s var(--ease-out);
}
.footer__col a:hover { color: var(--gold); transform: translateX(4px); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(247, 243, 234, 0.09);
  font-size: 0.85rem;
  color: rgba(247, 243, 234, 0.45);
}
.footer__watermark {
  position: absolute;
  left: 50%; bottom: -0.32em;
  transform: translateX(-50%);
  font-size: clamp(6rem, 22vw, 19rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(216, 198, 135, 0.13);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ─────────────── Cookie-Consent ─────────────── */
.consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 910;
  width: min(380px, calc(100vw - 2rem));
  background:
    radial-gradient(300px 120px at 90% 0%, rgba(216, 198, 135, 0.10), transparent 60%),
    linear-gradient(165deg, var(--navy-2), var(--navy-3));
  border: 1px solid rgba(216, 198, 135, 0.4);
  border-radius: 18px;
  padding: 1.15rem 1.25rem 1.1rem;
  color: var(--cream);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(16px);
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), visibility 0.45s;
}
.consent.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.consent__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.consent__title svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; }
.consent__text {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted-dark);
  margin-bottom: 0.9rem;
}
.consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.consent__actions .btn {
  padding: 0.5rem 0.95rem;
  font-size: 0.85rem;
}
.consent__link {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--muted-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}
.consent__link:hover { color: var(--gold); }
.footer__consent {
  display: block;
  font-size: 0.95rem;
  color: var(--muted-dark);
  margin-bottom: 0.55rem;
  text-align: left;
  transition: color 0.25s, transform 0.25s var(--ease-out);
}
.footer__consent:hover { color: var(--gold); transform: translateX(4px); }

/* Consent-Gate im Buchungs-Modal */
.booking-gate[hidden] { display: none; }
.booking-gate {
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(1.5rem, 5vh, 3rem) 1rem;
  border: 1.5px dashed rgba(216, 198, 135, 0.4);
  border-radius: 14px;
  background: rgba(247, 243, 234, 0.03);
}
.booking-gate__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(216, 198, 135, 0.1);
  border: 1px solid rgba(216, 198, 135, 0.4);
  margin-bottom: 1rem;
}
.booking-gate__icon svg { width: 26px; height: 26px; }
.booking-gate h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
.booking-gate p {
  max-width: 46ch;
  font-size: 0.9rem;
  color: var(--muted-dark);
  margin-bottom: 1.2rem;
}
.booking-gate .btn { margin-bottom: 0.7rem; }
.booking-gate__alt {
  font-size: 0.84rem;
  color: var(--muted-dark);
}
.booking-gate__alt a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─────────────── Brechstangen-Cursor (Hero-Bild) ─────────────── */
.cursor-tool {
  position: fixed;
  top: 0; left: 0;
  width: 46px; height: 46px;
  margin: -23px 0 0 -23px;
  pointer-events: none;
  z-index: 951;
  opacity: 0;
  transform: rotate(-10deg);
  /* Drehpunkt am Stielende → die Halte-Animation wirkt wie Hammerschläge */
  transform-origin: 76% 82%;
  transition: opacity 0.18s ease, transform 0.25s var(--ease-out);
}
.cursor-tool svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.55));
}
body.cursor-tool-on .cursor-tool { opacity: 1; }
body.cursor-tool-on .cursor-dot,
body.cursor-tool-on .cursor-ring { opacity: 0 !important; }
body.cursor-on .unfessel__frame,
body.cursor-on .unfessel__frame button { cursor: none; }
body.is-prying .cursor-tool {
  animation: pryRock 0.16s ease-in-out infinite alternate;
}
@keyframes pryRock {
  from { transform: rotate(-28deg); }
  to { transform: rotate(4deg); }
}

/* ─────────────── Unterseiten (Impressum / Datenschutz) ─────────────── */
.page-hero {
  background:
    radial-gradient(800px 340px at 80% -20%, rgba(216, 198, 135, 0.10), transparent 60%),
    var(--navy);
  padding: calc(var(--nav-h) + clamp(3rem, 7vw, 5rem)) 0 clamp(2.6rem, 6vw, 4rem);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.page-content { padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 8vw, 6rem); }
.prose { max-width: 760px; }
.prose h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 2.6rem 0 0.9rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(8, 18, 25, 0.1);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h2::before {
  content: "";
  display: block;
  width: 42px; height: 3px;
  border-radius: 3px;
  background: var(--gold);
  margin-bottom: 0.7rem;
}
.prose p { margin-bottom: 1rem; color: rgba(8, 18, 25, 0.82); }
.prose a { color: inherit; font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.prose a:hover { color: #8a6d2f; }
.prose ul { margin: 0 0 1rem 1.2rem; color: rgba(8, 18, 25, 0.82); }
.prose li { margin-bottom: 0.4rem; }
.prose .prose-card {
  background: var(--white);
  border: 1px solid rgba(8, 18, 25, 0.09);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 26px rgba(8, 18, 25, 0.05);
}
.prose .prose-card p:last-child { margin-bottom: 0; }
.page-backlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.4rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: gap 0.3s var(--ease-out);
}
.page-backlink:hover { gap: 0.85rem; }

/* ─────────────── Buchungs-Modal ─────────────── */
.booking-modal {
  position: fixed; inset: 0;
  z-index: 920;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.booking-modal.is-open { opacity: 1; visibility: visible; }
.booking-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 13, 19, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.booking-modal__panel {
  position: relative;
  width: min(680px, 100%);
  max-height: min(88vh, 780px);
  overflow-y: auto;
  background:
    radial-gradient(600px 260px at 85% 0%, rgba(216, 198, 135, 0.10), transparent 60%),
    linear-gradient(165deg, var(--navy-2), var(--navy-3));
  border: 1px solid rgba(216, 198, 135, 0.35);
  border-radius: 24px;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--cream);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.4s var(--ease-out);
}
.booking-modal.is-open .booking-modal__panel { transform: translateY(0) scale(1); }
.booking-modal__panel::-webkit-scrollbar { width: 8px; }
.booking-modal__panel::-webkit-scrollbar-track { background: transparent; }
.booking-modal__panel::-webkit-scrollbar-thumb {
  background: rgba(216, 198, 135, 0.3);
  border-radius: 8px;
}
.booking-modal__panel { scrollbar-width: thin; scrollbar-color: rgba(216, 198, 135, 0.3) transparent; }
.booking-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(247, 243, 234, 0.2);
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}
.booking-modal__close:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }
.booking-modal__close svg { width: 18px; height: 18px; }
.booking-modal__head { margin-bottom: 1.6rem; padding-right: 3rem; }
.booking-modal__head h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.booking-modal__steps {
  display: flex;
  gap: 0.4rem;
  margin: 1.1rem 0 0;
}
.booking-step-dot {
  height: 4px;
  flex: 1;
  border-radius: 4px;
  background: rgba(247, 243, 234, 0.14);
  transition: background-color 0.35s;
}
.booking-step-dot.is-done { background: var(--gold); }

.booking-view { animation: checkFade 0.4s var(--ease-out); }
.booking-view[hidden] { display: none; }

.booking-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.booking-cal__month {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}
.booking-cal__nav {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 243, 234, 0.18);
  color: var(--cream);
  transition: border-color 0.25s, color 0.25s, opacity 0.2s;
}
.booking-cal__nav:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.booking-cal__nav:disabled { opacity: 0.3; cursor: default; }
.booking-cal__nav svg { width: 16px; height: 16px; }
.booking-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
}
.booking-cal__wd {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  padding: 0.4rem 0;
}
.booking-day {
  aspect-ratio: 1;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  border: 1px solid transparent;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease-out);
}
.booking-day:not(:disabled):hover {
  border-color: var(--gold);
  background: rgba(216, 198, 135, 0.1);
  transform: translateY(-2px);
}
.booking-day:disabled { color: rgba(247, 243, 234, 0.22); cursor: default; }
.booking-day.is-today { border-color: rgba(216, 198, 135, 0.4); }
.booking-day.is-selected {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.booking-day.is-empty { visibility: hidden; }
.booking-hint {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--muted-dark);
  text-align: center;
}

.booking-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-dark);
  margin-bottom: 1.1rem;
  transition: color 0.25s;
}
.booking-back:hover { color: var(--gold); }
.booking-back svg { width: 15px; height: 15px; }
.booking-date-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.booking-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 0.6rem;
}
.booking-slot {
  padding: 0.75rem 0.4rem;
  border-radius: 12px;
  border: 1.5px solid rgba(247, 243, 234, 0.16);
  background: rgba(247, 243, 234, 0.03);
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s var(--ease-out);
}
.booking-slot:hover {
  border-color: var(--gold);
  background: rgba(216, 198, 135, 0.1);
  transform: translateY(-2px);
}

.booking-summary {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(216, 198, 135, 0.09);
  border: 1px solid rgba(216, 198, 135, 0.35);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.4rem;
  font-weight: 600;
}
.booking-summary svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.booking-form { display: grid; gap: 0.9rem; }
.booking-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 0.35rem;
}
.booking-form input, .booking-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(247, 243, 234, 0.16);
  background: rgba(247, 243, 234, 0.04);
  color: var(--cream);
  font: inherit;
  transition: border-color 0.25s, background-color 0.25s;
}
.booking-form input:focus, .booking-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(216, 198, 135, 0.06);
}
.booking-form textarea { min-height: 88px; resize: vertical; }
.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.booking-note {
  font-size: 0.83rem;
  color: var(--muted-dark);
  line-height: 1.5;
}
.booking-success { text-align: center; padding: 1.4rem 0.4rem; }
.booking-success__icon {
  width: 74px; height: 74px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(216, 198, 135, 0.12);
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.booking-success__icon svg { width: 34px; height: 34px; }
.booking-success h4 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.booking-success p { color: var(--muted-dark); max-width: 42ch; margin: 0 auto 1.5rem; }
.booking-success .btn { margin: 0.2rem; }
.booking-iframe {
  width: 100%;
  height: min(68vh, 620px);
  border: 0;
  border-radius: 14px;
  background: var(--white);
}

/* Embed-Modus (Google-Terminplan): Modal nutzt den ganzen Screen in fixer Größe.
   Das Panel scrollt nie – nur die Google-Buchung selbst, falls nötig. */
.booking-modal__panel--embed {
  width: 100%;
  height: 100%;
  max-height: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.1rem, 2.5vw, 1.8rem) clamp(1.1rem, 2.5vw, 2rem);
}
.booking-modal__panel--embed .booking-modal__head {
  flex-shrink: 0;
  margin-bottom: 1rem;
}
.booking-modal__panel--embed .booking-modal__head h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}
.booking-modal__panel--embed .booking-view:not([hidden]) {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.booking-modal__panel--embed .booking-iframe {
  flex: 1;
  min-height: 0;
  height: auto;
}
.booking-modal__panel--embed .booking-gate {
  flex: 1;
  min-height: 0;
}
.booking-modal__panel--embed .booking-hint {
  flex-shrink: 0;
  margin-top: 0.75rem;
}
.booking-hint a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.booking-hint a:hover { color: var(--cream); }

@media (max-width: 540px) {
  .booking-form__row { grid-template-columns: 1fr; }
  .booking-modal { padding: 0.7rem; }
  .booking-modal__panel { max-height: 92vh; }
  .booking-modal__panel--embed { max-height: none; }
  .booking-modal__panel--embed .booking-modal__head .eyebrow { display: none; }
  .booking-modal__panel--embed .booking-modal__head { margin-bottom: 0.7rem; }
  .booking-slots { grid-template-columns: repeat(3, 1fr); }
}

/* ─────────────── Responsive ─────────────── */
@media (max-width: 1020px) {
  .services__grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { position: static; max-width: 480px; }
  .products__grid, .testimonials__grid { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  .hero__title { max-width: none; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .hero__badge { font-size: 0.72rem; letter-spacing: 0.04em; }
  .stats { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .stat { padding: 1.1rem 1.1rem 1rem; }
  .btn--lg, .btn--xl { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .check__panel { padding: 2rem 1.3rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .marquee__group span { padding: 0 1rem; font-size: 0.85rem; }
}

/* ─────────────── Reduced motion ─────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  [data-load], [data-reveal] { opacity: 1 !important; transform: none !important; }
  .bq-word { opacity: 1 !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
  .marquee__track { animation: none !important; }
  .hero__canvas { display: none; }
}
