/* ============================================================
   brunner strategy — shared stylesheet
   Tokens per Developer Handover v2.1 (Part A): corporate palette
   (culturecounts reference) + the WHY-cream exception.
   Base CSS adapted from prototype v6 (reference, not truth).
   ============================================================ */

:root {
  /* Corporate main */
  --petrol: #003443;
  --petrol-deep: #00212B;   /* bg-dark — deeper petrol variant */
  --petrol-soft: #1B4A5C;   /* subtle petrol tint (UI only) */
  --white: #FFFFFF;
  --black: #000000;         /* strongest ink — use sparingly */
  --rule-light: #D6DFDC;

  /* Accent + support (support colours reserved for diagrams) */
  --accent: #EE8139;
  --green: #6ACE65;
  --purple: #9566BA;
  --blue: #306FDC;

  /* Web / GUI neutrals */
  --bg-light: #F5F5F7;
  --off-white: #F5F5F7;     /* footer surface on the white world */
  --ink: #1A1C1B;           /* primary text / headlines on light (near-black, cool) */
  --ink-soft: #434645;      /* secondary text */
  --ink-faint: #898F8D;     /* tertiary text, captions, meta */
  --text-on-petrol: #FFFFFF;
  --text-on-petrol-soft: rgba(255,255,255,0.7);
  --rule-on-petrol: rgba(255,255,255,0.15);

  /* WHY exception — mineral, contemporary, deliberately lighter */
  --cream: #F5F5F2;
  --cream-deep: #EAEAE3;
  --rule-cream: #D6DFDC;
}
  
  
  * { box-sizing: border-box; margin: 0; padding: 0; }
  
  html, body {
    background: var(--white);
    scroll-behavior: smooth;
  }
  html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
  
  body {
    font-family: 'Geist', -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* ============ SITE NAVIGATION ============ */
  
  .site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background 0.6s ease, border-color 0.6s ease, color 0.6s ease;
    border-bottom: 1px solid transparent;
  }
  
  .site-nav.theme-white {
    background: rgba(255,255,255,0.94);
    border-bottom-color: rgba(0,0,0,0.06);
    color: var(--ink);
  }
  .site-nav.theme-cream {
    background: rgba(240,234,224,0.94);
    border-bottom-color: var(--rule-cream);
    color: var(--ink);
  }
  .site-nav.theme-petrol {
    background: rgba(0,52,67,0.94);
    border-bottom-color: rgba(255,255,255,0.15);
    color: var(--white);
  }
  
  .nav-inner {
	max-width: 1320px;
	margin: 0 auto;
	height: 72px;          /* fix: verhindert vertikales Springen */
	padding: 0 44px;       /* nur horizontal */
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  .nav-wordmark {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: inherit;
    text-decoration: none;
    letter-spacing: -0.005em;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    line-height: 1;
  }
  
  .nav-wordmark-logo {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.nav-wordmark-logo img {
  display: block;
  height: 36px;   /* ggf. anpassen */
  width: auto;
  display: block;
}

.nav-wordmark-logo::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FF6A00;   /* Orange */
  right: -2px;          /* horizontal feinjustieren */
  bottom: 4px;           /* vertikal feinjustieren */
}
  
  .nav-wordmark .dot { color: var(--accent); }

  /* Home-only logo variant — uses the legacy PNG wordmark instead of text */
  .nav-wordmark-logo { display: inline-flex; align-items: center; line-height: 0; }
  .nav-wordmark-logo img { height: 36px; width: auto; display: block; }
  .site-nav:has(.nav-wordmark-logo) .nav-inner { padding-top: 14px; padding-bottom: 14px; }

  /* On WHY, wordmark switches to Fraunces — signature anchor */
  .site-nav.theme-cream .nav-wordmark {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 18px;
    font-variation-settings: "opsz" 36, "SOFT" 30;
    letter-spacing: -0.008em;
  }
  
  .nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
  }
  
  .nav-link {
    font-family: 'Geist', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    opacity: 0.80;
    transition: opacity 0.15s, color 0.15s;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }
  .nav-link:hover { opacity: 1; color: var(--accent); }
  .nav-link.active { opacity: 1; color: var(--accent); }
  
  .nav-lang {
    font-family: 'Geist', sans-serif;
    font-size: 11px;
    letter-spacing: 0.24em;
    opacity: 0.55;
    margin-left: 8px;
  }
  .nav-lang .current { opacity: 1; font-weight: 500; }
  
  /* ============ PAGES ============ */
  
  .page { display: block; animation: pageIn 0.5s ease; }
  
  @keyframes pageIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* ============ HOME — WHITE, GEIST DOMINANT ============ */
  
  .page-home { background: #FFFFFF; color: var(--ink); }
  
  .home-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 56px 140px;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    column-gap: 100px;
    row-gap: 0;
    align-items: start;
  }
  .home-hero-text { grid-column: 1; grid-row: 1; }
  .home-content > .home-aside { grid-column: 2; grid-row: 1 / span 2; }
  .home-content > .home-cta { grid-column: 1; grid-row: 2; align-self: start; justify-self: start; }
  
  .home-eyebrow {
    font-family: 'Geist', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 56px;
  }
  
  /* Editorial headline — measured, not campaign */
  .home-headline {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: clamp(40px, 5.4vw, 78px);
    line-height: 1.0;
    letter-spacing: -0.035em;
    color: var(--ink);
	margin-top: 0;  
    margin-bottom: 56px;
    text-transform: uppercase;
    max-width: 720px;
  }
  .home-headline .accent { color: var(--accent); }
  .home-headline .ps-s {
    text-transform: none;
    font-variant-caps: small-caps;
    font-feature-settings: "smcp" 1;
  }

  .home-tagline {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.7vw, 19px);
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 580px;
    margin-bottom: 80px;
  }
  
  .home-cta {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--accent);
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0 0 5px 0;
    border-bottom: 1.5px solid var(--accent);
    transition: opacity 0.2s, gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
	margin-top: -24px;
    letter-spacing: 0.005em;
  }
  .home-cta:hover { opacity: 0.7; gap: 16px; }
  
  /* Editorial side-note — matched editorial sophistication */
  .home-aside {
    border-left: 1px solid rgba(0,0,0,0.1);
    padding-left: 40px;
    margin-top: 6px;
  }
  
  .home-aside-label {
    font-family: 'Geist', sans-serif;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-faint);
    font-weight: 500;
    margin-bottom: 26px;
  }
  
  .home-aside-name {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 23px;
    color: var(--ink);
    letter-spacing: -0.015em;
    margin-bottom: 6px;
  }
  
  .home-aside-role {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 14.5px;
    color: var(--accent);
    margin-bottom: 28px;
    letter-spacing: 0.005em;
  }
  
  .home-aside-text {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 18px;
  }
  .home-aside-text strong { color: var(--ink); font-weight: 500; }
  .home-aside-text em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-variation-settings: "opsz" 14;
  }
  
  .home-aside-footnote {
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    color: var(--ink-faint);
    line-height: 1.6;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(0,0,0,0.08);
    letter-spacing: 0.01em;
  }
  
  /* ============ WHY — CREAM, FRAUNCES DOMINANT ============ */
  
  .page-why { background: var(--cream); color: var(--ink); }
  
  .why-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 32px 100px;
  }
  
  .why-hero { margin-bottom: 96px; }
  
  .why-eyebrow {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--accent);
    margin-bottom: 40px;
    font-variation-settings: "opsz" 24;
  }
  
  .why-headline {
    font-family: 'Fraunces', serif;
    font-weight: 350;
    font-size: clamp(42px, 7.2vw, 70px);
    line-height: 1.04;
    letter-spacing: -0.022em;
    color: var(--ink);
    margin-bottom: 24px;
    font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 350;
  }
  .why-headline em { font-style: italic; font-weight: 350; }
  
  .why-thesis {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(18px, 2.4vw, 22px);
    color: var(--ink-soft);
    margin-bottom: 48px;
    line-height: 1.35;
    font-variation-settings: "opsz" 36;
  }
  
  .why-principle {
    padding-left: 22px;
    border-left: 2px solid var(--accent);
  }
  .why-principle-de {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(18px, 2.2vw, 21px);
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 6px;
    letter-spacing: -0.005em;
    font-variation-settings: "opsz" 36;
  }
  .why-principle-de em { font-style: italic; }
  .why-principle-en {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(13px, 1.6vw, 15px);
    color: var(--ink-faint);
    font-variation-settings: "opsz" 24;
  }
  
  .why-section { margin-bottom: 88px; }
  
  .why-label {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 13.5px;
    letter-spacing: 0.04em;
    color: var(--ink-faint);
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-variation-settings: "opsz" 24;
  }
  .why-label::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--accent);
  }
  
  .why-h2 {
    font-family: 'Fraunces', serif;
    font-weight: 350;
    font-size: clamp(28px, 3.4vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.012em;
    margin-bottom: 30px;
    color: var(--ink);
    font-variation-settings: "opsz" 72, "SOFT" 30, "wght" 350;
  }
  .why-h2 em { font-style: italic; }
  
  .why-p {
    font-family: 'Fraunces', serif;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 20px;
    font-weight: 400;
    font-variation-settings: "opsz" 14;
  }
  .why-p strong { color: var(--ink); font-weight: 600; }
  .why-p em { font-style: italic; font-weight: 400; }
  
  .why-p-isolated {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(19px, 2.2vw, 22px);
    color: var(--ink);
    margin: 22px 0 32px;
    font-variation-settings: "opsz" 36;
  }
  
  .why-quote-block {
    margin: 32px 0;
    padding: 26px 30px;
    background: var(--cream-deep);
    border-left: 3px solid var(--accent);
  }
  .why-quote-block .why-p {
    margin-bottom: 0;
    font-size: clamp(17px, 1.95vw, 19.5px);
  }
  
  /* Architecture */
  .why-arch {
    background: var(--cream-deep);
    border: 1px solid var(--rule-cream);
    padding: 56px 32px;
    margin-top: 38px;
    text-align: center;
    position: relative;
  }
  .why-arch::before, .why-arch::after {
    content: ""; position: absolute;
    width: 8px; height: 8px;
    background: var(--accent); border-radius: 50%;
  }
  .why-arch::before { top: -4px; left: -4px; }
  .why-arch::after { bottom: -4px; right: -4px; }
  
  .arch-layer { margin-bottom: 30px; }
  .arch-layer:last-child { margin-bottom: 0; }
  .arch-label {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.03em;
    color: var(--ink-faint);
    margin-bottom: 14px;
    font-variation-settings: "opsz" 24;
  }
  .arch-content {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(18px, 2.1vw, 22px);
    color: var(--ink);
    letter-spacing: -0.008em;
    font-variation-settings: "opsz" 36;
  }
  .arch-content .accent { color: var(--accent); font-style: italic; }
  .arch-arrow {
    color: var(--rule-cream);
    margin: 16px 0;
    font-size: 18px;
    font-family: 'Fraunces', serif;
  }
  .arch-levels {
    display: flex; justify-content: center;
    gap: 16px; flex-wrap: wrap; align-items: baseline;
  }
  .arch-level {
    font-family: 'Fraunces', serif;
    font-weight: 400; font-style: italic;
    font-size: clamp(16px, 1.8vw, 18px);
    color: var(--ink);
    font-variation-settings: "opsz" 36;
  }
  .arch-sep { color: var(--ink-faint); font-size: 12px; }
  .arch-practice {
    display: flex; justify-content: center;
    gap: 64px; flex-wrap: wrap;
  }
  .arch-practice .name {
    font-family: 'Fraunces', serif;
    font-weight: 500; font-size: 19px;
    color: var(--petrol);
    font-variation-settings: "opsz" 36;
  }
  .arch-practice .name .dot { color: var(--accent); }
  .arch-practice .for {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    color: var(--ink-faint);
    letter-spacing: 0.02em;
    margin-top: 7px;
    font-variation-settings: "opsz" 24;
  }
  .arch-unity {
    font-family: 'Fraunces', serif;
    font-style: italic; font-weight: 400;
    font-size: 14px;
    color: var(--ink-faint);
    margin-top: 28px; padding-top: 22px;
    border-top: 1px solid var(--rule-cream);
    font-variation-settings: "opsz" 36;
  }
  
  /* Four dimensions */
  .why-dim-intro { margin-bottom: 36px; }
  .why-dims {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1px;
    background: var(--rule-cream);
    border: 1px solid var(--rule-cream);
  }
  .why-dim { background: var(--cream); padding: 28px 22px; }
  .why-dim-num {
    font-family: 'Fraunces', serif;
    font-style: normal; font-weight: 400;
    font-size: 14px; color: var(--accent);
    margin-bottom: 12px;
    font-variation-settings: "opsz" 24;
  }
  .why-dim-name {
    font-family: 'Fraunces', serif;
    font-weight: 500; font-size: 19px;
    color: var(--ink); margin-bottom: 8px;
    letter-spacing: -0.005em;
    font-variation-settings: "opsz" 36;
  }
  .why-dim-desc {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.55;
    font-variation-settings: "opsz" 14;
  }
  
  /* House rule + bridge */
  .why-houserule {
    border-top: 1px solid var(--rule-cream);
    padding-top: 64px; margin-top: 88px;
  }
  .why-houserule-quote {
    font-family: 'Fraunces', serif;
    font-style: italic; font-weight: 300;
    font-size: clamp(22px, 2.8vw, 28px);
    line-height: 1.38;
    color: var(--ink);
    text-align: center;
    max-width: 620px;
    margin: 0 auto 20px;
    letter-spacing: -0.005em;
    font-variation-settings: "opsz" 72;
  }
  .why-houserule-attr {
    text-align: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 13.5px;
    color: var(--ink-faint);
    letter-spacing: 0.02em;
    font-variation-settings: "opsz" 24;
  }
  
  .why-bridge {
    margin-top: 72px; padding-top: 36px;
    border-top: 1px solid var(--rule-cream);
    text-align: center;
  }
  .why-bridge-text {
    font-family: 'Fraunces', serif;
    font-style: italic; font-weight: 400;
    font-size: 16px; color: var(--ink-faint);
    margin-bottom: 14px;
    font-variation-settings: "opsz" 24;
  }
  
  /* Signature anchor — original Fraunces wordmark, subtle */
  .why-signature {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--rule-cream);
    text-align: center;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--petrol);
    letter-spacing: -0.005em;
    font-variation-settings: "opsz" 36, "SOFT" 30;
    opacity: 0.65;
  }
  .why-signature .dot { color: var(--accent); }
  .why-signature .since {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 12px;
    color: var(--ink-faint);
    margin-left: 14px;
    font-variation-settings: "opsz" 24;
  }
  .why-bridge-link {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    color: var(--accent);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0 0 4px 0;
    border-bottom: 1.5px solid var(--accent);
    letter-spacing: 0.01em;
    cursor: pointer;
    font-variation-settings: "opsz" 24;
  }
  .why-bridge-link:hover { opacity: 0.7; }
  
  /* ============ HOW — PETROL, GEIST DOMINANT (cc-style) ============ */
  
  .page-how { background: var(--petrol); color: var(--white); }
  
  .how-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 72px 44px 100px;
  }
  
  /* HOW Hero — Geist Bold, like culturecounts */
  .how-hero { max-width: 980px; margin-bottom: 120px; }
  
  .how-eyebrow {
    font-family: 'Geist', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
    font-weight: 500;
  }
  
  .how-h1 {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: clamp(46px, 6.8vw, 76px);
    line-height: 1.0;
    letter-spacing: -0.035em;
    color: var(--white);
    margin-bottom: 24px;
  }
  .how-h1 .accent { color: var(--accent); }
  
  .how-thesis {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 2.1vw, 22px);
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
    line-height: 1.45;
    max-width: 820px;
  }
  
  .how-statement {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: clamp(26px, 3.4vw, 38px);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 36px;
    letter-spacing: -0.025em;
  }
  .how-statement .accent { color: var(--accent); }
  
  .how-lead {
    font-family: 'Geist', sans-serif;
    font-size: clamp(15px, 1.7vw, 17px);
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 18px;
    font-weight: 400;
    max-width: 820px;
  }
  .how-lead strong { color: var(--white); font-weight: 500; }
  .how-lead em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    font-variation-settings: "opsz" 24;
  }
  
  .how-pills {
    display: flex;
    gap: 10px;
    margin-top: 32px;
    flex-wrap: wrap;
  }
  .how-pill {
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
  }
  
  /* HOW Section labels */
  .how-label {
    font-family: 'Geist', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
  }
  .how-label::before {
    content: "";
    width: 22px;
    height: 1.5px;
    background: var(--accent);
  }
  
  .how-h2 {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 4.2vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.028em;
    color: var(--white);
    margin-bottom: 42px;
  }
  .how-h2 .accent { color: var(--accent); }
  
  /* Direction → Transformation → Execution — continuous horizontal progression */
  .how-axis-section { margin-bottom: 100px; }
  
  .axis {
    position: relative;
    padding: 40px 0 20px;
  }
  /* Continuous line spanning all three nodes — no breaks */
  .axis::before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: 106px;
    height: 1px;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(238,129,57,0.5) 6%,
      rgba(238,129,57,0.85) 50%,
      rgba(238,129,57,0.5) 94%,
      transparent 100%);
  }
  
  .axis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    position: relative;
  }
  
  .axis-node {
    position: relative;
    padding: 0 28px;
  }
  .axis-node:not(:last-child) {
    border-right: 1px dashed rgba(255,255,255,0.08);
  }
  
  /* All three nodes' dots sit on the same line */
  .axis-node::before {
    content: "";
    position: absolute;
    left: 50%; top: 42px;
    transform: translate(-50%, 0);
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px var(--petrol), 0 0 0 6px rgba(238,129,57,0.3);
  }
  .how-axis-intro {
	margin-bottom: 20px;
	max-width: 760px;
  }
  .axis-node-label {
    text-align: center;
    margin-top: 80px;
    font-family: 'Geist', sans-serif;
    font-size: 11.5px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 24px;
  }
  
  .axis-node-headline {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: clamp(19px, 2.1vw, 23px);
    line-height: 1.28;
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: -0.014em;
    text-align: center;
  }
  /* No focus exception — all nodes equal weight, continuous progression */
  
  .axis-node-body {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    line-height: 1.68;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
  }
  .axis-node-body strong { color: var(--white); font-weight: 500; }
  .axis-node-body em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    font-variation-settings: "opsz" 14;
  }
  
  .axis-node-list {
    list-style: none;
    margin-top: 14px;
  }
  .axis-node-list li {
    font-family: 'Geist', sans-serif;
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
    padding: 6px 0;
    font-weight: 400;
  }
  .axis-node-list li strong { color: var(--white); font-weight: 500; }
  
  .axis-footer {
    text-align: center;
	margin-bottom: 10px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(15px, 1.7vw, 18px);
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
    font-variation-settings: "opsz" 36;
  }
  .axis-footer .accent { color: var(--accent); font-style: italic; font-weight: 500; }
  
  /* Flywheel */
  .flywheel-section { margin-bottom: 100px; }
  
  .flywheel-intro {
    font-family: 'Geist', sans-serif;
    font-size: clamp(15px, 1.7vw, 17px);
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 780px;
    margin-bottom: 56px;
    font-weight: 400;
  }
  .flywheel-intro strong { color: var(--white); font-weight: 500; }
  .flywheel-intro em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    font-variation-settings: "opsz" 24;
  }
  
  .flywheel  {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 42px;
    align-items: start;
	justify-content: center;
  }
  
.flywheel-media {
	  width: 100%;
	  display: flex;
	  justify-content: center;
	  align-items: flex-start; 
	  padding-right: 20px;
  }

.flywheel-svg {
	  width: 80%;
	  height: auto;
	  display: block;
	  display: block;
	  transform: none;
      overflow: visible;
  }
    
  .flywheel-statements {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
/* Mobile */
@media (max-width: 980px) {
  .flywheel {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .flywheel-stmt.direction {
    margin-top: 20px;      
  }
 }
  .flywheel-stmt {
    padding: 20px 26px;
    border-left: 2px solid var(--accent);
    background: rgba(255,255,255,0.04);
  }
  .flywheel-stmt.brand { border-left-color: rgba(238,129,57,0.85); }
  .flywheel-stmt.operations { border-left-color: rgba(140,185,205,0.85); }
  .flywheel-stmt.culture { border-left-color: rgba(195,210,220,0.85); }
  .flywheel-stmt.direction { border-left-color: rgba(238,129,57,0.85); }
  
  .flywheel-stmt-label {
    font-family: 'Geist', sans-serif;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .flywheel-stmt.brand .flywheel-stmt-label { color: rgba(238,129,57,0.95); }
  .flywheel-stmt.operations .flywheel-stmt-label { color: rgba(140,185,205,0.95); }
  .flywheel-stmt.culture .flywheel-stmt-label { color: rgba(195,210,220,0.95); }
  .flywheel-stmt.direction .flywheel-stmt-label { color: rgba(238,129,57,0.95); }
  
  .flywheel-stmt-text {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: clamp(16px, 1.8vw, 18px);
    color: var(--white);
    line-height: 1.4;
    letter-spacing: -0.008em;
  }
  .flywheel-stmt-text em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-variation-settings: "opsz" 24;
  }
  
  .flywheel-loop {
    margin-top: 36px;
    padding: 24px 26px;
    border: 1px dashed rgba(255,255,255,0.2);
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.6vw, 16px);
    color: rgba(255,255,255,0.78);
    line-height: 1.55;
  }
  .flywheel-loop strong {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  
  /* Digital extension */
  .how-extension {
    margin-bottom: 100px;
    padding: 56px 48px;
    background: var(--petrol-deep);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
  }
  .how-extension::before {
    content: "";
    position: absolute;
    top: -1px; left: 48px;
    width: 60px; height: 3px;
    background: var(--accent);
  }
  
  .how-extension-label {
    font-family: 'Geist', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 22px;
    font-weight: 500;
  }
  
  /* Brand name — restrained, like a wordmark not a hero headline */
  .how-extension-name {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: clamp(20px, 2.3vw, 28px);
    color: var(--accent);
    letter-spacing: -0.018em;
    margin-bottom: 36px;
    line-height: 1;
  }
  .how-extension-name .dot { color: var(--accent); }
  
  /* Explanation text — larger, more present, carrying the message */
  .how-extension-text {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 2.1vw, 22px);
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    max-width: 820px;
    margin-bottom: 28px;
    letter-spacing: -0.008em;
  }
  .how-extension-text strong {
    color: var(--white);
    font-weight: 500;
  }
  
  .how-extension-tag {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(16px, 1.8vw, 19px);
    color: rgba(255,255,255,0.6);
    font-variation-settings: "opsz" 36;
  }
  
  /* HOW house rule */
  .how-houserule {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 64px;
    text-align: center;
  }
  .how-houserule-quote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(22px, 2.8vw, 30px);
    line-height: 1.4;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 18px;
    letter-spacing: -0.005em;
    font-variation-settings: "opsz" 72;
  }
  .how-houserule-attr {
    font-family: 'Geist', sans-serif;
    font-size: 10.5px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  
  /* ============ — SAME PETROL, GEIST DOMINANT ============ */
  
  .page-who { background: var(--petrol); color: var(--white); }
  
  .who-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 72px 44px 100px;
  }
  
  .who-eyebrow {
    font-family: 'Geist', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 40px;
    font-weight: 500;
  }
  
  .who-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 88px;
    align-items: start;
    margin-bottom: 100px;
  }
  
  .who-name {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: clamp(41px, 5.0vw, 63px);
    line-height: 0.96;
    letter-spacing: -0.035em;
    color: var(--white);
    margin-bottom: 20px;
  }
  
  .who-role {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: clamp(18px, 2vw, 22px);
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: -0.005em;
  }
  
  .who-tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(16px, 1.8vw, 18px);
    color: rgba(255,255,255,0.78);
    margin-bottom: 30px;
    line-height: 1.45;
    font-variation-settings: "opsz" 24;
  }
  
  .who-bio {
    font-family: 'Geist', sans-serif;
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    font-weight: 400;
  }
  
  .who-location {
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    letter-spacing: 0.16em;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .who-belief {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: clamp(17px, 1.95vw, 22px);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.005em;
    line-height: 1.25;
  }
  
  .who-credentials {
    display: flex;
    flex-direction: column;
    gap: 44px;
  }
  
  .who-block-label {
    font-family: 'Geist', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 14px;
  }
  
  .who-block-title {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: clamp(17px, 1.95vw, 21px);
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.35;
	opacity: 0.80;
    letter-spacing: -0.012em;
  }
  
  .who-block-sub {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    line-height: 1.45;
    font-variation-settings: "opsz" 24;
  }
  .who-block-sub em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    font-variation-settings: "opsz" 14;
  }
  
  .who-clients {
    font-family: 'Geist', sans-serif;
    font-size: 14.5px;
    line-height: 1.95;
    color: rgba(255,255,255,0.82);
    font-weight: 400;
    letter-spacing: 0.005em;
  }
  
  .who-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 0;
  }
  
  .who-houserule {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 60px;
    margin-top: 60px;
    text-align: center;
  }
  .who-houserule-quote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(20px, 2.5vw, 26px);
    line-height: 1.4;
    color: var(--white);
    max-width: 760px;
    margin: 0 auto 18px;
    letter-spacing: -0.005em;
    font-variation-settings: "opsz" 72;
  }
  .who-houserule-attr {
    font-family: 'Geist', sans-serif;
    font-size: 10.5px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  
  /* ============ FOOTER ============ */
  
  .site-footer { transition: background 0.6s ease, color 0.6s ease; }
  
  .site-footer.theme-white {
    background: var(--off-white);
    color: var(--ink);
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .site-footer.theme-cream {
    background: var(--cream-deep);
    color: var(--ink);
    border-top: 1px solid var(--rule-cream);
  }
  .site-footer.theme-petrol {
    background: var(--petrol-deep);
    color: var(--white);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  body.bg-white .site-footer.theme-petrol {
    background: #003544;
  }
  
  .footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 64px 44px 44px;
  }
  
  .footer-brands {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 48px;
  }
  
  .footer-brand-name {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: inherit;
    text-decoration: none;
    letter-spacing: -0.005em;
    margin-bottom: 12px;
    display: inline-block;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.15s;
    text-align: left;
  }
  .footer-brand-name:hover { color: var(--accent); }
  .footer-brand-name .dot { color: var(--accent); }
  
  .footer-brand-desc {
    font-family: 'Geist', sans-serif;
    font-size: 12.5px;
    line-height: 1.55;
    opacity: 0.65;
    font-weight: 400;
    max-width: 240px;
  }
  
  .footer-address {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 32px 0 28px;
    margin-bottom: 16px;
    border-top: 1px solid currentColor;
    border-top-color: rgba(0,0,0,0.08);
    flex-wrap: wrap;
    gap: 24px;
  }
  .site-footer.theme-cream .footer-address { border-top-color: var(--rule-cream); }
  .site-footer.theme-petrol .footer-address { border-top-color: rgba(255,255,255,0.1); }
  
  .footer-address-block {
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.7;
    font-weight: 400;
  }
  
  .footer-linkedin {
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    opacity: 0.7;
    letter-spacing: 0.02em;
    transition: opacity 0.15s, color 0.15s;
  }
  .footer-linkedin:hover { color: var(--accent); opacity: 1; }
  .footer-linkedin .arrow {
    display: inline-block;
    margin-left: 2px;
    transition: transform 0.15s;
  }
  .footer-linkedin:hover .arrow { transform: translate(2px, -2px); }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 0;
    flex-wrap: wrap;
    gap: 16px;
  }
  .site-footer.theme-cream .footer-bottom { }
  .site-footer.theme-white .footer-bottom { }
  .site-footer.theme-petrol .footer-bottom { }
  
  .footer-urls {
    font-family: 'Geist', sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.55;
    font-weight: 400;
  }
  .footer-urls a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.15s, color 0.15s;
  }
  .footer-urls a:hover { color: var(--accent); opacity: 1; }
  .footer-urls .sep { opacity: 0.4; padding: 0 6px; }
  
  .footer-meta {
    font-family: 'Geist', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.55;
    font-weight: 400;
  }
  
  /* ============ RESPONSIVE ============ */
  
  @media (max-width: 980px) {
    .home-content { grid-template-columns: 1fr; column-gap: 0; row-gap: 56px; padding: 56px 28px 80px; }
    .home-hero-text,
    .home-content > .home-aside,
    .home-content > .home-cta { grid-column: 1; grid-row: auto; }
    .home-headline { font-size: clamp(56px, 11vw, 84px); margin-bottom: 40px; }
    .home-tagline { margin-bottom: 0; }
    .home-aside { border-left: none; border-top: 1px solid rgba(0,0,0,0.1); padding-left: 0; padding-top: 32px; margin-top: 0; }
    
    .why-content { padding: 48px 22px 64px; }
    .why-hero { margin-bottom: 72px; }
    .why-section { margin-bottom: 64px; }
    .arch-practice { gap: 36px; }
    
    .how-content { padding: 48px 24px 64px; }
    .how-hero { margin-bottom: 80px; }
    .how-axis-section, .flywheel-section { margin-bottom: 60px; }
    .axis { padding: 0; }
    .axis-grid { grid-template-columns: 1fr; gap: 0; }
    .axis::before, .axis-node::before { display: none; }
    .axis-node { padding: 32px 0; border-right: none; border-top: 1px solid rgba(255,255,255,0.08); }
    .axis-node:first-child { border-top: none; padding-top: 0; }
    .axis-node:last-child { padding-bottom: 0; }
    .axis-node-label { text-align: left; padding-left: 0; margin-top: 0; margin-bottom: 14px; }
    .axis-node-headline { text-align: left; padding-left: 0; margin-bottom: 0; }
    .flywheel { grid-template-columns: 1fr; gap: 40px; }
    
    .who-content { padding: 48px 24px 64px; }
    .who-grid { grid-template-columns: 1fr; gap: 48px; }
    
    .footer-inner { padding: 48px 24px 36px; }
    .footer-brands { grid-template-columns: 1fr 1fr; gap: 28px; }
    .nav-inner { padding: 16px 24px; }
    .nav-links { gap: 22px; }
  }
  
  @media (max-width: 540px) {
    .footer-brands { grid-template-columns: 1fr; }
    .nav-links { gap: 16px; }
    .nav-link { font-size: 10px; letter-spacing: 0.2em; }
  }

/* ============ STATIC MULTI-PAGE / LANGUAGE TOGGLE (D3) ============ */
/* Subtle toggle, single label showing only the opposite language. */
.nav-lang-link {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: none;
  text-decoration: none;
  color: inherit;
  opacity: 0.55;
  margin-left: 8px;
  transition: opacity 0.15s, color 0.15s;
}
.nav-lang-link:hover,
.nav-lang-link:focus-visible { opacity: 1; color: var(--accent); }

/* ============ FOCUS & ACCESSIBILITY (A7) ============ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 1px;
}
:focus:not(:focus-visible) { outline: none; }

/* ============ SKIP LINK ============ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  text-decoration: none;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ============ REDUCED MOTION (A6/A7) ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* ============ PAGE LAYOUT (sticky footer + theme backgrounds) ============ */
body { min-height: 100vh; display: flex; flex-direction: column; }
body > main { flex: 1 0 auto; display: block; }
body > .site-footer { flex-shrink: 0; }
body.bg-white  { background: var(--white); }
body.bg-cream  { background: var(--cream); }
body.bg-petrol { background: var(--petrol); }
.page-home, .page-why, .page-how, .page-who, .page-legal { min-height: 55vh; }

/* Footer legal / meta links */
.footer-meta a { color: inherit; text-decoration: none; transition: color 0.15s, opacity 0.15s; }
.footer-meta a:hover, .footer-meta a:focus-visible { color: var(--accent); opacity: 1; }
.footer-meta .sep { opacity: 0.4; padding: 0 8px; }

/* HOW — culturecounts outbound link */
.how-extension-link {
  font-family: 'Geist', sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--accent);
  letter-spacing: 0.01em;
  transition: opacity 0.2s, gap 0.2s;
}
.how-extension-link:hover { opacity: 0.7; gap: 14px; }

/* ============ LEGAL — Impressum & Datenschutz (D10) ============ */
.page-legal { background: var(--white); color: var(--ink); }
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 32px 120px;
  font-family: 'Geist', sans-serif;
}
.legal-eyebrow {
  font-family: 'Geist', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}
.legal-h1 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}
.legal-intro {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.legal-h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: clamp(19px, 2.2vw, 24px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 56px 0 16px;
}
.legal-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.legal-content address {
  font-style: normal;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.legal-content a { color: var(--accent); text-decoration: none; border-bottom: 1px solid currentColor; }
.legal-content a:hover { opacity: 0.7; }
.legal-todo {
  display: inline-block;
  background: rgba(238,129,57,0.12);
  color: #9a4d18;
  font-size: 13px;
  padding: 1px 7px;
  border-radius: 2px;
}
@media (max-width: 980px) { .legal-content { padding: 64px 22px 80px; } }
