/* EINFACH. TECH — animation system (homepage) */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #080808;
  --bg-secondary: #0f0f0f;
  --accent: #d9b36a;
  --accent-strong: #e8c47f;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.4);
  --border: rgba(255, 255, 255, 0.08);
  --font-display: 'Instrument Serif', serif;
  --font-body: 'Geist', -apple-system, sans-serif;
}

html[data-theme='light'] {
  color-scheme: light;
  --bg: #f4f1ea;
  --bg-secondary: #fffcf7;
  --accent: #b8922e;
  --accent-strong: #8a6a18;
  --text: #16120f;
  --text-muted: rgba(22, 18, 15, 0.52);
  --border: rgba(22, 18, 15, 0.11);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body.page-home {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  line-height: 1.5;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

body.page-home p,
body.page-home li {
  line-height: 1.65;
}

body.page-home h1,
body.page-home h2,
body.page-home h3 {
  text-wrap: balance;
  letter-spacing: -0.02em;
}

body.page-home.no-custom-cursor {
  cursor: auto;
}

body.page-home.no-custom-cursor #cursor-dot,
body.page-home.no-custom-cursor #cursor-ring {
  display: none !important;
}

body.page-home.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

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

/* ═══ [A] Loader ═══ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.7s var(--ease-inout);
}

#loader.sweep-up {
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}

#loader[hidden] {
  display: none !important;
}

.loader-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  text-align: center;
}

.loader-name .loader-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: loaderCharIn 0.5s var(--ease-expo) forwards;
}

@keyframes loaderCharIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-char.is-out {
  animation: loaderCharOut 0.45s var(--ease-expo) forwards;
}

@keyframes loaderCharOut {
  to {
    opacity: 0;
    transform: translateY(-40px);
  }
}

.loader-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.loader-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 0.9s linear;
}

.loader-bar-fill.is-running {
  width: 100%;
}

/* ═══ [K] Scroll bar ═══ */
#scroll-bar {
  position: fixed;
  top: env(safe-area-inset-top, 0px);
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 10000;
  transform-origin: left;
  pointer-events: none;
}

/* ═══ [B] Cursor ═══ */
#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transition: opacity 0.2s, transform 0.1s ease;
}

#cursor-dot.is-hover {
  opacity: 0;
}

#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  will-change: transform, width, height;
  transition: width 0.3s var(--ease-expo), height 0.3s var(--ease-expo), background 0.3s var(--ease-expo),
    border-color 0.3s var(--ease-expo), border-radius 0.3s var(--ease-expo);
}

#cursor-ring.is-hover {
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border-color: transparent;
}

#cursor-ring.is-text {
  border-radius: 2px;
  background: transparent;
  border-color: var(--accent);
}

@media (hover: none) {
  #cursor-dot,
  #cursor-ring {
    display: none !important;
  }
  body.page-home {
    cursor: auto;
  }
}

/* ═══ [I] Nav ═══ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: env(safe-area-inset-top, 0px) max(5vw, env(safe-area-inset-right, 0px)) 0 max(5vw, env(safe-area-inset-left, 0px));
  min-height: calc(80px + env(safe-area-inset-top, 0px));
  box-sizing: border-box;
  border-bottom: 1px solid transparent;
  transition: height 0.4s var(--ease-expo), background 0.4s var(--ease-expo), border-color 0.4s var(--ease-expo),
    backdrop-filter 0.4s var(--ease-expo);
}

.site-nav.nav--top {
  background: transparent;
}

.site-nav.nav--top .logo-text--light {
  opacity: 1;
}
.site-nav.nav--top .logo-text--accent {
  opacity: 0;
  pointer-events: none;
}

.site-nav.nav--scrolled {
  min-height: calc(64px + env(safe-area-inset-top, 0px));
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-nav.nav--scrolled .logo-text--light {
  opacity: 0;
  pointer-events: none;
}
.site-nav.nav--scrolled .logo-text--accent {
  opacity: 1;
}

.logo {
  position: relative;
  text-decoration: none;
  color: inherit;
  font-family: var(--font-display);
  font-size: 1rem;
}

.logo-text {
  display: block;
  transition: opacity 0.35s ease;
}

.logo-text--accent {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-strong);
}

.logo em {
  font-style: italic;
  color: var(--text-muted);
}

.nav-cluster {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s;
}

.site-nav.nav--scrolled .nav-links a {
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
  border: 1px solid rgba(217, 179, 106, 0.35);
  padding: 0.55rem 1.2rem;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2100;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.nav-close {
  display: none;
  position: fixed;
  top: max(1.25rem, env(safe-area-inset-top, 0px));
  right: max(5vw, env(safe-area-inset-right, 0px));
  z-index: 1001;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.5);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
}

.site-nav.nav-open .nav-close:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-expo), opacity 0.25s ease;
}

.site-nav.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-nav.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-nav.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.theme-toggle {
  position: relative;
  z-index: 2100;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  cursor: pointer;
}

html[data-theme='light'] .theme-ic-sun {
  display: none;
}
html:not([data-theme='light']) .theme-ic-moon {
  display: none;
}

/* ═══ [C] Hero ═══ */
.hero-grain-svg {
  position: absolute;
  width: 0;
  height: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0.035;
  pointer-events: none;
  filter: url(#grain);
  mix-blend-mode: overlay;
}

.hero {
  position: relative;
  min-height: 100dvh;
  padding: 7rem 5vw 2.5rem;
  background: #050505;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100dvh - 9rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-label.hero-anim {
  opacity: 0;
  transform: translateY(20px);
}

body.hero-ready .hero-label.hero-anim.is-in {
  animation: heroFade 0.6s var(--ease-expo) forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 11vw, 150px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: auto 0;
  padding-top: 1rem;
}

.hero-line1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px) rotateX(-40deg);
  transform-origin: bottom center;
  animation: charIn 0.7s var(--ease-expo) forwards;
  animation-delay: calc(var(--i) * 22ms + 0.2s);
}

@keyframes charIn {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.word-cycle-wrapper {
  display: inline-block;
  vertical-align: top;
  min-height: 1.05em;
  line-height: 1.05;
  overflow: hidden;
  max-width: 100%;
}

.word-cycle-track {
  position: relative;
  min-height: 1.08em;
}

.cycle-word {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: max-content;
  max-width: 95vw;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.65s var(--ease-inout);
  font-style: italic;
  color: var(--accent);
}

.cycle-word.active {
  clip-path: inset(0 0 0% 0);
}

.cycle-word.exiting {
  clip-path: inset(100% 0 0% 0);
}

.hero-line2.hero-anim {
  display: block;
  margin-top: 0.02em;
  opacity: 0;
}

body.hero-ready .hero-line2.hero-anim.is-in {
  animation: heroFade 0.65s var(--ease-expo) 0.5s forwards;
}

.hero-mission.hero-anim {
  max-width: 36rem;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(20px);
}

body.hero-ready .hero-mission.hero-anim.is-in {
  animation: heroFade 0.6s var(--ease-expo) forwards;
  animation-delay: 1s;
}

.hero-meta.hero-anim {
  display: flex;
  align-items: flex-end;
  gap: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
}

body.hero-ready .hero-meta.hero-anim.is-in {
  animation: heroFade 0.6s var(--ease-expo) forwards;
  animation-delay: 1.2s;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.hero-count-n {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  display: block;
}

.hero-scroll-ind {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: heroFade 0.5s var(--ease-expo) 1.4s forwards, bounce 1.8s ease-in-out 2s infinite;
}

.hero-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: 4px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* ═══ [D] Mission ═══ */
.mission {
  position: relative;
  min-height: 100vh;
  padding: 6rem 5vw 8rem 4rem;
  border-top: 1px solid var(--border);
}

.mission-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 220px);
  font-weight: 700;
  opacity: 0.04;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.mission-side-label {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.4;
}

.mission-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.scroll-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.25;
}

.scroll-text .word {
  color: rgba(255, 255, 255, 0.12);
  transition: color 0.4s ease, opacity 0.4s ease;
  display: inline-block;
}

.scroll-text .word.lit {
  color: #ffffff;
}

/* ═══ [E] Work ═══ */
.work {
  padding: 5rem 5vw 6rem;
  border-top: 1px solid var(--border);
}

/* Studio layout: horizontal rail (desktop + GSAP), Spalte auf Mobil */
.work--studio .work-head {
  max-width: 1400px;
}

.work-hscroll {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.work-hscroll-track {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Studio: horizontale Rail nur Desktop — Mobil = Spalte (vermeidet Pin/Overflow-Bugs) */
@media (min-width: 901px) {
  body.home-gsap .work--studio .work-hscroll-track {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 12px;
    width: max-content;
    padding: 0 5vw 3rem;
    box-sizing: border-box;
  }

  body.home-gsap .work--studio .work-hscroll {
    min-height: min(72vh, 820px);
  }

  body.home-gsap .work--studio .project-card {
    flex: 0 0 clamp(300px, 78vw, 900px);
    width: clamp(300px, 78vw, 900px);
    min-height: 0;
    height: min(70vh, 800px);
    margin-bottom: 0;
    opacity: 1;
    transform: none;
  }

  body.home-gsap .work--studio .work-all {
    padding-top: 1rem;
  }

  body.home-gsap .work-studio-pin {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    box-sizing: border-box;
  }

  body.home-gsap .work-studio-pin .work-head {
    flex-shrink: 0;
    padding-left: 5vw;
    padding-right: 5vw;
    margin-bottom: 1.25rem;
  }

  body.home-gsap .work-studio-pin .work-hscroll {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .work--studio .work-hscroll-track {
    padding: 0;
  }
}

.work-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.work-counter-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.work-counter {
  color: var(--accent);
  font-weight: 600;
}

.work-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  flex: 1;
  min-width: 200px;
}

.work-title em {
  font-style: italic;
  color: var(--text-muted);
}

.project-card {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 65vh;
  margin-bottom: 2px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-secondary);
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
  will-change: transform, opacity;
}

.project-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.card-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  transition: transform 0.8s var(--ease-expo), filter 0.8s var(--ease-expo);
}

.card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.project-card:hover .card-bg {
  transform: scale(1);
  filter: brightness(0.5);
}

.card-content {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.card-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  line-height: 0.95;
  transition: transform 0.5s var(--ease-expo), color 0.5s var(--ease-expo);
}

.card-arrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: opacity 0.4s 0.1s var(--ease-expo), transform 0.4s 0.1s var(--ease-expo);
}

.project-card:hover .card-title {
  transform: translateX(12px);
  color: var(--accent);
}

.project-card:hover .card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.work-all {
  text-align: center;
  margin-top: 2rem;
}

.work-all-link {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
}

/* ═══ [F] Process ═══ */
.process-block {
  padding: 6rem 5vw;
  border-top: 1px solid var(--border);
}

.process-intro-text {
  font-size: clamp(18px, 2vw, 22px);
  max-width: 52ch;
  margin-top: 1rem;
  color: var(--text-muted);
}

.process-intro-text .word {
  color: rgba(255, 255, 255, 0.12);
  transition: color 0.4s ease;
  display: inline-block;
}

.process-intro-text .word.lit {
  color: var(--accent);
}

.process-h {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.step-card {
  position: relative;
  padding: 2rem 1.5rem 2rem 1.75rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

.step-card.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.step-card:nth-child(1) {
  transition-delay: 0ms;
}
.step-card:nth-child(2) {
  transition-delay: 180ms;
}
.step-card:nth-child(3) {
  transition-delay: 360ms;
}

.step-num {
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 800;
  opacity: 0.06;
  line-height: 1;
  position: absolute;
  top: -0.1em;
  left: -0.05em;
  transition: opacity 0.4s ease, color 0.4s ease;
  pointer-events: none;
  font-family: var(--font-display);
}

.step-card.active .step-num {
  opacity: 0.9;
  color: var(--accent);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}

.step-duration {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1rem;
}

.step-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.step-bar {
  height: 2px;
  background: var(--accent);
  width: 0%;
  margin-top: 24px;
  transition: width 0.6s var(--ease-expo);
}

.step-card:hover .step-bar {
  width: 100%;
}

/* ═══ [G] About ═══ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 8rem 5vw;
  border-top: 1px solid var(--border);
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.about-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  background: var(--bg-secondary);
}

.about-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

.about-frame-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.04);
}

.about-img[src] ~ .about-frame-fallback {
  display: none;
}

.about-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.about-body p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-size: clamp(16px, 1.4vw, 18px);
}

/* ═══ [H] CTA + Ticket ═══ */
.cta-block {
  position: relative;
  padding: 8rem 5vw 10rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-glow-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 60%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 70%);
  pointer-events: none;
}

.cta-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cta-headlines {
  position: relative;
  z-index: 1;
}

.cta-clip {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s ease;
}

.cta-clip.is-visible {
  clip-path: inset(0 0 0% 0);
}

.cta-line2.is-visible {
  transition-delay: 0.15s;
}

.cta-line1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-style: italic;
  transform: skewX(-3deg);
}

.cta-line2 {
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--accent);
}

.cta-sub {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 1.5rem auto 3rem;
  line-height: 1.6;
}

.ticket-wrap {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  perspective: 1000px;
}

.ticket-glow {
  position: absolute;
  inset: -24px;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent) 35%, transparent), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.ticket-glow.is-on {
  opacity: 0.4;
}

.ticket {
  display: flex;
  position: relative;
  background: #f5f0e8;
  color: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: perspective(1000px) rotateY(90deg) scale(0.85);
  opacity: 0;
  transition: transform 0.9s var(--ease-back), opacity 0.6s ease;
  cursor: none;
}

.ticket.visible {
  transform: perspective(1000px) rotateY(0deg) scale(1);
  opacity: 1;
}

.ticket::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.015) 2px, rgba(0, 0, 0, 0.015) 4px);
  pointer-events: none;
  z-index: 1;
}

.ticket-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: 12px;
}

.ticket-left {
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-width: 140px;
  border-right: 2px dashed rgba(0, 0, 0, 0.15);
}

.ticket-logo {
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.3;
}

.ticket-vertical-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0.6;
}

.ticket-tear {
  width: 0;
  display: none;
}

.ticket-right {
  flex: 1;
  padding: 1.75rem 1.5rem;
  text-align: left;
  position: relative;
  z-index: 3;
}

.ticket-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.ticket-title {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.ticket-sub {
  opacity: 0.65;
  font-size: 0.9rem;
}

.ticket-barcode {
  display: flex;
  gap: 2px;
  height: 40px;
  margin: 1rem 0;
  align-items: stretch;
}

.ticket-barcode span {
  display: block;
  background: rgba(0, 0, 0, 0.7);
  align-self: stretch;
}

.ticket-cta-text {
  display: block;
  font-weight: 600;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.45s ease, transform 0.45s var(--ease-expo);
}

.ticket-cta-text.is-in {
  opacity: 1;
  transform: translateX(0);
}

/* ═══ [M] Reveal ═══ */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
}

/* ═══ [N] Footer ═══ */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem max(5vw, env(safe-area-inset-right, 0px)) max(2.5rem, calc(1rem + env(safe-area-inset-bottom, 0px))) max(5vw, env(safe-area-inset-left, 0px));
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.85s var(--ease-expo), transform 0.85s var(--ease-expo);
}

.site-footer.is-revealed {
  opacity: 1;
  transform: none;
}

.site-footer-row1 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer-logo a {
  font-family: var(--font-display);
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: transform 0.3s ease;
}

.site-footer-logo a:hover {
  transform: scale(1.05);
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 1.5rem;
}

.site-footer-nav a,
.site-footer-legal a,
.site-footer-social a {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer-nav a::after,
.site-footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-footer-nav a:hover::after,
.site-footer-legal a:hover::after {
  width: 100%;
}

.site-footer-nav a:hover,
.site-footer-legal a:hover {
  color: var(--accent);
}

.site-footer-social a:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

.site-footer-row2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-copy {
  font-size: 11px;
  color: var(--text-muted);
}

.site-footer-legal {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .process-block {
    padding: clamp(3.25rem, 9vw, 5rem) max(5vw, env(safe-area-inset-left, 0px)) clamp(4rem, 11vw, 6rem)
      max(5vw, env(safe-area-inset-right, 0px));
  }

  .process-intro-wrap {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .process-h {
    font-size: clamp(26px, 7.2vw, 38px);
    line-height: 1.1;
  }

  .process-intro-text {
    font-size: 1.05rem;
    line-height: 1.58;
    max-width: none;
    margin-top: 0.85rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.25rem;
    max-width: 22.5rem;
    margin-left: auto;
    margin-right: auto;
  }

  .step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem 1.35rem;
    border-radius: 14px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
    overflow: visible;
    transform: translate3d(0, 0, 0);
    box-sizing: border-box;
  }

  .step-num {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    flex-shrink: 0;
    width: 4.35rem;
    height: 4.35rem;
    margin: 0 auto 1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem !important;
    line-height: 1 !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    font-family: var(--font-body);
    opacity: 1;
    color: var(--accent);
    background: rgba(217, 179, 106, 0.1);
    border: 1px solid rgba(217, 179, 106, 0.28);
    border-radius: 12px;
    pointer-events: none;
    max-width: none;
    max-height: none;
    z-index: 2;
  }

  html[data-theme='light'] .step-num {
    background: rgba(184, 146, 46, 0.12);
    border-color: rgba(184, 146, 46, 0.3);
  }

  .step-card.active .step-num {
    opacity: 1;
    color: #080808;
    background: var(--accent);
    border-color: var(--accent);
  }

  html[data-theme='light'] .step-card.active .step-num {
    color: #16120f;
  }

  .step-body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
  }

  .step-title {
    font-size: clamp(1.12rem, 3.9vw, 1.32rem);
    margin-bottom: 0.35rem;
    line-height: 1.2;
    text-align: center !important;
    width: 100%;
    align-self: center;
  }

  .step-duration {
    margin-bottom: 0.7rem;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-align: center !important;
    width: 100%;
    align-self: center;
  }

  .step-desc {
    font-size: 0.93rem;
    line-height: 1.62;
    text-align: center !important;
    width: 100%;
    max-width: min(36ch, 100%);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }

  .step-bar {
    align-self: center;
    margin-top: 1.1rem;
    height: 3px;
    border-radius: 999px;
    width: 38%;
    opacity: 0.5;
    background: rgba(217, 179, 106, 0.55);
    transition: width 0.5s var(--ease-expo), opacity 0.35s ease, background 0.35s ease;
  }

  html[data-theme='light'] .step-bar {
    background: rgba(184, 146, 46, 0.45);
  }

  .step-card.active .step-bar {
    width: 100%;
    opacity: 1;
    background: var(--accent);
  }

  @media (hover: hover) {
    .step-card:hover .step-bar {
      width: 100%;
      opacity: 1;
      background: var(--accent);
    }
  }

  .about {
    grid-template-columns: 1fr;
  }
  .mission-side-label {
    display: none;
  }

  .logo {
    min-width: 0;
    flex-shrink: 1;
    max-width: calc(100vw - 10.5rem);
    font-size: clamp(0.78rem, 3.1vw, 1rem);
    overflow: hidden;
  }

  .logo-text--light {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav.nav-open .logo {
    position: relative;
    z-index: 2300;
  }

  body.home-gsap .about-cinematic {
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 5rem max(5vw, env(safe-area-inset-left, 0px)) 5rem max(5vw, env(safe-area-inset-right, 0px));
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: max(6rem, calc(4rem + env(safe-area-inset-top, 0px))) max(5vw, env(safe-area-inset-left, 0px)) max(2.5rem, env(safe-area-inset-bottom, 0px)) max(5vw, env(safe-area-inset-right, 0px));
  }

  .hero-inner {
    min-height: calc(100svh - 7.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    min-height: calc(100dvh - 7.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  }

  .hero-title {
    font-size: clamp(40px, 11vw, 76px);
  }

  .project-card {
    min-height: min(52vh, 440px);
  }

  .nav-close {
    display: none !important;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
  }
  .nav-r {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: max(5rem, calc(3rem + env(safe-area-inset-top, 0px))) max(2rem, env(safe-area-inset-left, 0px)) max(2rem, env(safe-area-inset-bottom, 0px)) max(2rem, env(safe-area-inset-right, 0px));
    background: var(--bg);
    z-index: 1205;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s, visibility 0.35s;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .site-nav.nav-open .nav-r {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.35rem 0.5rem;
  }
  .nav-links li {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .site-nav.nav-open .nav-links li {
    opacity: 1;
    transform: translateY(0);
  }
  .site-nav.nav-open .nav-links li:nth-child(1) {
    transition-delay: 0.05s;
  }
  .site-nav.nav-open .nav-links li:nth-child(2) {
    transition-delay: 0.13s;
  }
  .site-nav.nav-open .nav-links li:nth-child(3) {
    transition-delay: 0.21s;
  }
  .site-nav.nav-open .nav-links li:nth-child(4) {
    transition-delay: 0.29s;
  }
  .site-nav.nav-open .nav-links li:nth-child(5) {
    transition-delay: 0.37s;
  }
  .site-nav.nav-open .nav-links li:nth-child(6) {
    transition-delay: 0.45s;
  }
  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.65rem 1.5rem;
    margin: 1rem auto 0;
    max-width: 20rem;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer-row1 {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer-social {
    text-align: center;
  }
  .ticket {
    flex-direction: column;
  }
  .ticket-left {
    border-right: none;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.15);
    flex-direction: row;
    writing-mode: horizontal-tb;
  }
  .ticket-vertical-text {
    writing-mode: horizontal-tb;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .project-card,
  .step-card {
    opacity: 1 !important;
    transform: none !important;
  }
  #loader {
    display: none !important;
  }
}

/* GSAP ScrollTrigger scrub — avoid fighting long CSS transitions */
body.home-gsap .project-card,
body.home-gsap .ticket {
  transition: none !important;
}

body.home-gsap .step-card {
  transition: none !important;
  /* Basis .step-card hat translateX(-60px); ohne diesen Reset greift das nach dem GSAP-Tween wieder → Text wirkt links abgeschnitten */
  transform: translate3d(0, 0, 0);
}

/* Mobil ohne ScrollTrigger: IO-Reveals brauchen wieder Transition */
@media (max-width: 900px) {
  body.home-gsap .project-card,
  body.home-gsap .ticket {
    transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo) !important;
  }
  body.home-gsap .step-card {
    transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo) !important;
  }
}

/* Cinematic about (zoom in → pull back → exit toward CTA) */
body.home-gsap .about.about--dp {
  max-width: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  overflow: clip;
}

body.home-gsap .about-cinematic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(4rem, 12vh, 8rem) 5vw;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
}

body.home-gsap .about--dp .about-frame {
  will-change: transform;
}

body.home-gsap #about-parallax-img {
  transform-origin: 50% 42%;
  will-change: transform, opacity;
}

body.home-gsap .about-visual {
  will-change: transform, opacity;
}

body.home-gsap .cta-glow-bg {
  transform-origin: 50% 60%;
  will-change: transform, opacity;
}

/* ═══ Light mode — Homepage (Lesbarkeit, Kontrast, Flächen) ═══ */

html[data-theme='light'] #loader {
  background: var(--bg);
}

html[data-theme='light'] .loader-name {
  color: var(--text);
}

html[data-theme='light'] .loader-bar {
  background: var(--border);
}

html[data-theme='light'] .site-nav.nav--top .logo-text--light {
  color: var(--text);
}

html[data-theme='light'] .site-nav.nav--top .nav-links a {
  color: rgba(22, 18, 15, 0.62);
}

html[data-theme='light'] .site-nav.nav--top .nav-links a:hover {
  color: var(--text);
}

html[data-theme='light'] .site-nav.nav--scrolled {
  background: rgba(255, 252, 247, 0.92);
  border-bottom-color: var(--border);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

html[data-theme='light'] .site-nav.nav--scrolled .logo-text--light {
  opacity: 1;
  pointer-events: auto;
  color: var(--text);
}

html[data-theme='light'] .site-nav.nav--scrolled .logo-text--accent {
  opacity: 0;
  pointer-events: none;
}

html[data-theme='light'] .site-nav.nav--scrolled .nav-links a {
  color: var(--text-muted);
}

html[data-theme='light'] .nav-cta {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--border));
  color: var(--accent-strong);
}

html[data-theme='light'] .theme-toggle,
html[data-theme='light'] .nav-toggle {
  background: rgba(22, 18, 15, 0.05);
}

html[data-theme='light'] .nav-close {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 3px rgba(22, 18, 15, 0.08);
}

html[data-theme='light'] .nav-r {
  background: var(--bg);
}

html[data-theme='light'] .hero {
  background: linear-gradient(168deg, var(--bg-secondary) 0%, #e9e3d9 48%, var(--bg) 100%);
}

html[data-theme='light'] .hero-grain {
  background: #14120e;
  opacity: 0.042;
  mix-blend-mode: multiply;
}

html[data-theme='light'] .scroll-text .word {
  color: rgba(22, 18, 15, 0.14);
}

html[data-theme='light'] .scroll-text .word.lit {
  color: var(--text);
}

html[data-theme='light'] .process-intro-text .word {
  color: rgba(22, 18, 15, 0.17);
}

html[data-theme='light'] .mission-bg {
  color: var(--text);
}

html[data-theme='light'] .card-content {
  background: linear-gradient(to top, rgba(22, 18, 15, 0.82) 0%, rgba(22, 18, 15, 0.12) 55%, transparent 100%);
}

html[data-theme='light'] .project-card:hover .card-bg {
  filter: brightness(0.62);
}

html[data-theme='light'] .site-footer {
  border-top-color: var(--border);
}

html[data-theme='light'] .about-frame-fallback {
  color: rgba(22, 18, 15, 0.07);
}

html[data-theme='light'] .ticket {
  box-shadow: 0 26px 72px -22px rgba(22, 18, 15, 0.18), 0 0 0 1px rgba(22, 18, 15, 0.06);
}

html[data-theme='light'] .ticket-glow.is-on {
  opacity: 0.32;
}

@media (max-width: 900px) {
  html[data-theme='light'] .step-card {
    box-shadow: 0 1px 0 rgba(22, 18, 15, 0.08) inset;
  }

  html[data-theme='light'] .nav-toggle {
    background: rgba(22, 18, 15, 0.06);
    border-color: var(--border);
  }
}

@media (min-width: 901px) {
  html[data-theme='light'] .step-num {
    opacity: 0.09;
    color: var(--text);
  }

  html[data-theme='light'] .step-card.active .step-num {
    opacity: 0.88;
    color: var(--accent);
  }
}

/* ═══ Unterseiten: gleiche Shell wie Startseite (mit site.css-Inhalt) ═══ */
body.page-sub {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  line-height: 1.5;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

body.page-sub p,
body.page-sub li {
  line-height: 1.65;
}

body.page-sub h1,
body.page-sub h2,
body.page-sub h3 {
  text-wrap: balance;
  letter-spacing: -0.02em;
}

body.page-sub.no-custom-cursor {
  cursor: auto;
}

body.page-sub.no-custom-cursor #cursor-dot,
body.page-sub.no-custom-cursor #cursor-ring {
  display: none !important;
}

body.page-sub.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

/* Aktuelle Seite in der Hauptnavigation */
.site-nav .nav-links a.on {
  color: var(--accent-strong);
}

.site-nav.nav--scrolled .nav-links a.on {
  color: var(--accent);
}

.nav-cta.is-current {
  background: rgba(217, 179, 106, 0.14);
  border-color: rgba(217, 179, 106, 0.55);
  box-shadow: 0 0 0 1px rgba(217, 179, 106, 0.12);
}

html[data-theme='light'] .nav-cta.is-current {
  background: rgba(184, 146, 46, 0.12);
  border-color: rgba(184, 146, 46, 0.45);
}

@media (hover: none) {
  body.page-sub {
    cursor: auto;
  }
}

/* Unterseiten: keine Home-GSAP — Reveal-Klassen müssen sichtbar sein (sonst opacity:0 / clip leer) */
body.page-sub .reveal-up,
body.page-sub .reveal-left,
body.page-sub .reveal-right {
  opacity: 1;
  transform: none;
}

body.page-sub .sub-cta .cta-clip {
  clip-path: inset(0 0 0% 0);
}

/* ═══ Unterseiten: Landing-Niveau (Hero, Sektionen, Formular, CTA) ═══ */
.site-main--sub {
  position: relative;
}

body.page-sub .site-main--sub section::before {
  opacity: 0.85;
}

/* Cinematischer Sub-Hero */
body.page-sub .sub-hero {
  position: relative;
  min-height: min(88vh, 860px);
  padding: clamp(6.5rem, 11vw, 9.5rem) max(5vw, env(safe-area-inset-right)) 3.5rem max(5vw, env(safe-area-inset-left));
  border-top: 1px solid var(--border);
  background: linear-gradient(168deg, #030303 0%, #0a0a0a 38%, #060606 100%);
  overflow: hidden;
}

body.page-sub .sub-hero .hero-grain-svg {
  position: absolute;
  width: 0;
  height: 0;
}

body.page-sub .sub-hero .sub-hero-grain {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0.038;
  pointer-events: none;
  mix-blend-mode: overlay;
}

body.page-sub .sub-hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto auto;
  width: min(72vw, 720px);
  height: min(72vw, 720px);
  background: radial-gradient(circle at 40% 40%, rgba(217, 179, 106, 0.14), transparent 68%);
  pointer-events: none;
  animation: subHeroOrb 22s ease-in-out infinite;
}

body.page-sub .sub-hero::after {
  content: '';
  position: absolute;
  inset: auto auto -30% -15%;
  width: 55vw;
  height: 55vw;
  max-width: 520px;
  max-height: 520px;
  background: radial-gradient(circle, rgba(109, 183, 255, 0.06), transparent 70%);
  pointer-events: none;
  animation: subHeroOrb2 28s ease-in-out infinite;
}

@keyframes subHeroOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-12px, 18px) scale(1.06);
    opacity: 0.85;
  }
}

@keyframes subHeroOrb2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(16px, -10px);
  }
}

body.page-sub .sub-hero-bg {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(56px, 12vw, 160px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0.07;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  color: var(--accent);
}

body.page-sub .sub-hero-side {
  position: absolute;
  left: max(0.75rem, env(safe-area-inset-left));
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left center;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.5;
  z-index: 3;
}

body.page-sub .sub-hero-inner {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
}

body.page-sub .sub-hero .service-kicker.sub-hero-kicker,
body.page-sub .sub-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 179, 106, 0.35);
  background: linear-gradient(135deg, rgba(217, 179, 106, 0.12), rgba(217, 179, 106, 0.03));
  color: var(--accent-strong);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 0 40px rgba(217, 179, 106, 0.08);
}

body.page-sub .sub-hero .service-title {
  margin-top: 1.5rem;
  text-shadow: 0 0 80px rgba(217, 179, 106, 0.12);
}

body.page-sub .sub-hero .service-title em {
  color: var(--accent);
  font-style: italic;
}

body.page-sub .sub-hero .service-lead,
body.page-sub .sub-hero .service-lead-add {
  color: rgba(255, 255, 255, 0.55);
}

body.page-sub .sub-hero .price-jump a {
  color: var(--accent-strong);
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 179, 106, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

body.page-sub .sub-hero .price-jump a:hover {
  color: #fff;
  border-bottom-color: var(--accent);
}

/* ── Leistungsseiten: eigene Themen (Web / Care / Social) ── */
body.page-sub.page-service--web {
  --accent: #6db7ff;
  --accent-strong: #9dceff;
  --accent-soft: rgba(109, 183, 255, 0.22);
  --accent-glow: rgba(109, 183, 255, 0.38);
  --service-hero-orb-a: rgba(109, 183, 255, 0.2);
  --service-hero-orb-b: rgba(109, 183, 255, 0.08);
}

body.page-sub.page-service--care {
  --accent: #62d7a7;
  --accent-strong: #8ae8c0;
  --accent-soft: rgba(98, 215, 167, 0.2);
  --accent-glow: rgba(98, 215, 167, 0.35);
  --service-hero-orb-a: rgba(98, 215, 167, 0.18);
  --service-hero-orb-b: rgba(98, 215, 167, 0.07);
}

body.page-sub.page-service--social {
  --accent: #b38cff;
  --accent-strong: #cdb0ff;
  --accent-soft: rgba(179, 140, 255, 0.22);
  --accent-glow: rgba(179, 140, 255, 0.36);
  --service-hero-orb-a: rgba(179, 140, 255, 0.18);
  --service-hero-orb-b: rgba(179, 140, 255, 0.07);
}

body.page-sub.page-service .sub-hero::before {
  background: radial-gradient(circle at 40% 40%, var(--service-hero-orb-a), transparent 68%);
}

body.page-sub.page-service .sub-hero::after {
  background: radial-gradient(circle, var(--service-hero-orb-b), transparent 70%);
}

body.page-sub.page-service .sub-hero .service-kicker.sub-hero-kicker,
body.page-sub.page-service .sub-hero-kicker {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, transparent), color-mix(in srgb, var(--accent) 4%, transparent));
  color: var(--accent-strong);
  box-shadow: 0 0 40px color-mix(in srgb, var(--accent) 12%, transparent);
}

body.page-sub.page-service .sub-hero .service-title {
  text-shadow: 0 0 80px color-mix(in srgb, var(--accent) 14%, transparent);
}

body.page-sub.page-service .sub-hero .service-title em {
  color: var(--accent);
}

body.page-sub.page-service .sub-hero .price-jump a {
  color: var(--accent-strong);
  border-bottom-color: color-mix(in srgb, var(--accent) 40%, transparent);
}

body.page-sub.page-service .sub-hero .price-jump a:hover {
  border-bottom-color: var(--accent);
}

/* Hero — weiche Aurora & Blobs (ohne WebGL) */
body.page-sub.page-service .service-hero-atmosphere {
  --hero-mx: 0;
  --hero-my: 0;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  transform: translate(calc(var(--hero-mx) * 22px), calc(var(--hero-my) * 16px));
  will-change: transform;
}

body.page-sub.page-service .service-hero-atmosphere .service-hero-aurora,
body.page-sub.page-service .service-hero-atmosphere .service-hero-blob {
  z-index: 1;
}

/* Full-Page-WebGL (fixiert) — Canvas liegt NICHT mehr im Hero */
body.page-sub.page-service .service-3d-scroll-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body.page-sub.page-service .service-3d-scroll-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.46;
}

@media (max-width: 640px) {
  body.page-sub.page-service .service-3d-scroll-stage canvas {
    opacity: 0.38;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-sub.page-service .service-3d-scroll-stage {
    display: none !important;
  }
}

body.page-sub.page-service #service-page-scroll {
  position: relative;
  z-index: 2;
}

/* Footer über Sticky-CTA; Rechtliches zuerst — keine doppelte Hauptnavigation */
body.page-sub.page-service .site-footer {
  position: relative;
  z-index: 960;
  display: flex;
  flex-direction: column;
}

body.page-sub.page-service .site-footer-row2 {
  order: -1;
  padding-top: 0;
  padding-bottom: 1.35rem;
  margin-bottom: 1.5rem;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.page-sub.page-service .site-footer-row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
  grid-template-columns: unset;
}

body.page-sub.page-service .site-footer-nav {
  display: none;
}

body.page-sub.page-service .site-footer-legal a {
  font-size: 12px;
  letter-spacing: 0.11em;
}

body.page-sub.page-service .site-main--sub > section:not(.service-hero) {
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.82) 0%,
    rgba(6, 6, 6, 0.88) 50%,
    rgba(5, 5, 5, 0.86) 100%
  );
}

body.page-sub.page-service .service-hero.sub-hero {
  background: linear-gradient(168deg, rgba(3, 3, 3, 0.68) 0%, rgba(10, 10, 10, 0.78) 42%, rgba(6, 6, 6, 0.74) 100%);
}

html[data-theme='light'] body.page-sub.page-service .site-main--sub > section:not(.service-hero) {
  background: linear-gradient(
    180deg,
    rgba(255, 252, 247, 0.94) 0%,
    rgba(248, 245, 240, 0.96) 50%,
    rgba(252, 249, 244, 0.94) 100%
  );
}

body.page-sub.page-service .service-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(68px);
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform;
}

body.page-sub.page-service .service-hero-blob--1 {
  width: min(58vw, 520px);
  height: min(58vw, 520px);
  left: -8%;
  top: 8%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 55%, transparent) 0%, transparent 72%);
  animation: serviceBlobA 22s ease-in-out infinite;
}

body.page-sub.page-service .service-hero-blob--2 {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  right: -6%;
  bottom: 5%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 40%, #0a1628) 0%, transparent 70%);
  animation: serviceBlobB 28s ease-in-out infinite;
}

body.page-sub.page-service .service-hero-blob--3 {
  width: min(36vw, 320px);
  height: min(36vw, 320px);
  left: 35%;
  bottom: 18%;
  opacity: 0.35;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
  animation: serviceBlobC 19s ease-in-out infinite;
}

body.page-sub.page-service .service-hero-blob--4 {
  width: min(28vw, 240px);
  height: min(28vw, 240px);
  right: 22%;
  top: 22%;
  opacity: 0.4;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 35%, transparent) 0%, transparent 62%);
  animation: serviceBlobD 24s ease-in-out infinite;
}

@keyframes serviceBlobA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(18px, 22px) scale(1.06);
  }
}

@keyframes serviceBlobB {
  0%,
  100% {
    transform: translate(0, 0) scale(1.02);
  }
  50% {
    transform: translate(-24px, -14px) scale(1.08);
  }
}

@keyframes serviceBlobC {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(12px, -18px);
  }
  66% {
    transform: translate(-10px, 10px);
  }
}

@keyframes serviceBlobD {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.4;
  }
  50% {
    transform: translate(8px, 16px);
    opacity: 0.55;
  }
}

body.page-sub.page-service .service-hero-aurora {
  position: absolute;
  inset: -30%;
  background: conic-gradient(
    from 120deg at 50% 45%,
    transparent 0deg,
    color-mix(in srgb, var(--accent) 18%, transparent) 120deg,
    transparent 220deg,
    color-mix(in srgb, var(--accent) 12%, transparent) 300deg,
    transparent 360deg
  );
  opacity: 0.22;
  animation: serviceAuroraSpin 48s linear infinite;
}

@keyframes serviceAuroraSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  body.page-sub.page-service .service-hero-blob {
    filter: blur(52px);
    opacity: 0.38;
  }
  body.page-sub.page-service .service-hero-aurora {
    opacity: 0.14;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-sub.page-service .service-hero-blob,
  body.page-sub.page-service .service-hero-aurora {
    animation: none !important;
    opacity: 0.12;
  }
}

/* Hero-CTA (above the fold) */
body.page-sub.page-service .sub-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.75rem;
}

body.page-sub.page-service .sub-hero-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
  border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
  padding: 0.65rem 1.35rem;
  text-decoration: none;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.35s ease,
    transform 0.35s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
  box-shadow: 0 0 32px color-mix(in srgb, var(--accent) 12%, transparent);
}

body.page-sub.page-service .sub-hero-cta-primary:hover {
  color: #fff;
  border-color: color-mix(in srgb, var(--accent) 70%, transparent);
  box-shadow: 0 0 48px color-mix(in srgb, var(--accent) 22%, transparent);
  transform: translateY(-2px);
}

body.page-sub.page-service .sub-hero-cta-secondary {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 0.1rem;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

body.page-sub.page-service .sub-hero-cta-secondary:hover {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: color-mix(in srgb, var(--accent) 55%, transparent);
}

html[data-theme='light'] body.page-sub.page-service--web .sub-hero {
  background: linear-gradient(168deg, #f4f8ff 0%, #fafcff 42%, #eef4fc 100%);
}

html[data-theme='light'] body.page-sub.page-service--care .sub-hero {
  background: linear-gradient(168deg, #f0fcf7 0%, #f9fffc 42%, #ecf8f2 100%);
}

html[data-theme='light'] body.page-sub.page-service--social .sub-hero {
  background: linear-gradient(168deg, #f7f4ff 0%, #fdfbff 42%, #f3edfc 100%);
}

html[data-theme='light'] body.page-sub.page-service .sub-hero-cta-secondary {
  color: rgba(22, 18, 15, 0.45);
  border-bottom-color: rgba(22, 18, 15, 0.12);
}

html[data-theme='light'] body.page-sub.page-service .sub-hero-cta-secondary:hover {
  color: rgba(22, 18, 15, 0.88);
}

/* Leistungsseiten — Stats, Story, Mid-CTA, Sticky */
body.page-sub.page-service .service-stats {
  border-top: 1px solid var(--border);
  padding: clamp(3.5rem, 7vw, 5.5rem) max(5vw, env(safe-area-inset-right)) clamp(3.5rem, 7vw, 5.5rem)
    max(5vw, env(safe-area-inset-left));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

body.page-sub.page-service .service-stats-inner {
  max-width: var(--content-max, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.page-sub.page-service .service-stat {
  padding: 2rem 1.75rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.2));
  text-align: center;
  transform-style: preserve-3d;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
  body.page-sub.page-service .service-stat:hover {
    transform: perspective(920px) rotateX(5deg) rotateY(-3deg) translateY(-5px);
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.35),
      0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent);
  }
}

body.page-sub.page-service .service-stat-n {
  display: block;
  font-family: var(--font-display, var(--serif, 'Instrument Serif', serif));
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent-strong);
}

body.page-sub.page-service .service-stat-u {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.35rem;
}

body.page-sub.page-service .service-stat-p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.85rem;
}

body.page-sub.page-service .service-mid-cta {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: clamp(3rem, 6vw, 4.5rem) max(5vw, env(safe-area-inset-right)) clamp(3rem, 6vw, 4.5rem)
    max(5vw, env(safe-area-inset-left));
  overflow: hidden;
}

body.page-sub.page-service .service-mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 200px at 50% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 65%);
  pointer-events: none;
}

body.page-sub.page-service .service-mid-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

body.page-sub.page-service .service-mid-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 0.75rem;
}

body.page-sub.page-service .service-mid-title {
  font-family: var(--font-display, var(--serif, 'Instrument Serif', serif));
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

body.page-sub.page-service .service-mid-title em {
  font-style: italic;
  color: var(--accent);
}

body.page-sub.page-service .service-mid-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

body.page-sub.page-service .service-mid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--accent-strong), color-mix(in srgb, var(--accent) 80%, #fff));
  border: none;
  text-decoration: none;
  box-shadow: 0 12px 40px color-mix(in srgb, var(--accent) 25%, transparent);
  transition: transform 0.35s var(--ease-expo, cubic-bezier(0.16, 1, 0.3, 1));
}

body.page-sub.page-service .service-mid-btn:hover {
  transform: translateY(-2px);
}

body.page-sub.page-service .service-mid-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

body.page-sub.page-service .service-mid-link:hover {
  color: var(--accent-strong);
  border-bottom-color: color-mix(in srgb, var(--accent) 45%, transparent);
}

body.page-sub.page-service .service-story {
  border-top: 1px solid var(--border);
  padding: clamp(4rem, 8vw, 6.5rem) max(5vw, env(safe-area-inset-right)) clamp(4rem, 8vw, 6.5rem)
    max(5vw, env(safe-area-inset-left));
  max-width: var(--content-max, 1200px);
  margin: 0 auto;
}

body.page-sub.page-service .service-story-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

body.page-sub.page-service .service-story-track {
  position: relative;
  padding-left: clamp(1.5rem, 4vw, 2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-sub.page-service .service-story-track::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent) 70%, transparent),
    color-mix(in srgb, var(--accent) 15%, transparent)
  );
  border-radius: 2px;
  opacity: 0.85;
}

body.page-sub.page-service .service-story-step {
  position: relative;
  padding-bottom: 2.25rem;
  padding-left: 0.5rem;
}

body.page-sub.page-service .service-story-step:last-child {
  padding-bottom: 0;
}

body.page-sub.page-service .service-story-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-left: -2.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-strong);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
}

body.page-sub.page-service .service-story-h {
  font-family: var(--font-display, var(--serif, 'Instrument Serif', serif));
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

body.page-sub.page-service .service-story-p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.48);
  max-width: 52ch;
}

body.page-sub.page-service .service-sticky-cta {
  position: fixed;
  left: max(1rem, env(safe-area-inset-left));
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 880;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
}

body.page-sub.page-service.service-scroll-past-hero .service-sticky-cta {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

body.page-sub.page-service .service-sticky-cta.service-sticky-cta--footer-near {
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  pointer-events: none;
}

body.page-sub.page-service .service-sticky-cta-btn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  text-decoration: none;
  border-radius: 999px;
}

body.page-sub.page-service .service-sticky-cta-ghost {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  border-radius: 999px;
}

body.page-sub.page-service .faq.faq--rich .faq-list details {
  padding: 1.15rem 0;
  transition: background 0.25s ease;
}

body.page-sub.page-service .faq.faq--rich .faq-list details[open] {
  background: rgba(255, 255, 255, 0.02);
  margin: 0 -0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 8px;
}

body.page-sub.page-service .mini-process.service-process--accent .mini-process-grid > div {
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

body.page-sub.page-service .mini-process.service-process--accent .mini-process-grid > div:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  body.page-sub.page-service .service-stats-inner {
    grid-template-columns: 1fr;
  }
}

/* Sektionen: Glas / Tiefe */
body.page-sub .site-main--sub .subsection {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(4.5rem, 9vw, 7rem) max(5vw, env(safe-area-inset-right)) clamp(4.5rem, 9vw, 7rem) max(5vw, env(safe-area-inset-left));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 35%);
}

body.page-sub .subsection-split {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.25));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

body.page-sub .subsection-kicker {
  color: var(--accent-strong);
  opacity: 0.95;
}

body.page-sub .subsection-title em {
  color: var(--accent);
}

body.page-sub .img-placeholder {
  border-radius: 12px;
  border: 1px solid rgba(217, 179, 106, 0.15);
  background: linear-gradient(160deg, rgba(217, 179, 106, 0.05), rgba(0, 0, 0, 0.35));
  transition: transform 0.5s var(--ease-expo), box-shadow 0.5s ease;
}

@media (hover: hover) {
  body.page-sub .img-placeholder:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(217, 179, 106, 0.2);
  }
}

body.page-sub .subsection-img-frame {
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(217, 179, 106, 0.08);
}

/* Portfolio auf Unterseiten */
body.page-sub #portfolio {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7rem) max(5vw, env(safe-area-inset-right)) clamp(4.5rem, 9vw, 7rem) max(5vw, env(safe-area-inset-left));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.page-sub #portfolio::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 320px at 80% 0%, rgba(179, 140, 255, 0.07), transparent 65%);
  pointer-events: none;
}

body.page-sub .port-item {
  border-radius: 4px;
  transition: transform 0.45s var(--ease-expo), box-shadow 0.45s ease;
}

@media (hover: hover) {
  body.page-sub .port-item:hover {
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(217, 179, 106, 0.12);
  }
}

/* Why / Testimonials / About */
body.page-sub #why-us,
body.page-sub #testimonials,
body.page-sub #about {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(4.5rem, 9vw, 7rem) max(5vw, env(safe-area-inset-right)) clamp(4.5rem, 9vw, 7rem) max(5vw, env(safe-area-inset-left));
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015));
}

body.page-sub .why-item,
body.page-sub .testi {
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.28);
  transition: transform 0.4s var(--ease-expo), border-color 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) {
  body.page-sub .why-item:hover,
  body.page-sub .testi:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 179, 106, 0.25);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }
}

/* Angebots-/Preis-Karten */
body.page-sub .bundle-card,
body.page-sub .offer-card,
body.page-sub .starter-band {
  border-radius: 10px;
}

/* Kontaktformular */
body.page-sub #contact {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(4rem, 8vw, 6.5rem) max(5vw, env(safe-area-inset-right)) clamp(4rem, 8vw, 6.5rem) max(5vw, env(safe-area-inset-left));
}

body.page-sub #contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 400px at 20% 20%, rgba(217, 179, 106, 0.06), transparent 55%);
  pointer-events: none;
}

body.page-sub .contact-form {
  position: relative;
  z-index: 1;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.45));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

body.page-sub .f-lbl {
  color: rgba(255, 255, 255, 0.55);
}

body.page-sub .f-in,
body.page-sub .f-ta,
body.page-sub .f-sel {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 0.95rem 1.1rem !important;
  background: rgba(0, 0, 0, 0.4) !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

body.page-sub .f-in:focus,
body.page-sub .f-ta:focus,
body.page-sub .f-sel:focus {
  border-color: rgba(217, 179, 106, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(217, 179, 106, 0.12);
  outline: none;
}

body.page-sub .c-row {
  border-color: rgba(255, 255, 255, 0.08);
}

body.page-sub .c-row:hover {
  padding-left: 0.35rem;
  background: rgba(217, 179, 106, 0.04);
}

body.page-sub .f-sub {
  border-radius: 10px;
  padding: 1.15rem 1.5rem !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  transform: translateZ(0);
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s ease;
}

@media (hover: hover) {
  body.page-sub .f-sub:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(217, 179, 106, 0.25);
  }
}

/* Einfache CTA-Zeile → Button im Landing-Stil */
body.page-sub .cta-simple {
  position: relative;
  text-align: center;
  padding: clamp(4.5rem, 10vw, 8rem) max(5vw, env(safe-area-inset-right)) clamp(4.5rem, 10vw, 8rem) max(5vw, env(safe-area-inset-left));
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

body.page-sub .cta-simple::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 45% at 50% 80%, rgba(217, 179, 106, 0.1), transparent 65%);
  pointer-events: none;
}

body.page-sub .cta-simple .offer-title {
  position: relative;
  z-index: 1;
}

body.page-sub .cta-simple .btn-light {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 179, 106, 0.45);
  background: linear-gradient(135deg, rgba(217, 179, 106, 0.18), rgba(217, 179, 106, 0.06));
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.35s var(--ease-expo), box-shadow 0.35s ease, background 0.35s ease;
}

@media (hover: hover) {
  body.page-sub .cta-simple .btn-light:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #16120a;
    border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(217, 179, 106, 0.28);
  }
}

/* Ticket-CTA Block auf Unterseiten */
body.page-sub .sub-cta {
  padding: clamp(5rem, 11vw, 9rem) max(5vw, env(safe-area-inset-right)) clamp(6rem, 12vw, 10rem) max(5vw, env(safe-area-inset-left));
}

body.page-sub .sub-cta .ticket {
  cursor: pointer;
}

/* Scroll-Reveal Hilfsklassen */
body.page-sub .sub-fade {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}

body.page-sub .sub-fade.is-in-view {
  opacity: 1;
  transform: none;
}

/* Legal */
body.page-sub .legal-body {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0 max(5vw, env(safe-area-inset-right)) clamp(4rem, 8vw, 6rem) max(5vw, env(safe-area-inset-left));
}

body.page-sub .legal-body h2 {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(217, 179, 106, 0.2);
}

html[data-theme='light'] body.page-sub .sub-hero {
  background: linear-gradient(168deg, #f8f5ef 0%, #fffcf7 45%, #f4f1ea 100%);
}

html[data-theme='light'] body.page-sub .sub-hero-bg {
  color: var(--accent);
  opacity: 0.09;
}

html[data-theme='light'] body.page-sub .subsection-split {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(22, 18, 15, 0.08);
}

html[data-theme='light'] body.page-sub .contact-form {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(22, 18, 15, 0.1);
}

html[data-theme='light'] body.page-sub .f-in,
html[data-theme='light'] body.page-sub .f-ta,
html[data-theme='light'] body.page-sub .f-sel {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(22, 18, 15, 0.12) !important;
  color: var(--text);
}

body.page-sub .legal-page.sub-hero {
  min-height: min(52vh, 520px);
  padding-bottom: 2.5rem;
}

body.page-sub .legal-page.sub-hero .service-title {
  margin-bottom: 0;
}

body.page-sub #contact {
  scroll-margin-top: calc(88px + env(safe-area-inset-top, 0px));
}

body.page-sub #cta.sub-cta {
  scroll-margin-top: 80px;
}

@media (max-width: 900px) {
  body.page-sub .sub-hero-side {
    display: none;
  }
  body.page-sub .subsection-split {
    padding: 1.25rem;
  }
}

/* —— Preisseite: Psychologie, Hierarchie, Mikro-Animationen (lesbar ohne JS) —— */
/* —— Preisseite: „Studio“-Pricing (angelehnt an klare Tier-Layouts) —— */
body.page-preise .pricing-dp-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4.5vw, 3.25rem);
  max-width: var(--content-max);
  margin-inline: auto;
}

body.page-preise .pricing-dp-tier {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, min(32vw, 260px));
  align-items: stretch;
  border-radius: 18px;
  border: 1px solid rgba(240, 237, 230, 0.12);
  background: linear-gradient(165deg, rgba(240, 237, 230, 0.04) 0%, var(--bg2) 42%);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

body.page-preise .pricing-dp-tier--featured {
  border-color: rgba(217, 179, 106, 0.38);
  box-shadow:
    0 0 0 1px rgba(217, 179, 106, 0.1),
    0 28px 72px rgba(0, 0, 0, 0.42),
    0 0 100px rgba(217, 179, 106, 0.07);
  background: linear-gradient(168deg, rgba(217, 179, 106, 0.09) 0%, var(--bg2) 45%);
}

body.page-preise .pricing-dp-tier__body {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  min-width: 0;
}

body.page-preise .pricing-dp-tier__title {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

body.page-preise .pricing-dp-stackline {
  margin-bottom: 0 !important;
}

body.page-preise .pricing-dp-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  padding: 1rem 0;
  margin: 0;
  border-top: 1px solid rgba(240, 237, 230, 0.1);
  border-bottom: 1px solid rgba(240, 237, 230, 0.08);
}

body.page-preise .pricing-dp-meta__cell {
  margin: 0;
}

body.page-preise .pricing-dp-meta__k {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.45);
  margin-bottom: 0.35rem;
}

body.page-preise .pricing-dp-meta__v {
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(240, 237, 230, 0.88);
  margin: 0;
}

body.page-preise .pricing-dp-meta__v--xl {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--fg);
}

body.page-preise .pricing-dp-meta--web .pricing-dp-meta__cell:first-child .pricing-dp-meta__v--xl {
  color: inherit;
}

body.page-preise .pricing-dp-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
  gap: 1.5rem 2rem;
  align-items: start;
}

body.page-preise .pricing-dp-split--web {
  grid-template-columns: minmax(0, 1fr) auto;
}

body.page-preise .pricing-dp-col-label {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.42);
  margin: 0 0 0.75rem;
}

body.page-preise .pricing-dp-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.page-preise .pricing-dp-checklist li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.1rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(240, 237, 230, 0.78);
  border-bottom: 1px solid rgba(240, 237, 230, 0.06);
}

body.page-preise .pricing-dp-checklist li::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  top: 0.95rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-strong);
  opacity: 0.85;
}

body.page-preise .pricing-dp-split__col--price .bundle-pricing-block {
  margin-top: 0;
}

body.page-preise .pricing-dp-cta {
  width: 100%;
  margin-top: 0.5rem;
}

body.page-preise .pricing-dp-split__col--cta {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

body.page-preise .pricing-dp-split__col--cta .pricing-dp-cta {
  width: auto;
  min-width: 12rem;
}

body.page-preise .pricing-dp-web-lead {
  margin-top: 0.5rem;
  max-width: 52ch;
}

body.page-preise .pricing-dp-badge {
  position: absolute;
  top: 0;
  left: 2rem;
  z-index: 2;
  transform: translateY(-50%);
}

body.page-preise .pricing-dp-visual {
  position: relative;
  min-height: 12rem;
  background: linear-gradient(160deg, rgba(109, 183, 255, 0.14), transparent 55%, rgba(0, 0, 0, 0.2));
}

body.page-preise .pricing-dp-visual--gold {
  background: linear-gradient(155deg, rgba(217, 179, 106, 0.2), transparent 50%, rgba(0, 0, 0, 0.25));
}

body.page-preise .pricing-dp-visual--blue {
  background: linear-gradient(155deg, rgba(109, 183, 255, 0.22), transparent 55%);
}

body.page-preise .pricing-dp-visual--emerald {
  background: linear-gradient(155deg, rgba(98, 215, 167, 0.16), transparent 55%);
}

body.page-preise .pricing-dp-visual--violet {
  background: linear-gradient(155deg, rgba(179, 140, 255, 0.18), transparent 55%);
}

body.page-preise .pricing-dp-visual__noise {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

body.page-preise .pricing-dp-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255, 255, 255, 0.05) 48%,
    transparent 62%
  );
  background-size: 220% 100%;
  animation: pricingDpShimmer 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pricingDpShimmer {
  0%,
  100% {
    background-position: 80% 0;
  }
  50% {
    background-position: 20% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-preise .pricing-dp-visual::after {
    animation: none;
  }
}

body.page-preise .pricing-dp-tier--starter {
  grid-template-columns: 1fr;
  border-radius: 16px;
}

body.page-preise .pricing-dp-tier--starter.starter-band {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px);
  gap: 2.5rem;
  align-items: center;
  padding: 2.75rem 2.5rem;
  border: 1px solid rgba(240, 237, 230, 0.12);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.page-preise .pricing-dp-stack--web {
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
}

body.page-preise .preise-pc-grid.pricing-dp-stack {
  display: flex !important;
  flex-direction: column;
  grid-template-columns: unset !important;
  border: none;
  background: transparent;
}

body.page-preise .pricing-dp-tier--web.pc {
  border-top: 2px solid transparent;
}

body.page-preise .pricing-dp-stack--retainer {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 28rem;
  margin-inline: auto;
  background: transparent !important;
}

body.page-preise .pricing-dp-stack--retainer.offer-grid {
  grid-template-columns: 1fr !important;
}

@media (max-width: 960px) {
  body.page-preise .pricing-dp-tier {
    grid-template-columns: 1fr;
  }
  body.page-preise .pricing-dp-visual {
    min-height: 10rem;
    order: -1;
  }
  body.page-preise .pricing-dp-split {
    grid-template-columns: 1fr;
  }
  body.page-preise .pricing-dp-split__col--cta {
    justify-content: stretch;
  }
  body.page-preise .pricing-dp-split__col--cta .pricing-dp-cta {
    width: 100%;
  }
  body.page-preise .pricing-dp-meta {
    grid-template-columns: 1fr;
  }
  body.page-preise .pricing-dp-tier--starter.starter-band {
    grid-template-columns: 1fr;
  }
}

body.page-preise .bundle-psych {
  font-size: 0.82rem;
  line-height: 1.58;
  color: rgba(240, 237, 230, 0.72);
  margin: 0 0 1.05rem;
  max-width: 40ch;
}

body.page-preise .bundle-psych strong {
  color: var(--accent-strong);
  font-weight: 600;
}

body.page-preise .bundle-psych em {
  font-style: italic;
  color: rgba(240, 237, 230, 0.88);
}

body.page-preise .preise-social-proof {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(240, 237, 230, 0.78);
  max-width: 52ch;
  margin: 1rem 0 0.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(217, 179, 106, 0.22);
  background: linear-gradient(135deg, rgba(217, 179, 106, 0.07), rgba(98, 215, 167, 0.04));
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

body.page-preise .preise-social-proof strong {
  color: var(--accent-strong);
}

body.page-preise .preise-social-proof em {
  font-style: italic;
  color: var(--fg);
}

/* Trust-Strip: Entscheidungssicherheit (chunking, klare Reihenfolge) */
body.page-preise .preise-trust-strip {
  padding: 3.5rem 5vw 0;
  position: relative;
}

body.page-preise .preise-trust-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body.page-preise .preise-trust-card {
  padding: 1.35rem 1.25rem 1.45rem;
  border-radius: 12px;
  border: 1px solid rgba(240, 237, 230, 0.08);
  background: rgba(240, 237, 230, 0.02);
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
  body.page-preise .preise-trust-card:not(.preise-in-view) {
    transform: translateY(18px);
  }
}

body.page-preise .preise-trust-card.preise-in-view,
body.page-preise .preise-trust-card:hover {
  border-color: rgba(217, 179, 106, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

body.page-preise .preise-trust-card:hover {
  transform: translateY(-4px);
}

body.page-preise .preise-trust-ic {
  display: inline-flex;
  width: 1.65rem;
  height: 1.65rem;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 0.65rem;
  background: rgba(217, 179, 106, 0.12);
  color: var(--accent-strong);
  border: 1px solid rgba(217, 179, 106, 0.25);
}

body.page-preise .preise-trust-h {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: var(--fg);
}

body.page-preise .preise-trust-p {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
}

/* Sektions-Bühnen: leichte Tiefe ohne Ablenkung */
body.page-preise .preise-stage {
  position: relative;
}

body.page-preise .preise-stage--kombi::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(217, 179, 106, 0.06), transparent 55%);
}

body.page-preise .preise-stage--web::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 45% at 20% 20%, rgba(109, 183, 255, 0.06), transparent 50%);
}

body.page-preise .preise-stage--pflege::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 80% 10%, rgba(98, 215, 167, 0.05), transparent 50%);
}

body.page-preise .preise-stage--social::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 65% 45% at 50% 0%, rgba(179, 140, 255, 0.05), transparent 55%);
}

body.page-preise .preise-starter-glow {
  position: relative;
  overflow: visible;
}

body.page-preise .preise-starter-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(109, 183, 255, 0.15), transparent 45%, rgba(217, 179, 106, 0.08));
  opacity: 0.55;
  z-index: -1;
  filter: blur(12px);
}

/* Kombi-Karten: Eintritt + „Sweet Spot“-Fokus */
body.page-preise .preise-card-anim {
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
  will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
  body.page-preise .preise-card-anim:not(.preise-in-view) {
    transform: translateY(22px);
  }
}

body.page-preise .preise-bundle-grid > .pricing-dp-tier:nth-child(1):not(.preise-in-view) {
  transition-delay: 0.03s;
}

body.page-preise .preise-bundle-grid > .pricing-dp-tier:nth-child(2):not(.preise-in-view) {
  transition-delay: 0.08s;
}

body.page-preise .preise-bundle-grid > .pricing-dp-tier:nth-child(3):not(.preise-in-view) {
  transition-delay: 0.13s;
}

body.page-preise .preise-card--hero {
  z-index: 1;
}

body.page-preise .preise-card--hero::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 0;
  pointer-events: none;
  border: 1px solid rgba(217, 179, 106, 0.28);
  box-shadow:
    0 0 0 1px rgba(217, 179, 106, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.35);
  opacity: 0.85;
  z-index: -1;
}

@media (prefers-reduced-motion: no-preference) {
  body.page-preise .preise-card--hero:hover {
    transform: translateY(-6px) scale(1.01);
  }
}

/* Web-Pakete: Kurzcopy + Fokus-Karte */
body.page-preise .pc .pc-psych {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(240, 237, 230, 0.68);
  margin: 0 0 1.35rem;
  max-width: 32ch;
}

body.page-preise .pc .pc-per {
  margin-bottom: 0.75rem;
}

body.page-preise .preise-pc-anim {
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
  will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
  body.page-preise .preise-pc-anim:not(.preise-in-view) {
    transform: translateY(18px);
  }
}

body.page-preise .preise-pc-grid .preise-pc-anim:nth-child(1):not(.preise-in-view) {
  transition-delay: 0.02s;
}

body.page-preise .preise-pc-grid .preise-pc-anim:nth-child(2):not(.preise-in-view) {
  transition-delay: 0.06s;
}

body.page-preise .preise-pc-grid .preise-pc-anim:nth-child(3):not(.preise-in-view) {
  transition-delay: 0.1s;
}

body.page-preise .preise-pc-grid .preise-pc-anim:nth-child(4):not(.preise-in-view) {
  transition-delay: 0.14s;
}

body.page-preise .preise-pc--focus {
  box-shadow: inset 0 0 0 1px rgba(217, 179, 106, 0.12);
}

@media (prefers-reduced-motion: no-preference) {
  body.page-preise .preise-pc--focus:hover {
    transform: translateY(-5px) scale(1.008);
  }
}

/* —— Alle Unterseiten: Paket-Karten (offer-section) — einheitlich mit Preisseite —— */
body.page-sub .offer-section .offer-grid {
  display: grid;
  gap: clamp(1.1rem, 2.4vw, 1.85rem);
  background: transparent;
  max-width: var(--content-max);
  margin-inline: auto;
  align-items: stretch;
}

@media (min-width: 1100px) {
  body.page-sub .offer-section .offer-grid:has(article:nth-child(3):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  body.page-sub .offer-section .offer-grid:has(article:nth-child(4):last-child) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1099px) {
  body.page-sub .offer-section .offer-grid:has(article:nth-child(3):last-child) {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
  }
  body.page-sub .offer-section .offer-grid:has(article:nth-child(4):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  body.page-sub .offer-section .offer-grid:has(article:nth-child(4):last-child) {
    grid-template-columns: 1fr;
  }
  body.page-sub .offer-section .offer-card {
    min-height: unset !important;
  }
}

body.page-sub .offer-section .offer-top {
  max-width: 42rem;
}

body.page-sub .offer-section .offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 24rem;
  border-radius: 14px;
  border: 1px solid rgba(240, 237, 230, 0.1);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  padding: 2.1rem 1.85rem 1.95rem;
}

body.page-sub .offer-section .offer-card ul {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(240, 237, 230, 0.08);
}

body.page-sub .offer-section .offer-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

body.page-sub .offer-section .offer-card .offer-plan {
  margin-bottom: 0.55rem;
  letter-spacing: 0.16em;
}

body.page-sub .offer-section .offer-price {
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  line-height: 1.05;
  margin: 0.5rem 0 0.65rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(240, 237, 230, 0.1);
}

body.page-sub .offer-section .offer-card.hot {
  min-height: 26rem;
  background: linear-gradient(
    165deg,
    rgba(217, 179, 106, 0.11) 0%,
    rgba(12, 12, 12, 0.98) 38%,
    var(--bg2) 100%
  );
  border-color: rgba(217, 179, 106, 0.42);
  box-shadow:
    0 0 0 1px rgba(217, 179, 106, 0.14),
    0 26px 64px rgba(0, 0, 0, 0.45),
    0 0 120px rgba(217, 179, 106, 0.08);
}

@media (min-width: 901px) {
  body.page-sub .offer-section .offer-grid .offer-card.hot {
    position: relative;
    z-index: 2;
  }
}

body.page-sub .offer-section .offer-card.hot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 13px;
  pointer-events: none;
  border: 1px solid rgba(217, 179, 106, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Preisseite: Abstand für „Beliebt“-Badge */
body.page-preise .offer-card.preise-offer--hero {
  padding-top: 2.75rem;
}

body.page-preise .preise-bundle-grid {
  gap: clamp(2rem, 4vw, 3rem);
  background: transparent;
  max-width: var(--content-max);
  margin-inline: auto;
}

body.page-preise .preise-pc-grid {
  gap: clamp(0.85rem, 1.8vw, 1.35rem);
  background: transparent;
  border: none;
  max-width: var(--content-max);
  margin-inline: auto;
}

body.page-preise .preise-pc-grid .pc {
  border-right: none;
  border-radius: 14px;
  border: 1px solid rgba(240, 237, 230, 0.1);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

body.page-preise .preise-pc-grid .pc.hot,
body.page-preise .preise-pc-grid .pc.preise-pc--focus {
  border-color: rgba(217, 179, 106, 0.38);
  box-shadow:
    0 0 0 1px rgba(217, 179, 106, 0.1),
    0 18px 48px rgba(0, 0, 0, 0.38),
    0 0 80px rgba(217, 179, 106, 0.08);
  background: linear-gradient(
    165deg,
    rgba(217, 179, 106, 0.07) 0%,
    var(--bg2) 38%,
    var(--bg2) 100%
  );
}

@media (max-width: 1100px) {
  body.page-preise .preise-pc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.page-preise .preise-pc-grid {
    grid-template-columns: 1fr;
  }
}

/* Kombi: Optik jetzt über .pricing-dp-tier */

body.page-preise #preise-pflege .offer-deeplink,
body.page-preise #preise-social .offer-deeplink {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(240, 237, 230, 0.09);
  text-align: center;
}

body.page-preise #preise-pflege .offer-deeplink .core-link,
body.page-preise #preise-social .offer-deeplink .core-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.55);
  border-bottom: 1px solid rgba(217, 179, 106, 0.25);
  padding-bottom: 0.2rem;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

body.page-preise #preise-pflege .offer-deeplink .core-link:hover,
body.page-preise #preise-social .offer-deeplink .core-link:hover {
  color: var(--accent-strong);
  border-bottom-color: rgba(217, 179, 106, 0.5);
}

/* Preisseite: Kurzcopy + CTA-Link in Paket-Karten */
body.page-preise .offer-psych {
  font-size: 0.8rem;
  line-height: 1.58;
  color: rgba(240, 237, 230, 0.68);
  margin: 0 0 1rem;
  max-width: 38ch;
}

body.page-preise .offer-psych strong {
  color: var(--accent-strong);
}

body.page-preise .offer-card-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
  border-bottom: 1px solid rgba(217, 179, 106, 0.35);
  padding-bottom: 0.15rem;
  margin: 0 0 1.15rem;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

body.page-preise .offer-card-cta:hover {
  color: var(--fg);
  border-bottom-color: rgba(240, 237, 230, 0.35);
  transform: translateX(2px);
}

body.page-preise .offer-badge-preise {
  position: absolute;
  top: 0;
  right: 2.2rem;
  transform: translateY(-50%);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #18120b;
  border-radius: 2px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

body.page-preise .preise-offer-anim {
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
  will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
  body.page-preise .preise-offer-anim:not(.preise-in-view) {
    transform: translateY(16px);
  }
}

body.page-preise .preise-offer-grid .preise-offer-anim:nth-child(1):not(.preise-in-view) {
  transition-delay: 0.03s;
}

body.page-preise .preise-offer-grid .preise-offer-anim:nth-child(2):not(.preise-in-view) {
  transition-delay: 0.08s;
}

body.page-preise .preise-offer-grid .preise-offer-anim:nth-child(3):not(.preise-in-view) {
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  body.page-preise .preise-trust-card,
  body.page-preise .preise-card-anim,
  body.page-preise .preise-pc-anim,
  body.page-preise .preise-offer-anim {
    transform: none !important;
    transition: none !important;
  }
}

html[data-theme='light'] body.page-preise .preise-trust-card {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(22, 18, 15, 0.08);
}

html[data-theme='light'] body.page-preise .preise-social-proof {
  background: linear-gradient(135deg, rgba(217, 179, 106, 0.1), rgba(98, 215, 167, 0.06));
  border-color: rgba(22, 18, 15, 0.1);
}

html[data-theme='light'] body.page-preise .bundle-psych,
html[data-theme='light'] body.page-preise .offer-psych,
html[data-theme='light'] body.page-preise .pc .pc-psych {
  color: rgba(22, 18, 15, 0.62);
}

html[data-theme='light'] body.page-sub .offer-section .offer-card {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(22, 18, 15, 0.1);
  box-shadow:
    0 8px 32px rgba(22, 18, 15, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

html[data-theme='light'] body.page-sub .offer-section .offer-card.hot {
  background: linear-gradient(
    165deg,
    rgba(217, 179, 106, 0.18) 0%,
    rgba(255, 252, 247, 0.98) 42%,
    rgba(255, 255, 255, 0.92) 100%
  );
  border-color: rgba(180, 140, 60, 0.35);
}

html[data-theme='light'] body.page-preise .pricing-dp-tier {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 245, 239, 0.98) 50%);
  border-color: rgba(22, 18, 15, 0.1);
  box-shadow: 0 12px 40px rgba(22, 18, 15, 0.07);
}

html[data-theme='light'] body.page-preise .pricing-dp-tier--featured {
  border-color: rgba(180, 140, 60, 0.35);
}

html[data-theme='light'] body.page-preise .preise-pc-grid .pc {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(22, 18, 15, 0.1);
}

/* Preisseite + Lenis/GSAP: 3D-Wrapper, kein Konflikt mit CSS-Reveal */
body.page-preise.preise-gsap .preise-card-anim,
body.page-preise.preise-gsap .preise-pc-anim,
body.page-preise.preise-gsap .preise-offer-anim,
body.page-preise.preise-gsap .preise-trust-card {
  transform: none !important;
  transition:
    background 0.25s,
    box-shadow 0.35s ease !important;
}

body.page-preise.preise-gsap .preise-3d-outer {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  will-change: transform, opacity;
}

body.page-preise.preise-gsap .preise-3d-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
  border-radius: 14px;
  overflow: visible;
}

body.page-preise.preise-gsap .preise-trust-strip .preise-3d-inner {
  border-radius: 12px;
}

body.page-preise.preise-gsap .preise-3d-inner > .bundle-card,
body.page-preise.preise-gsap .preise-3d-inner > .pricing-dp-tier,
body.page-preise.preise-gsap .preise-3d-inner > .pc,
body.page-preise.preise-gsap .preise-3d-inner > .offer-card {
  flex: 1 1 auto;
}

body.page-preise.preise-gsap .preise-3d-inner > .preise-trust-card {
  flex: 1 1 auto;
  height: 100%;
}

body.page-preise.preise-gsap .preise-3d-inner > .starter-band {
  width: 100%;
}

@media (max-width: 900px) {
  body.page-preise .preise-trust-inner {
    grid-template-columns: 1fr;
  }
}

/* Leistungsseiten + Lenis/GSAP: 3D-Wrapper */
body.page-sub.service-gsap .offer-grid > .service-3d-outer,
body.page-sub.service-gsap .subsection-visual > .service-3d-outer {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  will-change: transform, opacity;
}

body.page-sub.service-gsap .service-3d-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
  border-radius: 14px;
  overflow: visible;
}

body.page-sub.service-gsap .service-3d-inner > .offer-card,
body.page-sub.service-gsap .service-3d-inner > .subsection-img-frame {
  flex: 1 1 auto;
}

body.page-sub.service-gsap .subsection-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

