/* ========================================================
   Cloud Capital — Brand Identity v1.0 (May 2026)
   Per brand guide:
     Deep Green     #162A23  (primary brand voice — DEFAULT accent on ALL surfaces & pillars)
     Cloud Blue     #156082  (Cloud Invest SUB-CUE only — small labels/soft tone + data-viz; never a surface accent)
     Platinum       #A1A8AB  (Cloud Property SUB-CUE only — small labels/soft tone; never a surface accent)
     Stone          #EDEBE7  (paper — primary off-white substrate)
     Off-white      #FBFAF6  (digital paper)
     Ink            #1F2328  (body text only — never as brand fill)
     Sage           #5A7E58  (italic editorial accents)
     Hairline       #C5C2B9
   ======================================================== */

:root {
  /* Core palette — exact brand tokens */
  --cc-deep-green: #162A23;
  --cc-cloud-blue: #156082;
  --cc-platinum:   #A1A8AB;
  --cc-stone:      #EDEBE7;
  --cc-paper:      #FBFAF6;
  --cc-ink:        #1F2328;
  --cc-sage:       #5A7E58;
  --cc-hairline:   #C5C2B9;

  /* Tonal extensions */
  --green-darker:  #0F1F1A;
  --green-deep:    #162A23;
  --green-mid:     #21392F;
  --green-soft:    #5A7A6E;
  --blue-deep:     #2F4761;
  --blue-mid:      #156082;
  --blue-soft:     #88A0BA;
  --platinum-deep: #7A8084;
  --platinum-mid:  #A1A8AB;
  --platinum-soft: #C9CDCF;
  --stone-deep:    #C5C2B9;
  --stone-mid:     #D7D5CE;
  --stone-soft:    #EDEBE7;

  /* Working aliases — Off-white is brand-guide digital substrate (§04 LOGO USAGE)
     Stone (#EDEBE7) reserved for print substrates per brand-guide */
  --paper:   #FBFAF6;  /* Off-white — default digital paper */
  --paper-2: #F7F5EF;  /* Slightly warmer off-white — used sparingly */
  --paper-3: #FBFAF6;  /* Off-white — default for tinted-block backgrounds */
  --white: #FFFFFF;
  --ink: var(--cc-ink);
  --ink-soft: #4A4F55;
  --muted: #7A8084;

  /* Brand aliases — backward-compat */
  --green: var(--cc-deep-green);
  --blue:  var(--cc-cloud-blue);
  --brown: var(--cc-platinum); /* Cloud Property: brown REPLACED with platinum */
  --brown-deep: var(--platinum-deep);
  --brown-soft: var(--platinum-soft);

  /* Default page accent (overridden per page) */
  --accent: var(--cc-deep-green);
  --accent-deep: var(--green-darker);
  --accent-soft: var(--green-soft);
  /* Pillar sub-cue — small identifying tint; green leads ALL primary surfaces (2026-06-12) */
  --pillar-cue: var(--cc-deep-green);

  /* Hairlines (no shadows, no gradients per brand guide) */
  --line: var(--cc-hairline);
  --line-strong: rgba(31, 35, 40, 0.32);
  --line-light: rgba(31, 35, 40, 0.10);

  /* Layout */
  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 2.75rem);

  /* Type — Lora is the web fallback for Canela per brand guide */
  --serif: 'Lora', 'Times New Roman', Georgia, serif;
  --sans: 'Lato', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --mono: 'Lato', system-ui, sans-serif;  /* No mono per brand — caps in Lato Bold */
}

/* Per-page accent — GREEN-DOMINANCE (moderate, 2026-06-12):
   Deep Green leads ALL primary surfaces on every page/pillar. Cloud Invest (blue)
   and Cloud Property (platinum) survive only as a small sub-cue: --pillar-cue +
   --accent-soft (e.g. the eyebrow on dark heroes). Never a surface accent.
   Data-viz / brand chips keep their own colours. */
body.brand-umbrella { --accent: var(--cc-deep-green); --accent-deep: var(--green-darker); --accent-soft: var(--green-soft);     --pillar-cue: var(--cc-deep-green); }
body.brand-capital  { --accent: var(--cc-deep-green); --accent-deep: var(--green-darker); --accent-soft: var(--green-soft);     --pillar-cue: var(--cc-deep-green); }
body.brand-invest   { --accent: var(--cc-deep-green); --accent-deep: var(--green-darker); --accent-soft: var(--cc-cloud-blue);  --pillar-cue: var(--cc-cloud-blue); }
body.brand-property { --accent: var(--cc-deep-green); --accent-deep: var(--green-darker); --accent-soft: var(--cc-platinum);   --pillar-cue: var(--cc-platinum); }
body.brand-fond     { --accent: var(--cc-deep-green); --accent-deep: var(--green-darker); --accent-soft: var(--green-soft);     --pillar-cue: var(--cc-deep-green); }

/* ===================== RESET ===================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.wrap.narrow { max-width: 980px; }
.wrap.wide   { max-width: 1440px; }

/* ===================== NAV — floating, transparent over hero ===================== */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
}
header.site.scrolled {
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--cc-hairline);
}
header.site .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand img.logo {
  height: 26px;
  width: auto;
}
nav.primary ul {
  display: flex;
  gap: 1.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .92rem;
  color: var(--ink-soft);
}
nav.primary a {
  position: relative;
  padding: .25rem 0;
  transition: color .2s ease;
}
nav.primary a:hover,
nav.primary a.active {
  color: var(--ink);
}
nav.primary a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -.4rem;
  height: 2px;
  background: var(--accent);
}
.lang {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  white-space: nowrap;
}
.lang span.active { color: var(--ink); }

.menu-btn {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--mono);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: .5rem 0;
}

@media (max-width: 1020px) {
  nav.primary ul { display: none; }
  .lang { display: none; }
  .menu-btn { display: inline-block; }
  header.site.menu-open nav.primary ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem var(--pad) 2rem;
    gap: 1.2rem;
    font-size: 1.05rem;
  }
}

/* ===================== HERO ===================== */
.hero {
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero.no-border { border-bottom: 0; }
.hero.tinted { background: var(--paper-3); }
.hero.warm   { background: var(--paper-2); }
.hero.white  { background: var(--white); }
.hero.dark {
  background: var(--ink);
  color: var(--paper);
}
.hero.dark h1, .hero.dark h2, .hero.dark h3 { color: var(--paper); }
.hero.dark .lede { color: rgba(242, 237, 222, 0.75); }
.hero.dark .eyebrow { color: var(--accent-soft); }
.hero.dark .meta-row { border-top-color: rgba(255,255,255,0.12); color: rgba(242,237,222,0.7); }
.hero.dark .meta-row .num { color: var(--paper); }
.hero.dark .meta-row .lab { color: rgba(242, 237, 222, 0.55); }

.hero.brand-block {
  background: var(--accent);
  color: var(--paper);
  border-bottom: 0;
}
.hero.brand-block h1, .hero.brand-block h2 { color: var(--paper); }
.hero.brand-block h1 em { color: rgba(242, 237, 222, 0.75); font-style: italic; }
.hero.brand-block .lede { color: rgba(242, 237, 222, 0.85); }
.hero.brand-block .eyebrow { color: rgba(242, 237, 222, 0.8); }
.hero.brand-block .eyebrow::before { background: rgba(242, 237, 222, 0.5); }
.hero.brand-block .meta-row { border-top-color: rgba(242, 237, 222, 0.2); }
.hero.brand-block .meta-row .num { color: var(--paper); }
.hero.brand-block .meta-row .lab { color: rgba(242, 237, 222, 0.65); }
.hero.brand-block .btn.outline {
  border-color: rgba(242,237,222,0.45);
  color: var(--paper);
}
.hero.brand-block .btn.outline:hover {
  background: var(--paper);
  color: var(--accent);
  border-color: var(--paper);
}

.hero .eyebrow {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.hero .eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  max-width: 18ch;
  margin-bottom: 1.6rem;
}
.hero h1.xl { font-size: clamp(3rem, 7.5vw, 6.4rem); max-width: 14ch; }
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero .lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 2.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero-grid.reverse { grid-template-columns: 1fr 1.35fr; }
.hero-grid.reverse > :first-child { order: 2; }
.hero-grid.reverse > :last-child { order: 1; }
.hero-grid.even { grid-template-columns: 1fr 1fr; }
.hero-grid.text-only { grid-template-columns: 1fr; max-width: 980px; }
@media (max-width: 880px) {
  .hero-grid, .hero-grid.reverse, .hero-grid.even { grid-template-columns: 1fr; }
  .hero-grid.reverse > :first-child { order: 1; }
  .hero-grid.reverse > :last-child { order: 2; }
}

/* hero art block - branded panel with logomark */
.hero-art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  background: var(--accent);
}
.hero-art.square { aspect-ratio: 1/1; }
.hero-art.wide   { aspect-ratio: 16/10; }
.hero-art .gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(242,237,222,0.10), transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(0,0,0,0.30), transparent 60%);
}
.hero-art .seal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.hero-art .seal img { width: 50%; height: auto; max-width: 240px; }
.hero-art.lg .seal img { width: 65%; max-width: 320px; }
.hero-art .corner {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(242, 237, 222, 0.7);
}
.hero-art .corner-tl {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(242, 237, 222, 0.7);
}

.meta-row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--ink-soft);
}
.meta-row .num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--ink);
  display: block;
  line-height: 1;
  margin-bottom: .35rem;
}
.meta-row .lab {
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===================== SECTIONS ===================== */
section.block {
  padding: clamp(6rem, 10vw, 8.5rem) 0;  /* more whitespace per brand-guide */
  position: relative;
}
section.block.tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
section.block.tinted { background: var(--white); border-block: 1px solid var(--line); }
section.block.warm   { background: var(--paper-2); border-block: 1px solid var(--line); }
section.block.clean  { background: var(--white); border-block: 1px solid var(--line-light); }
section.block.dark {
  background: var(--ink);
  color: var(--paper);
  border-block: 1px solid rgba(255,255,255,0.04);
}
section.block.green {
  background: var(--green);
  color: var(--paper);
}
section.block.blue {
  background: var(--blue);
  color: var(--paper);
}
section.block.brown {
  background: var(--brown);
  color: var(--paper);
}
section.block.dark h1, section.block.dark h2, section.block.dark h3,
section.block.green h1, section.block.green h2, section.block.green h3,
section.block.blue h1, section.block.blue h2, section.block.blue h3,
section.block.brown h1, section.block.brown h2, section.block.brown h3 { color: var(--paper); }

section.block.dark .section-lede,
section.block.green .section-lede,
section.block.blue .section-lede,
section.block.brown .section-lede { color: rgba(242, 237, 222, 0.78); }

section.block > .wrap { position: relative; z-index: 1; }

.section-num {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .16em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
}
section.block.dark .section-num,
section.block.green .section-num,
section.block.blue .section-num,
section.block.brown .section-num { color: rgba(242,237,222,0.85); }

.section-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  max-width: 22ch;
  margin-bottom: 1.5rem;
}
.section-title.xl {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 18ch;
}
.section-lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.split.even { grid-template-columns: 1fr 1fr; }
.split.heavy-right { grid-template-columns: 1fr 1.8fr; }
.split.heavy-left { grid-template-columns: 1.6fr 1fr; }
.split.center { align-items: center; }
@media (max-width: 880px) {
  .split, .split.even, .split.heavy-right, .split.heavy-left { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===================== VALUE LIST ===================== */
.value-list { display: grid; }
.value-list .item {
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  align-items: baseline;
}
.value-list .item:last-child { border-bottom: 1px solid var(--line); }
section.block.dark .value-list .item,
section.block.green .value-list .item,
section.block.blue .value-list .item,
section.block.brown .value-list .item { border-top-color: rgba(242, 237, 222, 0.18); }
section.block.dark .value-list .item:last-child,
section.block.green .value-list .item:last-child,
section.block.blue .value-list .item:last-child,
section.block.brown .value-list .item:last-child { border-bottom-color: rgba(242, 237, 222, 0.18); }
.value-list .item .n {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .12em;
  color: var(--accent);
}
section.block.dark .value-list .item .n,
section.block.green .value-list .item .n,
section.block.blue .value-list .item .n,
section.block.brown .value-list .item .n { color: rgba(242,237,222,0.85); }
.value-list .item h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 .5rem;
}
.value-list .item p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 56ch;
}
section.block.dark .value-list .item p,
section.block.green .value-list .item p,
section.block.blue .value-list .item p,
section.block.brown .value-list .item p { color: rgba(242,237,222,0.7); }

/* ===================== AREA CARDS ===================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 3.5rem;
}
.areas-grid.three { grid-template-columns: repeat(3, 1fr); }
.areas-grid.two   { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1020px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .areas-grid, .areas-grid.three, .areas-grid.two { grid-template-columns: 1fr; }
}
.area {
  background: var(--paper);
  padding: clamp(2rem, 3vw, 2.6rem);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: background .25s ease;
}
section.block.clean .area { background: var(--white); }
.area:hover { background: var(--paper-3); }
section.block.clean .area:hover { background: var(--paper-3); }
.area .pill {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--muted);
}
.area .swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 1.4rem;
  border: 1px solid var(--line);
}
.area.brand-green .swatch  { background: var(--green); }
.area.brand-blue .swatch   { background: var(--blue); }
.area.brand-brown .swatch  { background: var(--brown); }
.area.brand-cream .swatch  { background: var(--paper-2); }
.area.brand-green .pill    { color: var(--green); }
.area.brand-blue .pill     { color: var(--blue); }
.area.brand-brown .pill    { color: var(--brown); }

.area h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.area p {
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  max-width: 44ch;
  flex: 1;
}
.area .arrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .92rem;
  font-weight: 500;
  transition: gap .25s ease;
}
.area.brand-green .arrow  { color: var(--green); }
.area.brand-blue .arrow   { color: var(--blue); }
.area.brand-brown .arrow  { color: var(--brown); }
.area:hover .arrow { gap: .9rem; }

/* ===================== TIMELINE ===================== */
.timeline {
  border-left: 1px solid var(--line);
  margin-top: 1rem;
}
section.block.dark .timeline,
section.block.green .timeline,
section.block.blue .timeline,
section.block.brown .timeline { border-left-color: rgba(242,237,222,0.2); }
.timeline .ev {
  padding: 0 0 2.4rem 2rem;
  position: relative;
}
.timeline .ev::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: -5px; top: .55rem;
}
.timeline .ev .yr {
  font-family: var(--mono);
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .35rem;
  display: block;
}
.timeline .ev h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 .35rem;
}
.timeline .ev p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 55ch;
}

/* ===================== QUOTE ===================== */
.quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.3;
  font-style: italic;
  margin: 0;
  padding-left: 2rem;
  border-left: 2px solid var(--accent);
}
.quote.xl { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.quote.center {
  border-left: 0;
  padding-left: 0;
  text-align: center;
  max-width: 28ch;
  margin: 0 auto;
}
.quote.center::before { display: block; text-align: center; margin-right: 0; }
.quote::before {
  content: "\201C";
  font-size: 4rem;
  line-height: 0;
  color: var(--accent);
  margin-right: .25rem;
  vertical-align: -0.15em;
}
.quote-attr {
  margin-top: 1.2rem;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.quote-attr.center { text-align: center; }

/* ===================== STATS / PILLARS ===================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.pillars.four { grid-template-columns: repeat(4, 1fr); }
.pillars.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) {
  .pillars, .pillars.four, .pillars.two { grid-template-columns: 1fr; gap: 1.4rem; }
}
.pillar {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}
section.block.dark .pillar,
section.block.green .pillar,
section.block.blue .pillar,
section.block.brown .pillar { border-top-color: rgba(242,237,222,0.18); }
.pillar .n {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
section.block.dark .pillar .n,
section.block.green .pillar .n,
section.block.blue .pillar .n,
section.block.brown .pillar .n { color: rgba(242,237,222,0.85); }
.pillar h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 0 0 .6rem;
  font-weight: 500;
}
.pillar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .98rem;
}
section.block.dark .pillar p,
section.block.green .pillar p,
section.block.blue .pillar p,
section.block.brown .pillar p { color: rgba(242,237,222,0.7); }

/* ===================== PORTFOLIO GRID ===================== */
.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2rem;
}
section.block.dark .pgrid,
section.block.green .pgrid,
section.block.blue .pgrid,
section.block.brown .pgrid {
  background: rgba(242,237,222,0.18);
  border-color: rgba(242,237,222,0.18);
}
@media (max-width: 760px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); }
}
.pcell {
  background: var(--paper);
  padding: 1.6rem 1.4rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .2s ease;
}
section.block.clean .pcell { background: var(--white); }
section.block.dark .pcell { background: var(--ink); }
section.block.green .pcell { background: var(--green); }
section.block.blue .pcell { background: var(--blue); }
section.block.brown .pcell { background: var(--brown); }
.pcell:hover { background: var(--paper-3); }
section.block.clean .pcell:hover { background: var(--paper); }
section.block.dark .pcell:hover { background: #1a2535; }
section.block.green .pcell:hover { background: var(--green-deep); }
section.block.blue .pcell:hover { background: var(--blue-deep); }
section.block.brown .pcell:hover { background: var(--brown-deep); }
.pcell .pname {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0;
  color: var(--ink);
}
section.block.dark .pcell .pname,
section.block.green .pcell .pname,
section.block.blue .pcell .pname,
section.block.brown .pcell .pname { color: var(--paper); }
.pcell .ptag {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1rem;
}
section.block.dark .pcell .ptag,
section.block.green .pcell .ptag,
section.block.blue .pcell .ptag,
section.block.brown .pcell .ptag { color: rgba(242,237,222,0.55); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem 1.5rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .95rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--paper);
  border: 1px solid var(--accent);
  transition: all .2s ease;
  cursor: pointer;
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn.outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn.outline:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
section.block.dark .btn.outline,
section.block.green .btn.outline,
section.block.blue .btn.outline,
section.block.brown .btn.outline {
  color: var(--paper);
  border-color: rgba(242,237,222,0.4);
}
section.block.dark .btn.outline:hover,
section.block.green .btn.outline:hover,
section.block.blue .btn.outline:hover,
section.block.brown .btn.outline:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
section.block.green .btn { background: var(--paper); color: var(--green); border-color: var(--paper); }
section.block.green .btn:hover { background: transparent; color: var(--paper); }
section.block.blue .btn { background: var(--paper); color: var(--blue); border-color: var(--paper); }
section.block.blue .btn:hover { background: transparent; color: var(--paper); }
section.block.brown .btn { background: var(--paper); color: var(--brown); border-color: var(--paper); }
section.block.brown .btn:hover { background: transparent; color: var(--paper); }

/* ===================== CTA ===================== */
.cta {
  background: var(--ink);
  color: var(--paper);
  border-block: 1px solid rgba(242,237,222,0.06);
  position: relative;
  overflow: hidden;
}
section.block.cta { padding: clamp(3.5rem, 6vw, 5rem) 0; }  /* slankere CTA, var clamp(6,10,8.5) */
.cta.green { background: var(--green); }
.cta.blue  { background: var(--blue); }
.cta.brown { background: var(--brown); }
.cta::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(242,237,222,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.cta h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--paper);
  max-width: 22ch;
  margin-bottom: 2rem;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: end;
}
@media (max-width: 880px) {
  .cta-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.cta p { color: rgba(242,237,222,0.78); max-width: 50ch; font-size: 1.05rem; }

/* ===================== MEDIA / FIGURES ===================== */
.media {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.media.tall { aspect-ratio: 3/4; }
.media.wide { aspect-ratio: 16/9; }
.media.tall-2 { aspect-ratio: 2/3; }
.media .gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(242,237,222,0.10), transparent 55%),
    radial-gradient(circle at 80% 90%, rgba(0,0,0,0.30), transparent 60%);
}
.media .lab {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(242, 237, 222, 0.7);
}
.media.with-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('logos/logomark-cream.svg');
  background-size: 45% auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
}

/* ===================== FOOTER ===================== */
footer.site {
  background: var(--ink);
  color: rgba(242,237,222,0.6);
  padding: 4rem 0 2rem;
  font-size: .86rem;
  position: relative;
  overflow: hidden;
}
footer.site::before {
  content: "";
  position: absolute;
  right: -300px;
  bottom: -300px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(242,237,222,0.025) 0%, transparent 65%);
  pointer-events: none;
}
footer.site .grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) {
  footer.site .grid { grid-template-columns: 1fr 1fr; }
}
footer.site h5 {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(242,237,222,0.45);
  margin: 0 0 1rem;
  font-weight: 500;
}
footer.site ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}
footer.site a { color: rgba(242,237,222,0.85); }
footer.site a:hover { color: var(--paper); }
footer.site .brand-block img {
  height: 32px;
  width: auto;
  margin-bottom: 1.2rem;
  display: block;
}
footer.site .brand-block p {
  margin: 0 0 1rem;
  max-width: 32ch;
  color: rgba(242,237,222,0.6);
}
footer.site .bottom {
  border-top: 1px solid rgba(242,237,222,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  position: relative;
  z-index: 1;
}

/* ===================== ANIMATIONS ===================== */
.fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1);
}
.fade.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== UTILS ===================== */
.tag {
  display: inline-block;
  padding: .35rem .8rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tag.accent { border-color: var(--accent); color: var(--accent); }
.divider { height: 1px; background: var(--line); margin: 4rem 0; }
.muted { color: var(--muted); }
.serif { font-family: var(--serif); }
.mono { font-family: var(--mono); }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }

/* ===================== HEADLINE BANNER (large editorial type) ===================== */
.banner {
  padding: clamp(4rem, 7vw, 6rem) 0;
  border-block: 1px solid var(--line);
  background: var(--white);
}
.banner h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  max-width: 16ch;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
  font-weight: 300;
}
.banner h2 em { font-style: normal; color: var(--accent); }

/* ============= IMAGE HERO (full-bleed photo with overlay) ============= */
.hero.image {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 0;
  padding: 0;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.hero.image .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}
.hero.image .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(20,32,46,0.20) 0%,
      rgba(20,32,46,0.45) 55%,
      rgba(20,32,46,0.88) 100%);
}
.hero.image .wrap {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 4rem;
  width: 100%;
}
.hero.image h1 { color: var(--paper); }
.hero.image h1 em { color: rgba(242,237,222,0.65); font-style: italic; }
.hero.image .lede { color: rgba(242,237,222,0.85); }
.hero.image .eyebrow { color: rgba(242,237,222,0.85); }
.hero.image .eyebrow::before { background: rgba(242,237,222,0.5); }
.hero.image .meta-row {
  border-top-color: rgba(242,237,222,0.2);
  color: rgba(242,237,222,0.7);
}
.hero.image .meta-row .num { color: var(--paper); }
.hero.image .meta-row .lab { color: rgba(242,237,222,0.55); }
.hero.image .btn.outline {
  border-color: rgba(242,237,222,0.5);
  color: var(--paper);
}
.hero.image .btn.outline:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.hero.image .scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(242,237,222,0.55);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
}
.hero.image .scroll-hint::after {
  content: "";
  width: 1px;
  height: 36px;
  background: rgba(242,237,222,0.4);
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============= IMAGE FIGURE (side panel) ============= */
.hero-figure {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.hero-figure.square { aspect-ratio: 1/1; }
.hero-figure.tall   { aspect-ratio: 3/4; }
.hero-figure.wide   { aspect-ratio: 16/10; }
.hero-figure.tall-2 { aspect-ratio: 2/3; }

.figure-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.figure-card .bg {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.figure-card:hover .bg { transform: scale(1.04); }
.figure-card .caption {
  margin-top: .9rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============= PHOTO CARDS (portfolio with images) ============= */
.photo-card {
  position: relative;
  display: block;
  background: var(--ink);
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  color: var(--paper);
}
.photo-card .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
  filter: brightness(0.85);
}
.photo-card:hover .bg { transform: scale(1.05); filter: brightness(1); }
.photo-card .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      transparent 30%,
      rgba(20,32,46,0.85) 100%);
}
.photo-card .meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1.5rem;
}
.photo-card .pname {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 0 0 .35rem;
  color: var(--paper);
  font-weight: 500;
}
.photo-card .ptag {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(242,237,222,0.78);
}
.photo-card .arrow-corner {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  width: 36px;
  height: 36px;
  background: rgba(242,237,222,0.92);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translate(.5rem, -.5rem);
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.photo-card:hover .arrow-corner { opacity: 1; transform: translate(0,0); }

/* ============= PHOTO GRID ============= */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.photo-grid.three { grid-template-columns: repeat(3, 1fr); }
.photo-grid.two   { grid-template-columns: repeat(2, 1fr); }
.photo-grid.staggered .photo-card:nth-child(2n) { transform: translateY(2rem); }
@media (max-width: 880px) {
  .photo-grid, .photo-grid.three { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .photo-grid.staggered .photo-card { transform: none; }
}

/* ============= TEAM GRID ============= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-top: 3rem;
}
@media (max-width: 880px) {
  .team-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.team-card {
  display: flex;
  flex-direction: column;
}
.team-card .portrait {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center 25%;
  overflow: hidden;
  filter: grayscale(0.18);
  transition: filter .6s ease, transform 1s cubic-bezier(.2,.7,.2,1);
}
.team-card:hover .portrait { filter: grayscale(0); }
.team-card .initials {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1c2a3c 0%, #0a1118 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-card .initials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 78% 12%, rgba(242,237,222,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 18% 95%, rgba(0,0,0,0.30) 0%, transparent 55%);
  pointer-events: none;
}
.team-card .initials::after {
  content: "";
  position: absolute;
  top: 28%;
  right: -12%;
  width: 78%;
  height: 56%;
  background: url('logos/logomark-cream.svg') no-repeat center / contain;
  opacity: 0.06;
  pointer-events: none;
  transition: opacity .4s ease;
}
.team-card:hover .initials::after { opacity: 0.10; }
.team-card .initials span {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--paper);
  position: relative;
  z-index: 1;
}
.team-card h4 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin: 1.4rem 0 .35rem;
}
.team-card .role {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
}
.team-card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
}

/* ============= AREA CARD WITH PHOTO ============= */
.area .area-img {
  width: calc(100% + 2 * clamp(2rem, 3vw, 2.6rem));
  margin-left: calc(-1 * clamp(2rem, 3vw, 2.6rem));
  margin-right: calc(-1 * clamp(2rem, 3vw, 2.6rem));
  margin-top: calc(-1 * clamp(2rem, 3vw, 2.6rem));
  margin-bottom: 1.6rem;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}

/* ============= ANIMATIONS — REVEAL ============= */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.reveal-up.in { opacity: 1; transform: translateY(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s ease, transform .95s cubic-bezier(.2,.7,.2,1);
}
.stagger.in > *:nth-child(1) { transition-delay: .05s; opacity:1; transform:translateY(0); }
.stagger.in > *:nth-child(2) { transition-delay: .15s; opacity:1; transform:translateY(0); }
.stagger.in > *:nth-child(3) { transition-delay: .25s; opacity:1; transform:translateY(0); }
.stagger.in > *:nth-child(4) { transition-delay: .35s; opacity:1; transform:translateY(0); }
.stagger.in > *:nth-child(5) { transition-delay: .45s; opacity:1; transform:translateY(0); }
.stagger.in > *:nth-child(6) { transition-delay: .55s; opacity:1; transform:translateY(0); }
.stagger.in > *:nth-child(7) { transition-delay: .65s; opacity:1; transform:translateY(0); }
.stagger.in > *:nth-child(8) { transition-delay: .75s; opacity:1; transform:translateY(0); }

.reveal-img {
  overflow: hidden;
  position: relative;
}
.reveal-img .bg, .reveal-img .img, .reveal-img .portrait {
  transform: scale(1.08);
  filter: blur(8px);
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1), filter 1.2s ease;
}
.reveal-img.in .bg, .reveal-img.in .img, .reveal-img.in .portrait {
  transform: scale(1);
  filter: blur(0);
}

/* Section label horizontal rule */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
section.block.dark .section-label::after,
section.block.green .section-label::after,
section.block.blue .section-label::after,
section.block.brown .section-label::after,
.hero.image .section-label::after { background: rgba(242,237,222,0.25); }
section.block.dark .section-label,
section.block.green .section-label,
section.block.blue .section-label,
section.block.brown .section-label,
.hero.image .section-label { color: rgba(242,237,222,0.85); }

/* Badge with photo */
.with-photo {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .4rem .8rem .4rem .4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--ink-soft);
}
.with-photo .ph {
  width: 32px; height: 32px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex: 0 0 auto;
}

/* Hover image-pop on text links */
a.img-link {
  position: relative;
  border-bottom: 1px solid currentColor;
  display: inline-block;
  padding-bottom: .15rem;
}
a.img-link .preview {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translate(-50%, 6px);
  width: 220px;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .35s cubic-bezier(.2,.7,.2,1);
  z-index: 5;
}
a.img-link:hover .preview { opacity: 1; transform: translate(-50%, 0); }

/* Disable parallax on small screens */
@media (max-width: 880px) {
  .hero.image { min-height: 70vh; }
}

/* ============= CLOUD HERO — Ken Burns + animated mesh overlay ============= */
.hero.cloud-hero {
  background: #0a1220;
  min-height: 96vh;
}
.hero.cloud-hero .bg {
  filter: contrast(1.04) saturate(0.92);
  animation: ken-burns 36s ease-in-out infinite alternate;
  transform-origin: 60% 40%;
}

/* ============= GENERATIVE SKY — gradient + feTurbulence cloud layers ============= */
.hero.cloud-hero .sky-render {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero.cloud-hero .sky-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #1c2440 0%,
    #38397a 14%,
    #5d4978 28%,
    #8a5e6e 42%,
    #b27460 56%,
    #cd8a5e 68%,
    #db9f78 80%,
    #e7bb95 92%,
    #efcfa8 100%
  );
}
.hero.cloud-hero .cloud-svg {
  position: absolute;
  top: 0;
  left: -15%;
  width: 130%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
}
.hero.cloud-hero .cloud-svg.back {
  opacity: 0.55;
  animation: cloud-pan-back 220s ease-in-out infinite alternate;
}
.hero.cloud-hero .cloud-svg.front {
  opacity: 0.78;
  animation: cloud-pan-front 140s ease-in-out infinite alternate;
}
@keyframes cloud-pan-back {
  0%   { transform: translateX(-2%); }
  100% { transform: translateX(3%); }
}
@keyframes cloud-pan-front {
  0%   { transform: translateX(3%); }
  100% { transform: translateX(-3%); }
}
.hero.cloud-hero .sky-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(20,32,46,0.05) 0%,
    rgba(20,32,46,0.18) 38%,
    rgba(20,32,46,0.48) 72%,
    rgba(10,18,32,0.82) 100%
  );
}
.hero.cloud-hero .sun-glow {
  position: absolute;
  width: 80%;
  height: 70%;
  bottom: -25%;
  left: 20%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 220, 175, 0.40) 0%,
    rgba(255, 200, 150, 0.22) 25%,
    transparent 55%
  );
  filter: blur(50px);
  pointer-events: none;
  animation: sun-pulse 18s ease-in-out infinite alternate;
}
@keyframes sun-pulse {
  0%   { opacity: 0.85; transform: translateY(0); }
  100% { opacity: 1.05; transform: translateY(-12px); }
}

/* ============= SPLIT HERO — Brand Guide signature pattern (deep green left + stone right) ============= */
.hero.split-hero {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 86vh;
  border-bottom: 0;
  padding: 0;
  background: var(--cc-paper);
  overflow: hidden;
  position: relative;
}
@media (max-width: 1020px) { .hero.split-hero { grid-template-columns: 1fr; min-height: auto; } }
.hero.split-hero .pane-dark {
  background: var(--cc-deep-green);
  color: var(--cc-stone);
  padding: clamp(4rem, 7vw, 7rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero.split-hero .pane-light {
  background: var(--cc-paper);
  color: var(--cc-deep-green);
  padding: clamp(4rem, 7vw, 7rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero.split-hero .pane-dark .label {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 235, 231, 0.65);
  margin-bottom: 2.2rem;
}
.hero.split-hero .pane-dark h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.0;
  letter-spacing: -0.018em;
  color: var(--cc-stone);
  margin: 0;
}
.hero.split-hero .pane-dark .lede {
  margin-top: 2rem;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  color: rgba(237, 235, 231, 0.82);
  max-width: 38ch;
}
.hero.split-hero .pane-dark .hero-rule {
  width: 56px;
  height: 1px;
  background: rgba(237, 235, 231, 0.45);
  margin: 1.6rem 0 0;
}
.hero.split-hero .pane-dark .pane-foot {
  margin-top: auto;
  padding-top: 3rem;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237, 235, 231, 0.5);
}

/* ============= PILLARS STACKED — "Private. Disciplined. Long Term." ============= */
.pillars-stacked {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.pillars-stacked .pill-line {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--cc-deep-green);
}
.hero.split-hero .pane-dark .pillars-stacked .pill-line { color: var(--cc-stone); }

/* ============= STAT TRIO — Brand-guide style big serif numbers + small labels ============= */
.stat-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(237, 235, 231, 0.22);
  padding-top: 2.2rem;
  margin-top: 3rem;
}
.stat-trio.on-light {
  border-top-color: var(--cc-hairline);
}
@media (max-width: 640px) { .stat-trio { grid-template-columns: 1fr; gap: 1.4rem; } }
.stat-trio .stat-cell {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.stat-trio .stat-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--cc-stone);
  font-variant-numeric: tabular-nums;
}
.stat-trio.on-light .stat-num { color: var(--cc-deep-green); }
.stat-trio .stat-lab {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .82rem;
  line-height: 1.4;
  color: rgba(237, 235, 231, 0.62);
}
.stat-trio.on-light .stat-lab { color: var(--cc-deep-green); opacity: 0.55; }

/* ============= APPROACH LIST — icon + label + tiny prose ============= */
.approach-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.approach-list .ap-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1.2rem;
  align-items: start;
}
.approach-list .ap-icon {
  width: 26px;
  height: 26px;
  stroke: rgba(237, 235, 231, 0.7);
  stroke-width: 1;
  fill: none;
  margin-top: .15rem;
}
.approach-list .ap-text strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--cc-stone);
  margin-bottom: .25rem;
}
.approach-list .ap-text span {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: .88rem;
  line-height: 1.55;
  color: rgba(237, 235, 231, 0.72);
}
.hero.split-hero.on-light .approach-list .ap-icon { stroke: var(--cc-deep-green); }
.hero.split-hero.on-light .approach-list .ap-text strong { color: var(--cc-deep-green); }
.hero.split-hero.on-light .approach-list .ap-text span { color: rgba(31, 35, 40, 0.7); }

/* ============= BRAND HEROES — solid colour, no gradients (per brand guide) ============= */
.hero.brand-hero {
  color: var(--cc-stone);
  border-bottom: 0;
  padding: clamp(8rem, 16vw, 14rem) 0 clamp(6rem, 12vw, 10rem);
  position: relative;
  overflow: hidden;
  min-height: auto;
}
.hero.brand-hero.green-hero { background: var(--cc-deep-green); }
.hero.brand-hero.blue-hero  { background: var(--cc-cloud-blue); }
.hero.brand-hero.brown-hero { background: var(--cc-platinum); color: var(--cc-deep-green); }
.hero.brand-hero.dark-hero  { background: var(--cc-deep-green); }
/* Legacy alias */
.hero.green-hero { color: var(--cc-stone); border-bottom: 0; padding: clamp(8rem, 16vw, 14rem) 0 clamp(6rem, 12vw, 10rem); position: relative; overflow: hidden; background: var(--cc-deep-green); min-height: auto; }
.hero.brand-hero::after,
.hero.green-hero::after {
  content: "";
  position: absolute;
  top: 22%;
  right: -10%;
  width: 55%;
  height: 65%;
  background: url('logos/logomark-cream.svg') no-repeat center / contain;
  opacity: 0.04;
  pointer-events: none;
}
.hero.brand-hero.brown-hero::after { background-image: url('logos/logomark-black.svg'); opacity: 0.06; }
.hero.brand-hero .wrap,
.hero.green-hero .wrap { position: relative; z-index: 1; }
.hero.brand-hero h1, .hero.green-hero h1 { color: var(--cc-stone); font-weight: 400; }
.hero.brand-hero.brown-hero h1 { color: var(--cc-deep-green); }
.hero.brand-hero h1 em, .hero.green-hero h1 em { color: var(--cc-stone); opacity: 0.62; font-weight: 400; font-style: italic; }
.hero.brand-hero.brown-hero h1 em { color: var(--cc-deep-green); opacity: 0.7; }
.hero.brand-hero .lede, .hero.green-hero .lede { color: var(--cc-stone); opacity: 0.85; }
.hero.brand-hero.brown-hero .lede { color: var(--cc-deep-green); opacity: 0.75; }
.hero.brand-hero .eyebrow, .hero.green-hero .eyebrow { color: var(--cc-stone); opacity: 0.78; }
.hero.brand-hero.brown-hero .eyebrow { color: var(--cc-deep-green); opacity: 0.65; }
.hero.brand-hero .eyebrow::before, .hero.green-hero .eyebrow::before { background: rgba(237,235,231,0.5); }
.hero.brand-hero.brown-hero .eyebrow::before { background: rgba(22,42,35,0.5); }
.hero.brand-hero .btn, .hero.green-hero .btn {
  background: var(--cc-stone);
  color: var(--cc-deep-green);
  border-color: var(--cc-stone);
}
.hero.brand-hero .btn:hover, .hero.green-hero .btn:hover {
  background: transparent;
  color: var(--cc-stone);
}
.hero.brand-hero.brown-hero .btn { background: var(--cc-deep-green); color: var(--cc-stone); border-color: var(--cc-deep-green); }
.hero.brand-hero.brown-hero .btn:hover { background: transparent; color: var(--cc-deep-green); }
.hero.brand-hero .btn.outline, .hero.green-hero .btn.outline {
  background: transparent;
  color: var(--cc-stone);
  border-color: rgba(237,235,231,0.4);
}
.hero.brand-hero.brown-hero .btn.outline { color: var(--cc-deep-green); border-color: rgba(22,42,35,0.4); }
.hero.brand-hero .btn.outline:hover, .hero.green-hero .btn.outline:hover {
  background: var(--cc-stone);
  color: var(--cc-deep-green);
  border-color: var(--cc-stone);
}
.hero.brand-hero .meta-row, .hero.green-hero .meta-row {
  border-top: 1px solid rgba(237,235,231,0.22);
  margin-top: 5rem;
  padding-top: 2.5rem;
  color: rgba(237,235,231,0.7);
}
.hero.brand-hero.brown-hero .meta-row { border-top-color: rgba(22,42,35,0.2); color: rgba(22,42,35,0.7); }
.hero.brand-hero .meta-row .num, .hero.green-hero .meta-row .num { color: var(--cc-stone); }
.hero.brand-hero.brown-hero .meta-row .num { color: var(--cc-deep-green); }
.hero.brand-hero .meta-row .lab, .hero.green-hero .meta-row .lab { color: rgba(237,235,231,0.6); }
.hero.brand-hero.brown-hero .meta-row .lab { color: rgba(22,42,35,0.55); }

/* ============= HERO PHOTO OVERLAY — real cloud photo with slow drift ============= */
.hero.cloud-hero .photo-overlay {
  position: absolute;
  inset: -3% -5%;
  width: 110%;
  height: 106%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  animation: photo-drift 120s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes photo-drift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1.04); }
  50%  { transform: translate3d(0%, 0%, 0)   scale(1.06); }
  100% { transform: translate3d(2%, 1%, 0)   scale(1.08); }
}
.hero.cloud-hero .photo-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20,32,46,0.05) 0%,
    rgba(20,32,46,0.15) 40%,
    rgba(20,32,46,0.45) 75%,
    rgba(10,18,32,0.82) 100%
  );
}
@media (prefers-reduced-motion: reduce) {
  .hero.cloud-hero .photo-overlay { animation: none !important; transform: none !important; }
}

/* ============= TINTED FIGURE — solid brand colour (no gradients) ============= */
.figure-card.tinted-figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cc-deep-green);
}
.figure-card.tinted-figure.green { background: var(--cc-deep-green); }
.figure-card.tinted-figure.blue  { background: var(--cc-cloud-blue); }
.figure-card.tinted-figure.brown { background: var(--cc-platinum); }
.figure-card.tinted-figure .figure-fill { position: absolute; inset: 0; }
.figure-card.tinted-figure .figure-fill::after {
  content: "";
  position: absolute;
  top: 25%;
  right: -10%;
  width: 78%;
  height: 60%;
  background: url('logos/logomark-cream.svg') no-repeat center / contain;
  opacity: 0.05;
  pointer-events: none;
  transition: opacity .5s ease;
}
.figure-card.tinted-figure.brown .figure-fill::after { background-image: url('logos/logomark-black.svg'); opacity: 0.07; }
.figure-card.tinted-figure:hover .figure-fill::after { opacity: 0.10; }
.figure-card.tinted-figure .caption { color: var(--muted); }

/* ============= TINTED BRAND CARDS — solid colour (no gradients) ============= */
.photo-card.tinted-card {
  background: var(--cc-deep-green);
  color: var(--cc-stone);
  position: relative;
  overflow: hidden;
  transition: opacity .35s ease;
}
.photo-card.tinted-card.green  { background: var(--cc-deep-green); }
.photo-card.tinted-card.blue   { background: var(--cc-cloud-blue); }
.photo-card.tinted-card.brown  { background: var(--cc-platinum); color: var(--cc-deep-green); }
.photo-card.tinted-card.ink    { background: var(--cc-deep-green); }

.photo-card.tinted-card .card-glow { display: none; }

.photo-card.tinted-card .card-mark {
  position: absolute;
  top: 28%;
  right: -12%;
  width: 78%;
  height: 56%;
  background: url('logos/logomark-cream.svg') no-repeat center / contain;
  opacity: 0.05;
  pointer-events: none;
  transition: opacity .4s ease;
}
.photo-card.tinted-card.brown .card-mark { background-image: url('logos/logomark-black.svg'); opacity: 0.07; }
.photo-card.tinted-card:hover .card-mark { opacity: 0.10; }

.photo-card.tinted-card .pname { color: var(--cc-stone); }
.photo-card.tinted-card.brown .pname { color: var(--cc-deep-green); }
.photo-card.tinted-card .ptag { color: rgba(237,235,231,0.7); }
.photo-card.tinted-card.brown .ptag { color: rgba(22,42,35,0.65); }
.photo-card.tinted-card .meta { z-index: 2; }
.photo-card.tinted-card .arrow-corner {
  background: var(--cc-stone);
  color: var(--cc-deep-green);
  z-index: 3;
}
.photo-card.tinted-card.brown .arrow-corner { background: var(--cc-deep-green); color: var(--cc-stone); }
.photo-card.tinted-card:hover { opacity: 0.94; }

/* ============= BIG NUMBERS — institutional stat display ============= */
.big-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
  margin-top: 2rem;
}
@media (max-width: 1020px) { .big-numbers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .big-numbers { grid-template-columns: 1fr; } }
.bn {
  background: var(--white);
  padding: clamp(2.2rem, 3.2vw, 3rem) clamp(1.6rem, 2.4vw, 2.4rem);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  position: relative;
}
.bn-figure {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.bn-figure .bn-unit {
  font-size: 0.55em;
  color: var(--accent);
  margin-left: 0.05em;
}
.bn-label {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.bn-detail {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.55;
  margin-top: auto;
}

/* ============= INSIGHTS GRID (Pictet/Baillie Gifford style) ============= */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 3.5rem;
}
@media (max-width: 880px) {
  .insights-grid { grid-template-columns: 1fr; }
}
.insight {
  background: var(--white);
  padding: clamp(2.2rem, 3.2vw, 3rem);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: background .25s ease;
  cursor: pointer;
}
.insight:hover { background: var(--paper-3); }
.insight .insight-meta {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.insight .insight-meta .cat { color: var(--accent); }
.insight h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1.2rem;
  max-width: 22ch;
}
.insight p {
  color: var(--ink-soft);
  margin: 0 0 2rem;
  max-width: 50ch;
  flex: 1;
  font-size: .98rem;
}
.insight .byline {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.insight .byline::after {
  content: "→";
  color: var(--accent);
  transition: transform .25s ease;
}
.insight:hover .byline::after { transform: translateX(4px); }
.hero.cloud-hero .bg::after {
  background:
    linear-gradient(180deg,
      rgba(10,18,32,0.10) 0%,
      rgba(20,32,46,0.30) 40%,
      rgba(20,32,46,0.55) 70%,
      rgba(10,18,32,0.92) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(78,110,140,0.18), transparent 60%);
}
/* Hero content polish (only what cloud-hero actually uses) */
.hero.cloud-hero .wrap { padding-bottom: 5rem; }
.hero.cloud-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 300;
  max-width: 16ch;
}
.hero.cloud-hero h1 em { color: rgba(242,237,222,0.55); font-weight: 400; }
.hero.cloud-hero .lede { max-width: 56ch; }
.hero.cloud-hero .eyebrow { color: rgba(242,237,222,0.85); }
.hero.cloud-hero .eyebrow::before { background: rgba(242,237,222,0.5); }

/* ============= MANIFESTO SECTION (large editorial banner) ============= */
.manifesto {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--white);
  border-block: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.manifesto .label {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: inline-block;
}
.manifesto h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  max-width: 20ch;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.manifesto h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.manifesto .signature {
  margin-top: 2.5rem;
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hero.image .scroll-hint::after { animation: none !important; }
  .hero.cloud-hero .cloud-svg,
  .hero.cloud-hero .sun-glow { animation: none !important; transform: none !important; }
  .reveal-up, .reveal-img .bg, .reveal-img .img, .reveal-img .portrait, .stagger > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ========================================================
   v2 — Photography additions (May 2026)
   Per brand guide §08: full-bleed photography on Stone
   substrate. Subjects: clouds, sky, distant landscape,
   weather. Treatment: cool curve, −15% saturation.
   ======================================================== */

/* ----- Index split-hero photo pane ----- */
.hero.split-hero .pane-light.photo-pane {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero.split-hero .pane-light.photo-pane .photo-fill {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.02) saturate(0.92);
  will-change: transform;
  animation: photo-pane-drift 32s ease-in-out infinite alternate;
}
.hero.split-hero .pane-light.photo-pane .photo-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22,42,35,0) 0%,
    rgba(22,42,35,0.04) 60%,
    rgba(22,42,35,0.14) 100%
  );
}
.hero.split-hero .pane-light.photo-pane .photo-caption {
  position: absolute;
  left: clamp(1.5rem, 3vw, 2.4rem);
  bottom: clamp(1.5rem, 3vw, 2.4rem);
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  z-index: 1;
}
@keyframes photo-pane-drift {
  0%   { transform: scale(1.03) translate(-0.5%, 0); }
  100% { transform: scale(1.07) translate(0.5%, -0.8%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero.split-hero .pane-light.photo-pane .photo-fill { animation: none; transform: none; }
}

/* ----- Photo cards on index (replaces tinted cards) ----- */
.photo-card.has-photo {
  background: var(--cc-deep-green);
  color: var(--cc-stone);
}
.photo-card.has-photo .card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
  filter: brightness(0.78) contrast(1.02) saturate(0.88);
}
.photo-card.has-photo:hover .card-photo {
  transform: scale(1.04);
  filter: brightness(0.9) contrast(1.02) saturate(0.92);
}
.photo-card.has-photo .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22,42,35,0) 0%,
    rgba(22,42,35,0.10) 35%,
    rgba(22,42,35,0.55) 75%,
    rgba(15,31,26,0.92) 100%
  );
  z-index: 1;
}
.photo-card.has-photo.tone-blue .card-overlay {
  background: linear-gradient(
    180deg,
    rgba(70,100,130,0) 0%,
    rgba(47,71,97,0.18) 35%,
    rgba(47,71,97,0.62) 75%,
    rgba(31,52,76,0.94) 100%
  );
}
.photo-card.has-photo.tone-platinum .card-overlay {
  background: linear-gradient(
    180deg,
    rgba(31,35,40,0) 0%,
    rgba(31,35,40,0.18) 35%,
    rgba(31,35,40,0.50) 75%,
    rgba(31,35,40,0.85) 100%
  );
}
.photo-card.has-photo.tone-ink .card-overlay {
  background: linear-gradient(
    180deg,
    rgba(15,31,26,0) 0%,
    rgba(15,31,26,0.18) 35%,
    rgba(15,31,26,0.62) 75%,
    rgba(10,18,15,0.95) 100%
  );
}
.photo-card.has-photo .meta { z-index: 2; }
.photo-card.has-photo .pname { color: var(--cc-stone); font-weight: 400; }
.photo-card.has-photo .ptag { color: rgba(237,235,231,0.80); }
.photo-card.has-photo .arrow-corner {
  background: rgba(237,235,231,0.95);
  color: var(--cc-deep-green);
  z-index: 3;
  opacity: 0;
  transform: translate(.5rem, -.5rem);
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.photo-card.has-photo:hover .arrow-corner {
  opacity: 1;
  transform: translate(0, 0);
}

/* ----- Full-bleed photo feature (used between sections) ----- */
.photo-feature {
  position: relative;
  width: 100%;
  background: var(--cc-stone);
  overflow: hidden;
}
.photo-feature .photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.photo-feature.tall .photo-frame { aspect-ratio: 16/10; }
.photo-feature.short .photo-frame { aspect-ratio: 24/7; }
@media (max-width: 880px) {
  .photo-feature .photo-frame { aspect-ratio: 4/3; }
  .photo-feature.tall .photo-frame { aspect-ratio: 5/4; }
}
.photo-feature .photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22,42,35,0.10) 0%,
    rgba(22,42,35,0) 30%,
    rgba(22,42,35,0) 70%,
    rgba(22,42,35,0.30) 100%
  );
}
.photo-feature .photo-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.2rem var(--pad);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.photo-feature .photo-caption .caption-place { color: var(--ink); }
.photo-feature .photo-caption .caption-meta { color: var(--muted); }

/* ----- Inline figure with photo (for split sections) ----- */
.figure-card.photo-figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.figure-card.photo-figure .photo-fill {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
  filter: contrast(1.02) saturate(0.92);
}
.figure-card.photo-figure:hover .photo-fill { transform: scale(1.03); }
.figure-card.photo-figure .photo-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,42,35,0) 50%, rgba(22,42,35,0.25) 100%);
}
.figure-card.photo-figure .caption {
  position: absolute;
  left: 1.2rem;
  bottom: 1rem;
  margin-top: 0;
  color: rgba(237,235,231,0.85);
  font-family: var(--sans);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}

/* ----- Hero image-overlay for kontakt page ----- */
.hero.contact-hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: flex-end;
  background: var(--cc-stone);
  color: var(--cc-deep-green);
  padding: 0;
  overflow: hidden;
  border-bottom: 0;
}
.hero.contact-hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.02) saturate(0.90);
}
.hero.contact-hero .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(237,235,231,0.10) 0%,
    rgba(237,235,231,0.30) 40%,
    rgba(237,235,231,0.85) 90%,
    rgba(237,235,231,1) 100%
  );
}
.hero.contact-hero .wrap {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 4rem;
  width: 100%;
}
.hero.contact-hero h1 { color: var(--cc-deep-green); }
.hero.contact-hero h1 em { color: var(--cc-deep-green); opacity: 0.55; font-style: italic; }
.hero.contact-hero .lede { color: var(--ink-soft); }

/* ----- Photo block on dark/colour heroes — sits right under hero ----- */
.hero-photo-strip {
  position: relative;
  width: 100%;
  height: clamp(280px, 40vh, 460px);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-photo-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22,42,35,0.12) 0%,
    rgba(22,42,35,0) 35%,
    rgba(22,42,35,0) 70%,
    rgba(22,42,35,0.14) 100%
  );
}

/* ----- Tonal correction utility (for photos placed on darker pages) ----- */
.tonal-cool { filter: contrast(1.02) saturate(0.88) hue-rotate(-2deg); }

/* ========================================================
   v3 — Cinematic photo heroes (May 2026)
   Replaces solid-coloured hero blocks with full-bleed
   imagery + Ken Burns animation. Brand colour is reintro-
   duced via gradient overlays, accent strips, and tinted
   captions — never as a flat fill.
   ======================================================== */

/* Cinematic hero — base */
.hero.cinematic {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  border-bottom: 0;
  overflow: hidden;
  background: var(--cc-deep-green);
  color: var(--cc-stone);
}
@media (max-width: 880px) {
  .hero.cinematic { min-height: 78vh; }
}

.hero.cinematic .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero.cinematic .bg img,
.hero.cinematic .bg picture,
.hero.cinematic .bg picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform-origin: center center;
  animation: ken-burns 32s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  0%   { transform: scale(1.05) translate(-0.5%, 0); }
  100% { transform: scale(1.14) translate(1%, -1.2%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero.cinematic .bg img,
  .hero.cinematic .bg picture img { animation: none; transform: scale(1.04); }
}

/* Default (umbrella / deep green tint) overlay */
.hero.cinematic .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15, 31, 26, 0.10) 0%,
      rgba(15, 31, 26, 0.18) 35%,
      rgba(15, 31, 26, 0.45) 70%,
      rgba(15, 31, 26, 0.85) 100%),
    linear-gradient(105deg,
      rgba(22, 42, 35, 0.45) 0%,
      rgba(22, 42, 35, 0.15) 45%,
      rgba(22, 42, 35, 0) 70%);
  z-index: 1;
}

/* Brand colour variants — overlay tints */
.hero.cinematic.brand-green .bg::after {
  background:
    linear-gradient(180deg,
      rgba(15, 31, 26, 0.12) 0%,
      rgba(15, 31, 26, 0.22) 35%,
      rgba(15, 31, 26, 0.55) 70%,
      rgba(15, 31, 26, 0.90) 100%),
    linear-gradient(105deg,
      rgba(22, 42, 35, 0.55) 0%,
      rgba(22, 42, 35, 0.18) 45%,
      rgba(22, 42, 35, 0) 70%);
}
.hero.cinematic.brand-blue .bg::after {
  background:
    linear-gradient(180deg,
      rgba(31, 52, 76, 0.18) 0%,
      rgba(31, 52, 76, 0.28) 35%,
      rgba(31, 52, 76, 0.60) 70%,
      rgba(31, 52, 76, 0.92) 100%),
    linear-gradient(105deg,
      rgba(70, 100, 130, 0.50) 0%,
      rgba(70, 100, 130, 0.16) 45%,
      rgba(70, 100, 130, 0) 70%);
}
.hero.cinematic.brand-platinum .bg::after {
  /* Platinum is light — use a darker neutral wash so type stays legible */
  background:
    linear-gradient(180deg,
      rgba(31, 35, 40, 0.18) 0%,
      rgba(31, 35, 40, 0.28) 35%,
      rgba(31, 35, 40, 0.55) 70%,
      rgba(31, 35, 40, 0.82) 100%),
    linear-gradient(105deg,
      rgba(161, 168, 171, 0.35) 0%,
      rgba(161, 168, 171, 0.10) 45%,
      rgba(161, 168, 171, 0) 70%);
}

/* Brand colour accent strip — vertical line on the left */
.hero.cinematic .accent-strip {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--cc-deep-green);
  z-index: 3;
}
.hero.cinematic.brand-green .accent-strip { background: var(--cc-deep-green); }
.hero.cinematic.brand-blue .accent-strip { background: var(--cc-cloud-blue); }
.hero.cinematic.brand-platinum .accent-strip { background: var(--cc-platinum); }
@media (max-width: 640px) {
  .hero.cinematic .accent-strip { width: 3px; }
}

/* Brand colour caption bar — sits at the bottom, ties everything back to brand */
.hero.cinematic .caption-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0.9rem var(--pad);
  background: rgba(15, 31, 26, 0.92);
  color: var(--cc-stone);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-top: 1px solid rgba(237, 235, 231, 0.18);
}
.hero.cinematic.brand-blue .caption-bar { background: rgba(31, 52, 76, 0.94); }
.hero.cinematic.brand-platinum .caption-bar {
  background: rgba(31, 35, 40, 0.90);
  color: var(--cc-stone);
}
.hero.cinematic .caption-bar .place { opacity: 1; }
.hero.cinematic .caption-bar .meta {
  opacity: 0.65;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.hero.cinematic .caption-bar .meta::before {
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(237, 235, 231, 0.45);
}

/* Hero content typography — ambitious but disciplined */
.hero.cinematic .wrap {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 6rem;
  width: 100%;
}
.hero.cinematic .eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(237, 235, 231, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.hero.cinematic .eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(237, 235, 231, 0.55);
}
.hero.cinematic.brand-platinum .eyebrow { color: var(--cc-stone); }

.hero.cinematic h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 6.4vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.024em;
  max-width: 18ch;
  color: var(--cc-stone);
  margin: 0 0 1.6rem;
}
.hero.cinematic h1.xl {
  font-size: clamp(3.4rem, 7.8vw, 6.4rem);
  max-width: 16ch;
}
.hero.cinematic h1 em {
  font-style: italic;
  color: rgba(237, 235, 231, 0.62);
  font-weight: 400;
}
.hero.cinematic .lede {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.6;
  color: rgba(237, 235, 231, 0.86);
  max-width: 56ch;
  margin: 0 0 2.5rem;
}

/* Hero CTAs — stronger ambition */
.hero.cinematic .actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero.cinematic .btn {
  background: var(--cc-stone);
  color: var(--cc-deep-green);
  border-color: var(--cc-stone);
  padding: 1rem 1.7rem;
  font-weight: 500;
}
.hero.cinematic .btn:hover {
  background: transparent;
  color: var(--cc-stone);
  border-color: var(--cc-stone);
}
.hero.cinematic.brand-blue .btn { color: var(--cc-cloud-blue); }
.hero.cinematic.brand-blue .btn:hover { color: var(--cc-stone); }
.hero.cinematic.brand-platinum .btn { color: var(--cc-deep-green); }
.hero.cinematic .btn.outline {
  background: transparent;
  color: var(--cc-stone);
  border-color: rgba(237, 235, 231, 0.5);
}
.hero.cinematic .btn.outline:hover {
  background: var(--cc-stone);
  color: var(--cc-deep-green);
  border-color: var(--cc-stone);
}
.hero.cinematic.brand-blue .btn.outline:hover { color: var(--cc-cloud-blue); }
.hero.cinematic.brand-platinum .btn.outline:hover { color: var(--cc-deep-green); }

/* Scroll hint (only on home) */
.hero.cinematic .scroll-hint {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(237, 235, 231, 0.6);
}
.hero.cinematic .scroll-hint::after {
  content: "";
  width: 1px;
  height: 42px;
  background: rgba(237, 235, 231, 0.5);
  animation: scroll-line 2.6s ease-in-out infinite;
}
@media (max-width: 880px) {
  .hero.cinematic .scroll-hint { bottom: 5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero.cinematic .scroll-hint::after { animation: none !important; }
}

/* Subtle slow drift on photo-feature images (Ken Burns lite) */
.photo-feature .photo-frame {
  background-position: center center;
  will-change: background-position, transform;
}
.photo-feature .photo-frame.kenburns {
  animation: kenburns-slow 38s ease-in-out infinite alternate;
}
@keyframes kenburns-slow {
  0%   { background-size: 105% auto; background-position: 49% 49%; }
  100% { background-size: 112% auto; background-position: 51% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .photo-feature .photo-frame.kenburns { animation: none; }
}

/* Slightly stronger headline weight across the site for ambition lift */
.section-title { font-weight: 400; }
.section-title em { font-weight: 400; }

/* ========================================================
   v4 — Nav restructure, faster animation, brand footer
   (May 2026)
   ======================================================== */

/* ----- Faster Ken Burns — more visible motion ----- */
.hero.cinematic .bg img,
.hero.cinematic .bg picture img {
  animation: ken-burns-fast 18s ease-in-out infinite alternate !important;
}
@keyframes ken-burns-fast {
  0%   { transform: scale(1.06) translate(-0.8%, 0); }
  100% { transform: scale(1.18) translate(1.4%, -1.8%); }
}

.photo-feature .photo-frame.kenburns {
  animation: kenburns-feature 22s ease-in-out infinite alternate !important;
}
@keyframes kenburns-feature {
  0%   { background-size: 106% auto; background-position: 48% 49%; }
  100% { background-size: 116% auto; background-position: 52% 51%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero.cinematic .bg img,
  .hero.cinematic .bg picture img,
  .photo-feature .photo-frame.kenburns { animation: none !important; }
}

/* ----- Footer: Deep Green per brand guide (was Ink) ----- */
footer.site { background: var(--cc-deep-green); }
footer.site::before { display: none; }  /* remove the off-tone radial */

/* ----- CTA on home: also Deep Green (was Ink) ----- */
section.block.cta { background: var(--cc-deep-green); }
section.block.cta::before { background: radial-gradient(circle at center, rgba(237,235,231,0.045) 0%, transparent 60%); }

/* ----- Nav: trim primary, add Selskab dropdown ----- */
nav.primary ul.primary-nav {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .92rem;
  color: var(--ink-soft);
  align-items: center;
}
nav.primary ul.primary-nav > li { position: relative; }
nav.primary ul.primary-nav > li > a {
  position: relative;
  padding: .35rem 0;
  transition: color .2s ease;
  white-space: nowrap;
}
nav.primary ul.primary-nav > li > a:hover,
nav.primary ul.primary-nav > li > a.active {
  color: var(--ink);
}
nav.primary ul.primary-nav > li > a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -.4rem;
  height: 2px;
  background: var(--accent);
}

/* dropdown trigger */
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  background: none;
  border: 0;
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--ink-soft);
  padding: .35rem 0;
}
.nav-trigger:hover { color: var(--ink); }
.nav-trigger svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  transition: transform .2s ease;
}
li.has-dropdown.open .nav-trigger svg { transform: rotate(180deg); }
li.has-dropdown.open .nav-trigger { color: var(--ink); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  min-width: 220px;
  background: var(--cc-paper);
  border: 1px solid var(--cc-hairline);
  padding: .85rem 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .25s cubic-bezier(.2,.7,.2,1), visibility 0s linear .25s;
  z-index: 60;
  box-shadow: 0 1px 0 rgba(22,42,35,0.06);
}
li.has-dropdown.open .nav-dropdown,
li.has-dropdown:hover .nav-dropdown,
li.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .25s ease, transform .25s cubic-bezier(.2,.7,.2,1), visibility 0s linear 0s;
}
.nav-dropdown li { margin: 0; padding: 0; }
.nav-dropdown a {
  display: block;
  padding: .65rem 1.4rem;
  font-size: .92rem;
  color: var(--ink-soft);
  transition: background .15s ease, color .15s ease;
}
.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: var(--cc-stone);
  color: var(--cc-deep-green);
}

/* Mobile nav adjustments */
@media (max-width: 1020px) {
  nav.primary ul.primary-nav { display: none; }
  header.site.menu-open nav.primary ul.primary-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem var(--pad) 2rem;
    gap: 1.2rem;
    font-size: 1.05rem;
    align-items: flex-start;
  }
  header.site.menu-open .nav-dropdown {
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    margin-left: 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: 0;
  }
  header.site.menu-open .nav-dropdown a {
    padding: .35rem 0;
    background: transparent;
  }
  header.site.menu-open .nav-trigger { padding: .35rem 0; }
}

/* ----- Personal artefact figures ----- */
.figure-card.portrait-figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #000;
}
.figure-card.portrait-figure .photo-fill {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.figure-card.portrait-figure:hover .photo-fill { transform: scale(1.03); }
.figure-card.portrait-figure .caption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.2rem;
  margin-top: 0;
  z-index: 2;
  color: rgba(237,235,231,0.9);
  font-family: var(--sans);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.figure-card.portrait-figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

/* ----- Brand book artefact strip ----- */
.brand-artefact {
  background: var(--cc-deep-green);
  color: var(--cc-stone);
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.brand-artefact .wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .brand-artefact .wrap { grid-template-columns: 1fr; gap: 2.5rem; } }
.brand-artefact .label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(237,235,231,0.62);
  margin-bottom: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.brand-artefact .label::before {
  content: "";
  width: 36px; height: 1px;
  background: rgba(237,235,231,0.45);
}
.brand-artefact h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cc-stone);
  margin: 0 0 1.6rem;
  max-width: 22ch;
}
.brand-artefact h2 em {
  font-style: italic;
  color: rgba(237,235,231,0.6);
  font-weight: 400;
}
.brand-artefact p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(237,235,231,0.85);
  max-width: 50ch;
  margin: 0 0 1rem;
}
.brand-artefact .signature {
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(237,235,231,0.65);
}
.brand-artefact .artefact-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  animation: kenburns-feature 24s ease-in-out infinite alternate;
}

/* ----- Portrait feature — full-bleed black stage with centered portrait ----- */
.portrait-stage {
  background: #050505;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.portrait-stage .stage-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 78vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 880px) {
  .portrait-stage .stage-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
  }
}
.portrait-stage .portrait-img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  animation: portrait-breathe 14s ease-in-out infinite alternate;
}
@keyframes portrait-breathe {
  0%   { transform: scale(1.00); }
  100% { transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .portrait-stage .portrait-img { animation: none; }
}
.portrait-stage .stage-text {
  color: rgba(237,235,231,0.92);
  max-width: 44ch;
}
.portrait-stage .stage-text .eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(237,235,231,0.55);
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.portrait-stage .stage-text .eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: rgba(237,235,231,0.45);
}
.portrait-stage .stage-text h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.18;
  color: var(--cc-stone);
  margin: 0 0 1.3rem;
  letter-spacing: -0.018em;
}
.portrait-stage .stage-text h3 em {
  font-style: italic;
  color: rgba(237,235,231,0.62);
  font-weight: 400;
}
.portrait-stage .stage-text p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(237,235,231,0.78);
  margin: 0 0 1rem;
}
.portrait-stage .stage-text .attribution {
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(237,235,231,0.55);
  font-size: 0.95rem;
}

/* ========================================================
   v5 — Floating header, fullscreen menu, edge-to-edge
   ======================================================== */

/* Header layout — single row, logo left + menu trigger right */
header.site .row {
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
}
header.site .brand { display: inline-flex; align-items: center; }
header.site .brand img.logo {
  height: 26px; width: auto;
  transition: opacity .25s ease;
}
header.site .brand .logo-dark { display: none; }
header.site .brand .logo-cream { display: block; }
header.site.scrolled .brand .logo-dark { display: block; }
header.site.scrolled .brand .logo-cream { display: none; }

/* Hide old primary nav — replaced by fullscreen menu */
header.site nav.primary { display: none !important; }
header.site .menu-btn { display: none; }

/* Menu trigger — minimalist, side-positioned, smaller text */
.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  background: transparent;
  border: 0;
  color: var(--cc-stone);
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .25s ease, color .25s ease;
  opacity: 0.92;
}
.menu-trigger:hover { opacity: 1; }
.menu-trigger .icon {
  width: 16px; height: 8px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-trigger .icon span {
  display: block; height: 1px; background: currentColor;
  transition: transform .3s ease, width .25s ease;
}
.menu-trigger .icon span:last-child { width: 60%; align-self: flex-end; }
.menu-trigger:hover .icon span:last-child { width: 100%; }
header.site.scrolled .menu-trigger {
  color: var(--cc-deep-green);
}

/* Hero now starts at top (header floats over) */
.hero.cinematic { padding-top: 0; }
.hero.cinematic .wrap { padding-top: 9rem; }
@media (max-width: 880px) {
  .hero.cinematic .wrap { padding-top: 7rem; }
}

/* ===================== FULLSCREEN MENU OVERLAY ===================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--cc-paper);
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.5rem, 4vw, 3rem);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.5%);
  transition:
    opacity .35s cubic-bezier(.2,.7,.2,1),
    transform .55s cubic-bezier(.2,.7,.2,1),
    visibility 0s linear .4s;
}
.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity .35s cubic-bezier(.2,.7,.2,1),
    transform .55s cubic-bezier(.2,.7,.2,1),
    visibility 0s linear 0s;
}
body.menu-locked { overflow: hidden; }

/* Decorative cloud monogram (subtle) */
.menu-overlay::after {
  content: "";
  position: absolute;
  right: -6%;
  bottom: -18%;
  width: 50%;
  max-width: 580px;
  aspect-ratio: 1/1;
  background: url('logos/logomark-black.svg') no-repeat center / contain;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

/* Top bar inside menu */
.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(3rem, 8vw, 6rem);
  position: relative;
  z-index: 1;
}
.menu-label {
  font-family: var(--sans);
  font-size: .80rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-deep-green);
}
.menu-close {
  background: transparent;
  border: 1px solid var(--cc-hairline);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cc-deep-green);
  transition: all .25s ease;
}
.menu-close:hover {
  background: var(--cc-deep-green);
  color: var(--cc-stone);
  border-color: var(--cc-deep-green);
}
.menu-close svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.5; fill: none; }

/* Menu nav grid */
.menu-nav {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.8rem, 5vw, 4rem);
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  align-content: start;
}
@media (min-width: 880px) {
  .menu-nav { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.menu-section-label {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.4vw, 1.32rem);
  color: var(--cc-platinum);
  margin-bottom: 1.6rem;
  display: block;
  letter-spacing: -0.005em;
}
.menu-section ul { list-style: none; margin: 0; padding: 0; }
.menu-section li {
  margin: 0;
  padding: 0;
  display: block;
  overflow: hidden;
}
.menu-section a {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.35;
  color: rgba(22, 42, 35, 0.35);
  letter-spacing: -0.012em;
  transition: color .3s ease, transform .4s cubic-bezier(.2,.7,.2,1);
  position: relative;
  padding: 0.15rem 0;
}
.menu-section a:hover {
  color: var(--cc-deep-green);
  transform: translateX(6px);
}
.menu-section a.active {
  color: var(--cc-deep-green);
  font-style: italic;
}
/* Active marker — slim left rule, no arrow */
.menu-section li.has-active-link {
  position: relative;
}
.menu-section a.active::before {
  content: "";
  position: absolute;
  left: -1.1rem;
  top: 50%;
  width: 0.55rem;
  height: 1px;
  background: var(--cc-deep-green);
  transform: translateY(-50%);
}

/* Menu footer */
.menu-foot {
  margin-top: clamp(3rem, 6vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--cc-hairline);
  display: flex;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--ink-soft);
  position: relative;
  z-index: 1;
}
.menu-foot a { color: var(--cc-deep-green); border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: color .2s ease; }
.menu-foot a:hover { color: var(--ink); }
.menu-foot .menu-foot-meta {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-platinum);
}

/* ===================== Edge-to-edge / modernization tweaks ===================== */
body { margin: 0; padding: 0; }

/* Slightly bigger hero typography for ambition */
.hero.cinematic h1 {
  font-size: clamp(3rem, 6.8vw, 6rem);
}
.hero.cinematic h1.xl {
  font-size: clamp(3.6rem, 8.2vw, 6.8rem);
}

/* Caption-bar — keep it cleaner & slimmer */
.hero.cinematic .caption-bar { padding: 1rem var(--pad); font-size: .70rem; }

/* ========================================================
   v6 — Exclusivity / heritage micro-details
   (per Seichō, Pictet, Rothschild research)
   ======================================================== */

/* Heritage line under logo (1805-style) */
.brand .heritage {
  display: inline-block;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(237,235,231,0.32);
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(237,235,231,0.62);
  vertical-align: middle;
  transition: color .25s ease, border-color .25s ease;
}
header.site.scrolled .brand .heritage {
  color: var(--cc-platinum);
  border-left-color: var(--cc-hairline);
}
@media (max-width: 760px) {
  .brand .heritage { display: none; }
}

/* Refined sectional numerator (01/04 style) */
.section-num {
  font-variant-numeric: tabular-nums;
}

/* Editorial italic note — quiet exclusivity */
.editorial-note {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.0rem, 1.2vw, 1.18rem);
  line-height: 1.5;
  color: var(--cc-sage);
  letter-spacing: 0;
  margin: 0;
}
.editorial-note::before {
  content: "—";
  display: inline-block;
  margin-right: 0.5em;
  color: var(--cc-sage);
}

/* "By introduction" pill — small, editorial */
.introduction-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.85rem;
  background: transparent;
  border: 1px solid var(--cc-hairline);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--cc-platinum-deep, #7A8084);
}
.introduction-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cc-sage);
}

/* Manifesto — tighten with a single italic accent line */
.manifesto .editorial-accent {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--cc-sage);
  font-size: 1rem;
  letter-spacing: -0.005em;
}

/* Refined footer */
footer.site .brand-block .heritage-foot {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,235,231,0.45);
  margin-top: 0.8rem;
  display: inline-block;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(237,235,231,0.14);
}

/* ========================================================
   v7 — Editorial entrance, count-up stats, investor letter
   (May 2026)
   ======================================================== */

/* ----- Border-draw entrance on hero text block ----- */
.hero.cinematic .wrap {
  position: relative;
}
.hero.cinematic .frame-rule {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  height: 1px;
  background: rgba(237, 235, 231, 0.55);
  transform: scaleX(0);
  transform-origin: left center;
  animation: frame-draw 1.4s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero.cinematic .frame-rule.top { top: 6rem; animation-delay: .35s; }
.hero.cinematic .frame-rule.bottom { bottom: 6rem; animation-delay: .55s; transform-origin: right center; }
@keyframes frame-draw {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
@media (max-width: 880px) {
  .hero.cinematic .frame-rule.top { top: 5rem; }
  .hero.cinematic .frame-rule.bottom { bottom: 5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero.cinematic .frame-rule { animation: none; transform: scaleX(1); }
}

/* ----- Stat bar — operator DNA, count-up ----- */
.stat-bar {
  background: var(--white);
  padding: clamp(5rem, 9vw, 7rem) 0;  /* more whitespace */
  border-block: 1px solid var(--cc-hairline);
}
.stat-bar .stat-eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-platinum-deep, #7A8084);
  margin-bottom: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.stat-bar .stat-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--cc-deep-green);
  opacity: 0.45;
}
.stat-bar .stat-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--cc-deep-green);
  max-width: 32ch;
  margin: 0 0 clamp(3rem, 5vw, 4rem);
}
.stat-bar .stat-heading em {
  font-style: italic;
  color: var(--cc-sage);
  font-weight: 400;
}
.stat-bar .stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--cc-hairline);
  border-bottom: 1px solid var(--cc-hairline);
}
@media (max-width: 980px) { .stat-bar .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stat-bar .stat-grid { grid-template-columns: 1fr; } }
.stat-bar .stat-cell {
  padding: clamp(2rem, 3vw, 2.4rem) clamp(1.25rem, 2.4vw, 2rem);
  border-right: 1px solid var(--cc-hairline);
  position: relative;
  display: flex;
  flex-direction: column;
}
.stat-bar .stat-cell:last-child { border-right: 0; }
@media (max-width: 980px) {
  .stat-bar .stat-cell:nth-child(2n) { border-right: 0; }
  .stat-bar .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--cc-hairline); }
}
@media (max-width: 540px) {
  .stat-bar .stat-cell { border-right: 0; border-bottom: 1px solid var(--cc-hairline); }
  .stat-bar .stat-cell:last-child { border-bottom: 0; }
}
.stat-bar .stat-label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--cc-platinum-deep, #7A8084);
  margin-bottom: 1rem;
  /* Reserve consistent height (~2 lines) so figures align across cells
     regardless of whether the label wraps to 1 or 2 lines. */
  min-height: calc(.68rem * 1.4 * 2);
  display: block;
}
@media (max-width: 540px) {
  .stat-bar .stat-label { min-height: 0; }
}
.stat-bar .stat-figure {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  line-height: 1;
  color: var(--cc-deep-green);
  letter-spacing: -0.022em;
  margin-bottom: 0.9rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.stat-bar .stat-figure .unit {
  display: inline;
  white-space: nowrap;
  font-size: 0.54em;
  color: var(--cc-sage);
  margin-left: 0.12em;
  font-variant-numeric: normal;
  letter-spacing: 0;
}
.stat-bar .stat-figure.static-italic {
  font-style: italic;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: var(--cc-deep-green);
}
.stat-bar .stat-detail {
  font-family: var(--sans);
  font-size: .82rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 300;
  max-width: 22ch;
}

/* ----- Investor letter — open-letter from founders ----- */
.investor-letter {
  background: var(--white);  /* pure white for editorial contrast */
  padding: clamp(6rem, 11vw, 9rem) 0;  /* more whitespace */
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--cc-hairline);
}
.investor-letter::before {
  content: "";
  position: absolute;
  top: -8%;
  right: -6%;
  width: 360px;
  height: 360px;
  background: url('logos/logomark-black.svg') no-repeat center / contain;
  opacity: 0.025;
  pointer-events: none;
}
.investor-letter .wrap.narrow { max-width: 760px; position: relative; z-index: 1; }
.investor-letter .letter-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: .70rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-platinum-deep, #7A8084);
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.investor-letter .letter-meta .left {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.investor-letter .letter-meta .left::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--cc-deep-green);
  opacity: 0.55;
}
.investor-letter h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: -0.016em;
  color: var(--cc-deep-green);
  margin: 0 0 2rem;
  font-style: italic;
  max-width: 28ch;
}
.investor-letter h2 em { font-style: normal; }
.investor-letter p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.65;
  color: var(--cc-deep-green);
  margin: 0 0 1.3rem;
  max-width: 60ch;
}
.investor-letter .signature {
  margin-top: 2.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--cc-hairline);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.investor-letter .sign-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--cc-deep-green);
  line-height: 1.2;
}
.investor-letter .sign-role {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-platinum-deep, #7A8084);
}
.investor-letter .sign-stamp {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-platinum-deep, #7A8084);
}

/* ========================================================
   v8 — Sub-brand differentiation + insights + compliance
   ======================================================== */

/* ----- Allocation block (Cloud Invest — hairline data viz §10) ----- */
.allocation-block {
  background: var(--white);
  padding: clamp(5rem, 9vw, 7rem) 0;
  border-block: 1px solid var(--cc-hairline);
}
.allocation-block .wrap { position: relative; }
.allocation-block .alloc-eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-cloud-blue);
  margin-bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.allocation-block .alloc-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--cc-cloud-blue);
}
.allocation-block h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--cc-deep-green);
  max-width: 24ch;
  margin: 0 0 clamp(3rem, 5vw, 4rem);
  letter-spacing: -0.016em;
}
.allocation-block h2 em {
  font-style: italic;
  color: var(--cc-cloud-blue);
  font-weight: 400;
}
.allocation-block .alloc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .allocation-block .alloc-grid { grid-template-columns: 1fr; gap: 3rem; } }
.alloc-list { list-style: none; padding: 0; margin: 0; }
.alloc-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--cc-hairline);
  align-items: baseline;
}
.alloc-list li:last-child { border-bottom: 1px solid var(--cc-hairline); }
.alloc-list .alloc-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cc-deep-green);
  font-weight: 400;
}
.alloc-list .alloc-pct {
  font-family: var(--serif);
  font-variant-numeric: tabular-nums;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cc-cloud-blue);
  letter-spacing: -0.01em;
}
.alloc-svg { width: 100%; height: auto; display: block; }
.alloc-svg .seg { fill: none; stroke-width: 14; }
.alloc-svg .seg-bg { stroke: rgba(70, 100, 130, 0.08); }
.alloc-svg .seg-fg-1 { stroke: var(--cc-cloud-blue); }
.alloc-svg .seg-fg-2 { stroke: rgba(70, 100, 130, 0.55); }
.alloc-svg .seg-fg-3 { stroke: rgba(70, 100, 130, 0.35); }
.alloc-svg .seg-fg-4 { stroke: rgba(70, 100, 130, 0.2); }
.alloc-svg .center-label-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  fill: var(--cc-deep-green);
}
.alloc-svg .center-label-text {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  fill: var(--cc-platinum-deep, #7A8084);
}

/* ----- Geographic grid (Cloud Property) ----- */
.geo-block {
  background: var(--white);
  padding: clamp(5rem, 9vw, 7rem) 0;
  border-block: 1px solid var(--cc-hairline);
}
.geo-block .geo-eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--platinum-deep);
  margin-bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.geo-block .geo-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--platinum-deep);
}
.geo-block h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--cc-deep-green);
  max-width: 24ch;
  margin: 0 0 clamp(3rem, 5vw, 4rem);
  letter-spacing: -0.016em;
}
.geo-block h2 em {
  font-style: italic;
  color: var(--platinum-deep);
  font-weight: 400;
}
.geo-svg { width: 100%; height: auto; display: block; }
.geo-svg .country-outline { fill: none; stroke: var(--platinum-deep); stroke-width: 0.8; }
.geo-svg .focus-marker { fill: var(--cc-deep-green); }
.geo-svg .focus-ring { fill: none; stroke: var(--cc-deep-green); stroke-width: 0.5; opacity: 0.4; }
.geo-svg .geo-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  fill: var(--cc-deep-green);
}
.geo-svg .geo-sub {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: var(--platinum-deep);
  opacity: 0.7;
}

/* ----- Pipeline timeline (Cloud Capital) ----- */
.pipeline-block {
  background: var(--white);
  padding: clamp(5rem, 9vw, 7rem) 0;
  border-block: 1px solid var(--cc-hairline);
}
.pipeline-block .p-eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-deep-green);
  margin-bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.pipeline-block .p-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--cc-deep-green);
}
.pipeline-block h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--cc-deep-green);
  max-width: 26ch;
  margin: 0 0 clamp(3rem, 5vw, 4rem);
  letter-spacing: -0.016em;
}
.pipeline-block h2 em {
  font-style: italic;
  color: var(--cc-sage);
  font-weight: 400;
}
.pipeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
@media (max-width: 780px) { .pipeline-track { grid-template-columns: repeat(2, 1fr); } }
.pipeline-track::before {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--cc-hairline);
}
.pipeline-stage {
  text-align: left;
  padding: 0 1rem 0 0;
  position: relative;
}
.pipeline-stage::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cc-deep-green);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--cc-deep-green);
}
.pipeline-stage.active::before { background: var(--cc-sage); box-shadow: 0 0 0 1px var(--cc-sage); }
.pipeline-stage .stage-label {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-platinum-deep, #7A8084);
  margin-top: 2.5rem;
  margin-bottom: 0.4rem;
}
.pipeline-stage .stage-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cc-deep-green);
  letter-spacing: -0.008em;
  margin-bottom: 0.55rem;
}
.pipeline-stage .stage-note {
  display: block;
  font-family: var(--sans);
  font-size: .78rem;
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 18ch;
}

/* ----- Insights/Letters page ----- */
.insights-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-block: 1px solid var(--cc-hairline);
}
.insight-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 3.5vw, 2.8rem) 0;
  border-bottom: 1px solid var(--cc-hairline);
  align-items: baseline;
  transition: background .25s ease;
  text-decoration: none;
  color: inherit;
}
.insight-item:last-child { border-bottom: 0; }
.insight-item:hover { background: rgba(22, 42, 35, 0.025); }
.insight-item:hover .insight-arrow { transform: translateX(6px); }
@media (max-width: 780px) {
  .insight-item { grid-template-columns: 1fr; gap: .8rem; padding: 1.6rem 0; }
}
.insight-item .insight-date {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cc-platinum-deep);
  min-width: 8rem;
  padding-left: clamp(0rem, 2vw, 1rem);
}
.insight-item .insight-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.2;
  color: var(--cc-deep-green);
  letter-spacing: -0.014em;
  margin: 0;
}
.insight-item .insight-title em {
  font-style: italic;
  color: var(--cc-sage);
  font-weight: 400;
}
.insight-item .insight-cat {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-platinum-deep);
  margin-bottom: 0.4rem;
}
.insight-item .insight-arrow {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--cc-deep-green);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  padding-right: clamp(0rem, 2vw, 1rem);
}

/* ----- Cookie banner ----- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 460px;
  margin-right: auto;
  background: var(--white);
  border: 1px solid var(--cc-hairline);
  padding: 1.3rem 1.5rem;
  z-index: 90;
  font-family: var(--sans);
  font-size: .85rem;
  line-height: 1.55;
  color: var(--ink-soft);
  box-shadow: 0 8px 32px rgba(22, 42, 35, 0.08);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), opacity .45s ease;
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--cc-deep-green);
  margin: 0 0 0.4rem;
}
.cookie-banner p { margin: 0 0 0.8rem; }
.cookie-banner .cookie-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.cookie-banner button {
  flex: 1;
  padding: 0.6rem 1rem;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.cookie-banner button.primary {
  background: var(--cc-deep-green);
  color: var(--cc-stone);
  border: 1px solid var(--cc-deep-green);
}
.cookie-banner button.primary:hover { background: var(--green-darker); border-color: var(--green-darker); }
.cookie-banner button.secondary {
  background: transparent;
  color: var(--cc-deep-green);
  border: 1px solid var(--cc-hairline);
}
.cookie-banner button.secondary:hover { background: var(--cc-stone); }
.cookie-banner a { color: var(--cc-deep-green); border-bottom: 1px solid currentColor; }

/* ----- 404 page ----- */
body.error-404 .hero.cinematic {
  background: var(--cc-deep-green);
}
body.error-404 .hero.cinematic .bg { display: none; }
body.error-404 .hero.cinematic .wrap {
  padding-top: 12rem;
  padding-bottom: 8rem;
  text-align: center;
}
body.error-404 .hero.cinematic h1 {
  max-width: none;
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-left: auto;
  margin-right: auto;
}
body.error-404 .hero.cinematic .lede {
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}
body.error-404 .hero.cinematic .actions { justify-content: center; }
body.error-404 .error-mono {
  font-family: var(--serif);
  font-size: clamp(6rem, 14vw, 11rem);
  color: rgba(237, 235, 231, 0.15);
  line-height: 0.9;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

/* ========================================================
   v2.1 — Momentum & ambition layer (May 2026)
   Adds growth-language sections, hairline data viz,
   skyline silhouettes — without breaking brand discipline.
   ======================================================== */

/* ----- Velocity/ambition manifesto (counterpart to "stillness compounds") ----- */
.manifesto.dual {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cc-deep-green);
  color: var(--cc-stone);
  text-align: center;
  border-block: 0;
}
.manifesto.dual .label { color: rgba(237,235,231,0.6); }
.manifesto.dual h2 {
  color: var(--cc-stone);
  font-weight: 300;
}
.manifesto.dual h2 em {
  color: var(--cc-stone);
  opacity: 0.55;
  font-style: italic;
  font-weight: 400;
}
.manifesto.dual .signature {
  color: rgba(237,235,231,0.55);
}

/* ----- Ambition strip — bold inline stats with growth language ----- */
.ambition-strip {
  background: var(--cc-paper);
  padding: clamp(3rem, 5vw, 4rem) 0;
  border-block: 1px solid var(--line);
}
.ambition-strip .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 1020px) { .ambition-strip .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .ambition-strip .grid { grid-template-columns: 1fr; gap: 1.6rem; } }
.ambition-strip .cell {
  border-top: 1px solid var(--cc-deep-green);
  padding-top: 1.4rem;
}
.ambition-strip .num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cc-deep-green);
  margin-bottom: 0.6rem;
  font-variant-numeric: tabular-nums;
  display: block;
}
.ambition-strip .lab {
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cc-deep-green);
  opacity: 0.62;
  margin-bottom: 0.55rem;
  display: block;
}
.ambition-strip .body {
  font-family: var(--sans);
  font-size: .95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 28ch;
}

/* ----- Hairline growth chart (per brand guide §10) ----- */
.growth-chart {
  width: 100%;
  background: var(--cc-paper);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  border-block: 1px solid var(--line);
}
.growth-chart .chart-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .growth-chart .chart-wrap { grid-template-columns: 1fr; } }
.growth-chart svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ----- Hairline skyline silhouette ----- */
.skyline {
  background: var(--cc-paper);
  padding: clamp(3rem, 5vw, 4rem) 0 clamp(0.5rem, 1vw, 1rem);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.skyline-svg {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 1.5rem;
}
.skyline-svg .building { fill: none; stroke: var(--cc-deep-green); stroke-width: 1; }
.skyline-svg .roof    { fill: none; stroke: var(--cc-deep-green); stroke-width: 1; }
.skyline-svg .marker  { fill: var(--cc-deep-green); }
.skyline-svg .label   {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: var(--cc-deep-green);
  opacity: 0.55;
}
.skyline-svg .water   { fill: none; stroke: var(--cc-deep-green); stroke-width: 0.5; opacity: 0.35; }

/* ----- Network constellation (compounding nodes) ----- */
.network-svg .node-line { stroke: var(--cc-deep-green); stroke-width: 0.6; opacity: 0.35; }
.network-svg .node      { fill: var(--cc-deep-green); }
.network-svg .node.lg   { fill: var(--cc-deep-green); }
.network-svg.invest .node-line,
.network-svg.invest .node { stroke: var(--cc-cloud-blue); fill: var(--cc-cloud-blue); }

/* ----- Velocity callout (sits inline in copy blocks) ----- */
.velocity-callout {
  border-left: 2px solid var(--cc-deep-green);
  padding: 0.4rem 0 0.4rem 1.6rem;
  margin: 2.5rem 0;
}
.velocity-callout .lab {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-deep-green);
  opacity: 0.65;
  margin-bottom: 0.6rem;
  display: block;
}
.velocity-callout p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.4;
  margin: 0;
  color: var(--cc-deep-green);
  font-style: italic;
  max-width: 36ch;
}

/* Per-page accent for velocity callout */
body.brand-capital  .velocity-callout { border-left-color: var(--cc-deep-green); }
body.brand-capital  .velocity-callout p,
body.brand-capital  .velocity-callout .lab { color: var(--cc-deep-green); }
body.brand-invest   .velocity-callout { border-left-color: var(--cc-cloud-blue); }
body.brand-invest   .velocity-callout p,
body.brand-invest   .velocity-callout .lab { color: var(--cc-cloud-blue); }
body.brand-property .velocity-callout { border-left-color: var(--platinum-deep); }
body.brand-property .velocity-callout p,
body.brand-property .velocity-callout .lab { color: var(--platinum-deep); }


/* ============================================================
   ITERATION 13 — "KAPITAL I BEVÆGELSE" UDVIDET
   Reading progress · cloud monogram draw · section index ·
   page transitions · photo interlude · refined captions
   ============================================================ */

/* ---------- Top hairline reading progress bar ---------- */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  z-index: 200;
  pointer-events: none;
}
.reading-progress .bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cc-cream), rgba(242,237,222,0.4));
  transition: width 0.18s cubic-bezier(.2,.7,.2,1), background 0.4s ease;
  will-change: width;
}
/* Once the user has scrolled past the hero, ink the bar in Deep Green */
.reading-progress.past-hero .bar {
  background: linear-gradient(90deg, var(--cc-deep-green), rgba(22,42,35,0.5));
}
@media (prefers-reduced-motion: reduce) {
  .reading-progress .bar { transition: none; }
}

/* ---------- Right-side vertical nav — toggle (hidden by default) ----
   A tiny round toggle button sits in the right edge. Clicking it
   reveals the nav. Click outside or toggle again to close.            */
:root { --cc-side-rail: 11rem; }

.cc-nav-toggle {
  position: fixed;
  top: 1.2rem;
  right: clamp(1.4rem, 2.4vw, 2.4rem);
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.9rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-stone);
  opacity: 0.92;
  transition: color .35s ease, opacity .25s ease;
}
.cc-nav-toggle .icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px; height: 10px;
}
.cc-nav-toggle .icon span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform .3s ease, width .3s ease;
}
.cc-nav-toggle .icon span:last-child { width: 60%; align-self: flex-end; }
.cc-nav-toggle:hover .icon span:last-child { width: 100%; }
/* Toggle color follows the header backdrop, not whatever section is at viewport-center.
   When the header is scrolled (cream backdrop) the toggle must be deep-green.
   Only over the hero (transparent header) does cream make sense.            */
body .cc-nav-toggle { color: var(--cc-stone); }
header.site.scrolled ~ .cc-nav-toggle,
body:has(header.site.scrolled) .cc-nav-toggle { color: var(--cc-deep-green); }
/* Fallback for browsers without :has — use the on-dark class but invert it
   so that being past-hero (header has cream backdrop) means deep-green. */
body.cc-past-hero .cc-nav-toggle { color: var(--cc-deep-green); }
/* When nav open, animate icon into an X */
.cc-nav-toggle.is-open .icon span:first-child {
  transform: translateY(4px) rotate(45deg);
  width: 100%;
}
.cc-nav-toggle.is-open .icon span:last-child {
  transform: translateY(-5px) rotate(-45deg);
  width: 100%;
}

/* Menu drops down from the toggle button — anchored top-right of viewport */
.cc-side-nav {
  position: fixed;
  right: clamp(1.4rem, 2.4vw, 2.4rem);
  top: 3.4rem;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .3s ease, transform .35s cubic-bezier(.2,.7,.2,1), visibility .3s;
}
.cc-side-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.cc-side-nav ol {
  list-style: none;
  margin: 0; padding: 1.05rem 1.3rem 1.15rem;
  background: rgba(251, 250, 246, 0.97);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid var(--cc-hairline);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  box-shadow: 0 20px 56px -18px rgba(22,42,35,0.22);
  min-width: 12.6rem;
}
/* Dark variant inside on-dark sections */
body.cc-on-dark .cc-side-nav ol {
  background: rgba(22, 42, 35, 0.96);
  border-color: rgba(237,235,231,0.18);
  box-shadow: 0 20px 56px -18px rgba(0,0,0,0.35);
}
.cc-side-nav a {
  font-size: .72rem;
  letter-spacing: 0.14em;
  padding: 0.18rem 0;
}
.cc-side-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--cc-deep-green);
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.62;
  transition: opacity .35s ease, color .35s ease, letter-spacing .25s ease;
}
.cc-side-nav .cc-side-num { display: none; }
.cc-side-nav .cc-side-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
  transition: background .3s ease, transform .3s ease;
}
.cc-side-nav .cc-side-lbl {
  display: inline-block;
  text-align: right;
  white-space: nowrap;
}
.cc-side-nav a:hover { opacity: 0.95; }
.cc-side-nav a.active {
  opacity: 1;
  font-weight: 600;
  color: var(--cc-deep-green);
}
.cc-side-nav a.active .cc-side-dot { background: currentColor; transform: scale(1.15); }

/* Cream on dark sections, deep-green on light */
body.cc-on-dark .cc-side-nav a { color: var(--cc-stone); }
body:not(.cc-on-dark) .cc-side-nav a { color: var(--cc-deep-green); }

/* No need to reserve horizontal space — the toggle button only
   occupies the top-right corner and the open nav is a floating panel. */

/* ---------- Unified bottom CTA polish ----------
   All page-bottom CTAs share the same minimal style: small dash-eyebrow,
   editorial title with italic emphasis, lede paragraph, brand-meta tag,
   two side-by-side buttons. Removes brand-color tints across pages.    */
section.block.cta.green,
section.block.cta.blue,
section.block.cta.brown {
  background: var(--cc-deep-green);
}
section.block.cta .cta-meta {
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(237,235,231,0.62);
}
section.block.cta .actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
section.block.cta .actions .btn {
  white-space: nowrap;
}
/* Primary button on dark CTA → cream pill, deep-green text */
section.block.cta .btn:not(.outline) {
  background: var(--cc-stone);
  color: var(--cc-deep-green);
  border-color: var(--cc-stone);
}
section.block.cta .btn:not(.outline):hover {
  background: transparent;
  color: var(--cc-stone);
  border-color: var(--cc-stone);
}
/* Outline button on dark CTA → cream border + cream text */
section.block.cta .btn.outline {
  background: transparent;
  border: 1px solid rgba(237,235,231,0.55);
  color: var(--cc-stone);
}
section.block.cta .btn.outline:hover {
  border-color: var(--cc-stone);
  background: rgba(237,235,231,0.08);
}
/* Hide leftover introduction-pill style if any remains */
section.block.cta .introduction-pill { display: none; }

/* ============================================================
   SOFTWARE THESIS — punch-line breaker (Capital page)
   ASCII monogram + headline + thesis-points on pinstripe-grid bg
   ============================================================ */
.software-thesis {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(237,235,231,0.045) 1px, transparent 1px) 0 0 / 100% 120px,
    linear-gradient(90deg, rgba(237,235,231,0.035) 1px, transparent 1px) 0 0 / 120px 100%,
    repeating-linear-gradient(90deg,
      rgba(237,235,231,0.04) 0, rgba(237,235,231,0.04) 1px,
      transparent 1px, transparent 14px),
    radial-gradient(ellipse 80% 60% at 25% 35%,
      rgba(237,235,231,0.05) 0%, transparent 65%),
    var(--cc-deep-green);
  color: var(--cc-stone);
  padding: clamp(6rem, 12vw, 10rem) 0;
  border-top: 1px solid rgba(237,235,231,0.08);
  border-bottom: 1px solid rgba(237,235,231,0.08);
}
.software-thesis::before {
  content: "";
  position: absolute;
  inset: clamp(1.4rem, 2.4vw, 2.4rem);
  border: 1px solid rgba(237,235,231,0.14);
  pointer-events: none;
  z-index: 0;
}
.software-thesis .wrap { position: relative; z-index: 1; }
.thesis-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.thesis-visual img {
  max-width: 540px;
  width: 100%;
  display: block;
  margin: 0 auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.thesis-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(237,235,231,0.62);
  margin-bottom: 1.6rem;
}
.thesis-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--cc-stone);
  margin: 0 0 1.6rem;
  max-width: 18ch;
}
.thesis-headline em { font-style: italic; opacity: 0.82; }
.thesis-lede {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.55;
  color: rgba(237,235,231,0.85);
  margin: 0 0 2.4rem;
  max-width: 52ch;
}
.thesis-points {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(237,235,231,0.20);
}
.thesis-points li {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1.6rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(237,235,231,0.16);
  align-items: baseline;
}
.thesis-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(237,235,231,0.58);
}
.thesis-line {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(237,235,231,0.9);
}
.thesis-line em {
  font-style: italic;
  color: var(--cc-stone);
}
@media (max-width: 900px) {
  .thesis-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .thesis-visual img { max-width: 380px; }
  .thesis-points li { grid-template-columns: 2.6rem 1fr; gap: 1rem; }
}

/* ============================================================
   CTA — NY ELEGANT VARIANT (én blok, dobbelt-CTA på asset-sider)
   ============================================================ */
.cta-block {
  background: var(--cc-deep-green);
  color: var(--cc-stone);
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.cta-block .cta-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(237,235,231,0.66);
  margin-bottom: 1.8rem;
}
.cta-block .cta-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--cc-stone);
  margin: 0 0 1.4rem;
  max-width: 22ch;
}
.cta-block .cta-title em { font-style: italic; opacity: 0.8; }
.cta-block .cta-lede {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  line-height: 1.55;
  color: rgba(237,235,231,0.86);
  margin: 0 0 2.4rem;
  max-width: 60ch;
}
.cta-block .cta-meta-line {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(237,235,231,0.55);
  margin: 0 0 2.4rem;
}

/* Single contact panel — one elegant block, not two side-by-side buttons */
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 1.8rem 1.6rem 2rem;
  background: rgba(237,235,231,0.04);
  border: 1px solid rgba(237,235,231,0.22);
  border-radius: 2px;
  max-width: 38rem;
  transition: background .3s ease, border-color .3s ease, transform .35s cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
  color: inherit;
}
.cta-panel:hover {
  background: rgba(237,235,231,0.08);
  border-color: rgba(237,235,231,0.42);
  transform: translateY(-2px);
}
.cta-panel-text { display: flex; flex-direction: column; gap: 0.35rem; }
.cta-panel-eyebrow {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,235,231,0.72);
}
.cta-panel-mail {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 400;
  color: var(--cc-stone);
  line-height: 1.2;
}
.cta-panel-arrow {
  font-family: var(--sans);
  font-size: .9rem;
  color: rgba(237,235,231,0.62);
  transition: transform .3s ease, color .3s ease;
}
.cta-panel:hover .cta-panel-arrow { transform: translateX(4px); color: var(--cc-stone); }

/* Dual CTAs side-by-side (Invest + Property — two roads in: opportunity vs. wealth-management) */
.cta-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  max-width: 68rem;
}
@media (max-width: 880px) {
  .cta-panel { grid-template-columns: 1fr; padding: 1.4rem 1.6rem; }
  .cta-panel-arrow { display: none; }
  .cta-pair { grid-template-columns: 1fr; }
}

/* ============================================================
   NEW EDITORIAL SECTION VARIANTS — visual variation per page
   ============================================================ */

/* ---------- block-statement (Capital "Vi går all in")
   Banking-style pinstripe + fine grid on deep-green.
   Replaces the photographic background with something quieter,
   more disciplined, more "private bank ledger" in feel.            */
.block-statement {
  position: relative;
  padding: clamp(7rem, 14vw, 12rem) 0;
  color: var(--cc-stone);
  background:
    /* horizontal grid line every 120px — quieter ledger architecture */
    linear-gradient(0deg, rgba(237,235,231,0.045) 1px, transparent 1px) 0 0 / 100% 120px,
    /* vertical grid line every 120px */
    linear-gradient(90deg, rgba(237,235,231,0.035) 1px, transparent 1px) 0 0 / 120px 100%,
    /* vertical pinstripes every 14px — widely spaced, very subtle */
    repeating-linear-gradient(90deg,
      rgba(237,235,231,0.04) 0,
      rgba(237,235,231,0.04) 1px,
      transparent 1px,
      transparent 14px),
    /* radial highlight near top-left for soft depth */
    radial-gradient(ellipse 80% 60% at 30% 30%,
      rgba(237,235,231,0.04) 0%,
      transparent 65%),
    var(--cc-deep-green);
  isolation: isolate;
  overflow: hidden;
}
/* Hide the old photo bg/overlay — kept for backward-compat if HTML still has it */
.block-statement .statement-bg,
.block-statement .statement-overlay { display: none; }
/* Subtle frame around the whole block — like a printed ledger */
.block-statement::before {
  content: "";
  position: absolute;
  inset: clamp(1.4rem, 2.4vw, 2.4rem);
  border: 1px solid rgba(237,235,231,0.16);
  pointer-events: none;
  z-index: 0;
}
.block-statement .wrap { position: relative; z-index: 1; }
.block-statement .statement-inner {
  max-width: 56rem;
}
.statement-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(237,235,231,0.7);
  margin-bottom: 2rem;
}
.statement-quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.16;
  letter-spacing: -0.008em;
  color: var(--cc-stone);
  margin: 0 0 2rem;
  max-width: 24ch;
}
.statement-quote em { font-style: italic; opacity: 0.78; }
.statement-lede {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  line-height: 1.55;
  color: rgba(237,235,231,0.86);
  margin: 0 0 3.4rem;
  max-width: 52ch;
}
/* Three tenets as Pipelineroad-style cards with hairline borders */
.statement-tenets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 0.6rem;
}
.statement-tenets .tenet {
  padding: 1.6rem 1.4rem 1.5rem;
  border: 1px solid rgba(237,235,231,0.18);
  background: rgba(237,235,231,0.025);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: background .3s ease, border-color .3s ease;
}
.statement-tenets .tenet:hover {
  background: rgba(237,235,231,0.05);
  border-color: rgba(237,235,231,0.32);
}
.tenet-num {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  color: rgba(237,235,231,0.62);
}
.tenet-line {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--cc-stone);
  font-style: italic;
  margin: 0;
}
@media (max-width: 900px) {
  .statement-tenets { grid-template-columns: 1fr; gap: 0.9rem; }
}

/* ---------- Editorial ledger (Invest "Få relationer") ---------- */
.ledger-block {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--off-white);
}
.ledger-head {
  max-width: 70rem;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.ledger {
  border-top: 1px solid var(--cc-hairline);
}
.ledger-row {
  display: grid;
  grid-template-columns: 4rem minmax(13rem, 18rem) 1fr minmax(10rem, 14rem);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: baseline;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--cc-hairline);
  transition: background .3s ease;
}
.ledger-row:hover { background: rgba(22,42,35,0.02); }
.ledger-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 2.4vw, 2.05rem);
  font-weight: 400;
  color: var(--cc-deep-green);
  opacity: 0.6;
}
.ledger-label .ledger-cat {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-deep-green);
  opacity: 0.62;
  margin-bottom: 0.45rem;
}
.ledger-label h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  line-height: 1.15;
  margin: 0;
  color: var(--cc-deep-green);
}
.ledger-body {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  max-width: 42ch;
}
.ledger-meta {
  font-family: var(--sans);
  font-style: italic;
  font-size: .82rem;
  letter-spacing: 0.02em;
  color: var(--cc-deep-green);
  opacity: 0.72;
  text-align: right;
}
@media (max-width: 900px) {
  .ledger-row {
    grid-template-columns: 3rem 1fr;
    grid-template-areas:
      "num label"
      "body body"
      "meta meta";
    gap: 0.8rem 1.2rem;
  }
  .ledger-num { grid-area: num; }
  .ledger-label { grid-area: label; }
  .ledger-body { grid-area: body; }
  .ledger-meta { grid-area: meta; text-align: left; }
}

/* Hide old fullscreen menu overlay and MENU button */
body .menu-trigger { display: none !important; }
body .menu-overlay { display: none !important; }

/* Header: brand stays at natural left position; nav is on the right now */
header.site .row { justify-content: flex-start; }

@media (max-width: 1000px) {
  .cc-side-nav { display: none; }
  body .menu-trigger { display: inline-flex !important; }
  body .menu-overlay { display: block !important; }
  header.site .row { justify-content: space-between; padding-left: 0; }
}

/* ---------- "Hvad vi gør hver dag" triad on forside --------------- */
.cc-triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--cc-hairline);
  margin-top: clamp(3rem, 5vw, 4.5rem);
}
.cc-tri-card {
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 2.4vw, 2.4rem);
  border-left: 1px solid var(--cc-hairline);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: transparent;
  transition: background .3s ease;
}
.cc-tri-card:first-child { border-left: 0; padding-left: 0; }
.cc-tri-card:last-child { padding-right: 0; }
.cc-tri-card:hover { background: rgba(22,42,35,0.03); }
.cc-tri-num {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-deep-green);
  opacity: 0.7;
}
.cc-tri-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
  margin: 0;
  color: var(--cc-deep-green);
}
.cc-tri-card p {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0;
  color: var(--ink);
  opacity: 0.86;
  max-width: 36ch;
}
.cc-tri-link {
  margin-top: auto;
  padding-top: 1.4rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-deep-green);
  text-decoration: none;
  border-bottom: 1px solid var(--cc-deep-green);
  align-self: flex-start;
  padding-bottom: 0.3rem;
  opacity: 0.8;
  transition: opacity .25s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.cc-tri-link:hover { opacity: 1; transform: translateX(4px); }
@media (max-width: 900px) {
  .cc-triad { grid-template-columns: 1fr; }
  .cc-tri-card { border-left: 0; border-top: 1px solid var(--cc-hairline); padding: 2rem 0; }
  .cc-tri-card:first-child { border-top: 0; }
}

/* ---------- Deep-green-on-deep-green band (v3-inspired nuance) ------ */
section.block.green-band {
  background: var(--cc-deep-green);
  color: var(--cc-stone);
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  border-top: 0;
  border-bottom: 0;
  position: relative;
  overflow: hidden;
}
/* Pinstripe variant — same banking-grid pattern as Capital's all-in section */
section.block.green-band.pinstripe {
  background:
    linear-gradient(0deg, rgba(237,235,231,0.045) 1px, transparent 1px) 0 0 / 100% 120px,
    linear-gradient(90deg, rgba(237,235,231,0.035) 1px, transparent 1px) 0 0 / 120px 100%,
    repeating-linear-gradient(90deg,
      rgba(237,235,231,0.04) 0,
      rgba(237,235,231,0.04) 1px,
      transparent 1px,
      transparent 14px),
    radial-gradient(ellipse 80% 60% at 30% 30%,
      rgba(237,235,231,0.04) 0%,
      transparent 65%),
    var(--cc-deep-green);
}
section.block.green-band.pinstripe::before {
  content: "";
  position: absolute;
  inset: clamp(1.4rem, 2.4vw, 2.4rem);
  border: 1px solid rgba(237,235,231,0.16);
  pointer-events: none;
  z-index: 0;
}
section.block.green-band.pinstripe .wrap { position: relative; z-index: 1; }
section.block.green-band h2,
section.block.green-band h3,
section.block.green-band h4,
section.block.green-band .section-title { color: var(--cc-stone); }
section.block.green-band .section-num { color: rgba(237,235,231,0.7); }
section.block.green-band .section-lede { color: rgba(237,235,231,0.85); }

/* Green-on-green cards (v3-style triad inside dark band) */
.cc-green-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: clamp(3rem, 5vw, 4.5rem);
}
.cc-green-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
  background: rgba(237,235,231,0.04);
  border: 1px solid rgba(237,235,231,0.16);
  color: var(--cc-stone);
  text-decoration: none;
  transition: background .3s ease, border-color .3s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.cc-green-card:hover {
  background: rgba(237,235,231,0.07);
  border-color: rgba(237,235,231,0.32);
  transform: translateY(-2px);
}
.cc-green-card .cc-gc-num {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,235,231,0.7);
}
.cc-green-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.2;
  margin: 0;
  color: var(--cc-stone);
}
.cc-green-card p {
  font-family: var(--serif);
  font-size: .98rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(237,235,231,0.78);
  max-width: 36ch;
}
.cc-green-card .cc-gc-arrow {
  margin-top: 0.6rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.72;
}
@media (max-width: 900px) {
  .cc-green-cards { grid-template-columns: 1fr; }
}

/* ---------- Page transition fade-in (opacity only — must NOT
   transform <body>, that breaks position:fixed for the header) --- */
body.brand-umbrella,
body[class*="brand-"] {
  opacity: 0;
  animation: pageEnter 0.55s ease forwards;
  animation-delay: 0.04s;
}
@keyframes pageEnter {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  body.brand-umbrella,
  body[class*="brand-"] {
    opacity: 1;
    animation: none;
  }
}
/* On internal navigation, fade out before unload */
body.is-leaving {
  opacity: 0;
  transition: opacity 0.28s ease;
}

/* ============================================================
   v9 — INVESTMENT-CLASS REFINEMENT · "Den private edition"
   (June 2026)
   Tokens · quieter/faster motion · sharper caps-label system ·
   green-dominance enforcement on pillar heroes · chapter
   entries · mandate strip · editorial polish · focus states.
   One accent per surface — and it is Deep Green.
   ============================================================ */

:root {
  /* Spacing scale — 8px base, used by all v9 components */
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;
  --space-9: 10rem;

  /* Motion — one principle: calm entrance, quick exit */
  --ease-quiet: cubic-bezier(.23, .62, .18, 1);
  --dur-quiet: .6s;
  --dur-slow: .8s;
}

/* ---------- Quieter, quicker reveal motion (shorter travel) ---------- */
.fade {
  transform: translateY(10px);
  transition: opacity var(--dur-quiet) var(--ease-quiet),
              transform var(--dur-quiet) var(--ease-quiet);
}
.reveal-up {
  transform: translateY(22px);
  transition: opacity var(--dur-slow) var(--ease-quiet),
              transform var(--dur-slow) var(--ease-quiet);
}
.stagger > * {
  transform: translateY(14px);
  transition: opacity var(--dur-quiet) var(--ease-quiet),
              transform var(--dur-quiet) var(--ease-quiet);
}
.stagger.in > *:nth-child(1) { transition-delay: .04s; }
.stagger.in > *:nth-child(2) { transition-delay: .11s; }
.stagger.in > *:nth-child(3) { transition-delay: .18s; }
.stagger.in > *:nth-child(4) { transition-delay: .25s; }
.stagger.in > *:nth-child(5) { transition-delay: .32s; }
.stagger.in > *:nth-child(6) { transition-delay: .39s; }
.stagger.in > *:nth-child(7) { transition-delay: .46s; }
.stagger.in > *:nth-child(8) { transition-delay: .53s; }
.reveal-img .bg, .reveal-img .img, .reveal-img .portrait {
  transform: scale(1.045);
  filter: none;
  transition: transform 1.4s var(--ease-quiet);
}

/* ---------- Hairline that draws itself on scroll ---------- */
.rule-draw {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s var(--ease-quiet);
}
.rule-draw.in { transform: scaleX(1); }
.rule-draw.on-dark { background: rgba(237,235,231,0.25); }

/* ---------- Slower, calmer Ken Burns ---------- */
@keyframes ken-burns {
  0%   { transform: scale(1.03) translate(-0.3%, 0); }
  100% { transform: scale(1.09) translate(0.7%, -0.8%); }
}
.hero.cinematic .bg img,
.hero.cinematic .bg picture,
.hero.cinematic .bg picture img { animation-duration: 56s; }
@keyframes kenburns-slow {
  0%   { background-size: 104% auto; background-position: 49.5% 49.5%; }
  100% { background-size: 109% auto; background-position: 50.5% 50%; }
}
.photo-feature .photo-frame.kenburns { animation-duration: 60s; }

/* ---------- Caps-label system — Lato 700 (300/400/700/900 are the
   loaded weights; 500 was synthesised), wide tracking, one voice --- */
.section-num,
.hero .eyebrow,
.hero.cinematic .eyebrow,
.stat-bar .stat-eyebrow,
.stat-bar .stat-label,
.cta-block .cta-eyebrow,
.cta-block .cta-meta-line,
.statement-eyebrow,
.thesis-eyebrow,
.tenet-num,
.cc-gc-num,
.cc-tri-num,
.ledger-label .ledger-cat,
.insight-item .insight-date,
.insight-item .insight-cat,
.hero.cinematic .caption-bar,
footer.site h5,
.menu-section-label {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- Buttons — institutional, rectangular, letterspaced ----- */
.btn {
  border-radius: 1px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 1rem 1.7rem;
  gap: .8rem;
}
.tag { border-radius: 1px; }

/* ---------- GREEN-DOMINANCE on pillar heroes (2026-06-12) ----------
   Deep Green leads every hero surface. The 4px accent-strip is the
   single small pillar cue that remains (blue on Invest, platinum on
   Property). Overlays and caption bars are green on all pages.      */
.hero.cinematic.brand-blue .bg::after,
.hero.cinematic.brand-platinum .bg::after {
  background:
    linear-gradient(180deg,
      rgba(15, 31, 26, 0.12) 0%,
      rgba(15, 31, 26, 0.22) 35%,
      rgba(15, 31, 26, 0.55) 70%,
      rgba(15, 31, 26, 0.90) 100%),
    linear-gradient(105deg,
      rgba(22, 42, 35, 0.55) 0%,
      rgba(22, 42, 35, 0.18) 45%,
      rgba(22, 42, 35, 0) 70%);
}
.hero.cinematic.brand-blue .caption-bar,
.hero.cinematic.brand-platinum .caption-bar {
  background: rgba(15, 31, 26, 0.92);
  color: var(--cc-stone);
}
.hero.cinematic.brand-blue .btn,
.hero.cinematic.brand-platinum .btn { color: var(--cc-deep-green); }
.hero.cinematic.brand-blue .btn:hover,
.hero.cinematic.brand-platinum .btn:hover { color: var(--cc-stone); }
.hero.cinematic.brand-blue .btn.outline:hover,
.hero.cinematic.brand-platinum .btn.outline:hover { color: var(--cc-deep-green); }

/* ---------- Prose — editorial serif body (moved from inline) ------- */
.prose p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 1.4rem;
  max-width: 60ch;
}
.prose p strong { font-weight: 500; color: var(--ink); }
.prose ul.value-bullets {
  margin: 0 0 1.4rem 1.4rem;
  padding: 0;
  list-style: none;
  max-width: 60ch;
}
.prose ul.value-bullets li {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink);
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}
.prose ul.value-bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--pillar-cue);
}

/* Pillar cue on list markers — the small allowed differentiation */
.value-list .item.cue-top { border-top-color: var(--pillar-cue); }

/* ---------- CHAPTER ENTRIES — forside platform-indgange ------------
   Editorial hairline columns on the deep-green band: large italic
   serif index, pillar tagline with cue-dot, quiet arrow.            */
.cc-chapters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(3rem, 5vw, 4.5rem);
  border-top: 1px solid rgba(237,235,231,0.22);
}
.cc-chapter {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(2.2rem, 3.5vw, 3rem) clamp(1.6rem, 2.6vw, 2.6rem) clamp(2rem, 3vw, 2.6rem);
  border-left: 1px solid rgba(237,235,231,0.16);
  color: var(--cc-stone);
  text-decoration: none;
  transition: background .35s var(--ease-quiet);
}
.cc-chapter:first-child { border-left: 0; padding-left: 0; }
.cc-chapter:last-child { padding-right: 0; }
.cc-chapter::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cc-stone);
  transition: width .6s var(--ease-quiet);
}
.cc-chapter:hover::after { width: 100%; }
.cc-chapter:hover { background: rgba(237,235,231,0.035); }
.cc-ch-index {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  color: rgba(237,235,231,0.5);
  line-height: 1;
}
.cc-ch-tag {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,235,231,0.72);
}
.cc-ch-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cc-stone);
  opacity: .85;
  flex: 0 0 auto;
}
.cc-chapter.cue-capital .cc-ch-tag::before  { background: var(--cc-sage); }
.cc-chapter.cue-invest .cc-ch-tag::before   { background: var(--cc-cloud-blue); }
.cc-chapter.cue-property .cc-ch-tag::before { background: var(--cc-platinum); }
.cc-chapter h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
  line-height: 1.15;
  margin: 0;
  color: var(--cc-stone);
}
.cc-chapter p {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
  color: rgba(237,235,231,0.78);
  max-width: 34ch;
}
.cc-ch-link {
  margin-top: auto;
  padding-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,235,231,0.85);
}
.cc-ch-link::after {
  content: "→";
  font-family: var(--serif);
  letter-spacing: 0;
  transition: transform .35s var(--ease-quiet);
}
.cc-chapter:hover .cc-ch-link::after { transform: translateX(5px); }
@media (max-width: 900px) {
  .cc-chapters { grid-template-columns: 1fr; border-top: 0; }
  .cc-chapter {
    border-left: 0;
    border-top: 1px solid rgba(237,235,231,0.18);
    padding: 1.8rem 0;
  }
  .cc-chapter:first-child { border-top: 1px solid rgba(237,235,231,0.22); }
}

/* ---------- MANDATE STRIP — quiet institutional figures ------------ */
.mandate-strip {
  background: var(--paper);
  border-block: 1px solid var(--cc-hairline);
  padding: clamp(2.8rem, 5vw, 4rem) 0;
}
.mandate-grid {
  display: grid;
  grid-template-columns: auto repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: baseline;
}
.mandate-head {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-platinum-deep, #7A8084);
}
.mandate-cell { display: flex; flex-direction: column; gap: .45rem; }
.mandate-fig {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1;
  color: var(--cc-deep-green);
  letter-spacing: -0.018em;
  font-variant-numeric: tabular-nums;
}
.mandate-fig em { font-style: italic; font-size: .62em; color: var(--cc-sage); }
.mandate-lab {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cc-platinum-deep, #7A8084);
}
@media (max-width: 880px) {
  .mandate-grid { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .mandate-head { grid-column: 1 / -1; }
}

/* ---------- Photo interlude caption — statement variant ------------ */
.photo-feature .photo-caption .caption-statement {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  letter-spacing: .02em;
  text-transform: none;
  color: inherit;
}

/* ---------- Footer — deep green kolofon ----------------------------- */
footer.site {
  background: var(--green-darker);
  border-top: 1px solid rgba(237,235,231,0.10);
}
footer.site::before { display: none; }
footer.site .bottom {
  border-top-color: rgba(237,235,231,0.14);
  letter-spacing: .04em;
}
footer.site .heritage-foot { color: rgba(237,235,231,0.4); }

/* Insights CTA block (block.cta) joins the green family */
section.block.cta { background: var(--cc-deep-green); }

/* ---------- Quiet selection + real focus states --------------------- */
::selection { background: var(--cc-deep-green); color: var(--cc-stone); }
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--cc-deep-green);
  outline-offset: 3px;
  border-radius: 1px;
}
.hero.cinematic a:focus-visible,
.cta-block a:focus-visible,
section.block.green-band a:focus-visible,
footer.site a:focus-visible,
.block-statement a:focus-visible,
.software-thesis a:focus-visible {
  outline-color: var(--cc-stone);
}

/* ---------- Reduced motion — total stillness ------------------------ */
@media (prefers-reduced-motion: reduce) {
  .fade, .reveal-up, .stagger > *, .rule-draw,
  .reveal-img .bg, .reveal-img .img, .reveal-img .portrait {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .cc-chapter::after { transition: none; }
}

/* Chapter link as e-mail — serif, no caps */
.cc-ch-link.mail {
  text-transform: none;
  font-family: var(--serif);
  font-size: .98rem;
  font-weight: 400;
  letter-spacing: .02em;
  word-break: break-all;
}

/* ---------- WCAG AA — muted caps-labels on light surfaces ----------
   #7A8084 measures 3.8–4.0:1 on paper/white (below AA for small text).
   Quiet grey that passes: #6B7074 (≈4.8–5.0:1).                      */
:root { --label-muted: #6B7074; }
.stat-bar .stat-eyebrow,
.stat-bar .stat-label,
.mandate-head,
.mandate-lab,
.insight-item .insight-date,
.insight-item .insight-cat,
.area .pill,
.quote-attr,
.muted { color: var(--label-muted); }
footer.site .muted { color: rgba(237,235,231,0.55); }

/* ============================================================
   v10 — SIGNATUR-GRAFIK & RYTME (June 2026)
   Banking-pinstripes erstattes af Cloud Capitals eget motiv:
   fine konturlinjer (sky-banker/topografi) — ekkoet af
   capital-mono line-art. Ét grafisk sprog, ejet af huset.
   ============================================================ */

/* (Konturlinje-motivet udgik 2026-06-12 efter Franks review — de oprindelige pinstripes gælder.) */

/* ---------- Footer — quiet monogram watermark ----------------------- */
footer.site::before {
  content: "";
  display: block;
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 30rem;
  height: 30rem;
  background: url('logos/logomark-cream.svg') center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
  transform: rotate(0deg);
}
footer.site .wrap { position: relative; z-index: 1; }

/* ---------- Manifesto — more air + drawn hairline ornament ---------- */
.manifesto { padding: clamp(7rem, 12vw, 10.5rem) 0; }
.manifesto .rule-draw {
  width: 72px;
  margin: 0 auto clamp(2.2rem, 4vw, 3rem);
  background: var(--cc-deep-green);
  opacity: .55;
}
.manifesto .label { display: none; }  /* ornament replaces the dash-label */

/* ---------- Chapter indices — a touch more presence ------------------ */
.cc-ch-index { font-size: clamp(1.7rem, 2.5vw, 2.2rem); }

/* ---------- Cleaner breathing on prose blocks ------------------------ */
section.block.clean { padding: clamp(6.5rem, 11vw, 9.5rem) 0; }

/* ---------- Photo interludes — slightly deeper caption tone ---------- */
.photo-feature .photo-caption { letter-spacing: .2em; }

/* ---------- Hero caption-bar joins the contour language (very low) --- */
.hero.cinematic .caption-bar { backdrop-filter: none; }

/* ---------- Investor letter — drawn rule above meta ------------------ */
.investor-letter .rule-draw {
  width: 72px;
  margin: 0 0 2rem;
  background: var(--cc-deep-green);
  opacity: .5;
}

/* ============================================================
   v11 — SIGNATUR-ANIMATIONER & SKARPE BILLEDER (June 2026)
   Rolig monogram-reveal (omrids tegnes oppefra + grøn fyld),
   tydeligt logo-i-tegn til software, og framede foto-plader
   så billeder står skarpt (som v5) i stedet for at blive
   skaleret slørede i full-bleed bånd.
   ============================================================ */

/* ---------- Monogram-band: rolig brand-puls ---------- */
.monogram-band {
  position: relative;
  background: var(--cc-deep-green);
  color: var(--cc-stone);
  padding: clamp(5.5rem, 10vw, 8.5rem) 0;
  overflow: hidden;
  border-block: 0;
}
.monogram-band .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 880px) {
  .monogram-band .wrap { grid-template-columns: 1fr; gap: 2.6rem; }
  .monogram-band .mono-art { order: -1; max-width: 320px; }
}
.monogram-band .mono-eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(237,235,231,.62);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.6rem;
}
.monogram-band .mono-eyebrow::before { content: ""; width: 40px; height: 1px; background: rgba(237,235,231,.5); }
.monogram-band h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--cc-stone);
  margin: 0 0 1.4rem;
  max-width: 18ch;
}
.monogram-band h2 em { font-style: italic; color: rgba(237,235,231,.62); }
.monogram-band p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: rgba(237,235,231,.82);
  margin: 0;
  max-width: 46ch;
}
.monogram-band .mono-art { justify-self: center; width: 100%; max-width: 440px; }
.monogram-band .mono-art svg { width: 100%; height: auto; overflow: visible; }
.mono-draw { clip-path: inset(0 0 100% 0); }
.mono-draw.in { clip-path: inset(0 0 0% 0); transition: clip-path 6.5s cubic-bezier(.4,0,.2,1); }
.mono-fill { fill: #3A5247; fill-opacity: 0; }
.mono-draw.in .mono-fill { fill-opacity: 1; transition: fill-opacity 3s ease 4.8s; }
@media (prefers-reduced-motion: reduce) {
  .mono-draw { clip-path: none !important; transition: none !important; }
  .mono-fill { fill-opacity: 1 !important; transition: none !important; }
}

/* Faint monogram watermark drawn behind a section */
.mono-watermark {
  position: absolute;
  top: 50%; right: -6%;
  transform: translateY(-50%);
  width: min(42vw, 460px);
  z-index: 0;
  pointer-events: none;
  opacity: .5;
}
.mono-watermark svg { width: 100%; height: auto; overflow: visible; }
.mono-watermark .mono-draw.in { transition: clip-path 7.5s cubic-bezier(.4,0,.2,1); }

/* ---------- Software-logo i tegn (ASCII monogram) ---------- */
.thesis-visual { min-height: 320px; display: flex; align-items: center; justify-content: center; }
.ascii-logo {
  font-family: ui-monospace, 'SF Mono', 'JetBrains Mono', 'Courier New', monospace;
  white-space: pre;
  margin: 0 auto;
  font-size: clamp(7px, 1.05vw, 12px);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--cc-stone);
  font-weight: 700;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  contain: layout paint;
  will-change: contents;
}
.ascii-logo .dim { color: rgba(237,235,231,.16); font-weight: 400; }
@media (max-width: 900px){ .thesis-visual { min-height: 230px; } }

/* ---------- Framede foto-plader (skarpe, som v5) ---------- */
.photo-feature.framed {
  background: var(--cc-deep-green);
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  margin: 0;
  border: 0;
}
.photo-feature.framed .wrap { position: relative; z-index: 1; }
.photo-plate {
  margin: 0;
  background: rgba(237,235,231,.04);
  border: 1px solid rgba(237,235,231,.18);
  padding: clamp(.7rem, 1.3vw, 1.2rem);
}
.photo-plate img {
  width: 100%;
  height: auto;
  display: block;
}
.photo-plate figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: clamp(.7rem, 1.2vw, 1rem);
}
.photo-plate .pf-no {
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(237,235,231,.62);
}
.photo-plate .pf-cap {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: rgba(237,235,231,.8);
}

/* Heritage line tightened (now "Vejle · Danmark") */
.brand .heritage { letter-spacing: .14em; }

/* CTA watermark containment */
.cta-block { position: relative; overflow: hidden; }
.cta-block > .wrap { position: relative; z-index: 1; }
.cta-block .mono-watermark { opacity: .06; right: -8%; }
.photo-feature.framed .wrap.wide { max-width: 1180px; }

/* ============================================================
   v12 — WIREFRAME TECH-BREAK (forside-monogram, June 2026)
   Sort flade (mono line-art-kategori), monogrammet som rent
   wireframe, et grønt lys løber kontinuerligt gennem stregerne
   med blødt glow + diskret faux-3D. Inspireret af, ikke kopi.
   ============================================================ */
.monogram-band.wire {
  background: #070807;
  color: var(--cc-stone);
  overflow: hidden;
}
.monogram-band.wire .mono-eyebrow { color: rgba(237,235,231,.6); }
.monogram-band.wire .mono-eyebrow::before { background: rgba(237,235,231,.4); }
.monogram-band.wire h2 { color: var(--cc-stone); }
.monogram-band.wire h2 em { color: rgba(124,168,119,.85); font-style: italic; }
.monogram-band.wire p { color: rgba(237,235,231,.7); }
.monogram-band.wire .wire-glow {
  position: absolute;
  top: 50%; right: 4%;
  width: 46%; max-width: 560px; aspect-ratio: 1;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(90,126,88,.20) 0%, rgba(90,126,88,.06) 35%, transparent 68%);
  z-index: 0; pointer-events: none;
}
.monogram-band.wire .wrap { position: relative; z-index: 1; }
.monogram-band.wire .mono-art { justify-self: center; width: 100%; max-width: 440px; }
.wire-svg {
  width: 100%; height: auto; overflow: visible;
  transform-style: preserve-3d;
  animation: wireFloat 12s ease-in-out infinite alternate;
}
@keyframes wireFloat {
  from { transform: rotateX(7deg) rotateY(-9deg); }
  to   { transform: rotateX(-5deg) rotateY(8deg); }
}
.w-base  { fill: none; stroke: rgba(237,235,231,.32); stroke-width: .5; stroke-linejoin: round; }
.w-depth { fill: none; stroke: rgba(124,168,119,.16); stroke-width: .5; stroke-linejoin: round; transform: translate(1.6px, 2.2px); }
.w-trace { fill: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 16 84; }
.w-trace.t1 { stroke: #7CA877; animation: wireDash 7.5s linear infinite; }
.w-trace.t2 { stroke: rgba(237,235,231,.9); animation: wireDash 7.5s linear infinite; animation-delay: -3.75s; }
@keyframes wireDash { to { stroke-dashoffset: -100; } }
@media (prefers-reduced-motion: reduce) {
  .wire-svg { animation: none; transform: rotateX(0) rotateY(0); }
  .w-trace.t1, .w-trace.t2 { animation: none; stroke-dasharray: none; stroke: rgba(124,168,119,.55); }
}
@media (max-width: 880px) {
  .monogram-band.wire .mono-art { max-width: 300px; order: -1; }
  .monogram-band.wire .wire-glow { right: 50%; transform: translate(50%,-50%); top: 30%; }
}

/* ============================================================
   v13 — Forside-justeringer (Franks Word-kommentarer)
   Stat-bar → 3 principper (samme hairline-format, tekst-fokus).
   ============================================================ */
.stat-bar .stat-grid.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .stat-bar .stat-grid.three { grid-template-columns: 1fr; } }
.stat-bar .stat-grid.three .stat-cell:last-child { border-right: 0; }
@media (max-width: 860px) {
  .stat-bar .stat-grid.three .stat-cell { border-right: 0; border-bottom: 1px solid var(--cc-hairline); }
  .stat-bar .stat-grid.three .stat-cell:last-child { border-bottom: 0; }
}
.stat-bar .stat-figure.principle {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  line-height: 1.12;
  color: var(--cc-deep-green);
  letter-spacing: -0.01em;
  white-space: normal;
  margin-bottom: 1rem;
  min-height: 2.4em;
}
.stat-bar .principles .stat-detail { max-width: 30ch; }

}

/* ============================================================
   v16 — Mandat-blok (redesign: balanceret, centreret)
   ============================================================ */
.mandate-block { background: var(--white); border-block: 1px solid var(--cc-hairline); padding: clamp(3.5rem,6vw,5rem) 0; }
.mandate-block .m-eyebrow {
  display: block; text-align: center;
  font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; color: var(--label);
  margin-bottom: clamp(2rem,3.5vw,2.8rem);
}
.mandate-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 860px; margin: 0 auto;
}
.mandate-row .m-cell {
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  padding: .4rem 1rem; text-align: center;
  border-left: 1px solid var(--cc-hairline);
}
.mandate-row .m-cell:first-child { border-left: 0; }
.mandate-row .m-fig {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 3.8vw, 3.1rem); line-height: 1;
  color: var(--cc-deep-green); letter-spacing: -.02em;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.mandate-row .m-fig em { font-style: italic; font-size: .5em; color: var(--cc-sage); }
.mandate-row .m-lab {
  font-family: var(--sans); font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--label);
}
@media (max-width: 680px) {
  .mandate-row { grid-template-columns: 1fr; gap: 2rem; }
  .mandate-row .m-cell { border-left: 0; }
}

/* ============================================================
   v18 — DARK-UI TONE (June 2026)
   De sorte/meget mørke flader løftes til blød mørkegrå med
   subtil vignette-variation (moderne interface-dybde) i stedet
   for flad ren-sort. Grøn beholdt med samme diskrete dybde.
   ============================================================ */
:root {
  --carbon: radial-gradient(125% 125% at 50% 32%, #1c1f1d 0%, #14161480 0%, #131513 46%, #0c0d0c 100%);
  --green-depth: radial-gradient(130% 130% at 50% 16%, #1d3228 0%, #162a23 54%, #112019 100%);
}
/* True-black section (animeret monogram) → dark-grey vignette */
.carbon-band { background: #000; }
/* Deep-green flade-surfaces får en hårfin tonal dybde (ikke flad) */
.cta-block { background: #162A23; background: var(--green-depth); }
footer.site { background: #0F1F1A; background: radial-gradient(135% 130% at 50% 0%, #16261f 0%, #102019 55%, #0c1813 100%); }
/* Cinematic hero base (bag mono line-art) løftet fra ren sort */
.hero.cinematic { background: #0c0d0c; }

/* ============================================================
   v19 — Capital sort co-invest-sektion (to-kolonne)
   ============================================================ */
.carbon-band.cobuild { text-align: left; padding: clamp(5rem, 9vw, 8rem) 0; }
.carbon-band.cobuild .wrap {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}
@media (max-width: 900px){ .carbon-band.cobuild .wrap { grid-template-columns: 1fr; gap: 2.6rem; } }
.carbon-band .cb-eyebrow {
  font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; color: rgba(124,168,119,.9);
  display: inline-flex; align-items: center; gap: .8rem; margin-bottom: 1.4rem;
}
.carbon-band .cb-eyebrow::before { content:""; width: 38px; height:1px; background: rgba(124,168,119,.6); }
.carbon-band .cb-title {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.14; letter-spacing: -.02em; color: var(--cc-stone); margin: 0 0 1.3rem; max-width: 18ch;
}
.carbon-band .cb-title em { font-style: italic; color: rgba(237,235,231,.6); }
.carbon-band .cb-lede {
  font-family: var(--serif); font-size: clamp(1.05rem,1.4vw,1.2rem); line-height: 1.6;
  color: rgba(237,235,231,.82); margin: 0 0 2rem; max-width: 48ch;
}
.carbon-band .cb-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 38rem; }
@media (max-width: 520px){ .carbon-band .cb-cards { grid-template-columns: 1fr; } }
.carbon-band .cb-card {
  background: #14181699;
  background: rgba(40,52,46,.38);
  border: 1px solid rgba(124,168,119,.22);
  border-radius: 2px; padding: 1.1rem 1.2rem;
}
.carbon-band .cb-card-k {
  display: block; font-family: var(--sans); font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(124,168,119,.95); margin-bottom: .5rem;
}
.carbon-band .cb-card p { margin: 0; font-size: .92rem; line-height: 1.5; color: rgba(237,235,231,.74); }
.carbon-band .cb-art { justify-self: center; text-align: center; }
.carbon-band .cb-art img { max-width: 380px; width: 100%; height: auto; display: block; margin: 0 auto; image-rendering: -webkit-optimize-contrast; }
.carbon-band .cb-cap {
  display: block; margin-top: 1.8rem; font-family: var(--sans); font-size: .7rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: rgba(237,235,231,.55);
}

/* ============================================================
   v20 — Property: to fokusområder (Danmark + Marbella)
   ============================================================ */
.duo-band { }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 3.5vw, 3rem); margin-top: clamp(2.5rem, 4vw, 3.5rem); }
@media (max-width: 820px){ .duo { grid-template-columns: 1fr; gap: 2.6rem; } }
.duo-card { display: flex; flex-direction: column; }
.duo-card .duo-img {
  margin: 0 0 1.4rem; border: 1px solid rgba(237,235,231,.18);
  background: rgba(237,235,231,.04); padding: clamp(.6rem,1vw,.9rem); overflow: hidden;
}
.duo-card .duo-img img { width: 100%; height: clamp(220px, 26vw, 340px); object-fit: cover; display: block; }
.duo-card .duo-kicker {
  font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(237,235,231,.66);
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: .7rem;
}
.duo-card .duo-kicker::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--cc-sage); flex:0 0 auto; }
.duo-card .duo-kicker.cue-property::before { background: var(--cc-platinum); }
.duo-card h3 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.2; color: var(--cc-stone); margin: 0 0 .7rem;
}
.duo-card p { font-family: var(--serif); font-size: 1rem; line-height: 1.6; color: rgba(237,235,231,.8); margin: 0; max-width: 44ch; }

/* ============================================================
   v21 — WIREFRAME-IKONER (brand-stil): tynd sort wireframe +
   grøn fyld, flere detaljer, rigere bevægelse. Stregerne er
   lige så fine som pinstriberne. Hvid flade.
   ============================================================ */
.pillar-icon { height: 108px; margin-bottom: 1.7rem; display: flex; align-items: center; justify-content: flex-start; }
.pillar-icon .ic { width: 112px; height: 108px; overflow: visible; }
.pillar-icon .ic * { vector-effect: non-scaling-stroke; }

/* shared: thin ink lines + green fill */
.ic .gl { stroke: var(--cc-ink); stroke-width: .4; opacity: .55; fill: none; }
.ic .cf { stroke: var(--cc-ink); stroke-width: .45; stroke-linejoin: round; }
.ic .cf-t { fill: rgba(22,42,35,.92); }
.ic .cf-l { fill: rgba(22,42,35,.55); }
.ic .cf-r { fill: rgba(22,42,35,.32); }

/* 1 · Aktivt ejerskab — float cube + scanning planes + rotating dashed orbit + node */
.ic1 .ic-orbit { fill: none; stroke: var(--cc-sage); stroke-width: .5; stroke-dasharray: 2 6; opacity: .7; transform-origin: 60px 52px; animation: icSpin 16s linear infinite; }
.ic1 .pl { fill: none; stroke: var(--cc-hairline); stroke-width: .45; stroke-dasharray: 2.5 3; }
.ic1 .ic-planes .pl:nth-child(1){ animation: icPlane 3.6s var(--ease) infinite; }
.ic1 .ic-planes .pl:nth-child(2){ animation: icPlane 3.6s var(--ease) infinite .3s; }
.ic1 .ic-planes .pl:nth-child(3){ animation: icPlane 3.6s var(--ease) infinite .6s; }
@keyframes icPlane { 0%,100%{opacity:.22;} 45%{opacity:.85;} }
.ic1 .ic-cube { animation: icFloat 6s var(--ease) infinite alternate; transform-origin:60px 52px; }
@keyframes icFloat { from{transform:translateY(2px);} to{transform:translateY(-3px);} }
.ic1 .ic-node { fill: var(--cc-sage); animation: icNode 3s ease infinite; }
@keyframes icNode { 0%,100%{opacity:.4;} 50%{opacity:1;} }
@keyframes icSpin { to { transform: rotate(360deg); } }

/* 2 · Fokuseret portefølje — lattice + selected green nodes + halo + traveling link + slow spin */
.ic2 .ic-lattice { transform-origin: 60px 50px; animation: icSpin 26s linear infinite; }
.ic2 .nd { fill: #fff; stroke: var(--cc-ink); stroke-width: .5; }
.ic2 .nd.on { fill: var(--cc-deep-green); stroke: var(--cc-deep-green); }
.ic2 .ic-link { stroke: var(--cc-sage); stroke-width: .7; stroke-dasharray: 3 4; animation: icTravel 2.6s linear infinite; }
@keyframes icTravel { to { stroke-dashoffset: -14; } }
.ic2 .ic-halo { fill: none; stroke: var(--cc-sage); stroke-width: .7; transform-origin: 60px 50px; animation: icHalo 3.2s var(--ease) infinite; }
@keyframes icHalo { 0%{transform:scale(1);opacity:.8;} 70%,100%{transform:scale(3.4);opacity:0;} }

/* 3 · Lang tidshorisont — fine funnel rings + rising green ring + green core + slow tick spin */
.ic3 .rg { fill: none; stroke: var(--cc-ink); stroke-width: .4; opacity: .6; }
.ic3 .rg.dash { stroke-dasharray: 2.5 3; }
.ic3 .ic-ticks { transform-origin: 60px 58px; animation: icSpin 30s linear infinite; }
.ic3 .ic-core { fill: var(--cc-deep-green); }
.ic3 .ic-rise { fill: none; stroke: var(--cc-sage); stroke-width: .9; animation: icRise 5s var(--ease) infinite; }
@keyframes icRise { 0%{transform:translateY(0) scale(1);opacity:0;} 14%{opacity:.95;} 100%{transform:translateY(-40px) scale(4);opacity:0;} }

/* 4 · Traction over TAM — fine dashed field + grid + growing green volume + ascending mark */
.ic4 .ff { fill: none; stroke: var(--cc-hairline); stroke-width: .5; stroke-dasharray: 3 3.5; }
.ic4 .ic-vol { transform-origin: 60px 97px; animation: icGrow 4.6s var(--ease) infinite alternate; }
@keyframes icGrow { from { transform: scaleY(.42); } to { transform: scaleY(1); } }
.ic4 .ic-mark { fill: none; stroke: var(--cc-sage); stroke-width: .8; stroke-linecap: round; stroke-linejoin: round; animation: icMark 4.6s var(--ease) infinite alternate; }
@keyframes icMark { from{opacity:.25;transform:translateY(4px);} to{opacity:1;transform:translateY(0);} }

@media (prefers-reduced-motion: reduce){
  .ic1 .ic-orbit,.ic1 .pl,.ic1 .ic-cube,.ic1 .ic-node,
  .ic2 .ic-lattice,.ic2 .ic-link,.ic2 .ic-halo,
  .ic3 .ic-ticks,.ic3 .ic-rise,.ic4 .ic-vol,.ic4 .ic-mark { animation: none !important; }
  .ic2 .ic-halo,.ic3 .ic-rise { opacity: 0; }
  .ic4 .ic-vol { transform: none; }
}

/* ============================================================
   v22 — Finrettelser (June 2026)
   ============================================================ */
/* Co-invest: ingen neongrøn — platinum/cream + mørkegrå kort */
.carbon-band .cb-eyebrow { color: var(--cc-platinum); }
.carbon-band .cb-eyebrow::before { background: rgba(161,168,171,.55); }
.carbon-band .cb-card { background: rgba(255,255,255,.045); border-color: rgba(237,235,231,.16); }
.carbon-band .cb-card-k { color: var(--cc-platinum); }

/* Software-thesis: header kant-til-kant + body [logo | punkter] */
.software-thesis .thesis-head { max-width: 100%; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.software-thesis .thesis-head .thesis-headline {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem); max-width: 22ch; line-height: 1.06;
}
.software-thesis .thesis-head .thesis-lede { max-width: 64ch; }
.software-thesis .thesis-body {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}
@media (max-width: 900px){ .software-thesis .thesis-body { grid-template-columns: 1fr; gap: 2.4rem; } }
.software-thesis .thesis-body .thesis-visual { min-height: 0; }

/* Property duo: align kolonner med A/B (samme gutter som .split.even) */
.duo { gap: clamp(2rem, 6vw, 5rem); }

/* v22 — Invest filosofi: aflangt sky-billede fylder white-space */
.phil-img { margin: clamp(2rem, 4vw, 3rem) 0 0; overflow: hidden; border: 1px solid var(--cc-hairline); background: var(--white); padding: clamp(.5rem,.9vw,.8rem); }
.phil-img img { width: 100%; height: clamp(360px, 42vw, 560px); object-fit: cover; display: block; }
@media (max-width: 880px){ .phil-img img { height: 300px; } }

/* ============================================================
   v23 (2026-06-13) — Frank-review: tre rettelser
   ============================================================ */

/* Capital — mandat-nøgletal smeltet ind i principperne (Variant A) */
.mandate-principles .pillar { display: flex; flex-direction: column; }
.pillar .pf-fig {
  display: block; font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 2.8rem); line-height: 1;
  color: var(--cc-deep-green); letter-spacing: -.02em;
  font-variant-numeric: tabular-nums; white-space: nowrap;
  margin: .3rem 0 .45rem;
}
.pillar .pf-lab {
  display: block; font-family: var(--sans); font-size: .62rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--label-muted);
  margin-bottom: 1rem;
}

/* Capital — lille faint cloud-line-art-strime i bunden af den sorte co-invest-sektion */
.carbon-band.cobuild { position: relative; overflow: hidden; }
.carbon-band.cobuild .cb-bg {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: clamp(110px, 17vh, 200px);
  background-image: url('images/cap-coinvest-cloud-2400.jpg');
  background-size: cover; background-position: center bottom; background-repeat: no-repeat;
  opacity: .34;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 70%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 70%);
  pointer-events: none; z-index: 0;
}
.carbon-band.cobuild .wrap { position: relative; z-index: 1; }

/* Forside — green-band pinstriber fader naturligt ud i den grønne flade */
section.block.green-band.pinstripe {
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(237,235,231,0.04) 0%, transparent 65%),
    var(--cc-deep-green);
}
section.block.green-band.pinstripe::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    linear-gradient(0deg, rgba(237,235,231,0.045) 1px, transparent 1px) 0 0 / 100% 120px,
    linear-gradient(90deg, rgba(237,235,231,0.035) 1px, transparent 1px) 0 0 / 120px 100%,
    repeating-linear-gradient(90deg,
      rgba(237,235,231,0.04) 0, rgba(237,235,231,0.04) 1px,
      transparent 1px, transparent 14px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 80%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 80%, transparent 100%);
}

/* ============================================================
   v24 (2026-06-13) — DK/EN sprog-switcher i header (top-left)
   ============================================================ */
.lang-switch {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-left: 1rem; padding-left: 1rem; margin-right: auto;
  border-left: 1px solid rgba(237,235,231,0.32);
  font-family: var(--sans); font-size: .62rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  vertical-align: middle;
  transition: border-color .25s ease;
}
.lang-switch a { color: rgba(237,235,231,0.55); text-decoration: none; transition: color .2s ease; }
.lang-switch a:hover { color: rgba(237,235,231,0.92); }
.lang-switch .ls-on { color: rgba(237,235,231,0.92); }
.lang-switch .ls-sep { color: rgba(237,235,231,0.3); }
header.site.scrolled .lang-switch { border-left-color: var(--cc-hairline); }
header.site.scrolled .lang-switch a { color: var(--cc-platinum); }
header.site.scrolled .lang-switch a:hover { color: var(--ink); }
header.site.scrolled .lang-switch .ls-on { color: var(--ink); }
header.site.scrolled .lang-switch .ls-sep { color: var(--cc-hairline); }
@media (max-width: 760px) {
  .lang-switch { margin-left: .7rem; padding-left: .7rem; gap: .4rem; font-size: .6rem; letter-spacing: .14em; }
}

/* ============================================================
   v25 (2026-06-14) — Mobil-finpuds (iPhone/iPad)
   ============================================================ */
/* Sprog-switcher: undgå ombrydning, lidt større tap-target på touch */
.lang-switch { white-space: nowrap; }
.lang-switch a, .lang-switch .ls-on { padding: .35rem .15rem; display: inline-block; }
/* Om-tidslinje: stak til én kolonne på telefon, skjul vandret forbindelseslinje */
@media (max-width: 480px) {
  .pipeline-track { grid-template-columns: 1fr; gap: 1.6rem; }
  .pipeline-track::before { display: none; }
  .pipeline-stage { padding-left: 1rem; border-left: 1px solid var(--cc-hairline); }
}
/* Sikr at ingen flade giver vandret scroll på små skærme */
@media (max-width: 600px) { html, body { overflow-x: hidden; } }

/* ============================================================
   v26 (2026-06-14) — Knap-kontrast på hero + dobbelt-menu-fix
   ============================================================ */
/* Cinematic hero ligger altid på mørk flade → hvid/cream knaptekst */
.hero.cinematic .actions .btn { background: var(--cc-deep-green); color: #fff; border-color: var(--cc-deep-green); }
.hero.cinematic .actions .btn:hover { background: var(--green-darker); border-color: var(--green-darker); color: #fff; }
.hero.cinematic .actions .btn.outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.hero.cinematic .actions .btn.outline:hover { background: #fff; color: var(--cc-deep-green); border-color: #fff; }
/* Skjul side-nav-toggle når header-menu-knappen overtager (undgå dobbelt "Menu") */
@media (max-width: 1000px) { .cc-nav-toggle { display: none !important; } }

/* ============================================================
   v27 (2026-06-14) — Om-tidslinje: pil + langsigtet-note i den tomme ende
   ============================================================ */
.pipeline-track::after {
  content: ""; position: absolute; top: calc(1.05rem - 4px); right: 0;
  width: 0; height: 0;
  border-top: 4.5px solid transparent; border-bottom: 4.5px solid transparent;
  border-left: 8px solid var(--cc-sage);
}
.pipeline-end { position: relative; padding: 0 1rem 0 0; }
.pipeline-end .pe-note {
  display: block; margin-top: 2.5rem; max-width: 20ch;
  font-family: var(--serif); font-style: italic;
  font-size: .92rem; line-height: 1.5; color: var(--cc-sage);
}
@media (max-width: 780px) {
  .pipeline-track::after { display: none; }
  .pipeline-end .pe-note { margin-top: .6rem; }
}
@media (max-width: 480px) {
  .pipeline-end { padding-left: 1rem; border-left: 1px solid var(--cc-hairline); }
}

/* ============================================================
   v28 (2026-06-14) — Tidslinje-ende harmoniseret med kolonnerne
   ============================================================ */
.pipeline-end .pe-label {
  display: block; font-family: var(--sans); font-size: .68rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--cc-platinum-deep, #7A8084);
  margin-top: 2.5rem; margin-bottom: .4rem;
}
.pipeline-end .pe-note { margin-top: 0; font-size: 1.1rem; line-height: 1.3; letter-spacing: -.008em; max-width: 18ch; }
@media (max-width: 780px) { .pipeline-end .pe-label { margin-top: .6rem; } .pipeline-end .pe-note { margin-top: 0; } }

/* ============================================================
   v29 (2026-06-14) — Mobil: fjern off-brand hero-striber, ret green-band-ramme
   ============================================================ */
/* Fjern de pillar-farvede hero-striber (blå på Invest, grå på Property) */
.accent-strip { display: none !important; }
/* Forside green-band: skjul den dekorative inset-ramme på mobil (tekst flugtede ikke) */
@media (max-width: 768px) {
  section.block.green-band.pinstripe::before { display: none; }
}
