/*
Theme Name: Marc Roth – Personal Brand
Theme URI: https://marcroth.de
Author: Marc Roth / WineStreet Media GmbH
Author URI: https://marcroth.de
Description: Mehrseitige Personal-Brand-Website (Start, Über mich, Cases, Insights, Kontakt) auf Basis des Entwurfs v12. Systemschrift Geist, hell/dunkel automatisch, Scroll-Motion, Growth-Audit-Formular. Elementor-Seiten (Impressum, Datenschutz) laufen weiter über page.php.
Version: 1.2.2
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
License: Proprietary – für marcroth.de
Text Domain: marcroth
Tags: one-column, custom-menu, block-styles
*/

/* ================= Tokens ================= */
:root {
  --paper: #F4F4F6;
  --paper-2: #E9E9EE;
  --ink: #15151A;
  --ink-2: #5D5F6B;
  --rule: #D7D7DE;
  --accent: #2148C8;
  --accent-ink: #FFFFFF;
  --accent-tint: #DFE5FA;
  --night: #0F0F13;
  --night-2: #1A1A21;
  --night-text: #F2F2F5;
  --night-muted: #9A9BA6;
  --night-accent: #7A93FF;
  --focus: var(--accent);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px;
  --gutter: clamp(20px, 5vw, 72px);
  --max: 1240px;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #0F0F13; --paper-2: #1A1A21; --ink: #F2F2F5; --ink-2: #9A9BA6; --rule: #2A2A33;
    --accent: #7A93FF; --accent-ink: #0B0F24; --accent-tint: #1B2140;
    --night: #F4F4F6; --night-2: #E9E9EE; --night-text: #15151A; --night-muted: #5D5F6B; --night-accent: #2148C8;
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --paper: #0F0F13; --paper-2: #1A1A21; --ink: #F2F2F5; --ink-2: #9A9BA6; --rule: #2A2A33;
  --accent: #7A93FF; --accent-ink: #0B0F24; --accent-tint: #1B2140;
  --night: #F4F4F6; --night-2: #E9E9EE; --night-text: #15151A; --night-muted: #5D5F6B; --night-accent: #2148C8;
  color-scheme: dark;
}

/* ================= Base ================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(16px, 0.35vw + 15px, 18px); line-height: 1.5;
  font-feature-settings: "tnum" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.08; letter-spacing: -0.028em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 5.6vw, 5.4rem); letter-spacing: -0.04em; line-height: 1.0; }
h2 { font-size: clamp(2rem, 3.6vw, 3.4rem); letter-spacing: -0.035em; line-height: 1.04; }
h3 { font-size: clamp(1.2rem, 1.5vw, 1.45rem); letter-spacing: -0.02em; }
p { margin: 0; max-width: 62ch; text-wrap: pretty; }
p + p { margin-top: 1em; }
.muted { color: var(--ink-2); }
.lead { font-size: clamp(1.15rem, 1.5vw, 1.45rem); line-height: 1.4; letter-spacing: -0.012em; }
.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.section { padding-block: clamp(80px, 11vw, 160px); }
.grid { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: clamp(16px, 2.5vw, 40px); row-gap: 48px; }
.col-4 { grid-column: span 4; } .col-5 { grid-column: span 5; } .col-6 { grid-column: span 6; } .col-7 { grid-column: span 7; }
.off-6 { grid-column: 6 / 13; } .off-7 { grid-column: 7 / 13; } .off-8 { grid-column: 8 / 13; }
@media (max-width: 860px) { .grid > * { grid-column: 1 / -1 !important; } }
.stack > * + * { margin-top: 20px; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }

/* ================= Buttons ================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px; min-height: 52px; padding: 0 24px;
  border-radius: 999px; border: 1px solid transparent; font: inherit; font-weight: 500; letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer; white-space: nowrap; position: relative;
  transition: transform 160ms var(--ease-out), background-color 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.96); transition-duration: 90ms; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn svg { width: 16px; height: 16px; transition: transform 240ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: color-mix(in oklab, var(--ink) 82%, var(--paper)); }
  .btn-secondary:hover { border-color: var(--ink); }
  .btn:hover svg { transform: translateX(3px); }
}
.link-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--accent); text-decoration: none; margin-top: 32px; letter-spacing: -0.01em; }
.link-more svg { width: 16px; height: 16px; transition: transform 240ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .link-more:hover svg { transform: translateX(4px); } }

/* ================= Header (material) ================= */
.site-header { position: sticky; top: 0; z-index: 30; }
.site-header::before {
  content: ""; position: absolute; inset: 0;
  background: color-mix(in oklab, var(--paper) 72%, transparent);
  -webkit-backdrop-filter: blur(20px) saturate(180%); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color 300ms var(--ease);
}
.site-header[data-scrolled="true"]::before { border-bottom-color: var(--rule); }
.site-header[data-over="dark"]::before { background: color-mix(in oklab, var(--night) 72%, transparent); border-bottom-color: color-mix(in oklab, var(--night-text) 12%, transparent); }
.site-header[data-over="dark"] .wordmark, .site-header[data-over="dark"] .nav-links a, .site-header[data-over="dark"] .menu-btn { color: var(--night-text); }
.site-header[data-over="dark"] .nav-links a:not([aria-current="page"]) { color: var(--night-muted); }
.site-header[data-over="dark"] .menu-btn { border-color: color-mix(in oklab, var(--night-text) 20%, transparent); }
.site-header[data-over="dark"] .btn-primary { background: var(--night-text); color: var(--night); }
.site-header .wordmark, .site-header .nav-links a, .site-header .btn-primary, .site-header .menu-btn { transition: color 300ms var(--ease), background-color 300ms var(--ease), border-color 300ms var(--ease); }
.site-header::before { transition: border-color 300ms var(--ease), background-color 300ms var(--ease); }
@media (prefers-reduced-transparency: reduce) { .site-header::before { background: var(--paper); backdrop-filter: none; } }
.nav { position: relative; display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 24px; }
.wordmark { font-weight: 600; letter-spacing: -0.03em; text-decoration: none; font-size: 1.1rem; }
.nav-links { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 40px); list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--ink-2); font-weight: 500; font-size: 0.98rem; letter-spacing: -0.01em; transition: color 200ms var(--ease); }
.nav-links a[aria-current="page"] { color: var(--ink); }
@media (hover: hover) and (pointer: fine) { .nav-links a:hover { color: var(--ink); } }
.nav .btn { min-height: 40px; padding: 0 18px; font-size: 0.95rem; }
.menu-btn { display: none; background: none; border: 1px solid var(--rule); border-radius: 999px; min-height: 40px; padding: 0 16px; font: inherit; font-weight: 500; color: var(--ink); cursor: pointer; }
.mobile-cta { display: none; }
@media (max-width: 860px) {
  .menu-btn { display: inline-flex; align-items: center; }
  .nav-links { display: none; }
  .nav[data-open="true"] .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
    position: absolute; left: calc(-1 * var(--gutter)); right: calc(-1 * var(--gutter)); top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--rule); padding: 12px var(--gutter) 24px;
    animation: menu-in 260ms var(--ease-out) both;
  }
  @keyframes menu-in { from { opacity: 0; transform: translateY(-6px); } }
  .nav[data-open="true"] .nav-links a { font-size: 1.5rem; padding-block: 10px; display: block; letter-spacing: -0.03em; font-weight: 600; }
  .nav[data-open="true"] .nav-links li { animation: rise 420ms var(--ease-out) both; }
  .nav[data-open="true"] .nav-links li:nth-child(2) { animation-delay: 40ms; } .nav[data-open="true"] .nav-links li:nth-child(3) { animation-delay: 80ms; } .nav[data-open="true"] .nav-links li:nth-child(4) { animation-delay: 120ms; } .nav[data-open="true"] .nav-links li:nth-child(5) { animation-delay: 160ms; }
  .nav .btn-primary { display: none; }
  .nav[data-open="true"] .nav-links .mobile-cta { display: inline-flex; margin-top: 16px; font-size: 1rem; letter-spacing: -0.01em; min-height: 48px; }
}

/* ================= Page transition ================= */
main { min-height: 60vh; }
main[data-state="enter"] .page { animation: page-in 320ms var(--ease-out) both; }
@keyframes page-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ================= Reveal system ================= */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); transition-delay: var(--d, 0ms); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }

/* ================= Hero ================= */
.hero { padding-block: clamp(56px, 8vw, 120px) clamp(64px, 9vw, 130px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(32px, 5vw, 96px); align-items: end; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { max-width: 20ch; }
.hero h1 .w { display: inline-block; opacity: 0; transform: translateY(0.35em); filter: blur(8px); animation: word-in 820ms var(--ease-out) both; animation-delay: calc(var(--i) * 38ms + 80ms); will-change: transform, opacity, filter; }
@keyframes word-in { to { opacity: 1; transform: none; filter: blur(0); } }
.hero .lead { margin-top: 32px; max-width: 44ch; animation: rise 800ms var(--ease-out) both; animation-delay: 420ms; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; animation: rise 800ms var(--ease-out) both; animation-delay: 520ms; }
.portrait {
  aspect-ratio: 4 / 5; border-radius: var(--r-lg); background: var(--accent-tint);
  position: relative; overflow: hidden; display: grid; place-items: end start;
  animation: portrait-in 1100ms var(--ease-out) both; animation-delay: 200ms; will-change: transform;
}
@keyframes portrait-in { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: none; } }
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait figcaption { position: absolute; left: 18px; bottom: 16px; color: var(--accent); font-size: 0.9rem; font-weight: 500; }
.portrait[data-empty="true"]::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 30% 20%, color-mix(in oklab, var(--accent) 24%, transparent), transparent 62%);
}
.portrait-inner { position: absolute; inset: -8% 0; will-change: transform; }

/* ================= Scroll-tied text (proof) ================= */
.proof { padding-block: clamp(40px, 6vw, 80px); border-top: 1px solid var(--rule); }
.proof p { max-width: 22ch; font-size: clamp(1.6rem, 3.6vw, 3.4rem); line-height: 1.12; letter-spacing: -0.035em; font-weight: 600; }
.proof .w { display: inline; color: var(--ink); opacity: 0.18; transition: opacity 120ms linear; }
.proof .w.on { opacity: 1; }

/* ================= Pinned chapter (Vier Ebenen) ================= */
.chapter { background: var(--night); color: var(--night-text); }
.pin { height: 460vh; position: relative; }
.pin-stage { position: sticky; top: 0; height: 100vh; height: 100svh; padding-top: 64px; display: grid; align-items: center; overflow: hidden; }
.pin-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 96px); align-items: center; }
@media (max-width: 860px) { .pin-grid { grid-template-columns: 1fr; gap: 32px; align-content: center; } }
.chapter-title { color: var(--night-muted); font-weight: 500; font-size: 1rem; letter-spacing: -0.01em; margin-bottom: 20px; }
.chapter h2 { color: var(--night-text); }
.steps-list { list-style: none; margin: 40px 0 0; padding: 0; }
.steps-list li { padding-block: 14px; transition: opacity 400ms var(--ease), transform 400ms var(--ease-out); opacity: 0.32; transform: translateX(0); }
.steps-list li.on { opacity: 1; }
.steps-list h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); color: var(--night-text); }
.steps-list .desc { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 420ms var(--ease-out); }
.steps-list li.on .desc { grid-template-rows: 1fr; }
.steps-list .desc > div { overflow: hidden; }
.steps-list p { color: var(--night-muted); margin-top: 6px; font-size: 1rem; max-width: 42ch; }
@media (max-width: 860px) { .steps-list li:not(.on) { display: none; } .steps-list { margin-top: 20px; } .chapter h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); } }
.layers { display: grid; align-content: end; gap: 10px; height: min(56vh, 520px); }
@media (max-width: 860px) { .layers { height: 38svh; gap: 8px; } }
.layer {
  border-radius: var(--r-md); padding: clamp(14px, 2vw, 22px) clamp(16px, 2.2vw, 26px);
  background: color-mix(in oklab, var(--night-text) 9%, transparent);
  border: 1px solid color-mix(in oklab, var(--night-text) 14%, transparent);
  color: var(--night-text); justify-self: center;
  opacity: 0; transform: translateY(46px) scale(0.98); will-change: transform, opacity;
  transition: opacity 600ms var(--ease-out), transform 700ms var(--ease-out), background-color 400ms var(--ease);
}
.layer.on { opacity: 1; transform: none; }
.layer.active { background: color-mix(in oklab, var(--night-text) 15%, transparent); }
.layer strong { display: block; font-weight: 600; letter-spacing: -0.02em; font-size: clamp(1rem, 1.3vw, 1.2rem); }
.layer span { display: block; color: var(--night-muted); font-size: 0.92rem; margin-top: 4px; }
.layer-1 { width: 100%; background: var(--night-accent); border-color: var(--night-accent); color: #fff; min-height: 96px; }
.layer-1.active { background: var(--night-accent); }
.layer-1 span { color: rgba(255,255,255,0.78); }
:root[data-theme="dark"] .layer-1, :root:not([data-theme="light"]) .layer-1 { color: var(--night-text); }
@media (prefers-color-scheme: light) { :root:not([data-theme="dark"]) .layer-1 { color: #fff; } }
:root[data-theme="light"] .layer-1 { color: #fff; }
.layer-2 { width: 84%; } .layer-3 { width: 68%; } .layer-4 { width: 52%; }
@media (max-width: 860px) { .layer-2 { width: 92%; } .layer-3 { width: 84%; } .layer-4 { width: 76%; } .layer span { display: none; } }
.chapter-outro { padding-block: clamp(64px, 9vw, 128px); }
.chapter-outro p { color: var(--night-muted); }
.chapter-outro .btn-primary { background: var(--night-text); color: var(--night); }
@media (hover: hover) and (pointer: fine) { .chapter-outro .btn-primary:hover { background: color-mix(in oklab, var(--night-text) 84%, var(--night)); } }

/* ================= Horizontal gallery (Überzeugungen) ================= */
.gallery-wrap { overflow: hidden; }
.gallery {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  padding-inline: max(var(--gutter), calc((100% - var(--max)) / 2)); padding-bottom: 8px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.gallery::-webkit-scrollbar { display: none; }
.tile {
  flex: 0 0 auto; scroll-snap-align: start; width: min(78vw, 560px); min-height: min(64vh, 520px);
  border-radius: var(--r-lg); padding: clamp(28px, 3.6vw, 48px); display: grid; align-content: space-between; gap: 40px;
  transition: transform 500ms var(--ease-out);
}
.tile h3 { font-size: clamp(1.7rem, 2.7vw, 2.6rem); letter-spacing: -0.035em; line-height: 1.04; max-width: 14ch; }
.tile p { font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.5; }
.tile-a { background: var(--paper-2); }
.tile-b { background: var(--accent-tint); color: var(--ink); }
.tile-b .muted { color: color-mix(in oklab, var(--ink) 70%, var(--accent)); }
.tile-c { background: var(--night); color: var(--night-text); }
.tile-c .muted { color: var(--night-muted); }
.tile-d { background: var(--paper); border: 1px solid var(--rule); }
.tile-num { font-size: 0.95rem; font-weight: 500; opacity: 0.6; }
.gallery-nav { display: flex; gap: 8px; justify-content: flex-end; margin-top: 20px; }
.gallery-nav button { width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--rule); background: transparent; color: var(--ink); cursor: pointer; display: grid; place-items: center; transition: transform 140ms var(--ease-out), border-color 200ms var(--ease), opacity 200ms var(--ease); }
.gallery-nav button:active { transform: scale(0.94); }
.gallery-nav button[disabled] { opacity: 0.35; cursor: default; }
@media (hover: hover) and (pointer: fine) { .gallery-nav button:not([disabled]):hover { border-color: var(--ink); } }
.gallery-nav svg { width: 16px; height: 16px; }

/* ================= Results (count-up) ================= */
.results { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .results { grid-template-columns: 1fr; } }
.result { border-radius: var(--r-lg); background: var(--paper-2); padding: clamp(28px, 3vw, 40px); min-height: 300px; display: grid; align-content: space-between; gap: 32px; }
.result .num { font-size: clamp(3rem, 5.4vw, 5.2rem); font-weight: 600; letter-spacing: -0.045em; line-height: 0.95; font-variant-numeric: tabular-nums; white-space: nowrap; }
.result h3 { font-size: 1.15rem; }
.result p { margin-top: 8px; font-size: 0.98rem; }

/* ================= Quotes ================= */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }
.quote { margin: 0; }
.quote p { font-size: clamp(1.3rem, 1.9vw, 1.75rem); line-height: 1.32; letter-spacing: -0.025em; font-weight: 500; max-width: none; }
.quote footer { margin-top: 24px; color: var(--ink-2); font-size: 0.98rem; }
.quote footer strong { color: var(--ink); font-weight: 600; display: block; }

/* ================= Posts ================= */
.posts { list-style: none; margin: 0; padding: 0; }
.posts > li { border-top: 1px solid var(--rule); }
.posts > li:last-child { border-bottom: 1px solid var(--rule); }
.post-link { display: grid; grid-template-columns: 150px 1fr auto; gap: 24px; align-items: baseline; padding-block: 30px; text-decoration: none; }
.post-link time { color: var(--ink-2); font-size: 0.95rem; }
.post-link h3 { transition: color 200ms var(--ease); font-size: clamp(1.15rem, 1.5vw, 1.4rem); }
.post-link p { margin-top: 8px; color: var(--ink-2); font-size: 1rem; }
.post-link .arrow { color: var(--ink-2); transition: transform 240ms var(--ease-out), color 200ms var(--ease); }
.post-link .arrow svg { width: 18px; height: 18px; }
@media (hover: hover) and (pointer: fine) { .post-link:hover h3 { color: var(--accent); } .post-link:hover .arrow { transform: translateX(6px); color: var(--accent); } }
@media (max-width: 860px) { .post-link { grid-template-columns: 1fr; gap: 8px; } .post-link .arrow { display: none; } }
.article { max-width: 68ch; }
.article h1 { font-size: clamp(2.1rem, 4.2vw, 3.6rem); }
.article .meta { margin: 24px 0 44px; color: var(--ink-2); }
.article .body p { font-size: 1.12rem; line-height: 1.6; }
.notice { margin-top: 44px; padding: 20px 22px; border: 1px solid var(--rule); border-radius: var(--r-md); color: var(--ink-2); max-width: 68ch; }

/* ================= CTA band ================= */
.cta-band { background: var(--night); color: var(--night-text); }
.cta-band .wrap { padding-block: clamp(80px, 11vw, 150px); display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: end; }
@media (max-width: 860px) { .cta-band .wrap { grid-template-columns: 1fr; } }
.cta-band h2 { max-width: 18ch; }
.cta-band p { color: var(--night-muted); margin-top: 20px; }
.cta-band .btn-primary { background: var(--night-text); color: var(--night); }
@media (hover: hover) and (pointer: fine) { .cta-band .btn-primary:hover { background: color-mix(in oklab, var(--night-text) 84%, var(--night)); } }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (min-width: 861px) { .cta-band .actions { justify-content: flex-end; } }

/* ================= Page title ================= */
.page-title { padding-block: clamp(56px, 8vw, 120px) clamp(40px, 6vw, 80px); }
.page-title h1 { max-width: 16ch; }
.page-title .lead { margin-top: 28px; max-width: 50ch; }
.page-title h1 .w { display: inline-block; opacity: 0; transform: translateY(0.35em); filter: blur(8px); animation: word-in 820ms var(--ease-out) both; animation-delay: calc(var(--i) * 38ms + 60ms); }
.page-title .lead { animation: rise 800ms var(--ease-out) both; animation-delay: 380ms; }

/* ================= Über mich: rows / disciplines ================= */
.rows { list-style: none; margin: 0; padding: 0; }
.rows > li { padding-block: 28px; border-top: 1px solid var(--rule); }
.rows > li:first-child { border-top: 0; padding-top: 0; }
.disciplines { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.disciplines li { padding: 26px; border-radius: var(--r-md); background: var(--paper-2); }
.disciplines h3 { font-size: 1.08rem; margin-bottom: 8px; }
.disciplines p { font-size: 0.98rem; color: var(--ink-2); }

/* ================= Cases page ================= */
.case-detail { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: clamp(16px, 2.5vw, 40px); row-gap: 28px; padding-block: 48px; border-top: 1px solid var(--rule); }
.case-detail:last-of-type { border-bottom: 1px solid var(--rule); }
.case-detail .kicker { grid-column: span 4; }
.case-detail .num { display: block; margin-top: 12px; font-size: clamp(2.6rem, 4.6vw, 4.2rem); font-weight: 600; letter-spacing: -0.045em; line-height: 1; font-variant-numeric: tabular-nums; white-space: nowrap; }
.case-detail .story { grid-column: span 8; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.case-detail .story h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; color: var(--ink-2); }
.case-detail .story p { font-size: 0.98rem; }
.plain { list-style: none; margin: 0; padding: 0; }
.plain li { font-size: 0.98rem; padding-block: 6px; border-top: 1px solid var(--rule); }
.plain li:first-child { border-top: 0; padding-top: 0; }
.case-detail .story > div:nth-child(3) .plain li { font-weight: 500; }
@media (max-width: 860px) { .case-detail .kicker, .case-detail .story { grid-column: 1 / -1; } .case-detail .story { grid-template-columns: 1fr; gap: 20px; } }

/* ================= Steps / FAQ / Form ================= */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding-block: 24px; border-top: 1px solid var(--rule); }
.steps li::before { content: counter(step); font-weight: 600; font-size: 1.6rem; letter-spacing: -0.03em; line-height: 1; color: var(--accent); }
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--ink-2); font-size: 1rem; }
.faq details { border-top: 1px solid var(--rule); }
.faq details:last-child { border-bottom: 1px solid var(--rule); }
.faq summary { list-style: none; cursor: pointer; padding-block: 24px; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-weight: 600; font-size: 1.1rem; letter-spacing: -0.015em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { width: 22px; height: 22px; flex: 0 0 auto; position: relative; }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--ink); translate: -50% -50%; transition: transform 260ms var(--ease-out); }
.faq summary .plus::before { width: 14px; height: 1.5px; }
.faq summary .plus::after { width: 1.5px; height: 14px; }
.faq details[open] summary .plus::after { transform: rotate(90deg); }
.faq .answer-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 320ms var(--ease-out); }
.faq details[open] .answer-wrap { grid-template-rows: 1fr; }
.faq .answer { overflow: hidden; color: var(--ink-2); }
.faq .answer p { max-width: 64ch; padding-bottom: 28px; }
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-weight: 500; font-size: 0.98rem; }
.field input, .field textarea { font: inherit; color: var(--ink); background: var(--paper-2); border: 1px solid transparent; border-radius: var(--r-md); padding: 14px 16px; min-height: 52px; width: 100%; transition: border-color 200ms var(--ease), background-color 200ms var(--ease); }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--focus); outline-offset: 0; border-color: var(--focus); background: var(--paper); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-2); }
.field .error { color: #B4362E; font-size: 0.92rem; display: none; }
.field[data-invalid="true"] .error { display: block; }
.field[data-invalid="true"] input { border-color: #B4362E; }
.form-note { color: var(--ink-2); font-size: 0.92rem; max-width: 46ch; }
.form-success { display: none; padding: 28px; border-radius: var(--r-md); background: var(--paper-2); animation: rise 500ms var(--ease-out) both; }
.form[data-done="true"] { display: none; }
.form[data-done="true"] + .form-success { display: block; }

/* ================= Footer ================= */
.site-footer { border-top: 1px solid var(--rule); padding-block: 40px 48px; color: var(--ink-2); font-size: 0.95rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 32px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 24px; }
.site-footer a { text-decoration: none; }
@media (hover: hover) and (pointer: fine) { .site-footer a:hover { color: var(--ink); } }


/* ================= v5: Video stage ================= */
.hero-v5 { padding-block: clamp(40px, 5vw, 72px) 0; }
.hero-v5 h1 { max-width: 30ch; font-size: clamp(2.3rem, 4.4vw, 4.2rem); }
.hero-row { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 4vw, 64px); align-items: end; margin-top: 28px; }
@media (max-width: 860px) { .hero-row { grid-template-columns: 1fr; } }
.hero-row .lead { margin-top: 0; max-width: 40ch; animation: rise 800ms var(--ease-out) both; animation-delay: 420ms; }
.hero-row .hero-actions { margin-top: 0; justify-content: flex-start; animation-delay: 520ms; }
@media (min-width: 861px) { .hero-row .hero-actions { justify-content: flex-end; } }
.stage { position: relative; margin-top: clamp(40px, 5vw, 64px); aspect-ratio: 16 / 9; max-height: 74vh; border-radius: var(--r-lg); overflow: hidden; background: var(--night); color: var(--night-text);
  animation: stage-in 1100ms var(--ease-out) both; animation-delay: 300ms; }
@keyframes stage-in { from { opacity: 0; transform: translateY(24px) scale(0.985); } to { opacity: 1; transform: none; } }
.stage::before { content: ""; position: absolute; inset: -30%; background:
  radial-gradient(40% 50% at 30% 40%, color-mix(in oklab, var(--night-accent) 38%, transparent), transparent 70%),
  radial-gradient(35% 45% at 70% 65%, color-mix(in oklab, var(--night-accent) 22%, transparent), transparent 70%);
  animation: drift 18s ease-in-out infinite alternate; filter: blur(30px); }
@keyframes drift { from { transform: translate3d(-4%, -2%, 0) rotate(0deg); } to { transform: translate3d(4%, 3%, 0) rotate(6deg); } }
.stage video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; }
.stage[data-has-video="true"] video { display: block; }
.stage[data-has-video="true"]::before { display: none; }
.stage-ui { position: absolute; inset: 0; display: grid; grid-template-rows: auto 1fr auto; padding: clamp(18px, 2.4vw, 32px); }
.stage-label { font-size: 0.95rem; color: var(--night-muted); font-weight: 500; }
.stage-title { align-self: end; font-size: clamp(1.4rem, 2.6vw, 2.4rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.08; max-width: 22ch; }
.stage-foot { display: flex; justify-content: space-between; align-items: end; gap: 16px; }
.stage-foot .muted { color: var(--night-muted); font-size: 0.95rem; }
.play { width: clamp(64px, 7vw, 88px); height: clamp(64px, 7vw, 88px); border-radius: 999px; border: 0; background: var(--night-text); color: var(--night); display: grid; place-items: center; cursor: pointer; position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  transition: transform 220ms var(--ease-out), background-color 200ms var(--ease); box-shadow: 0 8px 30px color-mix(in oklab, var(--night) 40%, transparent); }
.play svg { width: 34%; height: 34%; margin-left: 6%; }
.play:active { transform: scale(0.94); }
@media (hover: hover) and (pointer: fine) { .play:hover { transform: scale(1.06); } }
.stage[data-has-video="true"][data-playing="true"] .play, .stage[data-has-video="true"][data-playing="true"] .stage-ui { opacity: 0; pointer-events: none; transition: opacity 300ms var(--ease); }
.stage-note { position: absolute; left: 50%; bottom: clamp(18px, 2.4vw, 32px); translate: -50% 0; background: color-mix(in oklab, var(--night-text) 12%, transparent); border: 1px solid color-mix(in oklab, var(--night-text) 18%, transparent); color: var(--night-text); padding: 10px 16px; border-radius: 999px; font-size: 0.92rem; opacity: 0; transform: translateY(8px); transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out); pointer-events: none; white-space: nowrap; }
.stage[data-note="true"] .stage-note { opacity: 1; transform: none; }

/* ================= v5: Chart ================= */
.chart-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
@media (max-width: 860px) { .chart-grid { grid-template-columns: 1fr; } }
.seg { display: inline-flex; padding: 4px; border-radius: 999px; background: var(--paper-2); gap: 4px; position: relative; }
.seg button { border: 0; background: transparent; color: var(--ink-2); font: inherit; font-weight: 500; font-size: 0.95rem; padding: 10px 18px; border-radius: 999px; cursor: pointer; position: relative; z-index: 1; transition: color 200ms var(--ease); white-space: nowrap; }
.seg button[aria-selected="true"] { color: var(--paper); }
.seg .seg-pill { position: absolute; top: 4px; bottom: 4px; left: 4px; width: 50%; border-radius: 999px; background: var(--ink); transition: transform 320ms var(--ease-out), width 320ms var(--ease-out); z-index: 0; }
.seg-dark { background: color-mix(in oklab, var(--night-text) 10%, transparent); }
.seg-dark button { color: var(--night-muted); }
.seg-dark button[aria-selected="true"] { color: var(--night); }
.seg-dark .seg-pill { background: var(--night-text); }
.chart-copy { min-height: 190px; position: relative; }
.chart-copy > div { position: absolute; inset: 0; opacity: 0; transform: translateY(8px); transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out); pointer-events: none; }
.chart-copy > div.on { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.chart-copy h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); margin-bottom: 14px; }
.chart { width: 100%; height: auto; overflow: visible; }
.chart .grid-line { stroke: var(--rule); stroke-width: 1; }
.chart .lbl { font-family: inherit; font-size: 12px; fill: var(--ink-2); }
.chart path { fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 2400; stroke-dashoffset: 2400; transition: stroke-dashoffset 2200ms var(--ease-in-out), opacity 400ms var(--ease), stroke-width 300ms var(--ease); }
.chart.in path { stroke-dashoffset: 0; }
.chart .p-launch { stroke: var(--ink-2); }
.chart .p-system { stroke: var(--accent); transition-delay: 200ms; }
.chart[data-focus="launch"] .p-system { opacity: 0.22; }
.chart[data-focus="system"] .p-launch { opacity: 0.22; }
.chart .area { fill: color-mix(in oklab, var(--accent) 14%, transparent); opacity: 0; transition: opacity 600ms var(--ease) 1200ms; }
.chart.in[data-focus="system"] .area { opacity: 1; }
.chart .dot { fill: var(--accent); opacity: 0; transition: opacity 300ms var(--ease) 2000ms; }
.chart.in .dot { opacity: 1; }

/* ================= v5: Engines ================= */
.engines { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
@media (max-width: 860px) { .engines { grid-template-columns: 1fr; } }
.engine-tabs { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.engine-tabs button { width: 100%; text-align: left; border: 0; background: transparent; font: inherit; color: var(--ink-2); padding: 16px 18px; border-radius: var(--r-md); cursor: pointer; display: grid; gap: 4px; transition: background-color 220ms var(--ease), color 220ms var(--ease); }
.engine-tabs button strong { font-weight: 600; letter-spacing: -0.02em; font-size: 1.1rem; color: var(--ink); }
.engine-tabs button span { font-size: 0.95rem; }
.engine-tabs button[aria-selected="true"] { background: var(--paper-2); color: var(--ink); }
@media (hover: hover) and (pointer: fine) { .engine-tabs button:not([aria-selected="true"]):hover { background: color-mix(in oklab, var(--paper-2) 60%, transparent); } }
.engine-stage { border-radius: var(--r-lg); background: var(--paper-2); padding: clamp(24px, 3vw, 40px); min-height: 380px; display: grid; align-content: space-between; gap: 32px; }
.flow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 6px; }
.node { display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; border-radius: 999px; background: var(--paper); border: 1px solid var(--rule); font-weight: 500; font-size: 0.98rem; letter-spacing: -0.01em; white-space: nowrap;
  opacity: 0; transform: translateY(8px) scale(0.98); animation: node-in 460ms var(--ease-out) both; animation-delay: calc(var(--i) * 70ms); }
.node.hi { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.node.side { background: transparent; border-style: dashed; color: var(--ink-2); font-weight: 500; }
.flow .link { width: 22px; height: 1px; background: var(--ink-2); opacity: 0; animation: node-in 300ms var(--ease-out) both; animation-delay: calc(var(--i) * 70ms + 40ms); flex: 0 0 auto; }
@keyframes node-in { to { opacity: 1; transform: none; } }
.engine-desc { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .engine-desc { grid-template-columns: 1fr; } }
.engine-desc h4 { font-size: 0.92rem; color: var(--ink-2); font-weight: 600; margin-bottom: 6px; }
.engine-desc p { font-size: 1rem; }
.engine-foot { color: var(--ink-2); font-size: 0.95rem; max-width: 70ch; margin-top: 28px; }

/* ================= v5: Manifesto ================= */
.manifesto { background: var(--night); color: var(--night-text); }
.manifesto .wrap { padding-block: clamp(96px, 14vw, 200px); }
.manifesto p { max-width: 24ch; font-size: clamp(1.9rem, 4.4vw, 4.2rem); line-height: 1.08; letter-spacing: -0.04em; font-weight: 600; }
.manifesto .w { color: var(--night-text); opacity: 0.16; transition: opacity 140ms linear; }
.manifesto .w.on { opacity: 1; }
.manifesto .w.acc.on { color: var(--night-accent); }
.manifesto p.manifesto-foot { margin-top: 40px; color: var(--night-muted); font-size: clamp(1.05rem, 1.3vw, 1.25rem); font-weight: 400; letter-spacing: -0.01em; line-height: 1.45; max-width: 44ch; }

/* ================= v5: Cases gallery ================= */
.tile-case { background: var(--paper-2); }
.tile-case .num { font-size: clamp(2.6rem, 4.6vw, 4.4rem); font-weight: 600; letter-spacing: -0.045em; line-height: 0.95; font-variant-numeric: tabular-nums; white-space: nowrap; }
.tile-case h3 { font-size: 1.25rem; margin-top: 18px; }
.tile-case p { font-size: 1rem; margin-top: 8px; }
.tile-case .tile-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.tile-case .tile-top .muted { font-size: 0.92rem; }
.tile-case.alt { background: var(--accent-tint); }
.tile-case.dark { background: var(--night); color: var(--night-text); }
.tile-case.dark .muted { color: var(--night-muted); }
a.tile { text-decoration: none; color: inherit; }
@media (hover: hover) and (pointer: fine) { a.tile:hover { transform: translateY(-4px); } }

/* ================= v5: Fit toggle ================= */
.fit { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
@media (max-width: 860px) { .fit { grid-template-columns: 1fr; } }
.fit-panels { position: relative; min-height: 320px; }
.fit-panels ul { list-style: none; margin: 0; padding: 0; position: absolute; inset: 0; opacity: 0; transform: translateY(10px); transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out); pointer-events: none; }
.fit-panels ul.on { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.fit-panels li { padding: 18px 0; border-top: 1px solid var(--rule); font-size: 1.1rem; letter-spacing: -0.01em; }


/* ================= v6: Growth Audit / report ================= */
.promise { list-style: none; margin: 0; padding: 0; max-width: 52ch; }
.promise li { padding: 16px 0; border-top: 1px solid var(--rule); font-size: 1.05rem; letter-spacing: -0.01em; }
.promise li:last-child { border-bottom: 1px solid var(--rule); }

.audit { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 96px); align-items: center; }
@media (max-width: 860px) { .audit { grid-template-columns: 1fr; } }
.report { position: relative; max-width: 440px; margin-inline: auto; width: 100%; }
.report-page { position: relative; border-radius: var(--r-md); background: var(--paper); border: 1px solid var(--rule); box-shadow: 0 30px 60px -30px color-mix(in oklab, var(--ink) 30%, transparent); padding: clamp(22px, 3vw, 34px); display: grid; align-content: start; gap: 18px; transition: transform 700ms var(--ease-out); }
.report-page.back, .report-page.back2 { position: absolute; inset: 0; }
.report-page.back { transform: translate(10px, 10px) rotate(1.5deg); z-index: -1; background: var(--paper-2); }
.report-page.back2 { transform: translate(20px, 20px) rotate(3deg); z-index: -2; background: var(--paper-2); opacity: 0.7; }
.report:not(.in) .report-page.back, .report:not(.in) .report-page.back2 { transform: none; }
.report-head { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--ink-2); font-weight: 500; padding-bottom: 14px; border-bottom: 1px solid var(--rule); }
.report-title { font-weight: 600; letter-spacing: -0.025em; font-size: clamp(1.15rem, 1.6vw, 1.45rem); line-height: 1.15; max-width: 16ch; }
.report-toc { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 0; }
.report-toc li { display: grid; grid-template-columns: 32px 1fr; gap: 8px; font-size: 0.92rem; padding-block: 9px; border-top: 1px solid var(--rule); color: var(--ink); }
.report-toc li span { color: var(--accent); font-variant-numeric: tabular-nums; font-weight: 500; }
.report-toc li:nth-child(5), .report-toc li:nth-child(6) { font-weight: 500; }
.report-page { min-height: 0; }

/* ================= v7: photos ================= */
.chapter-intro { padding-block: clamp(80px, 11vw, 150px) clamp(24px, 4vw, 48px); display: grid; gap: 24px; }
.chapter-intro p { color: var(--night-muted); font-size: clamp(1.05rem, 1.3vw, 1.25rem); max-width: 52ch; }
.chapter-intro h2 { max-width: 20ch; }
.hero-portrait img { object-position: 50% 20%; }
.hero-top { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(32px, 5vw, 96px); align-items: end; }
@media (max-width: 860px) { .hero-top { grid-template-columns: 1fr; } }
.hero-top .lead { margin-top: 32px; max-width: 44ch; animation: rise 800ms var(--ease-out) both; animation-delay: 420ms; }
.hero-top .hero-actions { margin-top: 40px; animation: rise 800ms var(--ease-out) both; animation-delay: 520ms; }
.hero-portrait { margin: 0; }
.portrait-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo { margin: 0; position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--paper-2); }
.photo .portrait-inner { position: absolute; inset: -8% 0; }
.photo-tall { aspect-ratio: 4 / 5; }
.photo-wide { aspect-ratio: 16 / 9; max-height: 78vh; }
.photo-wide .portrait-inner { inset: 0; }
.photo-wide img { object-position: 50% 22%; }
@media (max-width: 860px) { .photo-wide { aspect-ratio: 4 / 5; } }
.photo figcaption { position: absolute; left: clamp(18px, 2.4vw, 32px); right: clamp(18px, 2.4vw, 32px); bottom: clamp(18px, 2.4vw, 32px); color: #fff; font-size: clamp(1.1rem, 1.6vw, 1.5rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.15; max-width: 26ch; text-shadow: 0 2px 20px rgba(0,0,0,0.35); }
.photo-wide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 55%); pointer-events: none; }
.manifesto-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(32px, 5vw, 96px); align-items: center; }
@media (max-width: 860px) { .manifesto-grid { grid-template-columns: 1fr; } }
.stage-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; display: block; }
.stage[data-poster="true"]::before { background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.25)); animation: none; filter: none; inset: 0; }
.stage[data-has-video="true"][data-playing="true"] .stage-poster { display: none; }
.who { display: grid; grid-template-columns: 72px 1fr; gap: 16px; align-items: center; padding: 18px; border-radius: var(--r-md); background: var(--paper-2); margin-bottom: 40px; }
.who img { width: 72px; height: 72px; border-radius: 999px; object-fit: cover; object-position: 50% 25%; }
.who strong { display: block; font-weight: 600; letter-spacing: -0.02em; }
.who span { font-size: 0.95rem; display: block; margin-top: 2px; }

/* ================= v9: award, cinema, lightbox ================= */
.award { margin-top: 28px; max-width: 46ch; font-size: clamp(1.05rem, 1.3vw, 1.2rem); font-weight: 500; letter-spacing: -0.012em; line-height: 1.45; padding-left: 18px; border-left: 2px solid var(--accent); animation: rise 800ms var(--ease-out) both; animation-delay: 360ms; }
.award span { display: block; color: var(--accent); margin-top: 4px; }
.hero-top .lead { margin-top: 24px; }
.video-head { display: grid; gap: 20px; margin-bottom: 40px; }
.video-head p { max-width: 40ch; }
.cinema { position: relative; aspect-ratio: 21 / 9; max-height: 78vh; border-radius: var(--r-lg); overflow: hidden; background: var(--night); }
@media (max-width: 860px) { .cinema { aspect-ratio: 4 / 5; } }
.cinema-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; filter: grayscale(1) contrast(1.05); opacity: 0.9; transition: transform 1200ms var(--ease-out), filter 600ms var(--ease); }
.cinema::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.05) 55%); z-index: 1; pointer-events: none; }
.cinema::after { content: ""; position: absolute; inset: 0; background: color-mix(in oklab, #2148C8 22%, transparent); mix-blend-mode: multiply; pointer-events: none; }
@media (hover: hover) and (pointer: fine) { .cinema:hover .cinema-poster { transform: scale(1.02); filter: grayscale(0.4) contrast(1.02); } }
.cinema video { display: none; }
.cinema-play { position: absolute; left: clamp(18px, 2.6vw, 36px); bottom: clamp(18px, 2.6vw, 36px); z-index: 2; display: inline-flex; align-items: center; gap: 16px; background: none; border: 0; padding: 0; cursor: pointer; color: #fff; text-align: left; font: inherit; }
.cinema-btn { width: 64px; height: 64px; border-radius: 999px; background: #fff; color: #111; display: grid; place-items: center; transition: transform 220ms var(--ease-out); flex: 0 0 auto; }
.cinema-btn svg { width: 22px; height: 22px; margin-left: 3px; }
.cinema-play:active .cinema-btn { transform: scale(0.94); }
@media (hover: hover) and (pointer: fine) { .cinema-play:hover .cinema-btn { transform: scale(1.06); } }
.cinema-meta strong { display: block; font-weight: 600; letter-spacing: -0.02em; font-size: 1.05rem; }
.cinema-meta span { display: block; font-size: 0.92rem; opacity: 0.75; margin-top: 2px; }
.cinema .stage-note { z-index: 3; left: auto; right: clamp(18px, 2.6vw, 36px); bottom: clamp(24px, 2.6vw, 44px); translate: 0 0; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); color: #fff; }
@media (max-width: 860px) { .cinema .stage-note { right: auto; left: 18px; bottom: 100px; white-space: normal; max-width: 80%; } }
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(8,8,10,0.92); display: grid; place-items: center; padding: clamp(16px, 4vw, 48px); opacity: 0; transition: opacity 240ms var(--ease-out); }
.lightbox.on { opacity: 1; }
.lightbox-frame { width: min(100%, 1200px); aspect-ratio: 16 / 9; border-radius: var(--r-md); overflow: hidden; background: #000; transform: scale(0.97); transition: transform 300ms var(--ease-out); }
.lightbox.on .lightbox-frame { transform: none; }
.lightbox-frame video { width: 100%; height: 100%; display: block; }
.lightbox-close { position: absolute; top: 18px; right: 18px; background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; padding: 10px 16px; font: inherit; cursor: pointer; }

/* ================= v10: client logos ================= */
.logos-wrap { padding-block: clamp(40px, 6vw, 80px) 0; }
.logos-label { font-size: 0.92rem; font-weight: 500; }
.logos { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; border-top: 1px solid var(--rule); padding-top: 28px; }
.logos li { display: flex; align-items: center; min-height: 40px; }
.logo-slot { display: inline-flex; align-items: center; height: 28px; color: var(--ink-2); font-weight: 600; font-size: 1rem; letter-spacing: -0.02em; white-space: nowrap; opacity: 0.8; transition: opacity 200ms var(--ease), color 200ms var(--ease); }
.logo-slot img, .logo-slot svg { height: 100%; width: auto; max-width: 160px; display: block; filter: grayscale(1) contrast(0.9); opacity: 0.75; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .logo-slot img { filter: grayscale(1) invert(1) contrast(0.9); } }
:root[data-theme="dark"] .logo-slot img { filter: grayscale(1) invert(1) contrast(0.9); }
@media (hover: hover) and (pointer: fine) { .logos li:hover .logo-slot { opacity: 1; color: var(--ink); } }
@media (max-width: 860px) { .logos { gap: 10px 26px; } .logo-slot { font-size: 0.95rem; } }

/* ================= v12: laws + glossary ================= */
.laws-head { display: grid; gap: 20px; margin-bottom: clamp(48px, 6vw, 80px); }
.manifesto p.manifesto-intro { color: var(--night-muted); font-size: clamp(1.05rem, 1.3vw, 1.25rem); font-weight: 400; letter-spacing: -0.01em; line-height: 1.45; max-width: 52ch; }
.laws-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(32px, 5vw, 96px); align-items: start; }
@media (max-width: 860px) { .laws-grid { grid-template-columns: 1fr; } .laws-photo { display: none; } }
.laws { list-style: none; margin: 0; padding: 0; }
.laws li { padding-block: clamp(28px, 3.4vw, 44px); border-top: 1px solid color-mix(in oklab, var(--night-text) 14%, transparent); }
.laws li:last-child { border-bottom: 1px solid color-mix(in oklab, var(--night-text) 14%, transparent); }
.law-n { display: block; color: var(--night-accent); font-weight: 500; font-size: 0.95rem; margin-bottom: 10px; }
.laws h3 { color: var(--night-text); font-size: clamp(1.5rem, 2.2vw, 2.1rem); letter-spacing: -0.03em; }
.manifesto p.law-thesis { color: var(--night-text); font-size: clamp(1.15rem, 1.5vw, 1.4rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.3; max-width: 34ch; margin-top: 14px; }
.manifesto p.law-body { color: var(--night-muted); font-size: 1rem; font-weight: 400; letter-spacing: -0.005em; line-height: 1.55; max-width: 62ch; margin-top: 14px; }
.laws-photo { position: sticky; top: 96px; }
.glossary { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0 clamp(24px, 4vw, 64px); margin: 0; }
.glossary > div { padding-block: 22px; border-top: 1px solid var(--rule); }
.glossary dt { font-weight: 600; letter-spacing: -0.02em; font-size: 1.1rem; }
.glossary dd { margin: 8px 0 0; color: var(--ink-2); font-size: 0.98rem; max-width: 46ch; }

@media (prefers-reduced-motion: reduce) {
  .cinema-poster { transition: none; }
  .stage::before { animation: none; }
  .chart path { transition: none; stroke-dashoffset: 0; }
  .node, .flow .link { animation: none; opacity: 1; transform: none; }
  .hero h1 .w, .page-title h1 .w { animation: none; opacity: 1; transform: none; filter: none; }
  .portrait, .hero .lead, .hero-actions, .page-title .lead { animation: fade-only 300ms ease both; }
  @keyframes fade-only { from { opacity: 0; } }
  [data-reveal] { transform: none; transition: opacity 300ms ease; }
  .layer { transform: none; transition: opacity 300ms ease; }
  .proof .w { transition: none; }
  .portrait-inner { transform: none !important; }
  .steps-list li { transition: opacity 200ms ease; }
}

/* ================= WordPress-Ergänzungen ================= */
/* Sticky Header unter der Admin-Bar */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
/* Kein JS: alles sichtbar */
html:not(.js) [data-reveal] { opacity: 1; transform: none; }
html:not(.js) .hero-v5 h1 .w, html:not(.js) .hero h1 .w, html:not(.js) .page-title h1 .w { animation: none; opacity: 1; transform: none; filter: none; }
html:not(.js) .proof .w, html:not(.js) .manifesto .w { opacity: 1; }
html:not(.js) .chart path { stroke-dashoffset: 0; }
html:not(.js) .layer { opacity: 1; transform: none; }
/* Inhalt aus dem Editor (Beiträge, Standard-Seiten) */
.content p { font-size: 1.12rem; line-height: 1.6; max-width: 68ch; }
.content h2, .content h3 { margin-top: 1.6em; }
.content h2 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); }
.content ul, .content ol { max-width: 68ch; padding-left: 1.2em; }
.content li + li { margin-top: 0.4em; }
.content blockquote { margin: 1.6em 0; padding-left: 1.2em; border-left: 2px solid var(--accent); font-size: 1.2rem; }
.content img { border-radius: var(--r-md); }
.content a { color: var(--accent); }
.wp-block-image, .content figure { margin: 1.6em 0; }
.alignwide { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.alignfull { width: 100vw; margin-inline: calc(50% - 50vw); max-width: none; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
/* Pagination */
.pagination .nav-links { display: flex; gap: 12px; }
.pagination .page-numbers { text-decoration: none; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--rule); color: var(--ink); }
.pagination .page-numbers.current { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ================= Elementor native (Hybrid v1.2) =================
   Layout-Sektionen bestehen aus Elementor-Containern/-Widgets; diese Klassen liefern die Optik.
   Werte, die Marc im Elementor-Panel setzt, gewinnen (elementspezifische Selektoren). */
.mr .e-con.mr-wrap { --container-max-width: var(--max); --content-width: min(100% - 2 * var(--gutter), var(--max)); max-width: none; width: 100%; }
.mr .e-con.mr-wrap > .e-con-inner { max-width: var(--content-width); width: 100%; margin-inline: auto; }
.mr .e-con.mr-full { --content-width: 100%; max-width: none; width: 100%; }
.mr .e-con.mr-full > .e-con-inner { max-width: none; }
.mr .elementor-widget:not(:last-child) { margin-bottom: 0; }
.mr .elementor-widget-container { width: 100%; }
.mr .elementor-widget-container > p:last-child { margin-bottom: 0; }

/* Sektionsabstände – über Elementor-Padding-Variablen, damit Werte aus dem Panel gewinnen */
.mr .e-con { --padding-top: 0px; --padding-right: 0px; --padding-bottom: 0px; --padding-left: 0px; --padding-block-start: 0px; --padding-block-end: 0px; --padding-inline-start: 0px; --padding-inline-end: 0px; }
.mr .e-con.mr-sec { --padding-top: clamp(80px, 11vw, 160px); --padding-bottom: clamp(80px, 11vw, 160px); --padding-block-start: clamp(80px, 11vw, 160px); --padding-block-end: clamp(80px, 11vw, 160px); }
.mr .e-con.mr-sec-top0 { --padding-top: 0px; --padding-block-start: 0px; }
.mr .e-con.mr-hero { --padding-top: clamp(40px, 5vw, 72px); --padding-block-start: clamp(40px, 5vw, 72px); }
.mr .e-con.mr-page-title { --padding-top: clamp(56px, 8vw, 120px); --padding-bottom: clamp(40px, 6vw, 80px); --padding-block-start: clamp(56px, 8vw, 120px); --padding-block-end: clamp(40px, 6vw, 80px); }
.mr .e-con.mr-photo-sec { --padding-bottom: clamp(80px, 11vw, 160px); --padding-block-end: clamp(80px, 11vw, 160px); }
.mr .e-con.mr-manifesto { --padding-top: clamp(96px, 14vw, 200px); --padding-bottom: clamp(96px, 14vw, 200px); --padding-block-start: clamp(96px, 14vw, 200px); --padding-block-end: clamp(96px, 14vw, 200px); }
.mr .e-con.mr-cta { --padding-top: clamp(80px, 11vw, 150px); --padding-bottom: clamp(80px, 11vw, 150px); --padding-block-start: clamp(80px, 11vw, 150px); --padding-block-end: clamp(80px, 11vw, 150px); }

/* Abstands-Utilities für Widgets (per Elementor → Erweitert → Abstand überschreibbar) */
.mr-mt-8 { margin-top: 8px !important; } .mr-mt-16 { margin-top: 16px !important; } .mr-mt-20 { margin-top: 20px !important; } .mr-mt-24 { margin-top: 24px !important; } .mr-mt-28 { margin-top: 28px !important; } .mr-mt-32 { margin-top: 32px !important; } .mr-mt-40 { margin-top: 40px !important; } .mr-mt-64 { margin-top: 64px !important; }
.mr-max-44 p { max-width: 44ch; } .mr-max-52 p { max-width: 52ch; } .mr-max-56 p { max-width: 56ch; } .mr-max-60 p { max-width: 60ch; }
.mr-d1 { --d: 120ms; } .mr-d0 { --d: 0ms; } .mr-d2 { --d: 160ms; }

/* Überschriften */
.mr .elementor-widget-heading .elementor-heading-title { margin: 0; font-weight: 600; line-height: 1.08; letter-spacing: -0.028em; text-wrap: balance; color: inherit; }
.mr .elementor-widget-heading h1.elementor-heading-title { font-size: clamp(2.6rem, 5.6vw, 5.4rem); letter-spacing: -0.04em; line-height: 1.0; }
.mr .elementor-widget-heading h2.elementor-heading-title { font-size: clamp(2rem, 3.6vw, 3.4rem); letter-spacing: -0.035em; line-height: 1.04; }
.mr .elementor-widget-heading h3.elementor-heading-title { font-size: clamp(1.2rem, 1.5vw, 1.45rem); letter-spacing: -0.02em; }
.mr .mr-h1 h1.elementor-heading-title { max-width: 30ch; font-size: clamp(2.3rem, 4.4vw, 4.2rem); }
.mr .mr-h1-page h1.elementor-heading-title { max-width: 16ch; }
.mr .mr-h2-14 .elementor-heading-title { max-width: 14ch; } .mr .mr-h2-16 .elementor-heading-title { max-width: 16ch; } .mr .mr-h2-18 .elementor-heading-title { max-width: 18ch; }
.mr .mr-h2-small h2.elementor-heading-title { font-size: clamp(1.6rem, 2.4vw, 2.2rem); }
.mr-words .w { display: inline-block; opacity: 0; transform: translateY(0.35em); filter: blur(8px); animation: word-in 820ms var(--ease-out) both; animation-delay: calc(var(--i) * 38ms + 60ms); }
.mr-rise .elementor-widget-container { animation: rise 800ms var(--ease-out) both; animation-delay: 380ms; }

/* Text */
.mr .elementor-widget-text-editor, .mr .elementor-widget-text-editor .elementor-text-editor { font-size: inherit; line-height: inherit; color: inherit; }
.mr .elementor-widget-text-editor p { margin: 0; max-width: 62ch; text-wrap: pretty; }
.mr .elementor-widget-text-editor p + p { margin-top: 1em; }
.mr .elementor-widget-text-editor ul { margin: 0; padding-left: 1.2em; }
.mr-muted { color: var(--ink-2); }
.mr .mr-lead p { font-size: clamp(1.15rem, 1.5vw, 1.45rem); line-height: 1.4; letter-spacing: -0.012em; }
.mr-page-title .mr-lead p { max-width: 50ch; }
.mr-hero .mr-lead p { max-width: 44ch; }
.mr-hero .mr-lead .elementor-widget-container { animation: rise 800ms var(--ease-out) both; animation-delay: 420ms; }
.mr .mr-award p { margin-top: 28px; max-width: 46ch; font-size: clamp(1.05rem, 1.3vw, 1.2rem); font-weight: 500; letter-spacing: -0.012em; line-height: 1.45; padding-left: 18px; border-left: 2px solid var(--accent); }
.mr .mr-award .elementor-widget-container { animation: rise 800ms var(--ease-out) both; animation-delay: 320ms; }
.mr .mr-award em { display: block; color: var(--accent); margin-top: 4px; font-style: normal; }
.mr-kicker p { font-weight: 500; color: var(--ink-2); margin-bottom: 16px; }
.mr-chapter-title p { color: var(--night-muted); font-weight: 500; font-size: 1rem; letter-spacing: -0.01em; margin-bottom: 20px; }
.mr .mr-intro-dark p { color: var(--night-muted); font-size: clamp(1.05rem, 1.3vw, 1.25rem); line-height: 1.45; max-width: 52ch; }
.mr .mr-stack p + p { margin-top: 20px; }
.mr .mr-promise ul { list-style: none; padding: 0; max-width: 52ch; }
.mr .mr-promise li { padding: 16px 0; border-top: 1px solid var(--rule); font-size: 1.05rem; letter-spacing: -0.01em; }
.mr .mr-promise li:last-child { border-bottom: 1px solid var(--rule); }

/* Buttons */
.mr-actions .elementor-widget-container { animation: rise 800ms var(--ease-out) both; animation-delay: 520ms; }
.mr .elementor-widget-button.mr-btn-primary .elementor-button, .mr .elementor-widget-button.mr-btn-secondary .elementor-button {
  display: inline-flex; align-items: center; gap: 10px; min-height: 52px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent;
  font: inherit; font-weight: 500; letter-spacing: -0.01em; font-size: inherit; line-height: 1; background: var(--ink); color: var(--paper); text-decoration: none; white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
}
.mr .elementor-widget-button.mr-btn-secondary .elementor-button { background: transparent; color: var(--ink); border-color: var(--rule); }
.mr .elementor-widget-button .elementor-button:active { transform: scale(0.96); }
.mr .elementor-widget-button.mr-btn-primary .elementor-button-content-wrapper::after, .mr .elementor-widget-button.mr-btn-play .elementor-button-content-wrapper::before {
  content: ""; width: 16px; height: 16px; background: currentColor; flex: 0 0 auto;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 8h11M9.5 3.5 14 8l-4.5 4.5'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 8h11M9.5 3.5 14 8l-4.5 4.5'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 240ms var(--ease-out);
}
.mr .elementor-widget-button.mr-btn-play .elementor-button-content-wrapper::before { width: 14px; height: 14px; -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4.5v15l13-7.5z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4.5v15l13-7.5z'/%3E%3C/svg%3E"); }
.mr .elementor-widget-button .elementor-button-content-wrapper { display: inline-flex; align-items: center; gap: 10px; }
@media (hover: hover) and (pointer: fine) {
  .mr .elementor-widget-button.mr-btn-primary .elementor-button:hover { background: color-mix(in oklab, var(--ink) 82%, var(--paper)); }
  .mr .elementor-widget-button.mr-btn-secondary .elementor-button:hover { border-color: var(--ink); }
  .mr .elementor-widget-button.mr-btn-primary .elementor-button:hover .elementor-button-content-wrapper::after { transform: translateX(3px); }
}
.mr-dark .elementor-widget-button.mr-btn-primary .elementor-button { background: var(--night-text); color: var(--night); }
@media (hover: hover) and (pointer: fine) { .mr-dark .elementor-widget-button.mr-btn-primary .elementor-button:hover { background: color-mix(in oklab, var(--night-text) 84%, var(--night)); } }
.mr-cta-row > .e-con:last-child { align-items: flex-end; }
@media (max-width: 1024px) { .mr-cta-row > .e-con:last-child { align-items: flex-start; } }

/* Bilder */
.mr .mr-portrait .elementor-widget-container, .mr .mr-photo-tall .elementor-widget-container { aspect-ratio: 4 / 5; border-radius: var(--r-lg); background: var(--accent-tint); position: relative; overflow: hidden; }
.mr .mr-portrait .elementor-widget-container { animation: portrait-in 1100ms var(--ease-out) both; animation-delay: 200ms; }
.mr .mr-portrait img, .mr .mr-photo-tall img, .mr .mr-photo-wide img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.mr .mr-portrait .portrait-inner, .mr .mr-photo-tall .portrait-inner { position: absolute; inset: -8% 0; will-change: transform; }
.mr .mr-portrait-hero img { object-position: 50% 20%; }
.mr .mr-photo-tall .elementor-widget-container { background: var(--paper-2); animation: none; }
.mr .mr-sticky { position: sticky; top: 96px; }
@media (max-width: 1024px) { .mr-laws-grid > .e-con:last-child { display: none; } }
.mr .mr-photo-wide .elementor-widget-container { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--paper-2); aspect-ratio: 16 / 9; max-height: 78vh; }
.mr .mr-photo-wide .elementor-widget-container::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 55%); pointer-events: none; z-index: 1; }
.mr .mr-photo-wide figure, .mr .mr-photo-wide .portrait-inner { position: absolute; inset: 0; margin: 0; }
.mr .mr-photo-wide img { object-position: 50% 22%; }
.mr .mr-photo-wide figcaption { position: absolute; left: clamp(18px, 2.4vw, 32px); right: clamp(18px, 2.4vw, 32px); bottom: clamp(18px, 2.4vw, 32px); z-index: 2; color: #fff; text-align: left; margin: 0; font-size: clamp(1.1rem, 1.6vw, 1.5rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.15; max-width: 24ch; }
@media (max-width: 860px) { .mr .mr-photo-wide .elementor-widget-container { aspect-ratio: 4 / 5; } }
.mr .elementor-widget-image img { display: block; max-width: 100%; }

/* Dunkle Sektionen */
.mr-dark { background: var(--night); color: var(--night-text); }
.mr-dark .elementor-heading-title { color: var(--night-text); }
.mr-dark .mr-muted { color: var(--night-muted); }

/* Gesetze */
.mr-laws-head { margin-bottom: clamp(48px, 6vw, 80px); }
.mr .e-con.mr-law { border-top: 1px solid color-mix(in oklab, var(--night-text) 14%, transparent); }
.mr .e-con.mr-law:last-child { border-bottom: 1px solid color-mix(in oklab, var(--night-text) 14%, transparent); }
.mr .mr-law-n p { color: var(--night-accent); font-weight: 500; font-size: 0.95rem; margin-bottom: 10px; }
.mr .mr-law-h h3.elementor-heading-title { font-size: clamp(1.5rem, 2.2vw, 2.1rem); letter-spacing: -0.03em; }
.mr .mr-law-thesis p { color: var(--night-text); font-size: clamp(1.15rem, 1.5vw, 1.4rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.3; max-width: 34ch; margin-top: 14px; }
.mr .mr-law-body p { color: var(--night-muted); font-size: 1rem; line-height: 1.55; max-width: 62ch; margin-top: 14px; }

/* Zitate */
.mr .mr-quote-text p { font-size: clamp(1.3rem, 1.9vw, 1.75rem); line-height: 1.32; letter-spacing: -0.025em; font-weight: 500; max-width: none; }
.mr .mr-quote-by p { color: var(--ink-2); font-size: 0.98rem; }
.mr .mr-quote-by strong { color: var(--ink); font-weight: 600; display: block; }

/* Glossar / Team / Ablauf / Wer */
.mr .e-con.mr-gloss { border-top: 1px solid var(--rule); }
.mr .mr-gloss-t h3.elementor-heading-title { font-size: 1.1rem; }
.mr .mr-gloss-d p { font-size: 0.98rem; max-width: 46ch; }
.mr .e-con.mr-tile { border-radius: var(--r-md); background: var(--paper-2); }
.mr .mr-tile-h h3.elementor-heading-title { font-size: 1.08rem; }
.mr .mr-tile-p p { font-size: 0.98rem; }
.mr .e-con.mr-who { border-radius: var(--r-md); background: var(--paper-2); }
.mr .mr-who-img { width: 72px; flex: 0 0 72px; }
.mr .mr-who-img img { width: 72px; height: 72px; border-radius: 999px; object-fit: cover; object-position: 50% 25%; }
.mr .mr-who-text p { font-size: 0.95rem; }
.mr .mr-who-text strong { display: block; color: var(--ink); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 2px; }
.mr .e-con.mr-steps { counter-reset: step; }
.mr .e-con.mr-step { counter-increment: step; --display: grid; display: grid; grid-template-columns: 56px 1fr; gap: 16px; border-top: 1px solid var(--rule); }
.mr .mr-step::before { content: counter(step); font-weight: 600; font-size: 1.6rem; letter-spacing: -0.03em; line-height: 1; color: var(--accent); grid-row: 1 / span 2; }
.mr .mr-step > .elementor-widget { grid-column: 2; }
.mr .mr-step-p p { font-size: 1rem; }

/* Reveal für native Elemente */
.js .mr-reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); transition-delay: var(--d, 0ms); }
.js .mr-reveal.in { opacity: 1; transform: none; }
.js .mr-reveal.mr-photo-wide .elementor-widget-container { transition: none; }
@media (prefers-reduced-motion: reduce) { .mr-words .w { animation: none; opacity: 1; transform: none; filter: none; } .js .mr-reveal { transform: none; transition: opacity 300ms ease; } .mr-rise .elementor-widget-container, .mr-award .elementor-widget-container, .mr-actions .elementor-widget-container, .mr-hero .mr-lead .elementor-widget-container { animation: fade-only 300ms ease both; } }
