@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-display-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #07100f;
  --petrol: #063f43;
  --paper: #fff8f3;
  --white: #ffffff;
  --turquoise: #00dfc5;
  --pink: #ff2f92;
  --salmon: #ff755f;
  --fog: #f7e7e8;
  --line: rgba(7, 16, 15, 0.18);
  --muted: #51605e;
  --max: 1260px;
  --header: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
body::selection { background: var(--pink); color: var(--ink); }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }

.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 14px; background: var(--ink); color: var(--white); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 26px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled, .page .site-header { background: rgba(255, 248, 243, 0.94); color: var(--ink); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(16px); }
.brand { justify-self: start; display: grid; line-height: 0.88; font-size: 21px; font-weight: 900; letter-spacing: -0.04em; }
.brand span:last-child { color: var(--turquoise); }
.site-header.is-scrolled .brand span:last-child, .page .site-header .brand span:last-child { color: var(--petrol); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--salmon); color: var(--ink); font-weight: 900; cursor: pointer; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.main-nav a { font-size: 13px; font-weight: 760; }
.main-nav a:hover { color: var(--pink); }
.language-link { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%; font-size: 11px; font-weight: 850; }

.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr); overflow: hidden; background: var(--petrol); color: var(--white); }
.hero-copy { position: relative; z-index: 3; align-self: end; padding: calc(var(--header) + 70px) clamp(28px, 5vw, 82px) clamp(58px, 8vh, 96px) max(28px, calc((100vw - var(--max)) / 2)); }
.hero-brand { margin: 0 0 36px; font-size: clamp(64px, 8vw, 128px); font-weight: 900; letter-spacing: -0.075em; line-height: 0.76; }
.hero-brand span { display: block; }
.hero-brand span:last-child { color: var(--turquoise); }
.hero h1 { max-width: 760px; margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(38px, 4.4vw, 68px); letter-spacing: -0.035em; line-height: 0.98; }
.hero-lead { max-width: 700px; margin: 28px 0 0; font-size: clamp(18px, 1.6vw, 23px); color: rgba(255,255,255,.84); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 1px solid currentColor; font-size: 13px; font-weight: 850; transition: transform 160ms ease, background 160ms ease, color 160ms ease; }
.button:hover { transform: translateY(-3px); }
.button.primary { border-color: var(--salmon); background: var(--salmon); color: var(--ink); }
.button.secondary { color: var(--white); }
.hero-image { position: relative; min-height: 100svh; overflow: hidden; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--petrol), transparent 24%), linear-gradient(0deg, rgba(6,63,67,.38), transparent 45%); pointer-events: none; }
.hero-image img { width: 100%; height: 100%; min-height: 100svh; object-fit: cover; object-position: 57% 50%; display: block; }
.threshold { position: absolute; z-index: 2; right: 6%; bottom: 8%; width: min(64%, 510px); aspect-ratio: 1.2; border: 14px solid var(--turquoise); border-left-width: 0; pointer-events: none; }
.threshold::before { content: ""; position: absolute; right: 18%; top: 22%; width: 42%; height: 48%; border: 12px solid var(--salmon); border-left-width: 0; }
.threshold::after { content: ""; position: absolute; right: calc(60% - 11px); top: calc(70% - 11px); width: 22px; height: 22px; border-radius: 50%; background: var(--pink); }
.hero-note { position: absolute; z-index: 3; right: 26px; top: 50%; margin: 0; color: var(--white); font-size: 11px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; writing-mode: vertical-rl; }

.proof-line { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: var(--white); border-top: 1px solid rgba(255,255,255,.18); }
.proof-line div { min-height: 138px; padding: 26px clamp(20px, 3vw, 42px); border-right: 1px solid rgba(255,255,255,.18); }
.proof-line span { display: block; margin-bottom: 30px; color: var(--turquoise); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.proof-line strong { font-size: clamp(18px, 1.6vw, 25px); line-height: 1.08; }

.section { padding: clamp(90px, 12vw, 160px) max(28px, calc((100vw - var(--max)) / 2)); }
.section-kicker { margin: 0 0 18px; color: var(--petrol); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.section-title { max-width: 1040px; margin: 0; font-size: clamp(42px, 6vw, 82px); font-weight: 820; letter-spacing: -.055em; line-height: .96; }
.section-lead { max-width: 760px; margin: 28px 0 0; font-size: clamp(19px, 2vw, 26px); line-height: 1.42; }
.serif { font-family: "Playfair Display", Georgia, serif; }
.pink { color: var(--pink); }
.turquoise { color: var(--turquoise); }
.salmon { color: var(--salmon); }
.dark { background: var(--ink); color: var(--white); }
.dark .section-kicker { color: var(--salmon); }
.dark .section-lead { color: rgba(255,255,255,.76); }

.five-fields { margin-top: clamp(54px, 8vw, 96px); border-top: 1px solid var(--line); }
.five-fields article { display: grid; grid-template-columns: .36fr .82fr 1.2fr; gap: clamp(20px, 4vw, 62px); align-items: start; padding: 30px 0 34px; border-bottom: 1px solid var(--line); }
.five-fields span { font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.five-fields h3 { margin: 0; font-size: clamp(28px, 3.5vw, 50px); line-height: .96; letter-spacing: -.045em; }
.five-fields p { max-width: 680px; margin: 0; font-size: 18px; }
.five-fields article:nth-child(1) span, .five-fields article:nth-child(4) span { color: var(--pink); }
.five-fields article:nth-child(2) span, .five-fields article:nth-child(5) span { color: var(--petrol); }
.five-fields article:nth-child(3) span { color: #b83022; }

.entry-section { background: var(--turquoise); }
.offer-rows { margin-top: clamp(56px, 8vw, 96px); border-top: 2px solid var(--ink); }
.offer-row { display: grid; grid-template-columns: 90px 1fr .9fr auto; gap: clamp(18px, 4vw, 58px); align-items: start; padding: 34px 0 38px; border-bottom: 1px solid rgba(7,16,15,.45); }
.offer-row .number { font-family: "Playfair Display", Georgia, serif; font-size: 54px; line-height: .8; }
.offer-row h3 { margin: 0; font-size: clamp(28px, 3vw, 44px); letter-spacing: -.04em; line-height: 1; }
.offer-row p { margin: 0; font-size: 17px; }
.offer-row a { font-size: 13px; font-weight: 850; white-space: nowrap; border-bottom: 2px solid var(--ink); }

.transformation { position: relative; overflow: hidden; background: var(--petrol); color: var(--white); }
.transformation::before { content: "AI"; position: absolute; right: -0.07em; top: -.18em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.22); font-size: min(45vw, 680px); font-weight: 900; line-height: 1; }
.transformation .section-kicker { color: var(--salmon); }
.transformation-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 10vw, 150px); }
.transformation-points { align-self: end; border-top: 1px solid rgba(255,255,255,.3); }
.transformation-points p { margin: 0; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.3); font-size: 18px; }
.transformation-points strong { color: var(--turquoise); }

.framework { background: var(--pink); }
.framework-track { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(58px, 8vw, 100px); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.framework-track article { position: relative; min-height: 360px; padding: 28px; border-right: 1px solid rgba(7,16,15,.4); }
.framework-track article:last-child { border-right: 0; }
.framework-track span { font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.framework-track h3 { margin: 72px 0 18px; font-size: clamp(38px, 4vw, 62px); letter-spacing: -.05em; line-height: .9; }
.framework-track p { margin: 0; font-size: 18px; }
.framework-track article:nth-child(2) { background: var(--paper); }
.framework-track article:nth-child(3) { background: var(--salmon); }

.founder { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(46px, 9vw, 130px); align-items: start; }
.founder aside { position: sticky; top: calc(var(--header) + 36px); }
.founder-quote { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(48px, 6vw, 86px); line-height: .93; letter-spacing: -.04em; }
.founder-copy p { margin: 0 0 1.2em; font-size: clamp(18px, 1.6vw, 22px); }
.fact-list { margin: 40px 0 0; border-top: 1px solid var(--line); }
.fact-list div { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.fact-list dt { color: var(--petrol); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.fact-list dd { margin: 0; }

.contact-section { background: var(--salmon); }
.contact-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; }
.contact-section .button { background: var(--ink); border-color: var(--ink); color: var(--white); }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; padding: 36px max(28px, calc((100vw - var(--max)) / 2)); background: var(--ink); color: rgba(255,255,255,.72); font-size: 13px; }
.footer-brand { color: var(--white); font-weight: 900; letter-spacing: -.02em; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 24px; }
.site-footer p { justify-self: end; margin: 0; text-align: right; }
.site-footer a:hover { color: var(--turquoise); }

/* Interior pages */
.page { padding-top: var(--header); }
.page-hero { min-height: 70svh; display: grid; align-content: end; padding: clamp(120px, 15vw, 210px) max(28px, calc((100vw - var(--max)) / 2)) clamp(70px, 10vw, 130px); background: var(--petrol); color: var(--white); }
.page-hero.turquoise-bg { background: var(--turquoise); color: var(--ink); }
.page-hero.pink-bg { background: var(--pink); color: var(--ink); }
.page-hero.salmon-bg { background: var(--salmon); color: var(--ink); }
.page-hero .eyebrow { margin: 0 0 24px; color: var(--turquoise); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.page-hero.turquoise-bg .eyebrow, .page-hero.pink-bg .eyebrow, .page-hero.salmon-bg .eyebrow { color: var(--ink); }
.page-hero h1 { max-width: 1080px; margin: 0; font-size: clamp(56px, 9vw, 134px); letter-spacing: -.07em; line-height: .82; }
.page-hero p { max-width: 800px; margin: 32px 0 0; font-size: clamp(19px, 2vw, 27px); }
.subnav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.subnav a { padding: 8px 12px; border: 1px solid currentColor; font-size: 12px; font-weight: 800; }

.editorial-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(40px, 9vw, 130px); }
.editorial-grid .sticky { position: sticky; top: calc(var(--header) + 34px); align-self: start; }
.editorial-copy { max-width: 780px; }
.editorial-copy h2 { margin: 0 0 24px; font-size: clamp(34px, 4vw, 58px); letter-spacing: -.04em; line-height: 1; }
.editorial-copy h3 { margin: 54px 0 16px; font-size: 28px; letter-spacing: -.03em; }
.editorial-copy p, .editorial-copy li { font-size: 18px; }
.editorial-copy ul { padding-left: 20px; }
.rule-list { border-top: 1px solid var(--line); }
.rule-list article { padding: 28px 0 34px; border-bottom: 1px solid var(--line); }
.rule-list h2, .rule-list h3 { margin: 0 0 12px; font-size: clamp(28px, 3vw, 44px); letter-spacing: -.04em; line-height: 1; }
.rule-list p { max-width: 760px; margin: 0; font-size: 18px; }
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.meta span { padding: 7px 9px; border: 1px solid var(--line); font-size: 11px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.status-line { display: grid; grid-template-columns: 180px 1fr; gap: 30px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.status-line strong { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.status-line p { margin: 0; }
.book-callout { padding: clamp(38px, 5vw, 72px); background: var(--pink); color: var(--ink); }
.book-callout h2 { max-width: 900px; margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(40px, 6vw, 78px); line-height: .96; }
.book-callout p { max-width: 760px; margin: 26px 0 0; font-size: 20px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 620ms ease, transform 620ms cubic-bezier(.2,.75,.25,1); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.js .hero-copy > * { opacity: 0; transform: translateY(20px); animation: hero-in 700ms cubic-bezier(.2,.75,.25,1) forwards; }
.js .hero-copy > *:nth-child(2) { animation-delay: 90ms; }
.js .hero-copy > *:nth-child(3) { animation-delay: 170ms; }
.js .hero-copy > *:nth-child(4) { animation-delay: 240ms; }
@keyframes hero-in { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .nav-toggle { display: block; }
  .main-nav { position: fixed; inset: var(--header) 0 auto; display: none; padding: 24px 28px 32px; background: var(--paper); color: var(--ink); box-shadow: 0 20px 30px rgba(7,16,15,.12); }
  .main-nav.open { display: grid; }
  .main-nav a { min-height: 40px; display: flex; align-items: center; font-size: 16px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 72svh; }
  .hero-image, .hero-image img { min-height: 58svh; height: 58svh; }
  .hero-image::after { background: linear-gradient(180deg, var(--petrol), transparent 24%), linear-gradient(0deg, rgba(6,63,67,.4), transparent 55%); }
  .proof-line { grid-template-columns: 1fr 1fr; }
  .five-fields article { grid-template-columns: .35fr 1fr; }
  .five-fields p { grid-column: 2; }
  .offer-row { grid-template-columns: 70px 1fr; }
  .offer-row p, .offer-row a { grid-column: 2; }
  .transformation-grid, .founder, .editorial-grid { grid-template-columns: 1fr; }
  .founder aside, .editorial-grid .sticky { position: static; }
  .framework-track { grid-template-columns: 1fr; }
  .framework-track article { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(7,16,15,.4); }
  .framework-track article:last-child { border-bottom: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer p { justify-self: start; text-align: left; }
}

@media (max-width: 620px) {
  :root { --header: 68px; }
  body { font-size: 16px; }
  .site-header { padding-inline: 20px; }
  .language-link { min-width: 38px; height: 38px; }
  .hero-copy { padding: calc(var(--header) + 52px) 22px 52px; }
  .hero-brand { font-size: clamp(58px, 21vw, 84px); }
  .hero h1 { font-size: 38px; }
  .hero-actions .button { width: 100%; }
  .hero-image, .hero-image img { min-height: 52svh; height: 52svh; }
  .proof-line { grid-template-columns: 1fr; }
  .proof-line div { min-height: 105px; }
  .section { padding: 82px 22px; }
  .section-title { font-size: 42px; }
  .five-fields article { grid-template-columns: 1fr; gap: 12px; }
  .five-fields p { grid-column: 1; }
  .offer-row { grid-template-columns: 1fr; gap: 14px; }
  .offer-row p, .offer-row a { grid-column: 1; }
  .offer-row .number { font-size: 42px; }
  .framework-track article { padding: 24px; }
  .framework-track h3 { margin-top: 42px; }
  .fact-list div, .status-line { grid-template-columns: 1fr; gap: 6px; }
  .page-hero { min-height: 60svh; padding: 120px 22px 64px; }
  .page-hero h1 { font-size: clamp(50px, 17vw, 76px); }
  .site-footer { padding: 34px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal, .js .hero-copy > * { opacity: 1; transform: none; }
}

/* RAUM FUTURES home V2 — editorial spatial direction */
.home-v2 { background: var(--paper); }
.home-v2 .site-header { color: var(--white); }
.home-v2 .site-header.is-scrolled { color: var(--ink); }
.v2-hero { position: relative; min-height: 100svh; overflow: hidden; background: var(--petrol); color: var(--white); }
.v2-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.v2-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,63,67,.98) 0%, rgba(6,63,67,.9) 35%, rgba(6,63,67,.2) 67%, rgba(6,63,67,.05) 100%), linear-gradient(0deg, rgba(7,16,15,.34), transparent 48%); }
.v2-hero-copy { position: relative; z-index: 2; display: flex; min-height: 100svh; max-width: 720px; flex-direction: column; justify-content: flex-end; padding: calc(var(--header) + 60px) 32px clamp(68px, 8vh, 100px) max(28px, calc((100vw - var(--max)) / 2)); }
.v2-wordmark { margin: 0 0 34px; font-size: clamp(62px, 8vw, 124px); font-weight: 950; letter-spacing: -.075em; line-height: .9; }
.v2-wordmark span { display: block; color: var(--turquoise); }
.v2-hero h1 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(45px, 5vw, 74px); letter-spacing: -.04em; line-height: .92; }
.v2-hero-copy > p:last-of-type { max-width: 550px; margin: 26px 0 30px; color: rgba(255,255,255,.78); font-size: 20px; }
.v2-hero-copy > a { width: fit-content; padding: 16px 20px; background: var(--salmon); color: var(--ink); font-size: 13px; font-weight: 900; }
.v2-hero-copy > a span { margin-left: 44px; }
.v2-founder-label { position: absolute; z-index: 2; right: 24px; bottom: 34px; color: var(--white); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; }
.v2-threshold { position: absolute; z-index: 2; right: 5%; bottom: 9%; width: min(29vw, 430px); aspect-ratio: 1.15; border: 10px solid var(--turquoise); border-left: 0; opacity: .92; }
.v2-threshold i { position: absolute; right: 19%; top: 24%; width: 48%; height: 48%; border: 8px solid var(--salmon); border-left: 0; }
.v2-threshold b { position: absolute; left: 34%; bottom: 30%; width: 22px; height: 22px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 10px rgba(255,47,146,.12); }

.v2-eyebrow { margin: 0 0 22px; color: var(--petrol); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.v2-occasions { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px,9vw,130px); padding: clamp(90px,11vw,150px) max(28px,calc((100vw - var(--max)) / 2)); background: var(--turquoise); }
.v2-occasions h2 { max-width: 720px; margin: 0; font-size: clamp(42px,5.2vw,72px); line-height: 1; letter-spacing: -.055em; }
.v2-occasions h2 em { color: var(--petrol); font-family: "Playfair Display", Georgia, serif; }
.v2-occasion-lines { border-top: 1px solid rgba(7,16,15,.6); }
.v2-occasion-lines p { display: grid; grid-template-columns: minmax(130px,.42fr) 1fr; gap: 30px; margin: 0; padding: 28px 0 34px; border-bottom: 1px solid rgba(7,16,15,.35); }
.v2-occasion-lines strong { font-size: 19px; }
.v2-occasion-lines span { max-width: 620px; line-height: 1.55; }
.v2-manifesto { padding: clamp(100px, 15vw, 220px) max(28px, calc((100vw - var(--max)) / 2)); }
.v2-manifesto h2 { max-width: 1100px; margin: 0; font-size: clamp(52px, 8vw, 118px); line-height: .88; letter-spacing: -.07em; }
.v2-manifesto h2 em { display: block; color: var(--pink); font-family: "Playfair Display", Georgia, serif; font-weight: 700; }
.v2-manifesto > p:not(.v2-eyebrow) { max-width: 730px; margin: 64px 0 22px auto; font-family: "Playfair Display", Georgia, serif; font-size: clamp(25px, 3vw, 42px); line-height: 1.12; }
.v2-manifesto strong { display: block; max-width: 730px; margin-left: auto; color: var(--petrol); font-size: 17px; }

.v2-raum { position: relative; padding: clamp(100px, 13vw, 180px) max(28px, calc((100vw - var(--max)) / 2)); overflow: hidden; background: var(--petrol); color: var(--white); }
.v2-raum .v2-eyebrow { color: var(--turquoise); }
.v2-raum-intro { display: grid; grid-template-columns: .45fr 1.05fr .7fr; gap: 34px; align-items: start; }
.v2-raum-intro h2 { margin: 0; font-size: clamp(48px, 6vw, 88px); letter-spacing: -.06em; line-height: .9; }
.v2-raum-intro h2 em { color: var(--turquoise); font-family: "Playfair Display", Georgia, serif; font-weight: 700; }
.v2-raum-intro > p:last-child { margin: 10px 0 0; color: rgba(255,255,255,.72); font-size: 19px; }
.v2-matrix { position: relative; min-height: 780px; margin-top: 100px; border: 1px solid rgba(255,255,255,.2); }
.v2-axis { position: absolute; color: rgba(255,255,255,.55); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.v2-axis i { display: block; background: rgba(255,255,255,.3); }
.v2-axis-x { left: 6%; right: 6%; top: 51%; }
.v2-axis-x i { height: 1px; margin-top: 10px; }
.v2-axis-y { left: 50%; top: 6%; bottom: 6%; writing-mode: vertical-rl; }
.v2-axis-y i { position: absolute; top: 0; bottom: 0; left: -12px; width: 1px; }
.v2-axis-z { right: 5%; top: 8%; transform: rotate(-32deg); transform-origin: right top; }
.v2-axis-z i { width: 260px; height: 1px; margin-top: 10px; }
.v2-point { position: absolute; z-index: 2; left: 50%; top: 48%; width: min(390px, 45%); padding-left: 40px; }
.v2-point b { position: absolute; left: -11px; top: -7px; width: 22px; height: 22px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 18px rgba(255,47,146,.16); }
.v2-point small { color: var(--salmon); font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.v2-point p { margin: 16px 0 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(25px, 3vw, 42px); line-height: 1.06; }
.v2-fields { position: absolute; inset: auto 4% 5%; display: grid; grid-template-columns: repeat(3, 1fr); }
.v2-fields article { padding: 22px; border-top: 1px solid rgba(255,255,255,.4); }
.v2-fields h3 { margin: 0; font-size: clamp(34px, 4vw, 62px); letter-spacing: -.06em; }
.v2-fields article:nth-child(2) h3 { color: var(--turquoise); }
.v2-fields article:nth-child(3) h3 { color: var(--salmon); }
.v2-fields p { max-width: 290px; margin: 10px 0 0; color: rgba(255,255,255,.62); font-size: 14px; }
.v2-depth { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin: 70px 0; }
.v2-depth p { margin: 0; color: rgba(255,255,255,.64); }
.v2-depth span { display: block; margin-bottom: 15px; color: var(--turquoise); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.v2-time-note { max-width: 760px; margin: 0 0 56px auto; padding-left: 24px; border-left: 5px solid var(--salmon); color: rgba(255,255,255,.72); font-size: 18px; }
.v2-time-note strong { color: var(--white); }
.v2-text-link { display: inline-block; border-bottom: 1px solid currentColor; font-weight: 850; }

.v2-practice { padding: clamp(90px, 12vw, 160px) 0; overflow: hidden; background: var(--pink); }
.v2-practice > .v2-eyebrow, .v2-practice > p:last-child { margin-left: max(28px, calc((100vw - var(--max)) / 2)); margin-right: max(28px, calc((100vw - var(--max)) / 2)); }
.v2-practice-line { display: flex; gap: clamp(20px, 3vw, 50px); align-items: baseline; width: max-content; margin: 46px 0; padding-left: max(28px, calc((100vw - var(--max)) / 2)); font-size: clamp(54px, 8vw, 120px); font-weight: 900; letter-spacing: -.07em; line-height: .9; }
.v2-practice-line i { color: var(--paper); font-family: "Playfair Display", Georgia, serif; font-weight: 700; }
.v2-practice > p:last-child { max-width: 760px; font-family: "Playfair Display", Georgia, serif; font-size: 26px; }

.v2-entry { padding: clamp(100px, 14vw, 200px) max(28px, calc((100vw - var(--max)) / 2)); }
.v2-entry > header { display: grid; grid-template-columns: .4fr 1.2fr; gap: 30px; }
.v2-entry h2 { max-width: 880px; margin: 0; font-size: clamp(52px, 7vw, 104px); line-height: .88; letter-spacing: -.07em; }
.v2-entry h2 em { color: var(--pink); font-family: "Playfair Display", Georgia, serif; font-weight: 700; }
.v2-path { margin-top: 90px; border-top: 1px solid var(--line); }
.v2-path article { display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 55px; align-items: start; padding: 34px 0 42px; border-bottom: 1px solid var(--line); }
.v2-path small { color: var(--petrol); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.v2-path h3 { margin: 8px 0 0; font-size: clamp(28px, 3.4vw, 50px); letter-spacing: -.045em; line-height: .95; }
.v2-path p { margin: 4px 0 0; }
.v2-path a { margin-top: 6px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 850; white-space: nowrap; }
.v2-path-free h3, .v2-path-free small { color: var(--pink); }

.v2-ai { min-height: 90svh; display: flex; flex-direction: column; justify-content: end; padding: clamp(100px, 13vw, 180px) max(28px, calc((100vw - var(--max)) / 2)); background: var(--ink); color: var(--white); }
.v2-ai .v2-eyebrow { color: var(--salmon); }
.v2-ai h2 { max-width: 1120px; margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(48px, 7vw, 102px); line-height: .92; letter-spacing: -.045em; }
.v2-ai > p:not(.v2-eyebrow) { max-width: 670px; margin: 38px 0; color: rgba(255,255,255,.7); font-size: 20px; }
.v2-ai > a { width: fit-content; border-bottom: 1px solid var(--turquoise); color: var(--turquoise); font-weight: 850; }

.v2-founder { display: grid; grid-template-columns: 1fr 1fr; min-height: 90svh; background: var(--salmon); }
.v2-founder-image { position: relative; overflow: hidden; }
.v2-founder-image img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 50%; display: block; }
.v2-founder-image span { position: absolute; left: 32px; bottom: 34px; color: var(--white); font-family: "Playfair Display", Georgia, serif; font-size: clamp(42px, 5vw, 72px); line-height: .92; }
.v2-founder-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 8vw, 120px); }
.v2-founder-copy h2 { margin: 0; font-size: clamp(50px, 6vw, 86px); letter-spacing: -.06em; }
.v2-founder-copy > p:not(.v2-eyebrow) { max-width: 600px; margin: 30px 0; font-size: 20px; }
.v2-founder-copy > a { width: fit-content; border-bottom: 1px solid var(--ink); font-weight: 850; }

.v2-final { padding: clamp(100px, 15vw, 210px) max(28px, calc((100vw - var(--max)) / 2)); background: var(--paper); }
.v2-final > p { max-width: 1100px; margin: 0; font-size: clamp(55px, 9vw, 130px); font-weight: 900; letter-spacing: -.075em; line-height: .82; }
.v2-final em { display: block; color: var(--pink); font-family: "Playfair Display", Georgia, serif; font-weight: 700; }
.v2-final > div { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 60px; }
.v2-final a { padding: 16px 20px; border: 1px solid var(--ink); font-weight: 850; }
.v2-final a:first-child { background: var(--turquoise); }

@media (max-width: 980px) {
  .v2-raum-intro, .v2-entry > header { grid-template-columns: 1fr; }
  .v2-matrix { min-height: 900px; }
  .v2-point { left: 42%; }
  .v2-path article { grid-template-columns: 1fr 1fr; }
  .v2-path a { grid-column: 2; width: fit-content; }
  .v2-founder { grid-template-columns: 1fr; }
  .v2-founder-image { min-height: 70svh; }
}

/* Typography repair and shared V2 interior system */
.home-v2 h1, .home-v2 h2, .home-v2 h3,
.subpage-v2 h1, .subpage-v2 h2, .subpage-v2 h3,
.check-page h1, .check-page h2 { text-wrap: balance; overflow-wrap: normal; }
.v2-practice-line { width: auto; flex-wrap: wrap; padding-right: max(28px, calc((100vw - var(--max)) / 2)); font-size: clamp(44px, 5.6vw, 82px); line-height: 1; }
.v2-practice-line span { white-space: nowrap; }
.v2-manifesto h2, .v2-entry h2, .v2-ai h2, .v2-final > p { line-height: .94; }
.v2-founder-copy h2 { line-height: 1; }

.v2-matrix { min-height: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 34px; padding: 48px; }
.v2-axis { position: static; transform: none; writing-mode: horizontal-tb; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.28); }
.v2-axis i { display: none; }
.v2-axis-x, .v2-axis-y, .v2-axis-z { position: static; inset: auto; transform: none; }
.v2-point { position: relative; left: auto; top: auto; grid-column: 1 / -1; width: min(100%, 760px); margin: 92px auto; padding-left: 48px; }
.v2-point b { left: 0; top: 3px; }
.v2-point p { line-height: 1.12; }
.v2-fields { position: static; grid-column: 1 / -1; inset: auto; }

.subpage-v2 { padding-top: var(--header); background: var(--paper); }
.subpage-v2 .site-header { background: rgba(255,248,243,.96); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.subpage-v2 .brand span:last-child { color: var(--petrol); }
.sub-hero { min-height: 68svh; display: flex; flex-direction: column; justify-content: end; padding: clamp(130px, 14vw, 190px) max(28px, calc((100vw - var(--max)) / 2)) clamp(72px, 9vw, 120px); background: var(--paper); }
.sub-hero.petrol { background: var(--petrol); color: var(--white); }
.sub-hero.turquoise { background: var(--turquoise); color: var(--ink); }
.sub-hero.pink { background: var(--pink); color: var(--ink); }
.sub-hero.salmon { background: var(--salmon); color: var(--ink); }
.sub-kicker { margin: 0 0 24px; color: var(--petrol); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.sub-hero.petrol .sub-kicker { color: var(--turquoise); }
.sub-hero h1 { max-width: 1060px; margin: 0; font-size: clamp(50px, 7vw, 104px); line-height: .96; letter-spacing: -.065em; }
.sub-hero p:last-child { max-width: 760px; margin: 34px 0 0; font-size: clamp(19px, 2vw, 27px); line-height: 1.42; }

.sub-section { padding: clamp(88px, 11vw, 150px) max(28px, calc((100vw - var(--max)) / 2)); }
.sub-section.dark { background: var(--ink); color: var(--white); }
.sub-section.petrol { background: var(--petrol); color: var(--white); }
.sub-section.turquoise { background: var(--turquoise); color: var(--ink); }
.sub-section.salmon { background: var(--salmon); color: var(--ink); }
.culture-section { position: relative; background: var(--paper); color: var(--ink); }
.culture-section::before { content: ""; position: absolute; inset: 0 0 auto; height: 8px; background: linear-gradient(90deg, var(--turquoise) 0 46%, var(--pink) 46% 68%, var(--salmon) 68%); }
.culture-section .sub-kicker { color: var(--pink); }
.culture-section .sub-title { color: var(--petrol); }
.culture-section .editorial-rows,
.culture-section .editorial-row { border-color: rgba(6,63,67,.28); }
.culture-section .editorial-row h3 { color: var(--petrol); }
.culture-section .v2-text-link { color: var(--pink); }
.sub-section .sub-kicker { color: var(--petrol); }
.sub-section.dark .sub-kicker, .sub-section.petrol .sub-kicker { color: var(--turquoise); }
.sub-title { max-width: 980px; margin: 0; font-size: clamp(40px, 5.3vw, 76px); line-height: 1; letter-spacing: -.055em; }
.sub-title.serif { font-family: "Playfair Display", Georgia, serif; font-weight: 700; letter-spacing: -.035em; }
.sub-lead { max-width: 760px; margin: 30px 0 0; font-size: clamp(18px, 1.7vw, 23px); line-height: 1.55; }
.sub-split { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(48px, 9vw, 130px); align-items: start; }
.sub-split > header { position: sticky; top: calc(var(--header) + 34px); }
.sub-prose { max-width: 780px; }
.sub-prose h2 { margin: 0 0 24px; font-size: clamp(32px, 3.8vw, 52px); line-height: 1.06; letter-spacing: -.04em; }
.sub-prose h3 { margin: 48px 0 14px; font-size: 25px; line-height: 1.15; }
.sub-prose p, .sub-prose li { font-size: 18px; line-height: 1.62; }
.sub-prose ul { padding-left: 1.1em; }

.editorial-rows { margin-top: 68px; border-top: 1px solid currentColor; }
.editorial-row { display: grid; grid-template-columns: minmax(220px,.7fr) 1.3fr; gap: clamp(30px, 7vw, 100px); padding: 34px 0 42px; border-bottom: 1px solid currentColor; }
.editorial-row h3 { margin: 0; font-size: clamp(27px, 3vw, 42px); line-height: 1.06; letter-spacing: -.035em; overflow-wrap: anywhere; }
.editorial-row p { max-width: 720px; margin: 0; line-height: 1.6; }

.service-product { padding: 54px 0 64px; border-top: 1px solid var(--line); }
.service-product:first-child { border-top: 0; padding-top: 0; }
.service-head { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.service-head h2 { max-width: 790px; margin: 0; font-size: clamp(35px, 4.6vw, 64px); line-height: 1; letter-spacing: -.05em; }
.service-price { color: var(--pink); font-family: "Playfair Display", Georgia, serif; font-size: clamp(29px, 3vw, 44px); font-weight: 700; white-space: nowrap; }
.service-promise { max-width: 760px; margin: 22px 0 40px; font-size: 20px; line-height: 1.5; }
.service-scope { display: grid; grid-template-columns: 1fr 1fr .8fr; gap: 0 42px; }
.service-scope section { padding-top: 18px; border-top: 2px solid var(--ink); }
.service-scope h3 { margin: 0 0 13px; font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.service-scope p, .service-scope li { font-size: 15px; line-height: 1.55; }
.service-scope ul { margin: 0; padding-left: 1.1em; }
.service-action { display: inline-block; margin-top: 32px; border-bottom: 1px solid currentColor; font-weight: 850; }

.flow-words { display: flex; flex-wrap: wrap; align-items: baseline; gap: 18px 28px; margin: 60px 0 0; }
.flow-words span { font-size: clamp(40px, 5.5vw, 78px); font-weight: 900; letter-spacing: -.055em; line-height: 1; }
.flow-words i { color: var(--pink); font-family: "Playfair Display", Georgia, serif; font-size: 40px; }
.z-landscape { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 54px; margin-top: 66px; }
.z-spectrum { display: grid; grid-template-columns: minmax(82px,auto) 1fr minmax(92px,auto); gap: 16px; align-items: center; }
.z-spectrum > span { font-size: clamp(17px,1.7vw,24px); font-weight: 850; letter-spacing: -.025em; }
.z-spectrum > span:last-child { text-align: right; }
.z-spectrum b { position: relative; display: block; height: 2px; background: linear-gradient(90deg, var(--petrol), rgba(7,16,15,.22), var(--petrol)); }
.z-spectrum b::before,
.z-spectrum b::after { content: ""; position: absolute; top: 50%; width: 7px; height: 7px; border: 1px solid var(--petrol); border-radius: 50%; background: var(--salmon); transform: translateY(-50%); }
.z-spectrum b::before { left: -1px; }
.z-spectrum b::after { right: -1px; }
.z-spectrum i { position: absolute; z-index: 1; left: 18%; top: 50%; width: 13px; height: 13px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 7px rgba(255,47,146,.14); transform: translate(-50%,-50%); animation: z-drift 8s ease-in-out infinite alternate; animation-delay: var(--delay,0s); }
.z-spectrum:nth-child(even) i { animation-direction: alternate-reverse; }
@keyframes z-drift { from { left: 18%; } to { left: 82%; } }
.continuity-loop { display: flex; flex-wrap: wrap; align-items: baseline; gap: 14px 22px; margin: 52px 0 0; }
.continuity-loop span { font-size: clamp(32px,4vw,58px); font-weight: 900; letter-spacing: -.05em; line-height: 1; }
.continuity-loop i { color: var(--pink); font-family: "Playfair Display", Georgia, serif; font-size: clamp(28px,3vw,44px); }
.boundary-note { max-width: 900px; margin: 54px 0 0; padding-left: 28px; border-left: 5px solid var(--salmon); font-family: "Playfair Display", Georgia, serif; font-size: clamp(25px, 3vw, 40px); line-height: 1.2; }
.temporal-section { position: relative; overflow: hidden; background: var(--fog); }
.temporal-section::after { content: ""; position: absolute; right: -8vw; bottom: -13vw; width: 36vw; aspect-ratio: 1; border: 1px solid rgba(6,63,67,.2); border-radius: 50%; box-shadow: 0 0 0 8vw rgba(0,223,197,.08), 0 0 0 16vw rgba(255,47,146,.045); pointer-events: none; }
.temporal-section > * { position: relative; z-index: 1; }
.temporal-line { display: grid; grid-template-columns: auto 1fr auto 1fr auto; gap: 14px; align-items: center; margin: 54px 0; }
.temporal-line span { font-size: clamp(18px,2vw,27px); font-weight: 850; }
.temporal-line i { height: 2px; background: linear-gradient(90deg,var(--petrol),var(--turquoise),var(--pink),var(--salmon)); }

/* Practice and network — one field, not a card grid */
.network-hero { position: relative; min-height: 76svh; display: flex; flex-direction: column; justify-content: end; overflow: hidden; padding: clamp(130px,14vw,190px) max(28px,calc((100vw - var(--max)) / 2)) clamp(76px,9vw,118px); background: var(--petrol); color: var(--white); }
.network-hero .sub-kicker { color: var(--turquoise); }
.network-hero h1 { position: relative; z-index: 2; max-width: 1050px; margin: 0; font-size: clamp(54px,7.4vw,110px); line-height: .9; letter-spacing: -.07em; }
.network-hero > p:last-of-type { position: relative; z-index: 2; max-width: 720px; margin: 34px 0 0; color: rgba(255,255,255,.76); font-size: clamp(19px,2vw,27px); }
.network-orbit { position: absolute; right: -6vw; top: 4%; width: min(48vw,680px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; animation: network-turn 34s linear infinite; }
.network-orbit::before, .network-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.network-orbit::before { inset: 17%; }
.network-orbit::after { inset: 35%; }
.network-orbit i { position: absolute; width: 17px; height: 17px; border-radius: 50%; background: var(--turquoise); }
.network-orbit i:nth-child(1) { left: 9%; top: 26%; }
.network-orbit i:nth-child(2) { right: 5%; top: 46%; background: var(--pink); }
.network-orbit i:nth-child(3) { left: 31%; bottom: 3%; background: var(--salmon); }
.network-orbit i:nth-child(4) { left: 44%; top: 15%; width: 11px; height: 11px; background: var(--salmon); }
.network-orbit i:nth-child(5) { right: 28%; bottom: 20%; width: 12px; height: 12px; background: var(--turquoise); }
.network-orbit i:nth-child(6) { left: 31%; top: 47%; width: 10px; height: 10px; background: var(--pink); }
.network-orbit b { position: absolute; left: 50%; top: 50%; width: 30px; height: 30px; border-radius: 50%; background: var(--white); transform: translate(-50%,-50%); box-shadow: 0 0 0 14px rgba(255,255,255,.08); }
@keyframes network-turn { to { transform: rotate(360deg); } }
.network-principle { padding: clamp(100px,14vw,190px) max(28px,calc((100vw - var(--max)) / 2)); background: var(--turquoise); }
.network-principle h2 { max-width: 1080px; margin: 0; font-size: clamp(52px,7.4vw,106px); line-height: .9; letter-spacing: -.07em; }
.network-principle h2 em { color: var(--petrol); font-family: "Playfair Display", Georgia, serif; font-weight: 700; }
.network-principle > p:last-child { max-width: 720px; margin: 54px 0 0 auto; font-family: "Playfair Display", Georgia, serif; font-size: clamp(24px,2.8vw,39px); line-height: 1.18; }
.network-intro { display: grid; grid-template-columns: .38fr 1fr; gap: 24px 70px; align-items: start; }
.network-intro .sub-kicker { grid-row: 1 / span 2; }
.network-intro > p:last-child { max-width: 740px; margin: 8px 0 0; font-size: 18px; }
.network-list { margin-top: 80px; border-top: 2px solid var(--ink); }
.network-person { display: grid; grid-template-columns: minmax(270px,.8fr) 1.25fr auto; gap: clamp(26px,5vw,72px); align-items: start; padding: 34px 0 42px; border-bottom: 1px solid var(--line); }
.network-person span { display: block; margin-bottom: 12px; color: var(--pink); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.network-person:nth-child(3n+2) span { color: #b83022; }
.network-person:nth-child(3n) span { color: var(--petrol); }
.network-person h3 { margin: 0; font-size: clamp(28px,3vw,43px); line-height: 1; letter-spacing: -.045em; }
.network-person p { max-width: 650px; margin: 4px 0 0; font-size: 17px; line-height: 1.6; }
.network-person a { margin-top: 7px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 850; white-space: nowrap; }
.network-lead { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 78svh; background: var(--salmon); }
.network-lead-image { min-height: 650px; overflow: hidden; }
.network-lead-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 58% 48%; }
.network-lead-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(64px,9vw,132px); }
.network-lead-copy h2 { margin: 0; font-size: clamp(48px,6vw,88px); line-height: .94; letter-spacing: -.065em; }
.network-lead-copy > p:not(.sub-kicker) { max-width: 650px; margin: 25px 0 0; font-size: 19px; }
.network-lead-copy a { width: fit-content; margin-top: 34px; border-bottom: 1px solid currentColor; font-weight: 850; }
.network-proof em { color: var(--turquoise); }
.network-collaboration .sub-prose { color: var(--ink); }
.contact-brief { counter-reset: brief; margin-top: 58px; border-top: 1px solid var(--line); }
.contact-brief p { display: grid; grid-template-columns: 48px 1fr; gap: 20px; margin: 0; padding: 24px 0; border-bottom: 1px solid var(--line); font-size: 19px; }
.contact-brief p::before { counter-increment: brief; content: counter(brief, decimal-leading-zero); color: var(--pink); font-weight: 900; }
.contact-address { display: inline-block; margin-top: 32px; font-size: clamp(25px,3vw,43px); font-weight: 900; letter-spacing: -.04em; border-bottom: 2px solid currentColor; }
.sub-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.sub-cta a { padding: 15px 19px; border: 1px solid currentColor; font-weight: 850; }
.sub-cta a:first-child { background: var(--salmon); border-color: var(--salmon); color: var(--ink); }

.check-intro h1 { font-size: clamp(48px, 6.4vw, 94px); line-height: .96; }
.check-question { max-width: 900px; font-size: clamp(34px, 4.2vw, 58px); line-height: 1.12; }
.check-result h2 { font-size: clamp(46px, 6vw, 88px); line-height: .98; }
.result-question { font-size: clamp(25px, 2.8vw, 39px); line-height: 1.18; }

@media (max-width: 980px) {
  .v2-occasions { grid-template-columns: 1fr; }
  .sub-split { grid-template-columns: 1fr; }
  .sub-split > header { position: static; }
  .service-scope { grid-template-columns: 1fr 1fr; }
  .service-scope section:last-child { grid-column: 1 / -1; margin-top: 28px; }
  .network-intro { grid-template-columns: 1fr; }
  .network-intro .sub-kicker { grid-row: auto; }
  .network-person { grid-template-columns: 1fr 1.15fr; }
  .network-person a { grid-column: 2; width: fit-content; }
  .network-lead { grid-template-columns: 1fr; }
  .network-lead-image { min-height: 70svh; }
}

@media (max-width: 620px) {
  .v2-occasions { padding: 78px 22px; }
  .v2-occasions h2 { font-size: 42px; }
  .v2-occasion-lines p { grid-template-columns: 1fr; gap: 9px; }
  .contact-brief p { grid-template-columns: 38px 1fr; font-size: 17px; }
  .v2-practice-line { gap: 9px 14px; font-size: 38px; line-height: 1.05; }
  .v2-practice-line i { font-size: 27px; }
  .v2-matrix { display: block; padding: 28px 20px; }
  .v2-axis { margin-bottom: 16px; }
  .v2-point { margin: 62px 0; width: 100%; padding-left: 34px; }
  .v2-fields { position: static; display: grid; }
  .sub-hero { min-height: 58svh; padding: 118px 22px 62px; }
  .sub-hero h1 { font-size: clamp(45px, 13vw, 64px); line-height: .98; }
  .sub-section { padding: 78px 22px; }
  .sub-title { font-size: 40px; }
  .editorial-row { grid-template-columns: 1fr; gap: 16px; }
  .service-head { grid-template-columns: 1fr; gap: 12px; }
  .service-price { white-space: normal; }
  .service-scope { grid-template-columns: 1fr; gap: 28px; }
  .service-scope section:last-child { grid-column: auto; margin-top: 0; }
  .z-landscape { grid-template-columns: 1fr; gap: 24px; margin-top: 46px; }
  .z-spectrum { grid-template-columns: minmax(72px,auto) 1fr minmax(82px,auto); gap: 10px; }
  .z-spectrum > span { font-size: 17px; }
  .temporal-line { grid-template-columns: 1fr; gap: 10px; }
  .temporal-line i { width: 2px; height: 32px; margin-left: 8px; background: linear-gradient(var(--petrol),var(--turquoise),var(--pink),var(--salmon)); }
  .network-hero { min-height: 70svh; padding: 116px 22px 72px; }
  .network-hero h1 { font-size: 52px; }
  .network-orbit { right: -42vw; top: 9%; width: 105vw; opacity: .45; }
  .network-principle { padding: 84px 22px; }
  .network-principle h2 { font-size: 48px; }
  .network-principle > p:last-child { margin-top: 42px; font-size: 25px; }
  .network-list { margin-top: 54px; }
  .network-person { grid-template-columns: 1fr; gap: 15px; }
  .network-person a { grid-column: 1; }
  .network-lead-image { min-height: 62svh; }
  .network-lead-copy { padding: 74px 22px; }
  .check-intro h1 { font-size: 46px; }
  .check-question { font-size: 29px; line-height: 1.17; }
  .check-result h2 { font-size: 43px; line-height: 1.02; }
}

@media (max-width: 620px) {
  .v2-hero-copy { min-height: 100svh; padding: 124px 22px 54px; }
  .v2-hero > img { object-position: 62% 50%; opacity: .62; }
  .v2-hero-shade { background: linear-gradient(180deg, rgba(6,63,67,.96) 0%, rgba(6,63,67,.74) 57%, rgba(6,63,67,.2) 100%); }
  .v2-wordmark { font-size: 62px; }
  .v2-hero h1 { font-size: 43px; }
  .v2-threshold { width: 62vw; right: -8%; bottom: 5%; opacity: .52; }
  .v2-founder-label { display: none; }
  .v2-manifesto, .v2-raum, .v2-entry, .v2-ai, .v2-final { padding-left: 22px; padding-right: 22px; }
  .v2-manifesto h2, .v2-entry h2 { font-size: 48px; }
  .v2-manifesto > p:not(.v2-eyebrow) { margin-top: 45px; font-size: 26px; }
  .v2-matrix { min-height: 880px; margin-top: 60px; }
  .v2-axis-y { left: 24%; }
  .v2-axis-z { right: -20%; }
  .v2-point { left: 24%; top: 42%; width: 70%; padding-left: 28px; }
  .v2-point p { font-size: 26px; }
  .v2-fields { grid-template-columns: 1fr; inset: auto 5% 3%; }
  .v2-fields article { padding: 12px 6px; }
  .v2-fields h3 { font-size: 32px; }
  .v2-fields p { font-size: 12px; }
  .v2-depth { grid-template-columns: 1fr; gap: 34px; }
  .v2-practice-line { flex-wrap: wrap; width: auto; padding-right: 22px; font-size: 48px; }
  .v2-practice > p:last-child { font-size: 22px; }
  .v2-path { margin-top: 55px; }
  .v2-path article { grid-template-columns: 1fr; gap: 18px; }
  .v2-path a { grid-column: 1; }
  .v2-ai { min-height: auto; }
  .v2-ai h2 { font-size: 47px; }
  .v2-founder-image { min-height: 62svh; }
  .v2-founder-copy { padding: 72px 22px; }
  .v2-final > p { font-size: 56px; }
  .v2-final a { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .z-spectrum i { animation: none; left: 50%; }
}

/* Final mobile safeguards: keep the rebuilt editorial system above legacy rules. */
@media (max-width: 620px) {
  .sub-split,
  .sub-split > *,
  .editorial-row,
  .editorial-row > * { min-width: 0; width: 100%; }
  .sub-title { hyphens: auto; overflow-wrap: anywhere; }
  .editorial-row h3,
  .service-head h2 { overflow-wrap: anywhere; }
  .v2-wordmark { line-height: .9; }
  .v2-matrix { min-height: 0; display: block; }
  .v2-axis,
  .v2-axis-x,
  .v2-axis-y,
  .v2-axis-z { position: static; inset: auto; transform: none; writing-mode: horizontal-tb; }
  .v2-point { position: relative; left: auto; top: auto; width: 100%; margin: 62px 0; }
  .v2-fields { position: static; inset: auto; grid-template-columns: 1fr; }
}
