/* ============================================================
   Components — Minimal · nadverts-Inspired
   ============================================================ */

/* === Custom Cursor (sehr klein, dezent) === */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, textarea, select, label, .nav__burger, [data-cursor="hover"] { cursor: none; }
  .cursor {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    width: var(--cursor-size);
    height: var(--cursor-size);
    border-radius: 50%;
    background: var(--ink);
    transform: translate(-50%, -50%);
    transition: width var(--t-mid) var(--ease), height var(--t-mid) var(--ease),
                opacity var(--t-fast);
  }
  .cursor.hover {
    width: var(--cursor-hover-size);
    height: var(--cursor-hover-size);
    background: transparent;
    border: 1px solid var(--ink);
  }
  .cursor.hover.on-dark { border-color: var(--paper); }
  .cursor.on-dark { background: var(--paper); }
  .cursor::after { display: none; }
}

/* === Navbar (clean) === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-5) var(--gutter);
  background: transparent;
  transition: background var(--t-mid) var(--ease), backdrop-filter var(--t-mid),
              color var(--t-mid) var(--ease);
}

.nav.scrolled {
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--ink-line);
}

.nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.nav__brand-mark {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  margin-left: 2px;
  vertical-align: baseline;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links > li { position: relative; }

.nav__links a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  padding-block: var(--s-2);
  position: relative;
  display: inline-block;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width var(--t-mid) var(--ease);
}

.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__drop {
  position: absolute;
  top: calc(100% + var(--s-3));
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 280px;
  background: var(--paper-2);
  border: 1px solid var(--ink-line);
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-mid) var(--ease), transform var(--t-mid) var(--ease), visibility var(--t-mid);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.nav__links li:hover > .nav__drop,
.nav__links li:focus-within > .nav__drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__drop a {
  padding: var(--s-3) var(--s-4);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.nav__drop a::after { display: none; }
.nav__drop a:hover { color: var(--accent); padding-left: var(--s-5); }

.nav__cta {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  padding: var(--s-3) var(--s-6);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-pill);
  transition: all var(--t-mid) var(--ease);
}

.nav__cta:hover { background: var(--accent); color: #fff; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s-2);
}

.nav__burger span {
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--t-mid) var(--ease);
}

.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 49;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--s-5);
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform var(--t-slow) var(--ease);
  overflow-y: auto;
}

.nav__mobile.open { transform: translateY(0); }

.nav__mobile a {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
}

/* === HERO (Minimal · Vollbild) === */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  overflow: hidden;
  background: var(--paper);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-32) var(--gutter) var(--s-16);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
  align-content: end;
  min-height: 100vh;
}

@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: 7fr 5fr;
    align-items: end;
    gap: var(--s-16);
  }
}

.hero__shapes { display: none; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
  grid-column: 1 / -1;
}

.hero__eyebrow-line {
  flex: 0 0 36px;
  height: 1px;
  background: var(--ink);
}

.hero__eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero__title {
  font-family: var(--font-sans);
  font-size: var(--t-mega);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  font-weight: 500;
  font-style: normal;
  grid-column: 1 / -1;
}

.hero__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.hero__title .word, .hero__title .word--c, .hero__title .word--m, .hero__title .word--y, .hero__title .word--outline {
  color: var(--ink);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  display: inline-block;
  margin-right: 0.2em;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--ink);
  align-items: end;
  grid-column: 1 / -1;
}

@media (max-width: 760px) { .hero__meta { grid-template-columns: 1fr; gap: var(--s-5); } }

.hero__lead {
  font-size: var(--t-lead);
  max-width: 50ch;
  color: var(--ink-soft);
  line-height: 1.5;
  font-weight: 400;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 3vw, 2.5rem);
  display: block;
  line-height: 1;
  margin-bottom: var(--s-2);
  font-weight: 400;
}

.hero__stat-label {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
}

.hero__scroll {
  position: absolute;
  bottom: var(--s-6);
  right: var(--gutter);
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  z-index: 3;
}

.hero__scroll::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--ink-mute);
  animation: scroll-line 2s var(--ease) infinite;
  transform-origin: left;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.4); }
}

/* === MARQUEE (dezent klein) === */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding-block: var(--s-6);
  border-block: 1px solid var(--ink-line);
  background: var(--paper);
}

.marquee__track {
  display: inline-flex;
  gap: var(--s-10);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--ink);
  will-change: transform;
}

.marquee__track > span {
  display: inline-flex;
  align-items: center;
  gap: var(--s-10);
}

.marquee__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent);
}

.marquee__dot--c, .marquee__dot--m, .marquee__dot--y, .marquee__dot--k { background: var(--accent); }

/* === SECTION HEAD === */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--s-12);
  margin-bottom: var(--s-16);
  align-items: end;
}

@media (max-width: 880px) { .sec-head { grid-template-columns: 1fr; gap: var(--s-6); } }

.sec-head__num {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: var(--s-4);
  font-weight: 500;
}

.sec--ink .sec-head__num { color: var(--accent); }

.sec-head__title {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: var(--t-h1);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.sec-head__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.sec--ink .sec-head__title em { color: var(--paper); }

.sec-head__lead {
  font-size: var(--t-lead);
  color: var(--fg-soft);
  max-width: 56ch;
  line-height: 1.55;
}

/* === Bento Grid (clean, kein Color-Pop) === */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s-3);
}

.bento__cell {
  position: relative;
  background: var(--paper-2);
  padding: var(--s-10) var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  border-radius: var(--radius-sm);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
  min-height: 320px;
  border: 1px solid var(--ink-line);
}

.bento__cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
  border-color: var(--ink);
}

/* Color-variants now monochrome with subtle accents */
.bento__cell--c, .bento__cell--m, .bento__cell--y, .bento__cell--k, .bento__cell--cream {
  background: var(--paper-2);
  color: var(--ink);
}

/* The "Statement" cell (one per grid) — dark inverted */
.bento__cell--statement {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.bento__cell--statement:hover { box-shadow: 0 30px 60px rgba(0,0,0,0.2); }

/* Bento spans */
.b-1   { grid-column: span 6; }
.b-2   { grid-column: span 6; }
.b-3   { grid-column: span 4; }
.b-4   { grid-column: span 4; }
.b-5   { grid-column: span 4; }
.b-6   { grid-column: span 8; min-height: 280px; }
.b-7   { grid-column: span 4; min-height: 280px; }

@media (max-width: 1100px) {
  .b-1, .b-2, .b-6 { grid-column: span 12; }
  .b-3, .b-4, .b-5, .b-7 { grid-column: span 6; }
}

@media (max-width: 640px) {
  .bento__cell { grid-column: span 12 !important; min-height: 260px; }
}

.bento__cell .num {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 500;
}

.bento__cell--statement .num { color: #FF6B7E; }

.bento__cell h3 {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: var(--t-h2);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.bento__cell h3 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.bento__cell p {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38ch;
}

.bento__cell--statement p { color: #D4D4D4; }

.bento__cell .arrow-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  border-top: 1px solid var(--ink-line);
  padding-top: var(--s-4);
  color: var(--ink);
}

.bento__cell--statement .arrow-link {
  color: var(--paper);
  border-top-color: rgba(255,255,255,0.15);
}

.bento__cell .arrow-link .arrow {
  transition: transform var(--t-mid) var(--ease);
}

.bento__cell:hover .arrow-link .arrow {
  transform: translateX(6px);
}

/* === Stat-Strip (clean) === */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 880px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stat-strip { grid-template-columns: 1fr; } }

.stat {
  padding: var(--s-12) var(--s-8);
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: 0; }

@media (max-width: 880px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

.stat__value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  margin-bottom: var(--s-3);
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  font-weight: 400;
}

.stat__value sup {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.32em;
  color: var(--accent);
  font-weight: 500;
}

.stat__label {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg-mute);
}

/* === Quote === */
.quote {
  text-align: center;
  padding: clamp(5rem, 14vw, 12rem) var(--gutter);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}

.quote__inner { max-width: 1100px; margin: 0 auto; }

.quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-8);
  font-weight: 400;
}

.quote blockquote em { font-style: italic; color: var(--accent); }
.sec--ink .quote blockquote em { color: #FF8090; }

.quote cite {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--fg-mute);
  font-style: normal;
}

/* === Process Steps === */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

.step {
  padding: var(--s-12) var(--s-6);
  border-right: 1px solid var(--line);
  position: relative;
}

.step:last-child { border-right: 0; }
@media (max-width: 880px) { .step:nth-child(2n) { border-right: 0; } }

.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--s-6);
  font-weight: 400;
}

.step h3 {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: var(--t-h3);
  margin-bottom: var(--s-3);
  letter-spacing: -0.015em;
}

.step h3 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.step p {
  color: var(--fg-mute);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 30ch;
}

/* === Showcase / Big Image (Vollbild-Statement) === */
.showcase {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: var(--s-24) var(--gutter);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.showcase__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.showcase__bg img {
  width: 100%; height: 100%; object-fit: cover;
}

.showcase__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.2) 80%);
}

.showcase__bg.placeholder {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200,22,60,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 70%, rgba(0,163,196,0.3) 0%, transparent 60%),
    var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--s-3);
}

.showcase__bg.placeholder::after {
  content: attr(data-label);
  background: none;
  position: relative;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: var(--s-4) var(--s-8);
  border: 1px dashed rgba(255,255,255,0.35);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.showcase__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.showcase__title {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: var(--t-h1);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-8);
  max-width: 18ch;
  font-weight: 500;
}

.showcase__title em {
  font-family: var(--font-display);
  font-style: italic;
  color: #FFF;
  font-weight: 400;
}

.showcase__text {
  font-size: var(--t-lead);
  max-width: 50ch;
  line-height: 1.55;
  margin-bottom: var(--s-10);
  color: rgba(255,255,255,0.78);
}

/* === Footer === */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s-24) var(--gutter) var(--s-8);
  position: relative;
}

.footer__inner { max-width: var(--max-w); margin: 0 auto; }

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-12);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid #2C2C2C;
}

@media (max-width: 980px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 400;
}

.footer__brand-mark {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: baseline;
  margin-left: 0.05em;
}

.footer__brand small {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.18em;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: var(--s-4);
  color: #8E8E8E;
  font-weight: 500;
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8E8E8E;
  margin-bottom: var(--s-5);
  font-weight: 500;
}

.footer__col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: var(--s-3);
}

.footer__col a {
  font-size: 0.95rem;
  transition: color var(--t-fast) var(--ease);
}

.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-6);
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6B6B6B;
  flex-wrap: wrap;
  gap: var(--s-4);
}

.footer__bottom a { margin-left: var(--s-6); }
.footer__bottom a:hover { color: var(--paper); }

.footer__cmyk { display: none; }

/* === CMYK BAR (now: thin single accent line) === */
.cmyk-bar {
  display: block;
  height: 1px;
  background: var(--ink-line);
}

.cmyk-bar span { display: none; }

/* === Page Header === */
.page-head {
  padding: clamp(8rem, 18vw, 14rem) var(--gutter) clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.page-head__shapes { display: none; }

.page-head__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-head__crumb {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: var(--s-8);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-weight: 500;
}

.page-head__crumb a { color: var(--ink-mute); }
.page-head__crumb a:hover { color: var(--accent); }

.page-head__title {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: var(--t-mega);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-8);
  font-weight: 500;
}

.page-head__title em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
}

.page-head__lead {
  font-size: var(--t-lead);
  max-width: 60ch;
  line-height: 1.55;
  color: var(--fg-soft);
}

/* === Reveal animations === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.in { opacity: 1; transform: translateY(0); }

.split [data-word] {
  display: inline-block;
  overflow: hidden;
}

.split [data-word] > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-out);
}

.split.in [data-word] > span { transform: translateY(0); }

.split [data-word]:nth-child(1) > span { transition-delay: 0ms; }
.split [data-word]:nth-child(2) > span { transition-delay: 50ms; }
.split [data-word]:nth-child(3) > span { transition-delay: 100ms; }
.split [data-word]:nth-child(4) > span { transition-delay: 150ms; }
.split [data-word]:nth-child(5) > span { transition-delay: 200ms; }
.split [data-word]:nth-child(6) > span { transition-delay: 250ms; }
.split [data-word]:nth-child(7) > span { transition-delay: 300ms; }
.split [data-word]:nth-child(8) > span { transition-delay: 350ms; }
.split [data-word]:nth-child(9) > span { transition-delay: 400ms; }

.magnetic { display: inline-block; will-change: transform; }

/* === Sticky Color Layers — DEAKTIVIERT (zu maximalistisch) === */
.layers, .layers__item, .layers__num, .layers__title, .layers__lead, .layers__list, .layers__visual {
  /* fallback styling falls noch genutzt — als simple stacked sections */
}
.layers__item {
  position: relative !important;
  top: auto !important;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--ink-line);
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: var(--s-12);
  padding: var(--s-20) var(--gutter);
  margin-bottom: 0;
  border-radius: 0;
  min-height: auto;
  align-items: center;
}
@media (max-width: 980px) { .layers__item { grid-template-columns: 1fr; padding: var(--s-12) var(--gutter); } }

.layers__num { color: var(--accent); }
.layers__title {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: var(--t-h1);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.layers__title em { font-family: var(--font-display); font-style: italic; font-weight: 400; }

.layers__list li {
  border-color: var(--ink-line);
  color: var(--ink-soft);
}

.layers__visual {
  background: var(--paper-3);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: var(--t-micro);
  color: var(--ink-mute);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.layers__visual::before { display: none; }
