/* ============================================================
   KRYPTO.LEICHTGEMACHT — brand-v3.css
   Premium Brand · Warm-Dark, Cinematic Reduction (Creme + Espresso + Gold) · 2026
   ============================================================ */

:root {
  /* Paper / warm cream scale */
  --paper:    #F4EDE1;
  --paper-2:  #EBE0CE;   /* deeper band */
  --paper-3:  #FBF7EF;   /* lightest, cards */
  --paper-4:  #E4D7C1;   /* warm divider band */

  /* Ink (warm near-black — never pure black) */
  --ink:    #2A2620;
  --ink-2:  #6A6052;
  --ink-3:  #9A8F7E;

  /* Gold accent (refined, not neon) */
  --gold:      #B68A3E;
  --gold-2:    #9A6E27;
  --gold-deep: #7E5A1E;
  --gold-soft: #CDA968;
  --gold-tint: rgba(182, 138, 62, 0.12);
  --amber:     #CDA04A;
  --linen:     #F4EDE1;

  /* Dark (warm — espresso & deep noir, never pure black) */
  --espresso:   #211C16;
  --espresso-2: #2C261E;
  --noir:       #14110C;
  --noir-2:     #1C1812;

  /* Warm whites used on dark */
  --on-dark:    rgba(244, 237, 225, 0.96);
  --on-dark-2:  rgba(244, 237, 225, 0.66);
  --on-dark-3:  rgba(244, 237, 225, 0.42);

  /* Lines */
  --line:   rgba(42, 38, 32, 0.14);
  --line-2: rgba(42, 38, 32, 0.08);
  --line-d: rgba(244, 237, 225, 0.12);

  /* Type */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Instrument Sans', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.5, 1);

  /* Layout */
  --container: min(1280px, 90vw);
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(6rem, 13vw, 12rem);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--paper-3); }

/* Fine grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.container { width: var(--container); margin: 0 auto; }

/* ---- Shared editorial primitives ---- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.is-center::before { display: none; }

.kicker {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-3);
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; line-height: 1.06; }

.lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 46ch;
}

/* Reveal base (JS adds .is-in) */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease-expo), transform 1.1s var(--ease-expo); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-d="1"] { transition-delay: 0.08s; }
[data-reveal-d="2"] { transition-delay: 0.16s; }
[data-reveal-d="3"] { transition-delay: 0.24s; }
[data-reveal-d="4"] { transition-delay: 0.32s; }

/* line mask reveal for headlines */
.mask { display: block; overflow: hidden; padding-bottom: 0.32em; margin-bottom: -0.32em; }
.mask > span { display: block; transform: translateY(132%); transition: transform 1.05s var(--ease-expo); }
.mask.is-in > span { transform: none; }
.mask-2 > span { transition-delay: 0.09s; }
.mask-3 > span { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .mask > span { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   PRELOADER (Ladebalken — beibehalten)
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--noir);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}
.preloader__mark {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  opacity: 0;
  transform: translateY(12px);
}
.pl-mono {
  width: 50px; height: 46px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}
.pl-mono i { display: block; width: 1px; height: 15px; background: var(--gold); opacity: 0.55; }
.preloader__word {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--on-dark);
}
.preloader__word .dot { color: var(--gold-soft); }
.preloader__bar {
  width: min(340px, 64vw);
  height: 2px;
  background: rgba(244, 237, 225, 0.14);
  position: relative;
  overflow: hidden;
}
.preloader__fill {
  position: absolute; inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-soft));
}
.preloader__count {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--on-dark-3);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   PAGE reveal
   ============================================================ */
.page { opacity: 0; transition: opacity 0.8s var(--ease-smooth); }
.page.is-revealed { opacity: 1; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 200;
  transition: background 0.5s var(--ease-smooth), backdrop-filter 0.5s, border-color 0.5s, padding 0.4s;
  border-bottom: 1px solid transparent;
  opacity: 0;
}
.nav::before {
  content: "";
  position: absolute; inset: 0 0 auto 0;
  height: 180%;
  background: linear-gradient(to bottom, rgba(16,13,7,0.55) 0%, rgba(16,13,7,0.32) 45%, rgba(16,13,7,0) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s var(--ease-smooth);
  z-index: -1;
}
.nav.is-scrolled::before { opacity: 0; }
.nav:not(.is-scrolled) .nav__link,
.nav:not(.is-scrolled) .nav__cta {
  color: #F5F0E8;
  text-shadow: 0 1px 3px rgba(16, 13, 7, 0.45), 0 2px 14px rgba(16, 13, 7, 0.28);
}
.nav:not(.is-scrolled) .nav__link:hover { color: #F5F0E8; }
.nav:not(.is-scrolled) .nav__cta { border-color: rgba(245, 240, 232, 0.6); background: transparent; }
.nav.is-scrolled {
  background: rgba(244, 237, 225, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line-2);
}
.nav__inner {
  width: var(--container); margin: 0 auto;
  padding: 1.55rem 0;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.4s var(--ease-smooth);
}
.nav.is-scrolled .nav__inner { padding: 1.05rem 0; }


.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mono {
  width: 42px; height: 40px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-family: var(--serif);
  font-size: 0.86rem;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  flex: none;
  white-space: nowrap;
  line-height: 1;
}
.brand__mono i { display: block; width: 1px; height: 13px; background: var(--gold); opacity: 0.55; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--on-dark);
  line-height: 1.05;
  letter-spacing: 0.01em;
  transition: color 0.5s var(--ease-smooth);
}
.brand__name .dot { color: var(--gold); }

.nav__links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav__link {
  font-family: var(--sans);
  font-size: 0.74rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--on-dark-2);
  position: relative;
  white-space: nowrap;
  transition: color 0.25s var(--ease-smooth);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.35s var(--ease-expo);
}
.nav__link:hover { color: var(--on-dark); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  font-family: var(--sans);
  font-size: 0.8rem; font-weight: 500;
  text-transform: none; letter-spacing: 0.01em;
  color: var(--gold-soft);
  background: transparent;
  border: 1px solid var(--gold);
  padding: 0.6rem 1.25rem;
  border-radius: 1px;
  white-space: nowrap;
  transition: background 0.3s var(--ease-smooth), color 0.3s, border-color 0.3s, transform 0.3s;
}
.nav__cta:hover { background: var(--gold); color: var(--noir); border-color: var(--gold); }

.nav__burger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 6px 0; }
.nav__burger span { display: block; height: 1.5px; width: 100%; background: var(--on-dark); transition: transform 0.4s var(--ease-expo), opacity 0.3s, background 0.4s; }

/* Scrolled onto cream — flip nav to dark-on-light */
.nav.is-scrolled .brand__name { color: var(--ink); }
.nav.is-scrolled .brand__mono { color: var(--gold-2); }
.nav.is-scrolled .nav__link { color: var(--ink-2); }
.nav.is-scrolled .nav__link:hover { color: var(--ink); }
.nav.is-scrolled .nav__cta { color: var(--gold-2); background: transparent; border-color: var(--gold); }
.nav.is-scrolled .nav__cta:hover { background: var(--gold-2); color: var(--paper-3); border-color: var(--gold-2); }
.nav.is-scrolled .nav__burger span { background: var(--ink); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: var(--paper);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.2rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease-smooth), visibility 0.5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__link {
  font-family: var(--serif); font-size: clamp(2rem, 8vw, 3.2rem); color: var(--ink);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo);
}
.mobile-menu.is-open .mobile-menu__link { opacity: 1; transform: none; }
.mobile-menu.is-open .mobile-menu__link:nth-child(1){transition-delay:.08s}
.mobile-menu.is-open .mobile-menu__link:nth-child(2){transition-delay:.14s}
.mobile-menu.is-open .mobile-menu__link:nth-child(3){transition-delay:.2s}
.mobile-menu.is-open .mobile-menu__link:nth-child(4){transition-delay:.26s}
.mobile-menu__cta { margin-top: 1rem; font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing:.14em; color: var(--paper-3); background: var(--ink); padding: .9rem 1.8rem; }
.mobile-menu__close { position: absolute; top: 1.6rem; right: var(--gutter); width: 30px; height: 30px; }
.mobile-menu__close::before, .mobile-menu__close::after { content:""; position:absolute; top:50%; left:0; width:100%; height:1.5px; background: var(--ink); }
.mobile-menu__close::before { transform: rotate(45deg); }
.mobile-menu__close::after { transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ============================================================
   HERO (header)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--noir);
  color: var(--on-dark);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero__media img {
  width: 100%; height: 116%;
  object-fit: cover; object-position: 78% 38%;
  position: absolute; top: -8%; left: 0;
  filter: saturate(1.04) brightness(0.97) contrast(1.02);
  transform: scale(1.12);
  transition: transform 1.9s var(--ease-expo);
}
.page.is-revealed .hero__media img { transform: scale(1); }
/* legibility scrim — dark on the text side, warm image breathes right */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(95deg, var(--noir) 20%, rgba(20,16,11,0.86) 40%, rgba(20,16,11,0.45) 60%, rgba(20,16,11,0.12) 100%),
    linear-gradient(to top, rgba(16,12,8,0.92) 0%, rgba(16,12,8,0.1) 40%, rgba(16,12,8,0) 60%),
    radial-gradient(95% 70% at 82% 30%, rgba(182,138,62,0.16), rgba(20,16,11,0) 55%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: var(--container); margin: 0 auto;
  padding-top: 8rem;
}
.hero__content { max-width: 820px; }
.hero__eyebrow { margin-bottom: 1.8rem; opacity: 0; color: var(--gold-soft); }
.hero__headline {
  font-size: clamp(2.9rem, 7.4vw, 6.6rem);
  line-height: 1.02;
  color: var(--on-dark);
  margin-bottom: 2rem;
}
.hero__headline .kinetic {
  display: inline-block; position: relative; overflow: hidden;
  vertical-align: bottom; text-align: left;
  box-sizing: content-box;
  height: 1.05em; line-height: 1.05; min-width: 4.55em;
  padding-bottom: 0.34em; margin-bottom: -0.34em;
}
.hero__headline .kinetic__word { display: inline-block; color: var(--gold-soft); font-style: italic; white-space: nowrap; will-change: transform, opacity; }
.hero__sub {
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  font-weight: 400;
  line-height: 1.65; color: var(--on-dark-2);
  max-width: 42ch; margin-bottom: 2.4rem;
  opacity: 0;
}
.hero__actions { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; opacity: 0; }
.hero__cta {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-size: 0.96rem; font-weight: 500;
  letter-spacing: 0.005em; padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth);
}
.hero__cta .btn__arrow { transition: transform 0.35s var(--ease-expo); }
.hero__cta:hover .btn__arrow { transform: translateX(5px); }
.hero__cta--primary { color: var(--gold-soft); border-bottom-color: rgba(205,169,104,0.4); }
.hero__cta--primary:hover { color: var(--gold); border-bottom-color: var(--gold); }
.hero__cta--ghost { color: var(--on-dark-2); }
.hero__cta--ghost:hover { color: var(--on-dark); border-bottom-color: rgba(244,237,225,0.38); }
.hero__meta-line {
  margin-top: 2rem; opacity: 0;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.13em; color: var(--gold-soft);
}

.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.13em;
}
.btn--primary {
  background: var(--ink); color: var(--paper-3);
  padding: 1.05rem 2.1rem; border-radius: 1px;
  transition: background 0.3s var(--ease-smooth), box-shadow 0.4s;
  will-change: transform;
}
.btn--primary:hover { background: var(--gold-2); box-shadow: 0 14px 34px rgba(154,110,39,0.28); }
.hero .btn--primary { background: var(--gold-2); color: var(--paper-3); }
.hero .btn--primary:hover { background: var(--gold); box-shadow: 0 16px 42px rgba(182,138,62,0.36); }
.btn--ghost {
  color: var(--ink); padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s, color 0.3s;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.hero .btn--ghost { color: var(--on-dark); border-color: rgba(244,237,225,0.32); }
.hero .btn--ghost:hover { color: var(--gold-soft); border-color: var(--gold-soft); }
.btn__arrow { transition: transform 0.35s var(--ease-expo); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* founders + rating cluster in header */
.hero__founders {
  display: flex; align-items: center; gap: 1.1rem;
  margin-top: 3.4rem; opacity: 0; flex-wrap: wrap;
}
.hero__avatars { display: flex; }
.hero__avatars img {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; object-position: center 22%;
  border: 2px solid var(--noir);
  margin-left: -12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.hero__avatars img:first-child { margin-left: 0; }
.hero__founders-meta { display: flex; flex-direction: column; gap: 0.2rem; }
.hero__stars { color: var(--gold-soft); font-size: 0.8rem; letter-spacing: 0.16em; line-height: 1; }
.hero__founders-text { font-size: 0.82rem; color: var(--on-dark-2); line-height: 1.45; }
.hero__founders-text strong { color: var(--on-dark); font-weight: 600; }

/* Trust bar (between hero and value strip) */
.trustbar {
  display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap;
  padding: 0.875rem 0;
  background: rgba(16,13,7,0.95);
  border-top: 1px solid rgba(245,240,232,0.06);
  border-bottom: 1px solid rgba(245,240,232,0.06);
}
.trustbar__item {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--sans); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(245,240,232,0.4);
}
.trustbar__stars { color: var(--amber); font-size: 0.72rem; letter-spacing: 0.12em; line-height: 1; }
.trustbar__logo { height: 22px; width: auto; opacity: 0.7; }
.trustbar__sep { width: 1px; height: 20px; background: rgba(245,240,232,0.08); flex: none; }
@media (max-width: 768px) {
  .trustbar { gap: 1.5rem; }
  .trustbar__since, .trustbar__sep--last { display: none; }
}

.hero__scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  font-family: var(--sans); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--on-dark-3);
}
.hero__scroll .line { width: 1px; height: 46px; background: var(--gold-soft); opacity: 0.6; transform-origin: top; }

@media (max-width: 880px) {
  .hero__media img { object-position: 72% 38%; }
  .hero__scrim { background: linear-gradient(to top, var(--noir) 12%, rgba(20,16,11,0.88) 44%, rgba(20,16,11,0.6) 72%, rgba(20,16,11,0.45) 100%); }
}

/* ============================================================
   VALUE STRIP (marquee unter Hero)
   ============================================================ */
.strip {
  border-top: 1px solid rgba(244,237,225,0.08);
  border-bottom: 1px solid rgba(244,237,225,0.08);
  background: var(--espresso);
  overflow: hidden;
  padding: 0.7rem 0;
}
.strip__track {
  display: flex; gap: 2.6rem; width: max-content;
  animation: marquee 44s linear infinite;
}
.strip__item {
  display: inline-flex; align-items: center; gap: 0.85rem;
  font-family: var(--serif); font-size: clamp(0.82rem, 1.3vw, 1.05rem); color: var(--on-dark-2);
  white-space: nowrap; letter-spacing: 0.01em;
}
.strip__item .sep { color: var(--gold-soft); font-size: 0.62em; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip__track { animation: none; } }

/* ============================================================
   HALTUNG (manifesto + team)
   ============================================================ */
/* ============================================================
   WARUM WIR DAS MACHEN (split-screen)
   ============================================================ */
.why {
  position: relative; background: var(--ink);
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  overflow: hidden;
}
.why::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 8rem; z-index: 2;
  background: linear-gradient(to bottom, var(--linen) 0%, var(--ink) 100%);
  pointer-events: none;
}
.why::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 8rem; z-index: 2;
  background: linear-gradient(to bottom, var(--ink) 0%, var(--linen) 100%);
  pointer-events: none;
}
.why__grid {
  position: relative; z-index: 1;
  width: min(1200px, 92vw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1px 1fr; align-items: stretch;
}
.why__half { display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 8vw, 8rem); }
.why__quote { padding-left: 0; }
.why__story { padding-right: 0; }
.why__label {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(205,160,74,0.6); margin-bottom: 2rem;
}
.why__blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.3;
  color: rgba(245,240,232,0.88);
}
.why__accent { color: var(--amber); }
.why__source {
  display: flex; align-items: center; gap: 1rem; margin-top: 2rem;
  font-family: var(--sans); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(245,240,232,0.25);
}
.why__source::before { content: ""; width: 20px; height: 2px; background: var(--amber); flex: none; }
.why__divider {
  background: rgba(205,160,74,0.2);
  transform: scaleY(0); transform-origin: top;
  transition: transform 1s var(--ease-expo) 0.3s;
}
.why__divider.is-in { transform: scaleY(1); }
.why__para {
  font-family: var(--sans); font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400; line-height: 1.9; color: rgba(245,240,232,0.45);
}
.why__para + .why__para { margin-top: 1.5rem; }
.why__link {
  display: inline-block; margin-top: 2rem; align-self: flex-start;
  font-family: var(--sans); font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(245,240,232,0.3);
  border-bottom: 1px solid rgba(245,240,232,0.12); padding-bottom: 2px;
  transition: color 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth);
}
.why__link:hover { color: rgba(245,240,232,0.7); border-color: rgba(245,240,232,0.3); }

/* directional reveals (hook IntersectionObserver via data-reveal) */
.why__quote[data-reveal] { opacity: 0; transform: translateX(-30px); transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo); }
.why__story[data-reveal] { opacity: 0; transform: translateX(30px); transition: opacity 0.9s var(--ease-expo) 0.15s, transform 0.9s var(--ease-expo) 0.15s; }
.why__quote[data-reveal].is-in, .why__story[data-reveal].is-in { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .why__grid { grid-template-columns: none; }
  .why__half { padding: clamp(2.5rem, 7vw, 4rem) 0; }
  .why__quote { padding-bottom: 3rem; }
  .why__divider { height: 1px; width: 100%; transform-origin: left; transform: scaleX(0); }
  .why__divider.is-in { transform: scaleX(1); }
  .why__story[data-reveal] { transform: translateY(30px); }
}
@media (prefers-reduced-motion: reduce) {
  .why__quote[data-reveal], .why__story[data-reveal] { opacity: 1 !important; transform: none !important; }
  .why__divider { transform: scaleY(1) scaleX(1) !important; }
}

/* ============================================================
   RESEARCH-BAND (atmosphärisches Vollbild mit Parallax)
   ============================================================ */
.research-band {
  position: relative;
  width: 100%; height: 70vh;
  overflow: hidden;
  background-image: url("../assets/research-band.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
.research-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(16,13,7,0.3), rgba(16,13,7,0) 28%),
    linear-gradient(to bottom, rgba(245,240,232,0) 72%, rgba(245,240,232,0.4));
}
.research-band[data-reveal] {
  opacity: 0;
  transition: opacity 1.2s var(--ease-smooth);
}
.research-band[data-reveal].is-in { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .research-band[data-reveal] { opacity: 1; }
}

/* ============================================================
   HALTUNG (manifesto + team)
   ============================================================ */
.haltung { padding: 0 0 clamp(3rem, 5vw, 6rem); background: var(--paper); }

/* Haltung — dark horizontal card band */
.haltung-band {
  position: relative; background: var(--ink);
  padding: clamp(2.25rem, 4vw, 3.5rem) 0 clamp(5rem, 9vw, 8rem);
}
.haltung-band::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 96px;
  background: linear-gradient(to bottom, var(--espresso), var(--ink));
  pointer-events: none;
}
.haltung-band::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(to bottom, rgba(42,38,32,0), var(--paper));
  pointer-events: none;
}
.haltung-band__inner { position: relative; z-index: 1; width: var(--container); margin: 0 auto; }
.haltung-band__label {
  display: inline-flex; align-items: center; gap: 0.8rem; margin-bottom: 2.6rem;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold-soft);
}
.haltung-band__label::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.haltung-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.hcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(205,160,74,0.2);
  border-radius: 4px; padding: 3rem;
  transition: border-color 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth);
}
.hcard:hover { border-color: rgba(205,160,74,0.5); background: rgba(255,255,255,0.06); }
.hcard--accent { background: rgba(205,160,74,0.08); border-color: rgba(205,160,74,0.4); }
.hcard--accent .hcard__stmt { color: var(--gold-soft); font-style: italic; }
.hcard--accent:hover { border-color: rgba(205,160,74,0.55); background: rgba(205,160,74,0.1); }
.hcard__num { font-family: var(--serif); font-size: 5rem; line-height: 1; color: var(--gold); opacity: 0.3; margin-bottom: 1.4rem; }
.hcard__stmt { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 400; line-height: 1.15; color: var(--on-dark); margin-bottom: 1rem; }
.hcard__sub { font-family: var(--sans); font-size: 0.9rem; line-height: 1.8; color: rgba(245,240,232,0.45); }
@media (max-width: 820px) {
  .haltung-cards {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 80%;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
  }
  .hcard { scroll-snap-align: start; }
}

.team {
  position: relative;
  width: var(--container); margin: 2.75rem auto 0;
  border-top: 1px solid var(--line);
  padding-top: 3.4rem; padding-bottom: 3.4rem;
  background-image: url("../assets/team-bg.jpg");
  background-size: cover; background-position: center; background-attachment: fixed;
}
.team::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: rgba(245,240,232,0.88); pointer-events: none;
}
.team__head, .team__rows, .team__more { position: relative; z-index: 1; }
.team__head { margin-bottom: 1.85rem; max-width: 64ch; }
.team__head .kicker { color: var(--gold-2); }
.team__lead {
  margin-top: 1.2rem; font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.16;
  color: var(--ink); letter-spacing: -0.01em;
}
.team__lead em { font-style: italic; color: var(--gold-2); }
.team__rows { display: flex; flex-direction: column; }
.trow {
  display: grid; grid-template-columns: 30% 40% 30%; gap: 2rem;
  align-items: center; padding: 2.4rem 0;
  position: relative;
}
.trow + .trow { border-top: 1px solid rgba(16,13,7,0.08); }
.trow__name, .trow__body { position: relative; z-index: 1; }
.trow__num {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%) translateX(20px);
  font-family: var(--serif); font-size: 8rem; line-height: 1;
  color: var(--amber); opacity: 0; pointer-events: none; z-index: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.trow.is-in .trow__num { opacity: 0.08; transform: translateY(-50%) translateX(0); }
.trow:nth-child(1) .trow__num { transition-delay: 0s; }
.trow:nth-child(2) .trow__num { transition-delay: 0.2s; }
.trow:nth-child(3) .trow__num { transition-delay: 0.4s; }
.trow:hover .trow__num { opacity: 0.14; transition: opacity 0.3s ease; }
@media (prefers-reduced-motion: reduce) { .trow__num { transition: none; } }
.trow__name { font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 4rem); line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
.trow__role { font-family: var(--sans); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-2); }
.trow__quote { font-family: var(--sans); font-style: italic; font-size: 0.85rem; line-height: 1.7; color: rgba(16,13,7,0.55); margin-top: 0.9rem; max-width: 46ch; }
.team__more {
  display: block; width: fit-content; margin: 3rem auto 0;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-2);
  border-bottom: 1px solid transparent; padding-bottom: 3px;
  transition: border-color 0.3s var(--ease-smooth), color 0.3s;
}
.team__more:hover { color: var(--gold); border-bottom-color: var(--gold); }

@media (max-width: 760px) {
  .trow { grid-template-columns: 1fr; gap: 0.9rem; }
  .trow__space { display: none; }
}

/* ============================================================
   FEATURE ROWS (Marktproblem / Sichtweise)
   ============================================================ */
.feature { padding: var(--section-y) 0; }
.feature--tint { background: var(--paper-2); }
.feature__container {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.feature--flip .feature__media { order: -1; }
.feature__media {
  position: relative; overflow: hidden; border-radius: 2px;
  aspect-ratio: 4/3;
  box-shadow: 0 30px 70px -30px rgba(42,38,32,0.34);
}
.feature__media img {
  width: 100%; height: 112%; object-fit: cover; position: absolute; top: -6%; left: 0;
  will-change: transform;
}
.feature__num {
  font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold); opacity: 0.5; line-height: 1; margin-bottom: 1.4rem;
}
.feature__title {
  font-size: clamp(1.9rem, 3.6vw, 3rem); color: var(--ink); margin-bottom: 1.6rem; max-width: 16ch;
}
.feature__body { display: flex; flex-direction: column; gap: 1.1rem; max-width: 46ch; }
.feature__body p { font-size: clamp(1rem, 1.35vw, 1.1rem); line-height: 1.8; color: var(--ink-2); }
.feature__body strong { color: var(--ink); font-weight: 600; }

/* dark feature band — mid-page contrast anchor; bright image reads as a lit panel */
.feature--dark { background: var(--espresso); }
.feature--dark .feature__num { color: var(--gold-soft); opacity: 0.75; }
.feature--dark .feature__title { color: var(--on-dark); }
.feature--dark .feature__body p { color: var(--on-dark-2); }
.feature--dark .feature__body strong { color: var(--on-dark); }
.feature--dark .feature__media { box-shadow: 0 44px 100px -34px rgba(0,0,0,0.65); }

@media (max-width: 880px) {
  .feature__container { grid-template-columns: 1fr; gap: 2.4rem; }
  .feature--flip .feature__media { order: 0; }
}

/* ============================================================
   THEMEN GRID
   ============================================================ */
/* ============================================================
   WEGE (3 offerings)
   ============================================================ */
.wege { padding: clamp(3rem, 6.5vw, 6rem) 0 clamp(3rem, 6vw, 5rem); background: var(--paper); }
.wege__head { width: var(--container); margin: 0 auto 4rem; }
.wege__head .eyebrow { margin-bottom: 1.6rem; }
.wege__title { font-size: clamp(1.9rem, 4vw, 3.2rem); color: var(--ink); max-width: 16ch; }
.bento { width: var(--container); margin: 0 auto; }
.bento__top { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.bento-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(16,13,7,0.07);
  border-radius: 4px; padding: 2.5rem;
  display: flex; flex-direction: column;
}
.bento-card__label { font-family: var(--sans); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-2); }
.bento-card__title { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 400; color: var(--ink); margin-top: 1rem; }
.bento-card__text { font-family: var(--sans); font-size: 0.875rem; line-height: 1.8; color: rgba(16,13,7,0.55); margin-top: 0.9rem; }
.bento-card__link {
  display: inline-flex; align-items: center; gap: 0.5rem; align-self: flex-start;
  margin-top: 1.6rem; font-family: var(--sans); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.13em; color: var(--gold-2);
  transition: gap 0.3s var(--ease-smooth);
}
.bento-card__link:hover { gap: 0.95rem; }

.bento-feature {
  position: relative; overflow: hidden;
  margin-top: 1.25rem; min-height: 280px;
  background-color: var(--ink);
  background-image: url("../assets/profi-meeting.jpg");
  background-size: cover; background-position: center;
  border-radius: 4px; padding: 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.bento-feature::after { content: ""; position: absolute; inset: 0; z-index: 0; background: rgba(16,13,7,0.75); pointer-events: none; }
.bento-feature::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--amber); border-radius: 4px 0 0 4px; z-index: 2; pointer-events: none; }
.bento-feature__bar { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--amber); border-radius: 0; z-index: 2; }
.bento-feature > :not(.bento-feature__bar) { position: relative; z-index: 1; }
.bento-feature__label { font-family: var(--sans); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(205,160,74,0.7); margin-bottom: 1rem; }
.bento-feature__title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: rgba(245,240,232,0.92); }
.bento-feature__text { font-family: var(--sans); font-size: clamp(0.875rem, 1.5vw, 1rem); line-height: 1.7; color: rgba(245,240,232,0.5); max-width: 500px; margin-top: 1rem; }
.bento-feature__link {
  display: inline-flex; align-items: center; gap: 0.5rem; align-self: flex-start;
  margin-top: 2rem; font-family: var(--sans); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.13em; color: var(--amber);
  transition: gap 0.3s var(--ease-smooth);
}
.bento-feature__link:hover { gap: 0.95rem; }

@media (max-width: 760px) {
  .bento__top { grid-template-columns: 1fr; }
}

/* ============================================================
   COMMUNITY (split image + text)
   ============================================================ */
.community {
  position: relative; padding: clamp(5rem, 10vw, 8rem) 0; overflow: hidden;
  background-image: url("../assets/thomas-photo.jpg");
  background-size: cover; background-position: center top;
}
.community__overlay { position: absolute; inset: 0; z-index: 0; background: rgba(16,13,7,0.82); pointer-events: none; }
.community__fade {
  position: absolute; left: 0; right: 0; top: 0; height: 6rem; z-index: 2; pointer-events: none;
  background: linear-gradient(to bottom, var(--linen) 0%, transparent 100%);
}
.community__container {
  position: relative; z-index: 1;
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(4rem, 8vw, 10rem);
  align-items: center;
}

/* Left column */
.community__label {
  font-family: var(--sans); font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: rgba(205,160,74,0.6); margin-bottom: 1.5rem;
}
.community__statement {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.2; color: rgba(245,240,232,0.88);
}
.community__statement em { color: var(--amber); font-style: italic; }
.community__sub {
  font-family: var(--sans); font-size: 0.9rem; color: rgba(245,240,232,0.4);
  line-height: 1.8; max-width: 400px; margin-top: 1.5rem;
}
.community__followers {
  display: flex; align-items: center; gap: 1rem; margin-top: 2rem;
  font-family: var(--sans); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(245,240,232,0.25);
}
.community__followers::before { content: ""; width: 2px; height: 16px; background: var(--amber); flex: none; }
.community__cta {
  display: inline-flex; margin-top: 1.5rem;
  font-family: var(--sans); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--amber);
  border-bottom: 1px solid rgba(205,160,74,0.3); padding-bottom: 2px;
  transition: color 0.3s var(--ease-smooth);
}
.community__cta:hover { color: var(--gold-2); }

/* Right column — stylized LinkedIn post */
.li-post {
  background: rgba(245,240,232,0.06); border: 1px solid rgba(245,240,232,0.12);
  border-radius: 6px; padding: 2.5rem;
}
.li-post__head { display: flex; align-items: center; gap: 0.85rem; }
.li-post__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background-image: url("../assets/thomas-photo.jpg");
  background-size: cover; background-position: center top;
  border: 1px solid rgba(205,160,74,0.3);
}
.li-post__id { display: flex; flex-direction: column; gap: 0.15rem; }
.li-post__name { font-family: var(--sans); font-size: 0.9rem; color: rgba(245,240,232,0.8); }
.li-post__handle { font-family: var(--sans); font-size: 0.72rem; color: rgba(245,240,232,0.35); }
.li-post__body { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.5rem; }
.li-post__body p {
  font-family: var(--serif); font-size: 0.95rem; font-style: italic;
  color: rgba(245,240,232,0.6); line-height: 1.9;
}
.li-post__foot {
  font-family: var(--sans); font-size: 0.65rem; color: rgba(245,240,232,0.2);
  margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid rgba(245,240,232,0.07);
}

/* directional reveals */
.community__left[data-reveal] { opacity: 0; transform: translateX(-30px); transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo); }
.community__right[data-reveal] { opacity: 0; transform: translateX(30px); transition: opacity 0.9s var(--ease-expo) 0.15s, transform 0.9s var(--ease-expo) 0.15s; }
.community__left[data-reveal].is-in, .community__right[data-reveal].is-in { opacity: 1; transform: none; }

@media (max-width: 880px) {
  .community__container { grid-template-columns: 1fr; gap: 2.6rem; }
  .community__right[data-reveal] { transform: translateY(30px); }
}
@media (prefers-reduced-motion: reduce) {
  .community__left[data-reveal], .community__right[data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   ZITAT
   ============================================================ */
.zitat { padding: var(--section-y) 0 5rem; background: var(--ink); position: relative; overflow: hidden; }
.zitat__fade { position: absolute; left: 0; right: 0; height: 8rem; z-index: 2; pointer-events: none; }
.zitat__fade--top { top: 0; background: linear-gradient(to bottom, var(--linen) 0%, var(--ink) 100%); }
.zitat__fade--bottom { bottom: 0; height: 4rem; background: linear-gradient(to bottom, var(--ink) 0%, var(--linen) 100%); }
.zitat::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 60% at 50% 0%, rgba(182,138,62,0.14), rgba(33,28,22,0) 60%); pointer-events: none; }
.zitat__container { width: min(900px, 88vw); margin: 0 auto; text-align: center; position: relative; z-index: 3; }
.zitat__mark { font-family: var(--serif); font-size: 7rem; line-height: 0.6; color: var(--gold-soft); opacity: 0.42; display: block; }
.zitat__text { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3vw, 2.4rem); line-height: 1.5; color: var(--on-dark); margin-top: 1rem; }
.zitat__source { display: inline-flex; align-items: center; gap: 0.9rem; margin-top: 2.4rem; font-family: var(--sans); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--on-dark-2); }
.zitat__source::before { content: ""; width: 24px; height: 1px; background: var(--gold-soft); }
.zitat__link { display: inline-block; margin-top: 2rem; font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--gold-soft); border-bottom: 1px solid rgba(205,169,104,0.3); padding-bottom: 3px; transition: border-color 0.3s; }
.zitat__link:hover { border-color: var(--gold-soft); }
.zitat__cite {
  position: relative; z-index: 10;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  margin-top: 2rem; font-family: var(--sans); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.zitat__cite::before { content: ""; width: 2px; height: 16px; background: var(--amber); flex: none; margin-right: 1rem; }
.zitat__cite-name { color: rgba(245,240,232,0.35); }
.zitat__cite-link { color: var(--amber); transition: color 0.3s var(--ease-smooth); }
.zitat__cite:hover .zitat__cite-link { color: var(--gold-deep); }

/* ============================================================
   ENTDECKEN GRID (image tiles)
   ============================================================ */
.entdecken { padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4rem); background: var(--paper); }
.entdecken__head { width: var(--container); margin: 0 auto 2rem; display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.entdecken__title { font-size: clamp(1.9rem, 4vw, 3.2rem); color: var(--ink); max-width: 14ch; }
.entdecken__grid { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.tile {
  position: relative; overflow: hidden; border-radius: 3px;
  aspect-ratio: 16/10; display: flex; align-items: flex-end;
  padding: 2.2rem; color: var(--paper-3);
  will-change: transform;
  box-shadow: 0 26px 60px -34px rgba(20,16,11,0.7);
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; z-index: 0; }
.tile::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(28,23,17,0.82) 4%, rgba(28,23,17,0.2) 55%, rgba(28,23,17,0.05)); transition: opacity 0.4s ease; }
.tile:hover img { transform: scale(1.05); }
.tile:hover::after { opacity: 0.9; }
.tile__inner { position: relative; z-index: 2; transition: transform 0.5s var(--ease-expo); }
.tile:hover .tile__inner { transform: translateY(-4px); }
.tile__kicker { font-family: var(--sans); font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-soft); margin-bottom: 0.7rem; }
/* "Geh tiefer." — Labels auf warmen Bildern lesbarer: Creme statt Gold */
.entdecken .tile__kicker { color: rgba(245, 240, 232, 0.85); }
.tile__name { font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 0.5rem; }
.tile__desc { font-size: 0.92rem; line-height: 1.55; color: rgba(244,237,225,0.78); max-width: 34ch; }
.tile__arrow { display: inline-flex; margin-top: 1rem; font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--paper-3); gap: 0.5rem; transition: gap 0.3s; }
.tile:hover .tile__arrow { gap: 1rem; }
@media (max-width: 760px) { .entdecken__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FINAL CTA (full-bleed)
   ============================================================ */
.final { position: relative; min-height: 90svh; display: flex; align-items: center; overflow: hidden; }
.final__fade { position: absolute; left: 0; right: 0; top: 0; height: 8rem; z-index: 1; pointer-events: none; background: linear-gradient(to bottom, rgba(16,13,7,0.9) 0%, transparent 100%); }
.final__media { position: absolute; inset: 0; z-index: 0; }
.final__media img { width: 100%; height: 118%; object-fit: cover; object-position: center 30%; position: absolute; top: -9%; left: 0; will-change: transform; }
.final__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(20,16,12,0.72), rgba(20,16,12,0.42) 55%, rgba(20,16,12,0.5)); }
.final__inner { position: relative; z-index: 2; width: var(--container); margin: 0 auto; text-align: center; color: var(--paper-3); }
.final__eyebrow { color: #E7C98A; justify-content: center; margin-bottom: 2rem; text-shadow: 0 1px 14px rgba(20,16,12,0.65), 0 1px 3px rgba(20,16,12,0.55); }
.final__eyebrow::before { background: #E7C98A; box-shadow: 0 1px 6px rgba(20,16,12,0.5); }
.final__title { font-size: clamp(2.2rem, 5.4vw, 4.8rem); line-height: 1.08; max-width: 16ch; margin: 0 auto 2.6rem; }
.final__title .final__hl { color: #CDA04A; font-style: italic; }
.final__actions { display: flex; gap: 1.6rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.final .btn--primary { background: var(--amber); color: var(--ink); text-transform: none; padding: 1rem 2rem; border-radius: 2px; }
.final .btn--primary:hover { background: var(--gold-deep); }
.final .btn--ghost { color: var(--paper-3); border-color: rgba(244,237,225,0.4); }
.final .btn--ghost:hover { color: var(--gold-soft); border-color: var(--gold-soft); }

/* ============================================================
   FOOTER (espresso — edel statt schwarz)
   ============================================================ */
.footer { background: var(--espresso); color: rgba(244,237,225,0.7); padding: 4.5rem 0 2.5rem; }
.footer__container { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__brand .brand__name { color: var(--paper-3); }
.footer__brand .brand__mono { border-color: var(--gold); color: var(--gold-soft); }
.footer__tag { margin-top: 1.4rem; font-size: 0.9rem; line-height: 1.7; color: rgba(244,237,225,0.55); max-width: 32ch; }
.footer__ccfe { margin-top: 1.2rem; font-family: var(--sans); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(245,240,232,0.2); }
.footer__col-label { font-family: var(--sans); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold-soft); margin-bottom: 1.3rem; }
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer__list a { font-size: 0.86rem; color: rgba(244,237,225,0.66); transition: color 0.25s; }
.footer__list a:hover { color: var(--paper-3); }
.footer__bottom { width: var(--container); margin: 3.5rem auto 0; padding-top: 1.8rem; border-top: 1px solid var(--line-d); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__legal { font-size: 0.72rem; color: rgba(244,237,225,0.4); max-width: 60ch; line-height: 1.6; }
@media (max-width: 880px) { .footer__container { grid-template-columns: 1fr 1fr; gap: 2.2rem; } }
@media (max-width: 520px) { .footer__container { grid-template-columns: 1fr; } }

/* Hero-Headline: drittes Wort nicht umbrechen lassen (n. soll nicht abreißen) */

.hero__headline .mask-3 > span { white-space: nowrap; }

/* Value-Strip: lückenloses Laufband auf jeder Bildschirmbreite (2 identische Gruppen) */

.strip__track { gap: 0; }

.strip__group {

  display: flex;

  align-items: center;

  gap: 2.6rem;

  padding-right: 2.6rem;

  flex: none;

}

/* Scroll-Offset für fixe Nav bei Angebots-Ankern */
#free-community, #mehrwertcall, #krypto-profi { scroll-margin-top: 96px; }
