  :root {
    /* Warm Earthy (default) */
    --bg:        oklch(0.965 0.006 80);
    --bg-alt:    oklch(0.93  0.010 75);
    --bg-deep:   oklch(0.20  0.018 60);
    --ink:       oklch(0.18  0.015 60);
    --ink-soft:  oklch(0.38  0.012 65);
    --ink-mute:  oklch(0.58  0.010 70);
    --line:      oklch(0.82  0.012 75);
    --line-soft: oklch(0.90  0.008 75);
    --accent:    oklch(0.55  0.14  35);   /* terracotta */
    --accent-2:  oklch(0.45  0.08 145);   /* orchard green */
    --on-deep:   oklch(0.95  0.008 80);

    /* Brand gradient — from the IVAR logo */
    --brand-blue:  #1e92d0;
    --brand-mid:   #4fab7c;
    --brand-green: #5dba47;
    --brand-gradient: linear-gradient(96deg, var(--brand-blue), var(--brand-mid) 55%, var(--brand-green));

    /* type scale */
    --serif: "Instrument Serif", "Times New Roman", serif;
    --sans:  "Geist", -apple-system, system-ui, sans-serif;
    --mono:  "Geist Mono", "SF Mono", ui-monospace, monospace;
  }

  body.cool {
    --bg:        oklch(0.985 0.003 240);
    --bg-alt:    oklch(0.955 0.005 240);
    --bg-deep:   oklch(0.18  0.020 250);
    --ink:       oklch(0.20  0.022 250);
    --ink-soft:  oklch(0.40  0.018 245);
    --ink-mute:  oklch(0.58  0.012 240);
    --line:      oklch(0.85  0.010 240);
    --line-soft: oklch(0.92  0.006 240);
    --accent:    oklch(0.55  0.10 215);   /* logo-blue */
    --accent-2:  oklch(0.62  0.13 150);   /* logo-green */
    --on-deep:   oklch(0.95  0.006 240);
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }

  ::selection { background: var(--ink); color: var(--bg); }

  a { color: inherit; text-decoration: none; }

  /* TYPE */
  .display { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; line-height: 0.98; }
  .display-italic { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.015em; }
  .eyebrow {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink-soft);
  }
  .label-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink-mute);
  }

  /* LAYOUT */
  .wrap { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
  .wrap-narrow { max-width: 1080px; margin: 0 auto; padding: 0 40px; }

  /* Brand gradient text */
  .grad-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    font-family: var(--sans);
    font-size: 14.5px;
    font-weight: 500;
    border-radius: 999px;
    transition: all .25s ease;
    cursor: pointer;
    border: 1px solid transparent;
  }
  .btn-primary { background: var(--ink); color: var(--bg); }
  .btn-primary:hover { background: var(--bg-deep); transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
  .btn-ghost:hover { border-color: var(--ink); }
  .btn-arrow { font-size: 1.05em; transition: transform .25s ease; }
  .btn:hover .btn-arrow { transform: translateX(3px); }

  /* Section scaffolding */
  section { position: relative; }
  .section-pad { padding: 130px 0; }
  .section-pad-lg { padding: 180px 0; }
  .section-tag {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 56px;
  }
  .section-tag .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
  }
  .rule { height: 1px; background: var(--line); border: 0; margin: 0; }

  /* Photo placeholders / unsplash holders */
  .photo {
    background: var(--bg-alt);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .photo::after {
    content: "";
    position: absolute; inset: 0;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
    pointer-events: none;
  }

  /* Scroll reveal */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal-1 { transition-delay: .05s; }
  .reveal-2 { transition-delay: .15s; }
  .reveal-3 { transition-delay: .25s; }
  .reveal-4 { transition-delay: .35s; }

  /* Nav */
  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 40px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease, padding .35s ease;
    border-bottom: 1px solid transparent;
  }
  .nav.scrolled {
    background: color-mix(in oklch, var(--bg) 88%, transparent);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom-color: var(--line-soft);
    padding: 16px 40px;
  }
  .nav.invert { color: var(--on-deep); }
  .nav.invert:not(.scrolled) .nav-link { color: rgba(255,255,255,0.86); }
  .nav-logo { display: flex; align-items: center; gap: 10px; }
  .nav-logo svg { height: 22px; width: auto; display: block; }
  .nav-links {
    display: flex; gap: 32px;
    font-size: 14px; font-weight: 400;
  }
  .nav-link {
    color: var(--ink-soft);
    position: relative;
    transition: color .2s ease;
  }
  .nav-link:hover { color: var(--ink); }
  .nav.invert:not(.scrolled) .nav-link:hover { color: #fff; }

  /* Sticky side label */
  .side-label {
    position: fixed;
    left: 18px; bottom: 24px;
    z-index: 50;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    pointer-events: none;
    transition: color .35s ease, opacity .35s ease;
  }
  .side-label.invert { color: rgba(255,255,255,0.78); }

  /* Hero */
  .hero {
    height: 100vh;
    min-height: 720px;
    position: relative;
    overflow: hidden;
    color: var(--on-deep);
    background: var(--bg-deep);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: translateZ(0);
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.35) 100%);
  }
  .hero-grain {
    position: absolute; inset: 0;
    opacity: 0.06;
    background-image:
      repeating-linear-gradient(45deg, rgba(255,255,255,0.4) 0 1px, transparent 1px 3px);
    pointer-events: none;
  }
  .hero-inner {
    position: relative; z-index: 2;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 0 40px 60px;
    max-width: 1320px;
    margin: 0 auto;
  }
  .hero-top {
    align-self: end;
    padding-bottom: 50px;
  }
  .hero-eyebrow {
    color: rgba(255,255,255,0.78);
    margin-bottom: 26px;
  }
  .hero-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(50px, 6.4vw, 104px);
    line-height: 1.02;
    letter-spacing: -0.022em;
    max-width: 15ch;
    margin: 0 0 40px;
  }
  .hero-title .it { font-style: italic; }
  .hero-sub {
    max-width: 56ch;
    font-size: 18px;
    color: rgba(255,255,255,0.84);
    line-height: 1.45;
    margin: 0 0 38px;
  }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero .btn-primary { background: #fff; color: var(--ink); }
  .hero .btn-primary:hover { background: rgba(255,255,255,0.92); }
  .hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); }
  .hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

  .hero-meta {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.18);
  }
  .hero-meta .meta-label {
    font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
  }
  .hero-meta .meta-value {
    font-size: 15px; color: rgba(255,255,255,0.92);
    font-weight: 400;
  }
  .hero-photo-credit {
    position: absolute;
    right: 40px; bottom: 22px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    z-index: 3;
  }

  /* Section helpers — used by section components */
  .h-display {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(42px, 5.4vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.018em;
    margin: 0;
  }
  .h-display .it { font-style: italic; }
  .h-section {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(34px, 4.2vw, 60px);
    line-height: 1.04;
    letter-spacing: -0.015em;
    margin: 0;
  }
  .lede {
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.45;
    color: var(--ink-soft);
    max-width: 60ch;
    font-weight: 400;
  }

  /* Two-column gap section */
  .gap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 80px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .gap-col {
    padding: 48px 48px;
    border-right: 1px solid var(--line);
  }
  .gap-col:last-child { border-right: 0; }
  .gap-col h4 {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
  }
  .gap-col .gap-eye {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 28px;
    display: block;
  }
  .gap-col ul { list-style: none; padding: 0; margin: 32px 0 0; }
  .gap-col li {
    padding: 16px 0;
    border-top: 1px solid var(--line-soft);
    display: flex; align-items: baseline; gap: 14px;
    font-size: 16px; color: var(--ink-soft);
    line-height: 1.4;
  }
  .gap-col li .marker {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--ink-mute);
    letter-spacing: 0.16em;
    flex-shrink: 0;
    width: 28px;
  }
  .gap-pull {
    margin-top: 56px;
    font-family: var(--serif);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.12;
    color: var(--ink);
    max-width: 28ch;
    font-style: italic;
  }
  .gap-pull strong { font-style: normal; }

  /* Joint Venture cards — photo background + corner logo badge */
  .jv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
  }
  .jv-card {
    background: var(--bg);
    border: 1px solid var(--line-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .jv-photo {
    position: relative;
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-alt);
  }
  .jv-photo::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
      rgba(0,0,0,0.42) 0%,
      rgba(0,0,0,0.10) 40%,
      rgba(0,0,0,0.05) 65%,
      rgba(0,0,0,0.55) 100%);
    pointer-events: none;
  }
  .jv-logo-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    min-width: 110px;
    padding: 5px 0px 0px 0px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-align: center;
    /*border: 1px dashed color-mix(in oklch, var(--ink) 30%, transparent);*/
  }
  .jv-logo-badge .name {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .jv-logo-badge .hint {
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: 6px;
  }
  .jv-photo-caption {
    position: absolute;
    bottom: 18px; right: 22px;
    z-index: 2;
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
  }
  .jv-body { padding: 36px 36px 40px; }
  .jv-body .jv-name {
    display: flex; align-items: baseline; gap: 12px;
    margin-bottom: 10px;
  }
  .jv-body .jv-name .name {
    font-family: var(--serif);
    font-size: 42px;
    letter-spacing: -0.01em;
  }
  .jv-body .jv-name .loc {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .jv-body p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; margin: 0 0 22px; }
  .jv-body ul { list-style: none; padding: 0; margin: 16px 0 0; }
  .jv-body li {
    padding: 12px 0;
    border-top: 1px solid var(--line-soft);
    font-size: 14.5px; color: var(--ink-soft);
    display: flex; gap: 12px;
  }
  .jv-body li::before {
    content: "—";
    color: var(--accent);
    flex-shrink: 0;
  }
  .jv-arrow {
    margin: 56px auto 0;
    display: grid;
    place-items: center;
    text-align: center;
  }
  .jv-arrow .line {
    width: 1px; height: 56px; background: var(--line);
    margin: 0 auto;
  }
  .jv-arrow .label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin: 14px 0 6px;
  }
  .jv-arrow .ivar {
    margin-top: 14px;
  }
  .jv-arrow .ivar svg { height: 36px; }

  /* Value Nodes section — IVAR gradient background */
  .nodes-section {
    background: var(--brand-gradient);
    color: var(--on-deep);
    position: relative;
  }
  .nodes-section::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.32) 100%);
    pointer-events: none;
  }
  .nodes-section > * { position: relative; z-index: 1; }
  .nodes-section .lede { color: rgba(255,255,255,0.7); }
  .nodes-section .eyebrow { color: rgba(255,255,255,0.6); }
  .nodes-section .section-tag .dot { background: var(--accent-2); }
  .nodes-diagram {
    margin-top: 90px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  .nodes-root {
    padding: 48px 56px;
    border-right: 1px solid rgba(255,255,255,0.14);
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }
  .nodes-root:last-of-type { border-right: 0; }
  .nodes-root .nr-eye {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
  }
  .nodes-root .nr-name {
    font-family: var(--serif);
    font-size: 42px;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
  }
  .nodes-root .nr-sub {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .nodes-root .nr-body {
    color: rgba(255,255,255,0.82);
    font-size: 16px; line-height: 1.5;
    max-width: 38ch;
  }
  .node-leaves {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .node-leaf {
    padding: 40px 48px 48px;
    border-right: 1px solid rgba(255,255,255,0.14);
  }
  .node-leaf:last-child { border-right: 0; }
  .node-leaf .leaf-eye {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
  }
  .node-leaf .leaf-name {
    font-family: var(--serif);
    font-size: 30px;
    margin: 0 0 14px;
  }
  .node-leaf .leaf-body {
    color: rgba(255,255,255,0.74);
    font-size: 14.5px; line-height: 1.55;
    max-width: 32ch;
  }
  .nodes-pull {
    margin: 90px auto 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.18;
    max-width: 36ch;
    text-align: center;
    color: rgba(255,255,255,0.94);
  }

  /* Mandate */
  .mandate-grid {
    margin-top: 80px;
    border-top: 1px solid var(--line);
  }
  .mandate-row {
    display: grid;
    grid-template-columns: 80px 1fr 1.4fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    transition: padding .35s ease;
  }
  .mandate-row:hover { padding-left: 12px; }
  .mandate-row .m-num {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.16em;
    padding-top: 8px;
  }
  .mandate-row .m-name {
    font-family: var(--serif);
    font-size: 30px;
    letter-spacing: -0.01em;
    line-height: 1.1;
  }
  .mandate-row .m-desc {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.55;
    padding-top: 8px;
  }

  /* Pillars */
  .pillars {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .pillar {
    padding: 48px 40px 56px;
    border-right: 1px solid var(--line);
  }
  .pillar:last-child { border-right: 0; }
  .pillar .p-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--ink-mute);
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .pillar h3 {
    font-family: var(--serif);
    font-size: 38px;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
  }
  .pillar p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; margin: 0; }

  /* Catalogue — text-only editorial index */
  .cat-section { background: var(--bg-alt); }
  .cat-index {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .cat-group {
    padding: 56px 48px 60px 0;
    border-bottom: 1px solid var(--line);
  }
  .cat-group:nth-child(2n) {
    padding: 56px 0 60px 48px;
    border-left: 1px solid var(--line);
  }
  .cat-group-head {
    margin-bottom: 32px;
  }
  .cat-group-eye {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }
  .cat-group-name {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 38px);
    margin: 0 0 8px;
    letter-spacing: -0.012em;
    line-height: 1.05;
  }
  .cat-group-meta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
    text-transform: uppercase;
  }
  .cat-list { list-style: none; padding: 0; margin: 0; }
  .cat-row {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: baseline;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid var(--line-soft);
    transition: padding .3s ease, color .3s ease;
  }
  .cat-row:first-child { border-top: 0; }
  .cat-row:hover { padding-left: 12px; }
  .cat-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
    text-transform: uppercase;
  }
  .cat-var {
    font-family: var(--serif);
    font-size: clamp(24px, 2.4vw, 32px);
    letter-spacing: -0.012em;
    line-height: 1.05;
    color: var(--ink);
  }
  .cat-var .reg {
    font-family: var(--mono);
    font-size: 0.4em;
    vertical-align: 0.6em;
    letter-spacing: 0;
    color: var(--ink-mute);
    margin-left: 2px;
  }
  .cat-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    white-space: nowrap;
  }

  /* Vision full-bleed — IVAR gradient + photo */
  .vision-bleed {
    position: relative;
    min-height: 760px;
    background: var(--brand-gradient);
    color: var(--on-deep);
    overflow: hidden;
  }
  .vision-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    mix-blend-mode: multiply;
    opacity: 0.85;
  }
  .vision-bg::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(95deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.30) 45%, rgba(0,0,0,0.10) 100%);
  }
  .vision-inner {
    position: relative; z-index: 2;
    padding: 140px 0 130px;
  }
  .vision-inner .eyebrow { color: rgba(255,255,255,0.65); }
  .vision-inner .section-tag .dot { background: var(--brand-green); }
  .vision-inner .h-section { color: #fff; max-width: 18ch; }
  .vision-list {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.18);
    max-width: 1000px;
  }
  .vision-item {
    padding: 32px 32px 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    display: flex;
    gap: 20px;
    align-items: baseline;
  }
  .vision-item:nth-child(even) { padding-left: 32px; border-left: 1px solid rgba(255,255,255,0.18); }
  .vision-item .v-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
  }
  .vision-item .v-text {
    color: rgba(255,255,255,0.92);
    font-size: 17px;
    line-height: 1.45;
  }

  /* What this can become — Origin / Expansion / Platform */
  .stages {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
  }
  .stage {
    padding: 40px 36px 40px;
    position: relative;
    border-left: 1px solid var(--line);
  }
  .stage:last-child { border-right: 1px solid var(--line); }
  .stage::before {
    content: "";
    position: absolute;
    top: -8px; left: -8px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--line);
  }
  .stage:nth-child(1)::before { background: var(--accent); border-color: var(--accent); }
  .stage:nth-child(2)::before { background: var(--accent-2); border-color: var(--accent-2); }
  .stage:nth-child(3)::before { background: var(--brand-green); border-color: var(--brand-green); }
  .stage-eye {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 28px;
  }
  .stage h4 {
    font-family: var(--serif);
    font-size: 34px;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
  }
  .stage .stage-sub {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
  }
  .stage p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; margin: 0; }
  .stage ul { list-style: none; padding: 0; margin: 14px 0 0; }
  .stage li {
    padding: 10px 0;
    font-size: 14.5px;
    color: var(--ink-soft);
    border-top: 1px solid var(--line-soft);
  }
  .stage li:first-child { border-top: 0; padding-top: 14px; }
  .stages-line {
    position: absolute;
    left: 0; right: 0;
    top: -1px;
    height: 1px;
    background: var(--line);
  }

  /* Firsts statement */
  .firsts-section { background: var(--bg); }
  .firsts-list { margin-top: 70px; max-width: 880px; }
  .firsts-line {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.18;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    gap: 22px;
  }
  .firsts-line:last-of-type { border-bottom: 1px solid var(--line); }
  .firsts-line .ord {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--accent);
    text-transform: uppercase;
    flex-shrink: 0;
    width: 44px;
    padding-top: 14px;
  }
  .firsts-coda {
    margin-top: 64px;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
    max-width: 22ch;
    letter-spacing: -0.015em;
  }
  .firsts-coda strong { font-style: normal; font-weight: 400; }

  /* Contact — removed; keeping the variable for legacy if referenced */

  /* Footer */
  footer {
    background: var(--bg);
    padding: 80px 0 50px;
    border-top: 1px solid var(--line);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }
  .footer-grid svg { height: 32px; width: auto; display: block; margin-bottom: 22px; }
  .footer-grid p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.55;
    max-width: 38ch;
    margin: 0;
  }
  .footer-col h5 {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin: 0 0 18px;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col li { padding: 6px 0; }
  .footer-col a { color: var(--ink-soft); font-size: 14.5px; }
  .footer-col a:hover { color: var(--ink); }
  .footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--line);
    display: flex; justify-content: space-between;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
  }

  /* Print-safe / utility */
  @media (max-width: 900px) {
    .wrap, .wrap-narrow { padding: 0 24px; }
    .nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .gap-grid, .jv-grid, .nodes-diagram, .node-leaves, .pillars, .cat-grid, .cat-index, .vision-list, .stages, .contact-row, .footer-grid {
      grid-template-columns: 1fr;
    }
    .cat-group, .cat-group:nth-child(2n) { padding: 40px 0 44px; border-left: 0; }
    .gap-col, .pillar, .stage, .nodes-root, .node-leaf { border-right: 0 !important; border-bottom: 1px solid var(--line); }
    .mandate-row { grid-template-columns: 60px 1fr; }
    .mandate-row .m-desc { grid-column: 2; padding-top: 0; }
    .section-pad, .section-pad-lg { padding: 90px 0; }
    .hero-meta { grid-template-columns: 1fr; gap: 24px; }
    .vision-item:nth-child(even) { padding-left: 0; border-left: 0; }
  }

  /* ── WordPress additions ─────────────────────── */
  .hamburger {
    display: none; flex-direction: column; gap: 5px; padding: 8px;
    background: none; border: none; cursor: pointer;
  }
  .hamburger span {
    display: block; width: 22px; height: 1.5px; background: currentColor;
    transition: all .3s ease; transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .mobile-nav {
    position: fixed; inset: 0; background: var(--bg);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; opacity: 0; pointer-events: none; transition: opacity .3s ease; z-index: 99;
  }
  .mobile-nav.open { opacity: 1; pointer-events: all; }
  .mobile-nav .nav-link {
    font-family: var(--serif); font-size: clamp(28px, 8vw, 48px); font-weight: 400;
    color: var(--ink); letter-spacing: -0.015em; padding: 8px 0; transition: color .2s ease;
  }
  .mobile-nav .nav-link:hover { color: var(--accent); }

  @media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav .eyebrow { display: none; }
    body.admin-bar #nav { top: 46px; }
    body.admin-bar .side-label { display: none; }
  }
  @media (min-width: 901px) { .hamburger { display: none; } }
  body.admin-bar #nav { top: 32px; }
  .nav-logo img, .nav-logo svg { height: 24px; width: auto; display: block; }
  footer .footer-grid > div:first-child img,
  footer .footer-grid > div:first-child svg { height: 32px; width: auto; display: block; margin-bottom: 22px; }

/* ── Nav z-index and layout fix ─────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  /*background: rgba(var(--bg-rgb, 250,248,243), 0.92);*/
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Hero clears the fixed nav ──────────────── */
.hero {
  padding-top: 0;
  min-height: 100vh;
  min-height: 100svh;
}


/* ── Prevent hero content from overlapping nav ─ */
.hero-inner {
  padding-top: 80px;
}