/* =========================================================
   Rooted Investments — editorial single-page site
   System: institutional sans, monochrome + leaf green
   ========================================================= */

:root {
  /* Palette */
  --paper: #FFFFFF;
  --bone:  #F5F2EA;       /* warm off-white pulled from logo background */
  --bone-2:#EDE8DC;
  --ink:   #14241A;       /* deep forest near-black, from logo R */
  --ink-2: #243528;
  --mute:  #6B7670;
  --rule:  #E5E3DC;
  --rule-2:#D9D6CB;
  --leaf:  #6FAF3D;       /* logo leaf */
  --leaf-2:#4A8228;
  --leaf-soft: rgba(111,175,61,.12);

  /* Type */
  --display: "Bricolage Grotesque", "Söhne", "Geist", ui-sans-serif, sans-serif;
  --sans:    "Geist", "Söhne", ui-sans-serif, system-ui, sans-serif;
  --mono:    "Geist Mono", ui-monospace, monospace;

  /* Rhythm */
  --pad-x: clamp(20px, 4vw, 64px);
  --section-y: clamp(80px, 11vw, 160px);
  --rule-w: 1px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02";
  font-variant-numeric: lining-nums;
  text-wrap: pretty;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- Type roles ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--mute);
  font-weight: 500;
}
.display {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  font-variation-settings: "wdth" 95, "opsz" 32;
}
.h1 { font-size: clamp(48px, 7.5vw, 116px); }
.h2 { font-size: clamp(40px, 5.6vw, 84px); }
.h3 { font-size: clamp(28px, 3.4vw, 48px); line-height: 1.05; }
.h4 { font-size: clamp(22px, 2.2vw, 32px); line-height: 1.15; letter-spacing: -0.018em; }
.kicker {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.body { font-size: 17px; line-height: 1.6; color: var(--ink-2); }
.body-lg { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.55; color: var(--ink-2); }
.fineprint { font-size: 13px; color: var(--mute); }

/* ---------- Layout ---------- */
.shell {
  max-width: 1480px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); position: relative; scroll-margin-top: 72px; }
.section + .section { padding-top: 0; }
.hero { scroll-margin-top: 0; }

.section-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding-bottom: clamp(40px, 6vw, 80px);
  border-bottom: var(--rule-w) solid var(--rule);
}
.section-head .meta { display: flex; flex-direction: column; gap: 6px; padding-top: 6px; }
.section-head .meta .section-num { color: var(--leaf-2); }
.section-head .meta .label { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); font-weight: 500; }

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  transition: background .35s var(--ease), color .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
  color: var(--paper);
}
.nav.is-scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  color: var(--ink);
  border-bottom-color: var(--rule);
}
.nav__brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 500; letter-spacing: -.01em; font-size: 17px; }
.nav__brand .mark {
  width: 28px; height: 28px; border-radius: 5px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; font-size: 15px;
  letter-spacing: -0.04em;
  position: relative;
}
.nav__brand .mark::after {
  content: ""; position: absolute; top: 5px; right: 5px;
  width: 7px; height: 7px; border-radius: 50% 0 60% 0;
  background: var(--leaf);
  transform: rotate(35deg);
}
.nav.is-scrolled .nav__brand .mark { background: var(--ink); }
.nav__links { display: flex; gap: 28px; align-items: center; font-size: 14px; }
.nav__links a { opacity: .85; transition: opacity .2s var(--ease); }
.nav__links a:hover { opacity: 1; }
.nav__cta {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 16px; border: 1px solid currentColor; border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav.is-scrolled .nav__cta:hover { background: var(--ink); color: var(--paper); }
.nav:not(.is-scrolled) .nav__cta:hover { background: var(--paper); color: var(--ink); }
/* Mobile burger (hidden on desktop) */
.nav__burger { display: none; }
.nav__cta--desktop { display: inline-flex; }
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__cta--desktop { display: none; }
  .nav__burger {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 44px; height: 44px;
    margin-right: -8px;
    color: inherit;
    border-radius: 999px;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
  }
  .nav__burger-bars { position: relative; width: 22px; height: 14px; display: block; }
  .nav__burger-bars span {
    position: absolute; left: 0; right: 0; height: 1.5px;
    background: currentColor; border-radius: 2px;
    transition: transform .35s var(--ease), opacity .25s var(--ease), top .35s var(--ease);
  }
  .nav__burger-bars span:nth-child(1) { top: 0; }
  .nav__burger-bars span:nth-child(2) { top: 6px; }
  .nav__burger-bars span:nth-child(3) { top: 12px; }
  .nav__burger-bars.x span:nth-child(1) { top: 6px; transform: rotate(45deg); }
  .nav__burger-bars.x span:nth-child(2) { opacity: 0; }
  .nav__burger-bars.x span:nth-child(3) { top: 6px; transform: rotate(-45deg); }
  .nav.is-open { color: var(--ink); background: var(--paper); border-bottom-color: var(--rule); }
}

/* Mobile sheet menu */
.nav__sheet {
  position: fixed; inset: 0;
  z-index: 49;
  background: var(--paper);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  display: flex; align-items: stretch; justify-content: stretch;
  padding-top: 76px;
  padding-left: var(--pad-x); padding-right: var(--pad-x);
  padding-bottom: max(32px, env(safe-area-inset-bottom));
}
.nav__sheet.is-open { opacity: 1; pointer-events: auto; }
.nav__sheet-inner { display: flex; flex-direction: column; justify-content: space-between; flex: 1; padding-top: 32px; }
.nav__sheet-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.nav__sheet-list li { opacity: 0; transform: translateY(12px); transition: opacity .35s var(--ease), transform .35s var(--ease); border-bottom: 1px solid var(--rule); }
.nav__sheet.is-open .nav__sheet-list li { opacity: 1; transform: translateY(0); }
.nav__sheet-list a {
  display: grid; grid-template-columns: 44px 1fr;
  align-items: baseline; gap: 16px;
  padding: 22px 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.02em;
}
.nav__sheet-list .n { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--leaf-2); align-self: center; }
.nav__sheet-list .t { font-size: clamp(28px, 7vw, 40px); line-height: 1; }
.nav__sheet-cta { align-self: flex-start; margin-top: 24px; }
@media (min-width: 821px) { .nav__sheet { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn .arr { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translate(2px,-2px); }
.btn--primary { background: var(--paper); color: var(--ink); }
.btn--primary:hover { background: var(--leaf); color: var(--paper); }
.btn--ghost { color: var(--paper); border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { border-color: var(--paper); background: rgba(255,255,255,.08); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--leaf-2); }
.btn--outline { color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--paper);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media image-slot {
  width: 100%; height: 100%;
  --is-bg: #1d2a20;
  --is-ink: rgba(255,255,255,.85);
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,36,26,.55) 0%, rgba(20,36,26,.15) 30%, rgba(20,36,26,.25) 60%, rgba(20,36,26,.85) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: 100px; padding-bottom: 56px;
  gap: 24px;
}
.hero__eyebrow-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.hero__eyebrow-row .eyebrow { color: rgba(255,255,255,.85); }
.hero__eyebrow-row .meta { display: flex; gap: 24px; align-items: center; }
.hero__headline {
  align-self: end;
  max-width: 16ch;
}
.hero__headline .display {
  font-size: clamp(56px, 9.5vw, 156px);
  line-height: .92;
  font-weight: 500;
  letter-spacing: -.035em;
  font-variation-settings: "wdth" 90, "opsz" 96;
}
.hero__headline .display em {
  font-style: normal;
  color: var(--leaf);
  font-variation-settings: "wdth" 110, "opsz" 96;
  font-weight: 400;
}
.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero__lead {
  max-width: 52ch;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.5;
  color: rgba(255,255,255,.88);
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; right: var(--pad-x); top: 50%;
  transform: translateY(-50%) rotate(90deg); transform-origin: right center;
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: 10px;
  z-index: 2;
}
.hero__scroll::after { content: ""; width: 40px; height: 1px; background: currentColor; }
@media (max-width: 820px) {
  .hero__scroll { display: none; }
  .hero__bottom { grid-template-columns: 1fr; padding-top: 32px; }
  .hero__inner { padding-top: 88px; padding-bottom: 40px; gap: 18px; }
  .hero__eyebrow-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__eyebrow-row .meta { gap: 14px; }
  .hero__headline .display { letter-spacing: -.03em; }
  .hero__ctas { width: 100%; }
  .hero__ctas .btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 480px) {
  .hero__headline { max-width: none; }
  .hero__headline .display { font-size: clamp(48px, 13vw, 80px); }
  .hero__eyebrow-row .meta .eyebrow:nth-child(2) { display: none; }
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal--lg { transform: translateY(40px); }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }

/* ---------- About ---------- */
.about { background: var(--paper); }
.about__title { max-width: 14ch; }
.about__title em { font-style: normal; color: var(--leaf-2); font-variation-settings: "wdth" 110, "opsz" 96; }
.about__grid {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding-top: clamp(40px, 5vw, 72px);
}
.about__grid .body-lg p + p { margin-top: 1em; }
.about__grid .lead { font-family: var(--display); font-size: clamp(22px, 2vw, 30px); line-height: 1.25; letter-spacing: -.015em; color: var(--ink); }
.about__chips {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 8px 10px;
  padding-top: clamp(32px, 4vw, 56px);
  margin-top: clamp(32px, 4vw, 56px);
  border-top: 1px solid var(--rule);
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--rule-2); border-radius: 999px;
  font-size: 13px; color: var(--ink-2);
  background: var(--paper);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.chip:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--leaf); }
@media (max-width: 920px) {
  .about__grid { grid-template-columns: 1fr; padding-top: clamp(28px, 6vw, 56px); }
  .about__grid > div:first-child { display: none; }
}

/* ---------- Ecosystem ---------- */
.eco { background: var(--bone); padding-bottom: var(--section-y); }
.eco .section-head { border-bottom-color: var(--rule-2); }
.eco__intro {
  max-width: 60ch;
  padding-top: clamp(40px, 5vw, 72px);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.45;
  letter-spacing: -.012em;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
}
.eco__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--rule-2);
  border-left: 1px solid var(--rule-2);
}
.eco__cell {
  border-right: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  padding: clamp(24px, 2.6vw, 40px);
  background: var(--bone);
  transition: background .35s var(--ease);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.eco__cell:hover { background: var(--paper); }
.eco__cell:hover .eco__num { color: var(--leaf-2); }
.eco__cell:hover .eco__icon-wrap { transform: translateY(-2px); }
.eco__num { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--mute); transition: color .3s var(--ease); }
.eco__icon-wrap {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--ink);
  transition: transform .35s var(--ease);
}
.eco__icon-wrap svg { width: 28px; height: 28px; }
.eco__title { font-family: var(--display); font-size: clamp(22px, 1.7vw, 26px); line-height: 1.15; letter-spacing: -.018em; font-weight: 500; color: var(--ink); }
.eco__copy { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin-top: auto; }
@media (max-width: 920px) { .eco__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .eco__grid { grid-template-columns: 1fr; } }

/* ---------- Strategy ---------- */
.strat { background: var(--ink); color: var(--paper); }
.strat .section-head { border-bottom-color: rgba(255,255,255,.15); }
.strat .section-head .meta .section-num { color: var(--leaf); }
.strat .section-head .meta .label { color: rgba(255,255,255,.7); }
.strat .display { color: var(--paper); }
.strat .display em { font-style: normal; color: var(--leaf); font-variation-settings: "wdth" 110, "opsz" 96; }
.strat__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(56px, 7vw, 96px);
  border-top: 1px solid rgba(255,255,255,.18);
}
.strat__step {
  padding: clamp(24px, 2.4vw, 36px) clamp(20px, 2vw, 28px) clamp(40px, 5vw, 64px);
  border-right: 1px solid rgba(255,255,255,.18);
  display: flex; flex-direction: column; gap: 28px;
  position: relative;
  min-height: 360px;
}
.strat__step:last-child { border-right: 0; }
.strat__step-num {
  font-family: var(--display); font-weight: 500; font-size: clamp(56px, 6vw, 88px);
  line-height: 1; letter-spacing: -.04em;
  color: var(--paper);
  font-variation-settings: "wdth" 80, "opsz" 96;
}
.strat__step-num em { font-style: normal; color: var(--leaf); font-size: .35em; vertical-align: top; margin-left: 2px; font-family: var(--mono); letter-spacing: 0; font-weight: 500; }
.strat__step-title { font-family: var(--display); font-size: clamp(20px, 1.6vw, 24px); font-weight: 500; line-height: 1.2; letter-spacing: -.012em; }
.strat__step-copy { font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.72); margin-top: auto; }
.strat__step-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--leaf);
}
@media (max-width: 920px) {
  .strat__steps { grid-template-columns: 1fr 1fr; }
  .strat__step { border-bottom: 1px solid rgba(255,255,255,.18); }
  .strat__step:nth-child(2n) { border-right: 0; }
}
@media (max-width: 600px) {
  .strat__steps { grid-template-columns: 1fr; }
  .strat__step { border-right: 0; min-height: 0; }
}

/* ---------- Benefits (Vertical integration) ---------- */
.bene { background: var(--paper); }
.bene__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--rule);
}
.bene__row {
  display: contents;
}
.bene__item {
  padding: clamp(28px, 3vw, 44px) 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 2vw, 32px);
  align-items: start;
  padding-right: clamp(20px, 3vw, 48px);
}
.bene__item:nth-child(odd) { border-right: 1px solid var(--rule); padding-right: clamp(20px, 3vw, 48px); }
.bene__item:nth-child(even) { padding-left: clamp(20px, 3vw, 48px); padding-right: 0; }
.bene__num { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--leaf-2); padding-top: 6px; }
.bene__title { font-family: var(--display); font-size: clamp(22px, 1.8vw, 28px); line-height: 1.15; letter-spacing: -.018em; font-weight: 500; margin-bottom: 10px; }
.bene__copy { font-size: 15px; line-height: 1.55; color: var(--ink-2); }
@media (max-width: 820px) {
  .bene__item { grid-template-columns: 60px 1fr; padding-left: 0 !important; padding-right: 0 !important; border-right: 0 !important; }
  .bene__grid { grid-template-columns: 1fr; }
}

/* ---------- Portfolio ---------- */
.port { background: var(--bone); }
.port .section-head { border-bottom-color: var(--rule-2); }
.port__lede {
  max-width: 60ch;
  padding-top: clamp(32px, 4vw, 56px);
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.4;
  letter-spacing: -.012em;
  color: var(--ink);
  font-weight: 400;
}
.port__bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
  margin-top: clamp(48px, 6vw, 72px);
}
.port__tile {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  border-radius: 2px;
}
.port__tile image-slot { width: 100%; height: 100%; --is-bg: #1d2a20; --is-ink: rgba(255,255,255,.7); }
.port__tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,36,26,.85));
  pointer-events: none;
}
.port__tile-meta {
  position: absolute; left: 16px; right: 16px; bottom: 14px;
  z-index: 2;
  display: flex; align-items: end; justify-content: space-between; gap: 12px;
}
.port__tile-cap { font-family: var(--display); font-size: 18px; line-height: 1.15; letter-spacing: -.012em; max-width: 18ch; }
.port__tile-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.7); }

/* Bento spans */
.port__tile.t-1 { grid-column: span 4; grid-row: span 2; }
.port__tile.t-2 { grid-column: span 2; grid-row: span 1; }
.port__tile.t-3 { grid-column: span 2; grid-row: span 1; }
.port__tile.t-4 { grid-column: span 2; grid-row: span 2; }
.port__tile.t-5 { grid-column: span 2; grid-row: span 1; }
.port__tile.t-6 { grid-column: span 2; grid-row: span 1; }
@media (max-width: 920px) {
  .port__bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .port__tile.t-1, .port__tile.t-2, .port__tile.t-3, .port__tile.t-4, .port__tile.t-5, .port__tile.t-6 {
    grid-column: span 2; grid-row: span 1;
  }
  .port__tile.t-1 { grid-row: span 2; }
}

/* ---------- Markets ---------- */
.mkts { background: var(--paper); }
.mkts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  margin-top: clamp(48px, 6vw, 80px);
}
.mkts__list { display: flex; flex-direction: column; }
.mkts__row {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  gap: 24px;
  padding: clamp(20px, 2.2vw, 32px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  cursor: pointer;
  transition: padding-left .35s var(--ease);
}
.mkts__row:hover { padding-left: 12px; }
.mkts__row:hover .mkts__name { color: var(--leaf-2); }
.mkts__row:hover .mkts__arr { transform: translateX(4px); color: var(--leaf-2); }
.mkts__row:first-child { border-top: 1px solid var(--rule); }
.mkts__num { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; color: var(--mute); }
.mkts__name { font-family: var(--display); font-size: clamp(28px, 3vw, 44px); font-weight: 500; line-height: 1; letter-spacing: -.022em; transition: color .3s var(--ease); }
.mkts__region { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); }
.mkts__arr { width: 22px; height: 22px; color: var(--ink); transition: transform .3s var(--ease), color .3s var(--ease); }

.mkts__panel {
  position: sticky; top: 100px;
  padding: clamp(28px, 3vw, 44px);
  background: var(--bone);
  border: 1px solid var(--rule-2);
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 24px;
  min-height: 380px;
}
.mkts__panel-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--leaf-2); }
.mkts__panel-name { font-family: var(--display); font-size: clamp(36px, 4vw, 52px); font-weight: 500; line-height: 1; letter-spacing: -.024em; }
.mkts__panel-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 16px; border-top: 1px solid var(--rule-2); }
.mkts__panel-stat { display: flex; flex-direction: column; gap: 4px; }
.mkts__panel-stat .v { font-family: var(--display); font-size: clamp(20px, 1.7vw, 26px); font-weight: 500; letter-spacing: -.015em; line-height: 1; }
.mkts__panel-stat .l { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); }
.mkts__panel-copy { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.mkts__panel-img { aspect-ratio: 16/10; background: var(--ink); border-radius: 2px; overflow: hidden; }
.mkts__panel-img image-slot { width: 100%; height: 100%; --is-bg: #1d2a20; --is-ink: rgba(255,255,255,.7); }

@media (max-width: 920px) {
  .mkts__grid { grid-template-columns: 1fr; }
  .mkts__panel { position: static; }
}

/* ---------- Investor ---------- */
.inv {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.inv::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 80% 20%, rgba(111,175,61,.18), transparent 70%);
  pointer-events: none;
}
.inv .shell { position: relative; z-index: 1; }
.inv .section-head { border-bottom-color: rgba(255,255,255,.15); }
.inv .section-head .meta .section-num { color: var(--leaf); }
.inv .section-head .meta .label { color: rgba(255,255,255,.7); }
.inv__title { color: var(--paper); }
.inv__title em { font-style: normal; color: var(--leaf); font-variation-settings: "wdth" 110, "opsz" 96; }
.inv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  padding-top: clamp(48px, 6vw, 80px);
  align-items: start;
}
.inv__copy {
  font-size: clamp(17px, 1.3vw, 20px); line-height: 1.55; color: rgba(255,255,255,.85);
}
.inv__list { display: flex; flex-direction: column; gap: 0; margin-top: 20px; border-top: 1px solid rgba(255,255,255,.15); }
.inv__list-item {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 16px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.15);
}
.inv__list-item .n { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--leaf); }
.inv__list-item .t { font-family: var(--display); font-size: clamp(18px, 1.4vw, 22px); font-weight: 500; letter-spacing: -.01em; }
.inv__list-item .arr { color: rgba(255,255,255,.5); width: 18px; height: 18px; }
.inv__cta-block {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 24px;
}
.inv__cta-block h3 { font-family: var(--display); font-size: clamp(24px, 2.4vw, 36px); font-weight: 500; line-height: 1.1; letter-spacing: -.018em; margin: 0; }
.inv__cta-block .row { display: flex; gap: 12px; flex-wrap: wrap; }
.inv__cta-block .field {
  display: flex; flex-direction: column; gap: 6px;
}
.inv__cta-block label { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.inv__cta-block input {
  background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.3);
  color: var(--paper); font-family: var(--sans); font-size: 15px;
  padding: 10px 0; outline: none;
  transition: border-color .25s var(--ease);
}
.inv__cta-block input:focus { border-color: var(--leaf); }
.inv__cta-block input::placeholder { color: rgba(255,255,255,.4); }
@media (max-width: 920px) { .inv__grid { grid-template-columns: 1fr; } }

/* ---------- Philosophy ---------- */
.phil { background: var(--bone); }
.phil__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: center;
}
.phil__media {
  aspect-ratio: 4/5;
  background: var(--ink);
  overflow: hidden;
  border-radius: 2px;
}
.phil__media image-slot { width: 100%; height: 100%; --is-bg: #1d2a20; --is-ink: rgba(255,255,255,.7); }
.phil__body { display: flex; flex-direction: column; gap: 24px; }
.phil__quote {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.15;
  letter-spacing: -.022em;
  font-weight: 500;
  color: var(--ink);
}
.phil__quote em { font-style: normal; color: var(--leaf-2); font-variation-settings: "wdth" 110, "opsz" 96; }
.phil__attrib { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); display: flex; align-items: center; gap: 12px; }
.phil__attrib::before { content: ""; width: 24px; height: 1px; background: var(--mute); }
.phil__copy { font-size: 16px; line-height: 1.6; color: var(--ink-2); max-width: 56ch; }
@media (max-width: 920px) { .phil__inner { grid-template-columns: 1fr; } .phil__media { aspect-ratio: 16/10; } }

/* ---------- Footer ---------- */
.foot {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: 40px;
}
.foot__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.foot__brand { color: var(--paper); font-family: var(--display); font-size: 28px; font-weight: 500; letter-spacing: -.02em; line-height: 1; }
.foot__brand .leaf { color: var(--leaf); }
.foot__tag { margin-top: 16px; max-width: 36ch; font-size: 14px; }
.foot__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 18px; font-weight: 500; }
.foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot__col a { color: var(--paper); font-size: 15px; transition: color .2s var(--ease); }
.foot__col a:hover { color: var(--leaf); }
.foot__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap; gap: 16px;
}
@media (max-width: 820px) { .foot__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__top { grid-template-columns: 1fr; } }

/* ---------- Tweak / variant overrides ---------- */
body[data-density="compact"] { --section-y: clamp(56px, 8vw, 110px); }
body[data-accent="moss"]  { --leaf: #6FAF3D; --leaf-2: #4A8228; }
body[data-accent="forest"] { --leaf: #4F8F2A; --leaf-2: #2F6314; }
body[data-accent="ochre"] { --leaf: #C99A3D; --leaf-2: #8E6A1F; }
body[data-accent="ink"]   { --leaf: #1A2E22; --leaf-2: #0E1B13; }

body[data-bg="paper"] { --paper-actual: var(--paper); }
body[data-bg="bone"]  { background: var(--bone); }
body[data-bg="bone"] .about, body[data-bg="bone"] .bene, body[data-bg="bone"] .mkts { background: var(--bone); }

/* ---------- Interlude ---------- */
.interlude {
  position: relative;
  height: clamp(360px, 60vh, 620px);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.interlude__media { position: absolute; inset: 0; z-index: 0; }
.interlude__media image-slot { display: block; width: 100%; height: 100%; }
.interlude__media img { transform: scale(1.04); transition: transform 1.6s var(--ease); }
.interlude.in .interlude__media img { transform: scale(1); }
.interlude__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.interlude__caption {
  position: absolute; left: 0; right: 0; bottom: clamp(28px, 5vw, 56px);
  z-index: 2;
  color: var(--paper);
}
.interlude__caption .eyebrow { color: rgba(255,255,255,.85); display: block; margin-bottom: 10px; }
.interlude__caption p {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.25;
  letter-spacing: -.015em;
  max-width: 38ch;
  margin: 0;
  color: var(--paper);
}

/* --------- Utility --------- */
.divider { height: 1px; background: var(--rule); margin: 0; border: 0; }
.spacer-lg { height: clamp(64px, 8vw, 112px); }

/* --------- Accessibility --------- */
:focus-visible {
  outline: 2px solid var(--leaf-2);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > *, .interlude__media img,
  .nav__sheet-list li, .nav, .btn, .chip, .eco__cell,
  .mkts__row, .mkts__arr {
    transition: none !important;
    animation: none !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* --------- Mobile-specific tightening --------- */
@media (max-width: 600px) {
  :root { --section-y: clamp(64px, 14vw, 110px); --pad-x: clamp(18px, 5vw, 28px); }
  .h2 { font-size: clamp(34px, 9vw, 56px); }
  .btn { padding: 14px 18px; font-size: 10.5px; }
  .strat__step-num { font-size: clamp(40px, 12vw, 64px); }
  .eco__cell { min-height: 0; padding: 24px 20px; }
  .bene__item { padding: 22px 0; }
  .mkts__row { grid-template-columns: 36px 1fr 18px; gap: 14px; padding: 18px 0; }
  .mkts__row .mkts__region { display: none; }
  .mkts__panel { padding: 24px; min-height: 0; }
  .mkts__panel-stats { gap: 14px; }
  .inv__cta-block { padding: 24px; }
  .inv__list-item { grid-template-columns: 32px 1fr 16px; gap: 12px; padding: 16px 0; }
  .foot { padding-bottom: max(32px, env(safe-area-inset-bottom)); }
  .foot__bottom { font-size: 10px; }
  .interlude { height: clamp(280px, 70vw, 420px); }
}
