/* ═══════════════════════════════════════════════════════════
   LW DIGITALS — Sacral Editorial System
   Palette: Cream base · warm ink text · gold accent (locked)
   Type: Cormorant Garamond (display) + Outfit (functional)
   Radius lock: surfaces 12px · buttons pill
   Theme lock: light throughout
═══════════════════════════════════════════════════════════ */

:root {
  --cream:       #F4F0E8;
  --paper:       #FCFAF6;
  --paper-2:     #FBF7F0;
  --ink:         #1C1714;
  --ink-soft:    #6A6058;
  --ink-faint:   #9A9088;
  --gold:        #B0832E;
  --gold-bright: #D4AF37;
  --burgundy:    #8A1628;
  --line:        rgba(28, 23, 20, 0.12);
  --line-soft:   rgba(28, 23, 20, 0.07);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Outfit", system-ui, -apple-system, sans-serif;

  --r-surface: 12px;
  --r-pill: 999px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 64px); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ───────── Shared type ───────── */
.eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow--light { color: var(--gold-bright); }
.eyebrow--light::before { background: var(--gold-bright); }

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.section-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.65;
}

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 500; font-size: 0.95rem;
  border-radius: var(--r-pill); cursor: pointer; border: 1px solid transparent;
  padding: 13px 24px; transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--burgundy); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(138,22,40,0.22); }
.btn--solid:active { transform: translateY(0) scale(0.98); }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* ───────── Grain + cursor glow ───────── */
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px; z-index: 1;
  margin: -230px 0 0 -230px; border-radius: 50%; pointer-events: none; opacity: 0;
  background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 65%);
  transition: opacity .5s ease; will-change: transform;
}

/* ═══════════════════════ INTRO (cinematic entry) ═══════════════════════ */
.intro { position: fixed; inset: 0; z-index: 200; background: var(--cream); overflow: hidden; display: grid; place-items: center; }
.intro.done { display: none; }
html.intro-lock, html.intro-lock body { overflow: hidden; height: 100%; }
.intro-fresco {
  position: absolute; inset: 0; z-index: 1; opacity: 0;
  background-image: url("assets/creation-of-adam.jpg");
  background-size: cover; background-position: 50% 45%; background-repeat: no-repeat;
  will-change: transform, opacity;
}
.intro-fresco--left  { clip-path: inset(0 50% 0 0); }
.intro-fresco--right { clip-path: inset(0 0 0 50%); }
.intro-seam {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 220px; z-index: 2; opacity: 0;
  transform: translateX(-50%); pointer-events: none; mix-blend-mode: screen; filter: blur(10px);
  background: linear-gradient(90deg, transparent 0%, rgba(255,238,190,0.0) 28%, rgba(255,236,176,0.9) 50%, rgba(255,238,190,0.0) 72%, transparent 100%);
}
.intro-logo {
  position: relative; z-index: 3; opacity: 0;
  font-family: var(--serif); font-weight: 600; letter-spacing: 0.04em; color: var(--ink);
  font-size: clamp(1.7rem, 5vw, 3.4rem);
}
.intro-words {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(14px, 2vw, 26px);
}
.intro-words-row { display: flex; align-items: center; justify-content: center; gap: clamp(10px, 2.2vw, 30px); }
.intro-word {
  font-family: var(--serif); font-weight: 600; color: var(--ink); opacity: 0;
  font-size: clamp(2rem, 7.5vw, 6.5rem); line-height: 1;
  text-shadow: 0 2px 30px rgba(244,240,232,0.6);
}
.intro-plus {
  font-family: var(--serif); font-weight: 600; color: var(--gold); opacity: 0;
  font-size: clamp(1.6rem, 5vw, 4.5rem); line-height: 1; text-shadow: 0 0 24px rgba(212,175,55,0.5);
}
.intro-tagline {
  font-family: var(--sans); font-weight: 500; opacity: 0; color: var(--ink-soft);
  font-size: clamp(0.85rem, 1.9vw, 1.25rem); letter-spacing: 0.22em; text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(244,240,232,0.7);
}
.intro-flash {
  position: absolute; top: 50%; left: 50%; z-index: 4; width: 14px; height: 14px; opacity: 0;
  transform: translate(-50%, -50%) scale(0); border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, #ffffff 0%, #ffe9b0 28%, rgba(212,175,55,0.6) 52%, transparent 72%);
  mix-blend-mode: screen; will-change: transform, opacity;
}

/* ═══════════════════════ NAV ═══════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--maxw); margin-inline: auto; height: 72px;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav.scrolled { background: rgba(244,240,232,0.82); backdrop-filter: blur(14px); border-color: var(--line-soft); }
.nav-logo { display: flex; align-items: baseline; gap: 7px; }
.nav-logo-mark { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; letter-spacing: 0.02em; }
.nav-logo-sub { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.92rem; color: var(--ink-soft); position: relative; transition: color .2s ease; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 20px; font-size: 0.88rem; }

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  position: relative; min-height: 100dvh; display: flex; align-items: flex-end;
  overflow: hidden; padding-bottom: clamp(48px, 9vh, 110px);
}
.hero-media { position: absolute; inset: 0; z-index: 0; background: var(--cream); overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; display: block; opacity: 0; }
.hero-fallback {
  position: absolute; inset: 0; z-index: 0; opacity: 1;
  background-image: url("assets/creation-of-adam.jpg");
  background-size: cover; background-position: 50% 45%; background-repeat: no-repeat;
}
.hero.no-webgl #hero-canvas { display: none; }
.hero-veil {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(to top, rgba(244,240,232,0.92) 0%, rgba(244,240,232,0.35) 30%, transparent 55%),
    linear-gradient(to right, rgba(244,240,232,0.55) 0%, transparent 42%);
}
.hero-content { position: relative; z-index: 3; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 26px;
  padding: 8px 18px 8px 14px; border-radius: 999px;
  background: rgba(24,19,15,0.58); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  border: 1px solid rgba(212,175,55,0.38); text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.hero-eyebrow::before {
  content: ""; flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-bright); box-shadow: 0 0 9px rgba(212,175,55,0.85);
}
.hero-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(3.4rem, 11vw, 9rem); line-height: 0.92; letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.hero-title .split-line { overflow: hidden; padding-bottom: 0.06em; }
.hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--ink-soft); max-width: 46ch; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* reveal helper — hidden only when JS is active (progressive enhancement) */
html.js .reveal-up { opacity: 0; transform: translateY(26px); }
html.js .hero-title { opacity: 0; }

/* ═══════════════════════ MANIFEST ═══════════════════════ */
.manifest { padding: clamp(110px, 18vh, 220px) 0; background: var(--cream); }
.manifest-kicker { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 36px; max-width: 42ch; line-height: 1.5; }
.manifest-body {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.8rem, 4.4vw, 3.4rem); line-height: 1.28; letter-spacing: -0.01em;
  max-width: 32ch;
}
.manifest-body em { font-style: italic; color: var(--burgundy); }
.manifest-body .word { display: inline-block; }

/* ═══════════════════════ PROOF / ZAHLEN ═══════════════════════ */
.proof { padding: clamp(80px, 12vh, 150px) 0; background: var(--paper); border-block: 1px solid var(--line-soft); }
.proof-title { text-align: center; margin-bottom: clamp(48px, 7vw, 90px); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 60px); }
.proof-stat { text-align: center; }
.proof-num { font-family: var(--serif); font-weight: 700; font-size: clamp(3.4rem, 8vw, 6.2rem); line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.proof-num .count { color: var(--gold); background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 60%, var(--burgundy) 130%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.proof-label { margin-top: 16px; color: var(--ink-soft); font-size: 1rem; max-width: 26ch; margin-inline: auto; }

/* ═══════════════════════ SYSTEM-NETZ ═══════════════════════ */
.system { padding: clamp(54px, 8vh, 108px) 0 clamp(28px, 5vh, 64px); background: var(--cream); }
.system-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.system-head .section-lead { margin-inline: auto; text-align: center; }
/* interactive comparison radar (Lemonads-style), premium dark panel */
.compare { max-width: 1000px; margin: clamp(28px, 4vw, 56px) auto 0; }
.compare-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: clamp(12px, 2vw, 22px); }
.compare-tab {
  display: inline-flex; align-items: center;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 500; padding: 11px 22px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: transparent; color: var(--ink-soft); cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
}
.tab-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 9px; flex: 0 0 auto; }
.compare-tab:hover { border-color: var(--gold); color: var(--ink); }
.compare-tab:active { transform: scale(0.97); }
.compare-tab.is-active { background: var(--ink); color: var(--gold-bright); border-color: var(--ink); }

.compare-stage {
  position: relative; overflow: hidden; border-radius: 24px;
  padding: clamp(14px, 2.2vw, 30px) clamp(14px, 3vw, 40px) clamp(16px, 2.4vw, 28px);
  background: radial-gradient(120% 100% at 50% 28%, #2c2218 0%, #1b1611 55%, #131009 100%);
  border: 1px solid rgba(176,131,46,0.3);
  box-shadow: 0 44px 100px rgba(20,15,10,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}
.compare-stage::before {
  content: ""; position: absolute; left: 50%; top: 40%; width: 72%; aspect-ratio: 1;
  transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(212,175,55,0.2), transparent 65%);
}
.radar { position: relative; width: 100%; max-width: 540px; height: auto; display: block; margin: 0 auto; overflow: visible; }
.radar-grid-shape { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 1; }
.radar-frame { stroke: rgba(255,255,255,0.3); stroke-width: 1.5; }
.radar-axis { stroke: rgba(255,255,255,0.11); stroke-width: 1; }
.rseries { fill: none; stroke-width: 1.5; stroke-linejoin: round; opacity: 0; transition: opacity .4s var(--ease), stroke-width .3s var(--ease); }
.radar-label { font-family: var(--sans); font-size: 19px; font-weight: 500; fill: #EAE1D1; letter-spacing: 0.01em; }
.compare-caption {
  position: relative; text-align: center; font-family: var(--serif); font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem); color: #ECE3D3; margin-top: 16px; min-height: 1.5em;
}
@media (max-width: 600px) { .radar-label { font-size: 15px; } }

/* ═══════════════════════ SERVICES (SalesHax-style stacked cards) ═══════════════════════ */
.services { background: #0e0d0c; color: #EDE6DA; padding-bottom: clamp(80px, 12vh, 160px); }
.lm-head { padding: clamp(80px, 12vh, 150px) 0 clamp(36px, 6vh, 64px); }
.lm-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.lm-eyebrow i { font-size: 17px; }
.lm-title { font-family: var(--serif); font-weight: 600; font-size: clamp(2.1rem, 5.2vw, 4.2rem); line-height: 1.05; color: #F4EEE3; letter-spacing: -0.01em; max-width: 22ch; }
.lm-title em { font-style: italic; color: #ADA290; }

.lm-stack { position: relative; display: flex; flex-direction: column; gap: clamp(26px, 4vh, 56px); padding-bottom: 10vh; }
.lm-card {
  position: sticky; top: calc(70px + var(--i) * var(--lm-offset, 56px));
  display: grid; grid-template-columns: 1fr 1.12fr; align-items: stretch;
  min-height: clamp(420px, 58vh, 540px);
  background: #1a1917; border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; overflow: hidden;
  box-shadow: 0 34px 80px rgba(0,0,0,0.55); will-change: transform, filter;
}
.lm-card-text { padding: clamp(28px, 3.2vw, 52px); display: flex; flex-direction: column; }
.lm-pill { align-self: flex-start; font-size: 0.82rem; font-weight: 500; padding: 8px 16px; border-radius: var(--r-pill); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); color: #E7DECF; margin-bottom: clamp(24px, 3vw, 40px); }
.lm-card-text h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.5rem, 2.7vw, 2.4rem); line-height: 1.1; color: #F4EEE3; margin-bottom: 24px; max-width: 20ch; }
.lm-card-text ul { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: auto; }
.lm-card-text li { position: relative; padding-left: 30px; color: #C9BFB0; font-size: 1.02rem; }
.lm-card-text li::before { content: ""; position: absolute; left: 0; top: 0.4em; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(176,131,46,0.2); }
.lm-card-media { position: relative; background: #232120; display: grid; place-items: center; overflow: hidden; }

/* 01 Funnel — landing screenshots as floating browser cards (rAF-driven parallax) */
.lm-funnel { perspective: 1500px; }
.lf-card {
  position: absolute; border-radius: 12px; overflow: hidden; background: #fff; will-change: transform, opacity;
  box-shadow: 0 30px 65px rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.14); opacity: 0;
}
.lf-bar { display: block; height: 20px; background: #1b1b1d; position: relative; }
.lf-bar::before { content: ""; position: absolute; left: 10px; top: 7px; width: 6px; height: 6px; border-radius: 50%;
  background: #ff5f57; box-shadow: 11px 0 0 #febc2e, 22px 0 0 #28c840; }
.lf-card img { display: block; width: 100%; }

/* 02 Copy & Design — ad creatives waving in two columns */
.lm-marquee { display: block; position: relative;
  -webkit-mask: linear-gradient(transparent, #000 11%, #000 89%, transparent);
  mask: linear-gradient(transparent, #000 11%, #000 89%, transparent); }
.lmq-col { position: absolute; top: 0; width: 46%; display: flex; flex-direction: column; gap: 14px; will-change: transform; }
.lmq-a { left: 4%; } .lmq-b { right: 4%; }
.lmq-a { animation: lmqUp 22s linear infinite; }
.lmq-b { animation: lmqDown 22s linear infinite; }
.lmq-col img { width: 100%; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); }
@keyframes lmqUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes lmqDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

/* 02b Copy & Design — Higgsfield motion-graphic video */
.lm-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* 03 Performance — animated bar chart placeholder */
.lm-perf { flex-direction: column; gap: 22px; display: flex; align-items: center; justify-content: center; }
.lp-chart { display: flex; align-items: flex-end; gap: 10px; width: 68%; height: 46%; }
.lp-chart span { flex: 1; height: var(--h); border-radius: 5px 5px 0 0; transform-origin: bottom; transform: scaleY(1);
  background: linear-gradient(to top, var(--gold), var(--gold-bright)); box-shadow: 0 0 18px rgba(212,175,55,0.25);
  transition: transform .7s var(--ease); }
html.js .lm-perf .lp-chart span { transform: scaleY(0); }
html.js .lm-perf.in .lp-chart span { transform: scaleY(1); }
.lm-perf.in .lp-chart span:nth-child(2) { transition-delay: .08s; }
.lm-perf.in .lp-chart span:nth-child(3) { transition-delay: .16s; }
.lm-perf.in .lp-chart span:nth-child(4) { transition-delay: .24s; }
.lm-perf.in .lp-chart span:nth-child(5) { transition-delay: .32s; }
.lm-perf.in .lp-chart span:nth-child(6) { transition-delay: .40s; }
.lm-perf.in .lp-chart span:nth-child(7) { transition-delay: .48s; }
.lp-note { color: rgba(255,255,255,0.4); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; }

/* 04 Sales — Close CRM with stat chips popping in */
.lm-sales .ls-shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left top; }
.ls-chip { position: absolute; z-index: 2; display: flex; align-items: baseline; gap: 7px;
  background: rgba(18,13,9,0.88); border: 1px solid rgba(212,175,55,0.55); color: #F1E9DA; padding: 11px 16px; border-radius: 14px;
  font-size: 0.95rem; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); box-shadow: 0 14px 34px rgba(0,0,0,0.4);
  opacity: 1; transform: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.ls-chip b { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--gold-bright); }
.ls-chip-1 { top: 16%; right: 7%; } .ls-chip-2 { bottom: 18%; left: 7%; }
html.js .lm-sales .ls-chip { opacity: 0; transform: translateY(16px) scale(0.9); }
html.js .lm-sales.in .ls-chip-1 { opacity: 1; transform: none; transition-delay: .2s; }
html.js .lm-sales.in .ls-chip-2 { opacity: 1; transform: none; transition-delay: .42s; }

/* 05 CRM & Automations — flow with a pulse travelling down */
.lm-auto .la-shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.la-pulse { position: absolute; left: 50%; top: 12%; z-index: 2; width: 14px; height: 14px; border-radius: 50%; transform: translateX(-50%);
  background: var(--gold-bright); box-shadow: 0 0 0 6px rgba(212,175,55,0.25), 0 0 22px rgba(212,175,55,0.9);
  animation: laPulse 3.2s var(--ease) infinite; }
@keyframes laPulse { 0% { top: 10%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: 86%; opacity: 0; } }

/* Drone fly-over — screenshot tilted in 3D, camera glides across (Performance, Sales, CRM) */
.lm-drone { perspective: 1500px; background: #14110d; overflow: hidden; }
.ld-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: blur(46px) brightness(0.9) saturate(0.85); transform: scale(1.5); }
.ld-shot {
  position: absolute; top: 50%; left: 50%; height: 175%; width: auto; min-width: 132%; max-width: none;
  transform-origin: center; will-change: transform; backface-visibility: hidden;
}

/* Each module = a TWO-SHOT drone reel:
   Shot 1 flies diagonally bottom-left → top-right, holds (freeze), hard CUT,
   Shot 2 flies top-left → bottom-right and ends on the key number.
   Translate %s: X -44 = show LEFT, -56 = show RIGHT · Y -38 = show TOP, -62 = show BOTTOM. */

/* 03 Performance — Ads Manager. Shot 2 ends bottom-right = Leadpreis/Spend. */
.lm-drone--perf .ld-shot { animation: dronePerf 11s infinite; }
@keyframes dronePerf {
  0%   { transform: translate(-40%,-61%) scale(1.05) rotateX(6deg)  rotateY(-4deg);  animation-timing-function: cubic-bezier(.5,0,.3,1); }   /* unten-links */
  38%  { transform: translate(-60%,-39%) scale(1.16) rotateX(10deg) rotateY(-12deg); animation-timing-function: steps(1,end); }              /* oben-rechts, dann FREEZE */
  48%  { transform: translate(-40%,-39%) scale(1.20) rotateX(10deg) rotateY(-3deg);  animation-timing-function: cubic-bezier(.35,0,.2,1); }  /* CUT → oben-links */
  90%  { transform: translate(-80%,-61%) scale(1.10) rotateX(7deg)  rotateY(-11deg); animation-timing-function: steps(1,end); }              /* unten-rechts = Kosten pro Lead, FREEZE */
  100% { transform: translate(-80%,-61%) scale(1.10) rotateX(7deg)  rotateY(-11deg); }
}

/* 04 Sales — Close metrics. Longer opening shot: a gentle diagonal glide
   bottom-left → top-right, starting on the created Leads. Hard CUT, then
   zoom in on the Outbound Calls. Total 7.5s. */
.lm-drone--sales .ld-shot { height: 112%; animation: droneSales 7.5s infinite; }
@keyframes droneSales {
  0%   { transform: translate(-25%,-55%) scale(1.06) rotateX(5deg) rotateY(-3deg); animation-timing-function: cubic-bezier(.35,0,.4,1); } /* unten-links: Leads erstellt */
  46%  { transform: translate(-72%,-45%) scale(1.05) rotateX(5deg) rotateY(-7deg); animation-timing-function: steps(1,end); }            /* oben-rechts, FREEZE */
  54%  { transform: translate(-50%,-51%) scale(1.04) rotateX(4deg) rotateY(0deg);  animation-timing-function: cubic-bezier(.4,0,.15,1); } /* CUT → Outbound Calls, weit */
  96%  { transform: translate(-52%,-49%) scale(1.24) rotateX(6deg) rotateY(-5deg); animation-timing-function: steps(1,end); }            /* Zoom auf Outbound Calls, FREEZE */
  100% { transform: translate(-52%,-49%) scale(1.24) rotateX(6deg) rotateY(-5deg); }
}

/* 05 CRM & Automations — fly down the flow, CUT, push in on a closer step. */
.lm-drone--auto .ld-shot { animation: droneAuto 12s infinite; }
@keyframes droneAuto {
  0%   { transform: translate(-46%,-39%) scale(1.12) rotateX(9deg)  rotateY(-5deg);  animation-timing-function: cubic-bezier(.55,0,.3,1); } /* oben-links */
  38%  { transform: translate(-54%,-61%) scale(1.20) rotateX(11deg) rotateY(-9deg);  animation-timing-function: steps(1,end); }             /* unten-rechts, FREEZE */
  48%  { transform: translate(-54%,-39%) scale(1.14) rotateX(8deg)  rotateY(-3deg);  animation-timing-function: cubic-bezier(.3,0,.12,1); } /* CUT → oben-rechts */
  90%  { transform: translate(-46%,-61%) scale(1.24) rotateX(11deg) rotateY(-9deg);  animation-timing-function: steps(1,end); }             /* unten-links, FREEZE */
  100% { transform: translate(-46%,-61%) scale(1.24) rotateX(11deg) rotateY(-9deg); }
}

@media (max-width: 800px) {
  .lm-card-media { height: 340px; min-height: 0; }
  .lf-shot { width: 64%; }
}

@media (max-width: 800px) {
  .lm-card { position: relative; top: auto !important; grid-template-columns: 1fr; min-height: 0; }
  .lm-card-media { order: -1; min-height: 220px; }
}

/* ═══════════════════════ PROCESS (gezeichnete Rosenkranz-Säule) ═══════════════════════ */
.process { padding: clamp(80px, 12vh, 160px) 0; background: var(--cream); }
.process-head { max-width: none; margin-bottom: clamp(40px, 6vw, 76px); display: flex; flex-direction: column; gap: 16px; }
.process-head .section-lead { max-width: 60ch; }
.process-head .section-title { white-space: nowrap; font-size: clamp(2rem, 4.4vw, 3.4rem); }
@media (max-width: 720px) { .process-head .section-title { white-space: normal; } }
.process-grid { display: grid; grid-template-columns: minmax(200px, 320px) 1fr; gap: clamp(34px, 6vw, 90px); align-items: start; }

/* gezeichneter Rosenkranz (sepia → leuchtet golden auf beim Scrollen) */
.process-rosary { position: sticky; top: 96px; width: 100%; max-width: 320px; aspect-ratio: 768 / 1376; justify-self: center; }
.process-rosary-base, .process-rosary-gold {
  position: absolute; inset: 0; background: url("assets/rosary-thorn.png") center / contain no-repeat;
}
.process-rosary-base { opacity: .32; filter: grayscale(.45) brightness(1.05); }
.process-rosary-gold { clip-path: inset(100% 0 0 0); filter: drop-shadow(0 0 8px rgba(212,175,55,0.55)) saturate(1.45) brightness(1.04); }
@media (prefers-reduced-motion: reduce) { .process-rosary-gold { clip-path: inset(0 0 0 0); } }

.process-steps { list-style: none; position: relative; padding: 0; display: flex; flex-direction: column; gap: clamp(32px, 5vw, 60px); }
.pstep { position: relative; padding-left: 66px; }
.pstep-num {
  position: absolute; left: 0; top: -4px; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 1.05rem;
  background: var(--paper); border: 1px solid var(--line); color: var(--ink-soft);
  transition: all .4s var(--ease);
}
.pstep.is-active .pstep-num { background: var(--ink); color: var(--gold-bright); border-color: var(--ink); transform: scale(1.06); }
.pstep-body h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 12px; }
.pstep-body p { color: var(--ink-soft); max-width: 52ch; }
@media (max-width: 820px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-rosary { display: none; }
}

/* ── „Zusammenarbeit Sinn" — elegante Editorial-Variante (index v1) ── */
.qualify.qualify--elegant { background: var(--cream); padding: clamp(80px,12vh,160px) 0; }
.qualify.qualify--elegant::after { display: none !important; }
.qualify--elegant .qualify-head { text-align: center; max-width: 60ch; margin: 0 auto; }
.qe-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(44px,6vw,76px); border-top: 1px solid var(--line); }
.qe-item { padding: clamp(34px,3.6vw,54px) clamp(22px,2.6vw,42px); border-right: 1px solid var(--line); position: relative; }
.qe-item:last-child { border-right: none; }
.qe-num { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem,4vw,3.7rem); line-height: 1; color: var(--gold); letter-spacing: 0.03em; }
.qe-num::after { content: ""; display: block; width: 36px; height: 1px; background: var(--gold); margin: 20px 0 24px; opacity: .5; }
.qe-item h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.3rem,1.9vw,1.62rem); margin-bottom: 13px; letter-spacing: -0.01em; }
.qe-item p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.62; max-width: 40ch; }
@media (max-width: 820px) {
  .qe-grid { grid-template-columns: 1fr; }
  .qe-item { border-right: none; border-bottom: 1px solid var(--line); }
  .qe-item:last-child { border-bottom: none; }
}

/* ═══════════════════════ EIGENE BRANDS (Case-Cards) ═══════════════════════ */
.brands { padding: clamp(56px,9vh,120px) 0; }
.brands-head { text-align: center; max-width: 60ch; margin: 0 auto clamp(36px,5vw,60px); }
.brands-head .eyebrow { justify-content: center; }
.brands-list { display: flex; flex-direction: column; gap: clamp(20px,2.4vw,30px); }
.brands-list { perspective: none; }
.brand-card {
  display: grid; grid-template-columns: minmax(0,0.82fr) 1fr;
  background: var(--paper); border: 1px solid var(--line); border-radius: 24px; overflow: hidden;
  box-shadow: 0 34px 76px -38px rgba(80,55,20,0.32);
  position: sticky; /* Karten stapeln sich beim Scrollen übereinander */
}
.brands-list > .brand-card:nth-child(1) { top: clamp(84px,11vh,116px); }
.brands-list > .brand-card:nth-child(2) { top: clamp(98px,11vh,132px); }
.brands-list > .brand-card:nth-child(3) { top: clamp(112px,11vh,148px); }
.brands-list > .brand-card:nth-child(4) { top: clamp(126px,11vh,164px); }
@media (max-width: 860px) { .brand-card { position: static; } }
.brand-media { position: relative; min-height: 286px; background: var(--cream); }
.brand-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.brand-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(130% 116% at 50% 42%, transparent 48%, rgba(250,247,240,0.6) 100%),
              linear-gradient(0deg, rgba(20,15,10,0.16), transparent 38%);
  box-shadow: inset 0 0 60px rgba(250,247,240,0.55), inset 0 0 0 1px rgba(255,255,255,0.22);
}
.brand-logo-img { height: clamp(22px,2.2vw,28px); width: auto; max-width: 150px; object-fit: contain; display: block; margin-bottom: clamp(10px,1.3vw,16px); }
.brand-logo-img.is-tile { height: clamp(34px,3.2vw,44px); width: auto; border-radius: 9px; }
.brand-socials { position: absolute; left: clamp(16px,1.6vw,22px); bottom: clamp(16px,1.6vw,22px); z-index: 2; display: flex; flex-wrap: wrap; gap: 8px; max-width: 84%; }
.brand-social { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: var(--ink); background: rgba(252,250,246,0.94); border: 1px solid rgba(176,131,46,0.3); border-radius: 999px; padding: 6px 13px; -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); white-space: nowrap; box-shadow: 0 4px 14px rgba(0,0,0,0.2); font-feature-settings: "tnum" 1, "lnum" 1; }
.brand-social svg { display: block; flex: 0 0 auto; }
.brand-body { position: relative; padding: clamp(22px,2.4vw,38px); color: var(--ink); }
.brand-badge { position: absolute; top: clamp(20px,2.2vw,34px); right: clamp(20px,2.2vw,34px); font-size: .78rem; color: var(--gold); border: 1px solid rgba(176,131,46,0.5); border-radius: 999px; padding: 6px 15px; letter-spacing: .04em; }
.brand-card h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.4rem,1.9vw,1.9rem); line-height: 1.08; color: var(--ink); margin: 0 0 8px; }
.brand-lead { color: var(--ink-soft); font-size: .96rem; line-height: 1.45; margin: 0 0 clamp(14px,1.6vw,22px); max-width: 42ch; }
.brand-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: clamp(15px,1.9vw,24px); }
.brand-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); font-size: .94rem; line-height: 1.38; }
.brand-list li::before { content: ""; flex: 0 0 auto; width: 20px; height: 20px; margin-top: 1px; background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B0832E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E"); }
.brand-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(10px,1.2vw,16px); }
.brand-stat { background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: clamp(12px,1.3vw,18px); }
.brand-stat b { display: block; font-family: var(--sans); font-weight: 700; font-size: clamp(1.4rem,2vw,1.85rem); color: var(--ink); line-height: 1.05; letter-spacing: -0.015em; font-feature-settings: "tnum" 1, "lnum" 1; margin-bottom: 4px; }
.brand-stat span { font-size: .88rem; font-weight: 500; color: var(--ink-soft); line-height: 1.3; }
@media (max-width: 860px) {
  .brand-card { grid-template-columns: 1fr; }
  .brand-media { min-height: 220px; }
  .brand-card h3 { padding-right: 0; }
}

/* ═══════════════════════ TRUST SLIDER (Kundenprojekte) ═══════════════════════ */
/* ── Trust Slider: Kundenprojekte als Yunicorn-Collage-Kacheln ──
   Jede Kachel = angeschnittenes Fenster in ein dicht gepacktes Design-Board eines Kunden ── */
.trust { padding: clamp(46px,7vh,96px) 0 clamp(52px,8vh,104px); overflow: hidden; }
.trust-head { text-align: center; max-width: 60ch; margin: 0 auto clamp(32px,4vw,52px); padding: 0 24px; }
.trust-head .eyebrow { color: var(--gold); }
.trust-viewport { overflow: hidden; padding: 12px 0 20px; display: flex; flex-direction: column; gap: clamp(16px,2vw,30px); }
.trust-track { display: flex; width: max-content; will-change: transform; }
/* Bewegung wird per Scroll gesteuert (GSAP in main.js) — keine Auto-Animation */
.trust-track--b { transform: translate3d(-50%,0,0); }
.trust-head .section-title { white-space: nowrap; }
@media (max-width: 720px){ .trust-head .section-title { white-space: normal; } }
.trust-card { flex: 0 0 auto; width: min(366px, 76vw); margin-right: clamp(16px,1.8vw,28px); }
.trust-tag { display: none !important; }
.trust-tile {
  position: relative; aspect-ratio: 16 / 10; border-radius: 18px; overflow: hidden;
  background: radial-gradient(125% 130% at 78% 8%, #15433f 0%, #0a1d20 55%, #060f11 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 34px 64px -22px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.07);
}
.trust-tile--sf { background: radial-gradient(125% 130% at 78% 8%, #3c151a 0%, #19090c 55%, #0a0506 100%); }
.trust-tile--mm { background: radial-gradient(125% 130% at 78% 8%, #16314c 0%, #0a1622 55%, #05101a 100%); }
.trust-tile--jule { background: radial-gradient(125% 130% at 78% 8%, #4a2334 0%, #1d0d14 55%, #0e0509 100%); }
.trust-tile--fb { background: radial-gradient(125% 130% at 78% 8%, #4a3a1e 0%, #1d1509 55%, #0e0a04 100%); }
.trust-tile--pl { background: radial-gradient(125% 130% at 78% 8%, #33301f 0%, #131106 55%, #070602 100%); }
.trust-board {
  position: absolute; inset: 0; display: grid;
  grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 1fr);
  gap: 8px; padding: 10px; transform: rotate(-2deg) scale(1.1); transform-origin: center;
}
.trust-board img {
  width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 11px;
  border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 16px 34px rgba(0,0,0,0.5);
}
/* Website-Stacks: volle Screenshots, freigestellt (Schatten ist eingebrannt) */
.trust-board img.is-stack { object-fit: contain; border: none; box-shadow: none; border-radius: 0; transform: scale(1.12); }
.trust-tile::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(135% 110% at 50% -5%, transparent 52%, rgba(2,8,9,0.55));
}
.trust-cap { display: flex; align-items: baseline; gap: 10px; margin-top: 16px; padding: 0 4px; flex-wrap: wrap; }
.trust-cap b { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.trust-cap > span { color: var(--ink-soft); font-size: .85rem; }
.trust-cap .trust-tag { margin-left: auto; color: var(--gold); border: 1px solid rgba(176,131,46,0.4); padding: 4px 11px; border-radius: 999px; font-size: .72rem; white-space: nowrap; }
@media (max-width: 760px){ .trust-board { columns: 3; } .trust-cap .trust-tag { margin-left: 0; } }

/* ═══════════════════════ CASES (video testimonials) ═══════════════════════ */
.cases { padding: clamp(80px, 12vh, 160px) 0; background: var(--paper); border-top: 1px solid var(--line-soft); }
.cases-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(36px, 5vw, 60px); flex-wrap: wrap; }
.cases-cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 4px; transition: gap .25s var(--ease); }
.cases-cta:hover { gap: 13px; }
.vcases { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); }
.vcase { cursor: pointer; }
.vcase-media { position: relative; border-radius: var(--r-surface); overflow: hidden; aspect-ratio: 4/5; background: var(--cream); }
.vcase-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.vcase:hover .vcase-media img { transform: scale(1.05); }
.vcase-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,15,10,0.5), transparent 45%); }
.vcase-tag { position: absolute; left: 14px; bottom: 14px; z-index: 2; background: rgba(28,23,20,0.86); color: var(--paper); font-size: 0.82rem; font-weight: 500; padding: 7px 13px; border-radius: var(--r-pill); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.vcase-play { position: absolute; top: 50%; left: 50%; z-index: 2; transform: translate(-50%, -50%); width: 66px; height: 66px; border-radius: 50%; border: none; cursor: pointer; display: grid; place-items: center; padding-left: 4px; background: rgba(255,255,255,0.92); color: var(--ink); box-shadow: 0 10px 30px rgba(0,0,0,0.3); transition: transform .3s var(--ease), background .3s var(--ease); }
.vcase:hover .vcase-play { transform: translate(-50%, -50%) scale(1.1); background: var(--gold-bright); }
.vcase-info { padding: 16px 4px 0; }
.vcase-info h3 { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; }
.vcase-info p { color: var(--ink-faint); font-size: 0.92rem; margin-top: 2px; }

.vlb { position: fixed; inset: 0; z-index: 120; display: none; place-items: center; padding: 24px; }
.vlb.open { display: grid; }
.vlb-backdrop { position: absolute; inset: 0; background: rgba(10,8,6,0.92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.vlb-frame { position: relative; z-index: 1; width: min(960px, 92vw); }
.vlb-video { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; background: #000; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.vlb-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vlb-close { position: absolute; top: -44px; right: 0; background: none; border: none; color: #fff; cursor: pointer; padding: 8px; }

/* ═══════════════════════ TEAM (dark hover cards) ═══════════════════════ */
.team { padding: clamp(46px, 7vh, 92px) 0 clamp(54px, 9vh, 118px); background: var(--cream); }
.team-intro { max-width: 62ch; margin-bottom: clamp(22px, 3vw, 42px); display: flex; flex-direction: column; gap: 14px; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 2.6vw, 36px); max-width: 940px; margin: 0 auto; }
.tcard { background: #16140f; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; overflow: hidden; transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease); }
.tcard:hover { transform: translateY(-8px); border-color: rgba(212,175,55,0.5); box-shadow: 0 30px 70px rgba(0,0,0,0.45); }
.tcard-photo { aspect-ratio: 1/1; overflow: hidden; background: #0e0d0c; display: grid; place-items: center; }
.tcard-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tcard:hover .tcard-photo img { transform: scale(1.06); }
.tcard-mono { font-family: var(--serif); font-size: 4rem; font-weight: 600; color: var(--gold-bright); }
.tcard-body { padding: clamp(22px, 2.6vw, 34px); color: #EDE6DA; }
.tcard-area { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.tcard-body h3 { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; margin-top: 8px; color: #F4EEE3; }
.tcard-role { color: #A89F90; font-size: 0.9rem; margin-bottom: 14px; }
.tcard-bio { color: #C9BFB0; font-size: 0.98rem; line-height: 1.6; }
@media (max-width: 760px) { .vcases { grid-template-columns: 1fr; } .team-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════ CREED (Werte) ═══════════════════════ */
.creed { position: relative; padding: clamp(100px, 16vh, 200px) 0; overflow: hidden; color: var(--paper); text-align: center; }
.creed-bg { position: absolute; inset: 0; z-index: 0; background: url("assets/dome-fresco.png") center/cover no-repeat; }
.creed-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(20,14,10,0.74), rgba(20,14,10,0.82)); }
.creed-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.creed-line { font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.34; max-width: 26ch; color: #F3ECDD; }
.creed-verse { font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem, 1.8vw, 1.4rem); color: var(--gold-bright); }

/* Version B extras — faith as a leitmotif */
.creed-title { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.05; color: #F6EFDF; max-width: 18ch; }
.creed-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 44px); width: 100%; max-width: 920px; margin-top: 14px; }
.creed-value { text-align: center; padding-top: 26px; border-top: 1px solid rgba(212,175,55,0.4); }
.creed-value h3 { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--gold-bright); margin-bottom: 8px; }
.creed-value p { color: #D8CFC0; font-size: 0.96rem; line-height: 1.55; }
@media (max-width: 700px) { .creed-values { grid-template-columns: 1fr; gap: 0; } .creed-value { padding-block: 22px; } }

/* Scripture band — quiet full-width verse moment */
.scripture { background: var(--cream); padding: clamp(70px, 11vh, 140px) 0; text-align: center; border-block: 1px solid var(--line-soft); }
.scripture-verse { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.5rem, 3.4vw, 2.7rem); line-height: 1.35; max-width: 24ch; margin-inline: auto; color: var(--ink); }
.scripture-ref { display: block; margin-top: 22px; font-family: var(--sans); font-style: normal; font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ═══════════════════════ FAQ ═══════════════════════ */
.faq { padding: clamp(80px, 12vh, 160px) 0; background: var(--paper); border-top: 1px solid var(--line-soft); }
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq-aside { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 18px; }
.faq-cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 4px; width: fit-content; transition: gap .25s var(--ease); }
.faq-cta:hover { gap: 13px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; font-family: var(--serif); font-weight: 600; font-size: clamp(1.15rem, 2vw, 1.5rem); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; flex: 0 0 20px; width: 20px; height: 20px; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--gold); transition: transform .3s var(--ease); }
.faq-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-icon::after { top: 0; left: 9px; width: 2px; height: 20px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-answer { overflow: hidden; }
.faq-answer p { padding-bottom: 26px; color: var(--ink-soft); max-width: 64ch; }

/* ═══════════════════════ CTA ═══════════════════════ */
.cta { position: relative; padding: clamp(100px, 16vh, 210px) 0; overflow: hidden; color: var(--paper); text-align: center; }
.cta-bg { position: absolute; inset: 0; z-index: 0; background: var(--ink); }
.cta-bg::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(212,175,55,0.28), transparent 60%), radial-gradient(circle at 80% 0%, rgba(138,22,40,0.4), transparent 55%); }
.cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.cta-title { font-family: var(--serif); font-weight: 600; font-size: clamp(2.8rem, 8vw, 6rem); line-height: 0.98; }
.cta-body { color: #D8CFC2; max-width: 48ch; font-size: 1.1rem; }
.cta-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.cta .btn--solid { background: var(--paper); color: var(--ink); }
.cta .btn--solid:hover { background: var(--gold-bright); color: var(--ink); }
.cta-badge { display: inline-flex; align-items: center; gap: 9px; font-size: 0.92rem; color: #D8CFC2; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: #57c878; box-shadow: 0 0 0 0 rgba(87,200,120,0.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(87,200,120,0.55); } 70% { box-shadow: 0 0 0 11px rgba(87,200,120,0); } 100% { box-shadow: 0 0 0 0 rgba(87,200,120,0); } }

/* ═══════════════════════ FOOTER ═══════════════════════ */
.footer { background: var(--cream); border-top: 1px solid var(--line); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand { font-family: var(--serif); font-weight: 600; font-size: 1.1rem; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a, .footer-social a { color: var(--ink-soft); font-size: 0.9rem; transition: color .2s ease; }
.footer-legal a:hover, .footer-social a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 16px; }

/* ═══════════════════════ WHATSAPP FLOAT ═══════════════════════ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 85; width: 56px; height: 56px;
  display: grid; place-items: center; border-radius: 50%; background: #25D366; color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4); transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1024px) {
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .case--feature { grid-column: span 2; }
  .case--feature .case-media { aspect-ratio: 21/9; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .process-grid, .faq-grid { grid-template-columns: 1fr; }
  .process-aside, .faq-aside { position: static; }
  .team-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 18px; }
  .service-roman { font-size: 1.6rem; }
  .service-benefit { border-left: none; border-top: 2px solid var(--gold); padding-left: 0; padding-top: 18px; }
}
@media (max-width: 640px) {
  .proof-grid { grid-template-columns: 1fr; gap: 44px; }
  .cases-grid { grid-template-columns: 1fr; }
  .case--feature { grid-column: span 1; }
  .case--feature .case-media { aspect-ratio: 4/3; }
  .service-list { columns: 1; }
  .founder { grid-template-columns: 1fr; text-align: left; }
  .founder-photo { width: 110px; height: 130px; }
  .nav-cta { display: none; }
  .hero-veil { background: linear-gradient(to top, rgba(244,240,232,0.95) 8%, rgba(244,240,232,0.3) 42%, transparent 62%); }
}

/* ═══════════════════════ REDUCED MOTION ═══════════════════════ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal-up { opacity: 1 !important; transform: none !important; }
  .hero-title .line > span { transform: none !important; }
  .hero-layer--left, .hero-layer--right { clip-path: none; }
  .hero-layer--right { display: none; }
  .cursor-glow, .grain { display: none; }
}

/* ═══════════ QUALIFIKATION — 3 Säulen krachen ein ═══════════ */
/* Qualifikation — gleiche Karten-Optik wie die Leistungsumfang-Karten (.sc-card),
   auf minimalem Pergament-Hintergrund (passt zum Zeichenstil). Karten krachen ein. */
.qualify { position: relative; padding: clamp(80px,12vh,150px) 0 clamp(56px,9vh,100px); overflow: hidden;
  background: #e7d6b3 url("assets/qualify-bg.png") center/cover; }
.qualify::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 50%, transparent 55%, rgba(70,50,25,0.14)); }
.qualify-head, .pillars { position: relative; z-index: 1; }
.qualify-head { text-align: center; margin-bottom: clamp(46px,7vh,84px); }
.qualify-head .eyebrow { color: var(--gold); }
.qualify-head .section-title { color: var(--ink); }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,30px); align-items: stretch; }
.pillar { position: relative; display: flex; }
.pillar-card { width: 100%; transform-origin: bottom center; will-change: transform; }
.pillar .sc-stat { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--gold); }
.pillar-dust { position: absolute; bottom: -6px; width: 74px; height: 34px; border-radius: 50%; opacity: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(closest-side, rgba(212,175,55,0.55), rgba(212,175,55,0)); }
.pillar-dust--l { left: 4%; } .pillar-dust--r { right: 4%; }

.pillars:not(.in) .pillar-card { opacity: 0; transform: translateY(-135%); }
.pillars:not(.in) .pillar-dust { opacity: 0; }
.pillars.in .pillar:nth-child(1) .pillar-card { animation: pillarSlam .72s cubic-bezier(.62,.04,.98,.34) 0s backwards; }
.pillars.in .pillar:nth-child(2) .pillar-card { animation: pillarSlam .72s cubic-bezier(.62,.04,.98,.34) .22s backwards; }
.pillars.in .pillar:nth-child(3) .pillar-card { animation: pillarSlam .72s cubic-bezier(.62,.04,.98,.34) .44s backwards; }
@keyframes pillarSlam {
  0% { opacity: 0; transform: translateY(-135%) scaleY(1.06); }
  12% { opacity: 1; }
  60% { transform: translateY(0) scaleY(0.9); animation-timing-function: cubic-bezier(.2,1.7,.4,1); }
  76% { transform: translateY(-19px) scaleY(1.04); }
  90% { transform: translateY(0) scaleY(0.975); }
  100% { transform: translateY(0) scaleY(1); }
}
.pillars.in .pillar-dust { animation-duration: .8s; animation-timing-function: ease-out; animation-fill-mode: both; }
.pillars.in .pillar-dust--l { animation-name: dustL; }
.pillars.in .pillar-dust--r { animation-name: dustR; }
.pillars.in .pillar:nth-child(1) .pillar-dust { animation-delay: .45s; }
.pillars.in .pillar:nth-child(2) .pillar-dust { animation-delay: .67s; }
.pillars.in .pillar:nth-child(3) .pillar-dust { animation-delay: .89s; }
@keyframes dustL { 0%{opacity:0; transform: translate(0,0) scale(.4)} 25%{opacity:.8} 100%{opacity:0; transform: translate(-40px,-30px) scale(1.7)} }
@keyframes dustR { 0%{opacity:0; transform: translate(0,0) scale(.4)} 25%{opacity:.8} 100%{opacity:0; transform: translate(40px,-30px) scale(1.7)} }

@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; gap: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .pillars:not(.in) .pillar-card { opacity: 1; transform: none; }
  .pillar-card { animation: none !important; }
  .pillar-dust { display: none; }
}
