/* =========================================================
   JORDAN WEBSTUDIOS — STYLES
   Editorial Luxury × High-End Agency
   ========================================================= */

/* ================ DESIGN TOKENS ================ */
:root {
  --paper:        #fafaf7;
  --paper-pure:   #ffffff;
  --paper-soft:   #f3f1ea;
  --ink:          #0a0a0a;
  --ink-soft:     #1a1a1a;
  --ink-60:       rgba(10,10,10,0.60);
  --ink-40:       rgba(10,10,10,0.40);
  --muted:        #8b8680;

  --gold:         #b8935a;
  --gold-dark:    #8a6d3f;
  --gold-light:   #d4b684;
  --gold-tint:    rgba(184,147,90,0.10);

  --line:         rgba(10,10,10,0.08);
  --line-strong:  rgba(10,10,10,0.18);

  --radius-sm:    2px;
  --radius-md:    4px;

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
  --ease-luxe:    cubic-bezier(0.77, 0, 0.175, 1);

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-sans:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-w:        1680px;
  --gutter:       clamp(20px, 4vw, 64px);

  /* Section spacing */
  --sec-py:       clamp(100px, 16vh, 200px);
}

/* ================ RESET / BASE ================ */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--paper);
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "ss02";
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
::selection { background: var(--ink); color: var(--paper); }

/* ================ TYPOGRAPHY BASE ================ */
.section-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  font-size: clamp(42px, 7.2vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.section-h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-weight: 300;
}
.section-h2--light { color: var(--paper); }

.section-lead {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
  max-width: 52ch;
  color: var(--ink-60);
}
.section-lead--light { color: rgba(250,250,247,0.7); }

.gold-text { color: var(--gold); }

/* Labels for sections (editorial tagging) */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: clamp(40px, 6vh, 80px);
}
.section-label__num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50%;
}
.section-label--light { color: var(--paper); }
.section-label--light .section-label__num {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ================ BUTTONS ================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  transition: background .5s var(--ease-out), color .5s var(--ease-out), border-color .5s var(--ease-out), transform .4s var(--ease-out);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn svg { width: 14px; height: 14px; transition: transform .5s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--paper);
}

.btn--cta {
  padding: 12px 22px;
  font-size: 12px;
}
.btn--cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--gold {
  background: var(--gold);
  color: var(--paper);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.btn--lg { padding: 22px 36px; font-size: 14px; }

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

/* ================ LOADER ================ */
.loader {
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.loader__mark {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.loader__line {
  width: 180px;
  height: 1px;
  background: var(--line);
  overflow: hidden;
  display: block;
  position: relative;
}
.loader__line i {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  background: var(--gold);
}
.loader__label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s var(--ease-out), visibility .8s;
}

/* ================ SITE HEADER ================ */
.site-header {
  position: fixed;
  background: rgba(250,250,247,0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .5s var(--ease-out), padding .5s var(--ease-out), border-color .5s var(--ease-out);
}
.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(250,250,247,0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 40px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand__logo {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand__mark {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.brand__wordmark {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.brand__wordmark em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.nav {
  display: flex;
  gap: 36px;
  justify-self: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav a {
  position: relative;
  padding: 6px 0;
  transition: color .4s var(--ease-out);
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.nav a:hover::after { transform: scaleX(1); }
.nav a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 22px; height: 1px;
  background: var(--ink);
  transition: transform .4s var(--ease-out), top .4s var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: calc(50% - 4px); }
.nav-toggle span:nth-child(2) { top: calc(50% + 4px); }
.nav-toggle.is-open span:nth-child(1) { top: 50%; transform: translateX(-50%) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { top: 50%; transform: translateX(-50%) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 90;
  padding: 120px var(--gutter) 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform .55s var(--ease-luxe), opacity .35s ease, visibility 0s linear .55s;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.is-open,
body .mobile-menu.is-open,
.mobile-menu.mobile-menu.is-open {
  transform: translateY(0) !important;
  pointer-events: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform .55s var(--ease-luxe), opacity .35s ease, visibility 0s linear 0s !important;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-size: clamp(36px, 9vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__cta {
  color: var(--gold) !important;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1 !important;
}
.mobile-menu__meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ================ HERO ================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 120px var(--gutter) 60px;
  overflow: hidden;
  background: var(--paper);
}

/* Meta tags top left / right */
.hero__meta {
  position: absolute;
  top: 110px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  z-index: 10;
}
.hero__meta--tl { left: var(--gutter); }
.hero__meta--tr { right: var(--gutter); }
.hero__meta .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(184,147,90,0.2);
  animation: pulse 2.4s infinite var(--ease-in-out);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(184,147,90,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(184,147,90,0.05); }
}

/* Giant backdrop word */
.hero__backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero__backdrop-word {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  font-size: clamp(160px, 24vw, 420px);
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--paper-soft);
  white-space: nowrap;
  user-select: none;
}

/* Portrait */
.hero__portrait-wrap {
  position: relative;
  z-index: 2;
  height: 78vh;
  max-height: 820px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.hero__portrait {
  height: 100%;
  width: auto;
  max-width: 90vw;
  object-fit: contain;
  object-position: bottom center;
  filter: contrast(1.02);
  will-change: transform;
}

/* Overlay horizontal typography (mix-blend-mode: difference) */
.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 3vh, 40px);
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: difference;
  color: #ffffff;
  overflow: hidden;
}
.hero__line {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 60px);
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 200;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 0.9;
  letter-spacing: -0.03em;
  will-change: transform;
}
.hero__line--1 {
  font-size: clamp(70px, 13vw, 220px);
  transform: translateX(-5%);
}
.hero__line--2 {
  font-size: clamp(32px, 5vw, 86px);
  transform: translateX(10%);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  margin-top: clamp(8px, 2vh, 24px);
}
.hero__line-text {
  display: inline-block;
}
.hero__line-text--italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero__line-sep {
  font-size: 0.6em;
  opacity: 0.6;
  display: inline-block;
}

/* Hero Headline (actual H1) */
.hero__headline {
  position: absolute;
  z-index: 4;
  left: var(--gutter);
  bottom: 140px;
  max-width: 560px;
}
.hero__h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero__h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--gold);
}
.hero__sub {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-60);
  max-width: 460px;
}

/* reveal utility */
.reveal-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}
.reveal-inner {
  display: inline-block;
  transform: translateY(120%);
  will-change: transform;
}
/* Failsafe — sichtbar machen, sobald body bereit ist (auch ohne GSAP-Tween) */
body.is-ready .reveal-inner {
  transform: translateY(0);
  transition: transform .8s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Mobile: kein Reveal-Effekt, einfach immer sichtbar */
@media (max-width: 720px) {
  .reveal-inner { transform: translateY(0) !important; transition: none !important; }
}

/* Hero footer area */
.hero__footer {
  position: absolute;
  right: var(--gutter);
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  z-index: 4;
}
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.scroll-cue__line {
  width: 1px;
  height: 60px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.scroll-cue__line::before {
  content: "";
  position: absolute;
  top: -60px; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLine 2.2s infinite var(--ease-in-out);
}
@keyframes scrollLine {
  0%   { transform: translateY(0); }
  100% { transform: translateY(120px); }
}

/* ================ MANIFEST ================ */
.manifest {
  position: relative;
  padding: var(--sec-py) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.manifest__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 8vh, 80px) 0;
}
.manifest__line {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(38px, 6vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  overflow: hidden;
}
.manifest__line span {
  display: block;
  will-change: transform;
}
.manifest__line em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.manifest__line--gold span {
  color: var(--gold);
}
.manifest__line--space {
  height: 0.4em;
}
.manifest__signature {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: clamp(60px, 10vh, 120px);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.manifest__sig-line {
  display: block;
  width: 64px; height: 1px;
  background: var(--gold);
}

/* ================ PRINZIP ================ */
.prinzip {
  padding: var(--sec-py) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.prinzip__header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(60px, 10vh, 120px);
}
.prinzip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line-strong);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.prinzip__item {
  background: var(--paper);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background .5s var(--ease-out);
  min-height: 360px;
}
.prinzip__item:hover {
  background: var(--paper-soft);
}
.prinzip__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-variation-settings: "opsz" 144;
}
.prinzip__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: auto;
}
.prinzip__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--gold);
}
.prinzip__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-60);
}

/* ================ LEISTUNGEN ================ */
.leistungen {
  background: var(--paper);
  overflow-x: hidden;
  padding-top: var(--sec-py);
  padding-bottom: var(--sec-py);
  position: relative;
}
.leistungen__intro {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 32px;
}
.leistungen__stage {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
}
.leistungen__track {
  display: flex;
  gap: 40px;
  padding: 0 var(--gutter);
  height: 100%;
  align-items: center;
  will-change: transform;
}
.svc {
  flex: 0 0 auto;
  width: clamp(360px, 36vw, 520px);
  height: 78vh;
  max-height: 680px;
  background: var(--paper-pure);
  border: 1px solid var(--line);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: border-color .5s var(--ease-out), background .5s var(--ease-out);
}
.svc:hover {
  border-color: var(--gold);
}
.svc__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.svc__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(40px, 3.6vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.svc__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--gold);
}
.svc__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-60);
  max-width: 38ch;
}
.svc__list {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.svc__list li::before {
  content: "";
  display: block;
  width: 6px; height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.svc__line {
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 40px;
  background: var(--gold);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform .6s var(--ease-out);
}
.svc:hover .svc__line { transform: scaleY(1); }

.svc--final {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  justify-content: center;
  align-items: flex-start;
}
.svc--final .svc__title { color: var(--paper); }
.svc--final .svc__title em { color: var(--gold-light); }
.svc--final .svc__body { color: rgba(250,250,247,0.75); }

/* Leistungen progress */
.leistungen__progress {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 20px;
}
.leistungen__progress-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.leistungen__progress-bar {
  flex: 1;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.leistungen__progress-bar i {
  display: block;
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}

/* ================ SICHTBARKEIT ================ */
.sichtbar {
  background: var(--ink);
  color: var(--paper);
  padding: var(--sec-py) var(--gutter);
  position: relative;
  overflow: hidden;
}
.sichtbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184,147,90,0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(184,147,90,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.sichtbar__header {
  max-width: var(--max-w);
  margin: 0 auto clamp(80px, 12vh, 140px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  position: relative;
}
.sichtbar__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(250,250,247,0.12);
  border-top: 1px solid rgba(250,250,247,0.16);
  border-bottom: 1px solid rgba(250,250,247,0.16);
  position: relative;
}
.kpi {
  background: var(--ink);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 340px;
}
.kpi__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.kpi__value {
  font-family: var(--font-display);
  font-weight: 200;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--paper);
  display: flex;
  align-items: baseline;
  gap: 0;
}
.kpi__value i {
  font-style: normal;
  font-size: 0.35em;
  color: var(--gold-light);
  font-weight: 300;
}
.kpi__desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(250,250,247,0.65);
  margin-top: auto;
  margin-bottom: 16px;
}
.kpi__bar {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(250,250,247,0.15);
  position: relative;
  overflow: hidden;
}
.kpi__bar i {
  display: block;
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  background: var(--gold);
  transform-origin: left;
}
.sichtbar__note {
  max-width: 80ch;
  margin: 32px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(250,250,247,0.5);
  line-height: 1.6;
}
.gold-dot {
  flex: 0 0 auto;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
}

/* ================ PROZESS ================ */
.prozess {
  padding: var(--sec-py) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--paper);
}
.prozess__wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.prozess__sticky {
  position: sticky;
  top: 140px;
  align-self: start;
}
.prozess__counter {
  margin-top: 60px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 200;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  letter-spacing: -0.04em;
  line-height: 1;
}
.prozess__counter-current {
  font-size: clamp(80px, 8vw, 140px);
  color: var(--gold);
  transition: opacity .3s;
}
.prozess__counter-sep {
  font-size: clamp(40px, 4vw, 60px);
  color: var(--ink-40);
}
.prozess__counter-total {
  font-size: clamp(40px, 4vw, 60px);
  color: var(--ink-40);
}

.prozess__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--line-strong);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.prozess__step {
  background: var(--paper);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 30px;
  align-items: start;
  opacity: 0.4;
  transition: opacity .6s var(--ease-out), background .5s var(--ease-out);
}
.prozess__step.is-active {
  opacity: 1;
  background: var(--paper-soft);
}
.prozess__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding-top: 8px;
}
.prozess__title {
  grid-column: 2;
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.prozess__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--gold);
}
.prozess__step p {
  grid-column: 2;
  width: 100%;
  max-width: 100%;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-60);
  max-width: none !important;
  width: 100%;
}

/* ================ REFERENZEN ================ */
.refs {
  padding: var(--sec-py) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.refs__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.refs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
.ref:nth-child(5) {
  grid-column: 1 / -1;
}
.ref {
  background: var(--paper);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background .6s var(--ease-out);
  min-height: 420px;
  cursor: pointer;
}
.ref:hover { background: var(--ink); }
.ref:hover * { color: var(--paper) !important; }
.ref:hover .ref__title em { color: var(--gold-light) !important; }
.ref:hover .ref__stats strong { color: var(--gold-light) !important; }

.ref__meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  transition: border-color .5s;
}
.ref:hover .ref__meta { border-color: rgba(250,250,247,0.15); }
.ref__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(36px, 3.4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.ref__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--gold);
  transition: color .4s;
}
.ref__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-60);
  max-width: 44ch;
}
.ref__stats {
  margin-top: auto;
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  transition: border-color .5s;
}
.ref:hover .ref__stats { border-color: rgba(250,250,247,0.15); }
.ref__stats span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ref__stats strong {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(24px, 2vw, 32px);
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color .4s;
}
.ref__stats i {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.refs__more {
  margin-top: 60px;
  text-align: center;
}

.kontakt__form {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  border-top: 1px solid rgba(250,250,247,0.12);
}
.kontakt__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.kontakt__form-field {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid rgba(250,250,247,0.12);
  position: relative;
}
.kontakt__form-row .kontakt__form-field:first-child {
  padding-right: 32px;
  border-right: 1px solid rgba(250,250,247,0.12);
}
.kontakt__form-field label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  font-family: var(--font-sans);
  margin-bottom: 8px;
}
.kontakt__form-field input,
.kontakt__form-field textarea {
  background: transparent;
  border: none;
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.01em;
  padding: 0;
  outline: none;
  resize: none;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.4;
}
.kontakt__form-field input::placeholder,
.kontakt__form-field textarea::placeholder {
  color: rgba(250,250,247,0.2);
}
.kontakt__form-field::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .5s var(--ease-out);
}
.kontakt__form-field:focus-within::after {
  width: 100%;
}
.kontakt__form-success {
  display: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 8px;
}

/* ---- Datenschutz-Checkbox ---- */
.kontakt__consent {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 22px 0 18px;
  cursor: pointer;
  user-select: none;
}
.kontakt__consent input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.kontakt__consent-box {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(250,250,247,0.28);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .25s var(--ease-out), border-color .25s var(--ease-out), color .25s var(--ease-out);
  margin-top: 1px;
}
.kontakt__consent-box svg {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
}
.kontakt__consent input:checked + .kontakt__consent-box {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.kontakt__consent input:checked + .kontakt__consent-box svg {
  opacity: 1;
  transform: scale(1);
}
.kontakt__consent input:focus-visible + .kontakt__consent-box {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}
.kontakt__consent-text {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(250,250,247,0.6);
  letter-spacing: 0.01em;
}
.kontakt__consent-text a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(212,182,132,0.4);
  transition: border-color .2s var(--ease-out);
}
.kontakt__consent-text a:hover {
  border-bottom-color: var(--gold-light);
}

/* ================ KONTAKT ================ */
.kontakt {
  background: var(--ink);
  color: var(--paper);
  padding: var(--sec-py) var(--gutter);
  position: relative;
  overflow: hidden;
}
.kontakt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 40%, rgba(184,147,90,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.kontakt__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.kontakt__h2 {
  font-family: var(--font-display);
  font-weight: 200;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(56px, 8vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin-bottom: 32px;
}
.kontakt__h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--gold);
}
.kontakt__h2 span {
  display: block;
  overflow: hidden;
}
.kontakt__h2 span > em,
.kontakt__h2 span {
  will-change: transform;
}
.kontakt__lead {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(250,250,247,0.7);
  max-width: 50ch;
  margin-bottom: 40px;
}
.kontakt__channels {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.kontakt__channel {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(250,250,247,0.12);
  transition: border-color .4s;
}
.kontakt__channel:last-of-type { border-bottom: 1px solid rgba(250,250,247,0.12); }
.kontakt__channel:hover { border-top-color: var(--gold); }
.kontakt__channel-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.kontakt__channel-value {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.kontakt__channel-arrow {
  color: var(--gold-light);
  transition: transform .4s var(--ease-out);
}
.kontakt__channel:hover .kontakt__channel-arrow {
  transform: translateX(8px);
}
.kontakt__trust {
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  color: rgba(250,250,247,0.55);
  line-height: 1.6;
}
.kontakt__portrait-wrap {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.kontakt__portrait {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: grayscale(0.1);
  will-change: transform;
}
.kontakt__badge {
  position: absolute;
  top: 40px; left: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.kontakt__badge-line {
  display: block;
  width: 48px; height: 1px;
  background: var(--gold);
}
.kontakt__badge-text {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
}

/* ================ FOOTER ================ */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 100px var(--gutter) 40px;
  border-top: 1px solid rgba(250,250,247,0.08);
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 80px;
}
.site-footer__mark {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,250,247,0.08);
}
.site-footer__wordmark {
  font-family: var(--font-display);
  font-weight: 200;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.site-footer__wordmark em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--gold);
}
.site-footer__tagline {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,250,247,0.08);
}
.site-footer__col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 500;
}
.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__col li a {
  font-size: 14px;
  color: rgba(250,250,247,0.75);
  transition: color .3s;
}
.site-footer__col li a:hover { color: var(--gold); }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.4);
}

/* ================ RESPONSIVE ================ */
@media (max-width: 1100px) {
  .nav { display: none; }
  /* Mobile-Header: Logo ganz links, Burger ganz rechts — keine leeren Grid-Spuren */
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }
  .site-header__inner .btn--cta { display: none; }
  .nav-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }
  .brand { grid-column: 1; }
  /* Inline-Width im HTML überschreiben — Logo auf Mobile kleiner */
  .brand__logo {
    width: 130px !important;
    height: 32px !important;
  }

  .prinzip__header,
  .sichtbar__header,
  .refs__header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .prinzip__grid,
  .sichtbar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .refs__grid { grid-template-columns: 1fr; }

  .prozess__wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .prozess__sticky { position: relative; top: 0; }
  .prozess__counter { display: none; }

  .leistungen__intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kontakt__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .kontakt__portrait-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .site-footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 720px) {
  :root { --sec-py: 80px; --gutter: 20px; }

  /* Hero — komplett gestackt, keine Overlap-Choreographie auf Mobile */
  .hero {
    min-height: auto;
    padding: 96px 20px 48px;
    display: block;
    overflow: hidden;
  }
  .hero__meta {
    position: static;
    display: inline-flex;
    margin: 0 0 20px;
    font-size: 10px;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__meta--tr { display: none; }

  /* Backdrop-Wort: dezenter Hintergrund, scharf abgeschnitten */
  .hero__backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 110px;
  }
  .hero__backdrop-word {
    font-size: clamp(60px, 18vw, 110px);
    color: var(--paper-soft);
    opacity: 0.5;
    transform: none !important;
    white-space: nowrap;
    letter-spacing: -0.05em;
  }

  /* Overlay-Lauftext: aus dem Stack raus, in Sub-Block unter H1 */
  .hero__overlay { display: none; }

  /* Portrait: kleiner, im Stack mittig */
  .hero__portrait-wrap {
    height: auto;
    max-height: none;
    margin: 16px auto 24px;
    width: 100%;
  }
  .hero__portrait {
    height: auto;
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }

  /* Headline: kein absolute mehr, einfach im Fluss */
  .hero__headline {
    position: static;
    inset: auto;
    max-width: none;
    margin: 0 0 32px;
    text-align: left;
  }
  .hero__h1 {
    font-size: clamp(40px, 11vw, 64px);
    line-height: 1.05;
  }
  .hero__sub {
    font-size: 14px;
    margin-top: 16px;
  }

  /* Footer-CTA: aus absolute raus, im Stack unten */
  .hero__footer {
    position: static;
    inset: auto;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .scroll-cue { display: none; }

  .btn {
    padding: 14px 22px;
    font-size: 12px;
  }
  .btn--lg { padding: 18px 28px; font-size: 13px; }

  .prinzip__grid { grid-template-columns: 1fr; }
  .prinzip__item { min-height: 260px; padding: 36px 24px; }

  .sichtbar__grid { grid-template-columns: 1fr; }
  .kpi { min-height: 260px; padding: 36px 24px; }

  .svc {
    width: 82vw;
    padding: 32px 24px;
    height: 70vh;
  }

  .ref { padding: 32px 24px; min-height: 320px; }
  .ref__stats { gap: 24px; }

  .kontakt__channel {
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
  }
  .kontakt__channel-value {
    font-size: 16px;
  }

  .site-footer {
    padding: 60px 20px 30px;
  }
  .site-footer__cols { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; gap: 8px; }

  /* Globale Sicherheit: keine Sticky-Header auf Mobile, keine horizontale Overflow */
  [class*="__sticky"],
  .ind-pain__sticky,
  .prozess__sticky,
  .legal-toc {
    position: static !important;
    top: auto !important;
  }
  html, body { overflow-x: hidden; }
  img, video, svg { max-width: 100%; height: auto; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-inner,
  .manifest__line span,
  .hero__line {
    transform: none !important;
  }
}
