/* ============================================================
   Chartvalor AG — Institutional redesign
   Aesthetic: Swiss private wealth / hedge-fund editorial
   Type:      Newsreader (serif display) · IBM Plex Sans (body)
              · IBM Plex Mono (figures / labels)
   ============================================================ */

:root {
  /* ——— palette ——— */
  --bg-0:   #081220;   /* deep navy */
  --bg-1:   #0B1A2E;
  --bg-2:   #0F223B;
  --panel:  #122842;
  --line:   #1E3250;
  --line-2: #2A3F5E;
  --ivory:  #F2EDE3;
  --ivory-2:#D9D2C4;
  --slate:  #8A94A6;
  --slate-2:#5A6478;
  --gold:   #C9A96E;
  --gold-2: #E0C48E;
  --pos:    #7FA87F;
  --neg:    #C77B5C;

  /* ——— type ——— */
  --f-serif: "Newsreader", "Source Serif 4", Georgia, serif;
  --f-sans:  "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --f-mono:  "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* ——— layout ——— */
  --max: 1400px;
  --pad: clamp(20px, 4vw, 64px);
  --hair: 1px solid var(--line);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  background: var(--bg-0);
  color: var(--ivory);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(201,169,110,.08), transparent 60%),
    radial-gradient(1400px 800px at -10% 20%, rgba(201,169,110,.04), transparent 60%),
    linear-gradient(180deg, #0A1828 0%, #081220 40%, #060E1A 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Fine-grain dot grid overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .22;
  background-image: radial-gradient(circle at 1px 1px, rgba(201,169,110,.22) .5px, transparent 0);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.1) 40%, transparent 85%);
}

/* Film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1,h2,h3,h4,h5 { margin: 0; font-weight: 400; font-family: var(--f-serif); }
p  { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; color: var(--gold-2); font-family: var(--f-serif); }
address { font-style: normal; }

/* ——— helpers ——— */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 1; }
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }
.mono { font-family: var(--f-mono); }
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.pos { color: var(--pos); }
.neg { color: var(--neg); }

/* ============================================================
   TOP STRIP — utility + ticker
   ============================================================ */
.topstrip {
  border-bottom: var(--hair);
  background: rgba(6, 14, 26, .65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.util {
  border-bottom: 1px solid rgba(30, 50, 80, .5);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
}
.util__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 9px var(--pad);
  display: flex;
  align-items: center;
  gap: 24px;
}
.util__loc { display: inline-flex; align-items: center; gap: 10px; }
.util__loc .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,169,110,.6);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201,169,110,.55); }
  70% { box-shadow: 0 0 0 7px rgba(201,169,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
}
.util__clock { margin-left: auto; color: var(--ivory-2); }
.util__reg { color: var(--slate-2); }
.util__sep { color: var(--line-2); }

/* Ticker */
.ticker {
  position: relative;
  overflow: hidden;
  height: 34px;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 96px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(to right, #060E1A, transparent); }
.ticker::after { right: 0; background: linear-gradient(to left, #060E1A, transparent); }
.ticker__track {
  display: flex;
  align-items: center;
  gap: 38px;
  height: 100%;
  white-space: nowrap;
  animation: ticker 90s linear infinite;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .03em;
  color: var(--ivory-2);
  padding-left: 100%;
}
.ticker__track:hover { animation-play-state: paused; }
.tk { display: inline-flex; align-items: center; gap: 10px; }
.tk b { color: var(--ivory); font-weight: 500; }
.tk .sep { color: var(--line-2); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HEADER / PRIMARY NAV
   ============================================================ */
.site-hdr {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 40;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ivory);
}
.brand__mark {
  width: 36px; height: 36px;
  color: var(--gold);
  transition: transform .8s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-6deg); }
.brand__word {
  font-family: var(--f-serif);
  font-size: 22px;
  letter-spacing: -.01em;
  font-weight: 500;
}
.brand__word i {
  font-style: italic;
  color: var(--slate);
  font-weight: 400;
  font-size: .78em;
  margin-left: 2px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ivory-2);
}
.site-nav a {
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.site-nav a:hover,
.site-nav a.is-active { color: var(--gold); }
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }

.locale {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--slate);
  border: var(--hair);
  border-radius: 2px;
  overflow: hidden;
}
.loc {
  padding: 7px 12px;
  border-right: var(--hair);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.loc:last-child { border-right: 0; }
.loc:hover { color: var(--ivory); background: rgba(201,169,110,.06); }
.loc.on { color: var(--gold); background: rgba(201,169,110,.08); }

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ivory);
  border: var(--hair);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.cta-ghost:hover {
  background: var(--gold);
  color: var(--bg-0);
  border-color: var(--gold);
}
.cta-ghost .arr { transition: transform .4s var(--ease); }
.cta-ghost:hover .arr { transform: translateX(4px); }

.cta-solid {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg-0);
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.cta-solid:hover { background: var(--gold-2); transform: translateY(-1px); }
.cta-solid .arr { transition: transform .4s var(--ease); }
.cta-solid:hover .arr { transform: translateX(4px); }

/* ============================================================
   PAGE TITLE BLOCK (sub-pages)
   ============================================================ */
.page-title {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 140px) var(--pad) clamp(40px, 6vw, 72px);
  position: relative;
  border-bottom: var(--hair);
}
.page-title .crumb {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 32px;
}
.page-title .crumb a { color: var(--slate); }
.page-title .crumb a:hover { color: var(--gold); }
.page-title .crumb .sep { color: var(--line-2); margin: 0 12px; }
.page-title h1 {
  font-size: clamp(48px, 8vw, 128px);
  line-height: .92;
  letter-spacing: -.03em;
  color: var(--ivory);
  font-weight: 400;
  max-width: 16ch;
  text-wrap: balance;
}
.page-title h1 em { color: var(--gold-2); font-style: italic; }
.page-title .lede {
  margin-top: 32px;
  font-family: var(--f-serif);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--ivory-2);
  max-width: 58ch;
  font-weight: 300;
}
.page-title .meta {
  position: absolute;
  right: var(--pad);
  top: 60%;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate-2);
  text-align: right;
  line-height: 1.8;
}
@media (max-width: 900px) { .page-title .meta { display: none; } }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(50px, 7vw, 110px) var(--pad) clamp(70px, 9vw, 150px);
  position: relative;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
}
.hero__meta .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero__meta .regs { color: var(--slate-2); }

.hero__h {
  font-family: var(--f-serif);
  font-size: clamp(56px, 10.5vw, 176px);
  line-height: .9;
  letter-spacing: -.03em;
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 60px;
  text-wrap: balance;
}
.hero__h span { display: block; opacity: 0; transform: translateY(28px); animation: rise 1.2s var(--ease) forwards; }
.hero__h span:nth-child(1) { animation-delay: .05s; }
.hero__h span:nth-child(2) { animation-delay: .15s; }
.hero__h span:nth-child(3) { animation-delay: .25s; }
.hero__h em {
  font-style: italic;
  color: var(--gold-2);
  padding-left: .3em;
}
@keyframes rise { to { opacity: 1; transform: none; } }

.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  border-top: var(--hair);
  padding-top: 40px;
}
.hero__lede {
  font-family: var(--f-serif);
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--ivory-2);
  max-width: 56ch;
  font-weight: 300;
}
.hero__lede em { color: var(--gold-2); }

/* KPI strip */
.kpi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: var(--hair);
  border-top: var(--hair);
}
.kpi__c {
  padding: 22px 24px;
  border-right: var(--hair);
  border-bottom: var(--hair);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  min-height: 130px;
  background: linear-gradient(180deg, rgba(201,169,110,.015), transparent);
}
.kpi__lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
}
.kpi__v {
  font-family: var(--f-serif);
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1;
  color: var(--ivory);
  letter-spacing: -.02em;
}
.kpi__v small { font-size: .42em; color: var(--slate); padding-left: 4px; font-style: italic; font-family: var(--f-serif); }

/* Hero ornament */
.hero__ornament {
  position: absolute;
  right: calc(-1 * var(--pad) - 120px);
  top: 40px;
  width: min(720px, 65vw);
  opacity: .5;
  pointer-events: none;
  animation: rotate 180s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
@media (max-width: 900px) { .hero__ornament { display: none; } }

/* ============================================================
   HOME — PRINCIPLES strip
   ============================================================ */
.principles {
  border-top: var(--hair);
  padding: clamp(70px, 9vw, 120px) 0;
  position: relative;
}
.principles::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--bg-0), 0 0 0 7px var(--line-2);
}
.principles .sec-head { margin-bottom: clamp(56px, 6vw, 96px); }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--hair);
}
.pillar {
  padding: 48px 44px 48px 0;
  border-right: var(--hair);
}
.pillar:last-child { border-right: 0; padding-right: 0; }
.pillar + .pillar { padding-left: 44px; }
.pillar__n {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}
.pillar h3 {
  font-size: 32px;
  line-height: 1;
  color: var(--ivory);
  margin-bottom: 22px;
  letter-spacing: -.01em;
}
.pillar p {
  font-size: 15px;
  line-height: 1.62;
  color: var(--ivory-2);
  max-width: 34ch;
}

/* ============================================================
   SECTION HEADS
   ============================================================ */
.sec-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.sec-head .eyebrow { margin-bottom: 24px; }
.sec-head h2 {
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: .96;
  letter-spacing: -.025em;
  color: var(--ivory);
  max-width: 18ch;
  text-wrap: balance;
}
.sec-head h2 em { color: var(--gold-2); font-style: italic; }
.sec-head.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.sec-head.split .sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ivory-2);
  max-width: 48ch;
  padding-bottom: 10px;
}

/* ============================================================
   SERVICES LIST
   ============================================================ */
.services {
  border-top: var(--hair);
  padding: clamp(70px, 9vw, 130px) 0;
}
.services .mandates {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  margin-top: clamp(48px, 6vw, 80px);
}
.m {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 40px;
  padding: 40px 0;
  border-top: var(--hair);
  align-items: baseline;
  transition: padding .6s var(--ease), background .4s var(--ease);
}
.m:last-child { border-bottom: var(--hair); }
.m:hover { padding-left: 24px; padding-right: 24px; background: rgba(201,169,110,.025); }
.m:hover .m__n { color: var(--gold); }
.m:hover .m__h { color: var(--gold-2); }
.m__n {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--slate);
  padding-top: 12px;
  transition: color .5s var(--ease);
}
.m__h {
  font-family: var(--f-serif);
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 14px;
  letter-spacing: -.015em;
  transition: color .5s var(--ease);
}
.m__body p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ivory-2);
  max-width: 60ch;
}
.m__cta {
  text-align: right;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
  padding-top: 14px;
}
.m__cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ivory);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 4px;
  transition: color .3s, border-color .3s;
}
.m__cta a:hover { color: var(--gold); border-color: var(--gold); }

/* Services detail blocks (services.html) */
.svc-detail {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.svc {
  padding: clamp(60px, 7vw, 100px) 0;
  border-top: var(--hair);
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.svc:last-child { border-bottom: var(--hair); }
.svc__side {
  position: sticky;
  top: 120px;
}
.svc__n {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.svc__tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
}
.svc__h {
  font-family: var(--f-serif);
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1;
  color: var(--ivory);
  margin-bottom: 28px;
  letter-spacing: -.02em;
}
.svc__body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ivory-2);
  margin-bottom: 22px;
  max-width: 60ch;
}
.svc__body ul {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.svc__body li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: baseline;
  font-size: 15.5px;
  color: var(--ivory-2);
  line-height: 1.55;
}
.svc__body li::before {
  content: "→";
  color: var(--gold);
  font-family: var(--f-serif);
  font-size: 18px;
  line-height: 1;
}

/* ============================================================
   TEAM GRID
   ============================================================ */
.team-sec {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--pad);
}
.team-head {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.team-head h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  color: var(--ivory);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: var(--hair);
  border-left: var(--hair);
}
.member {
  padding: 32px 28px 28px;
  border-right: var(--hair);
  border-bottom: var(--hair);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  position: relative;
  background: linear-gradient(180deg, rgba(201,169,110,.01), transparent);
  transition: background .5s var(--ease);
}
.member:hover {
  background: linear-gradient(180deg, rgba(201,169,110,.05), rgba(201,169,110,.01));
}
.member__mono {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-size: 28px;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, rgba(201,169,110,.12), rgba(201,169,110,.02));
  letter-spacing: -.02em;
}
.member__name {
  font-family: var(--f-serif);
  font-size: 21px;
  line-height: 1.1;
  color: var(--ivory);
  letter-spacing: -.01em;
  margin-top: 4px;
}
.member__role {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ivory-2);
  flex: 1;
}
.member__phone {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--slate);
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  transition: color .3s var(--ease);
}
.member:hover .member__phone { color: var(--gold); }
.member__tag {
  position: absolute;
  top: 20px; right: 22px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-2);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--pad);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  border-bottom: var(--hair);
}
.about-intro__lead p {
  font-family: var(--f-serif);
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.58;
  color: var(--ivory-2);
  max-width: 58ch;
  margin-bottom: 22px;
  font-weight: 300;
}
.about-intro__lead p:first-of-type::first-letter {
  font-size: 4.2em;
  line-height: .85;
  float: left;
  padding: 8px 14px 0 0;
  color: var(--gold);
  font-weight: 400;
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: var(--hair);
  border-left: var(--hair);
}
.about-facts figure {
  margin: 0;
  padding: 28px 24px;
  border-right: var(--hair);
  border-bottom: var(--hair);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 140px;
  justify-content: space-between;
}
.about-facts figcaption {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
}
.about-facts .stat {
  font-family: var(--f-serif);
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1;
  color: var(--ivory);
  letter-spacing: -.02em;
}
.about-facts .stat i {
  font-size: .42em;
  color: var(--slate);
  font-style: italic;
  padding-left: 4px;
}

.about-sections {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--pad);
}
.about-row {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: clamp(40px, 5vw, 80px);
  padding: 48px 0;
  border-top: var(--hair);
  align-items: start;
}
.about-row:last-child { border-bottom: var(--hair); }
.about-row__idx {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-row h3 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 20px;
  letter-spacing: -.015em;
}
.about-row p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ivory-2);
  max-width: 62ch;
  margin-bottom: 16px;
}

/* ============================================================
   FUND PAGE
   ============================================================ */
.fund {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--pad);
}
.fund__hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  border-bottom: var(--hair);
  padding-bottom: clamp(48px, 6vw, 80px);
  align-items: end;
}
.fund__tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.fund__name {
  font-family: var(--f-serif);
  font-size: clamp(48px, 7vw, 112px);
  line-height: .92;
  letter-spacing: -.028em;
  color: var(--ivory);
  margin-bottom: 28px;
}
.fund__name em { color: var(--gold-2); font-style: italic; }
.fund__desc {
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ivory-2);
  max-width: 56ch;
  font-weight: 300;
}
.fund__side {
  display: grid;
  gap: 0;
  border-top: var(--hair);
  border-left: var(--hair);
}
.fund__side .kv {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  padding: 16px 18px;
  border-right: var(--hair);
  border-bottom: var(--hair);
  font-family: var(--f-mono);
  font-size: 12px;
  gap: 20px;
}
.fund__side .kv span {
  color: var(--slate);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.fund__side .kv b {
  color: var(--ivory);
  font-weight: 400;
  font-family: var(--f-sans);
  font-size: 14px;
}

.fund__perf {
  padding: clamp(56px, 7vw, 90px) 0;
  border-bottom: var(--hair);
}
.perf-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.perf-head h2 {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -.02em;
  color: var(--ivory);
  line-height: 1;
}
.perf-head .note {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  max-width: 36ch;
  text-align: right;
}
.perf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--hair);
  border-left: var(--hair);
}
.perf-cell {
  border-right: var(--hair);
  border-bottom: var(--hair);
  padding: 32px 30px 28px;
  background: linear-gradient(180deg, rgba(201,169,110,.03), transparent);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}
.perf-cell__period {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate);
}
.perf-cell__v {
  font-family: var(--f-serif);
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--gold-2);
}
.perf-cell__v small { font-size: .38em; color: var(--slate); padding-left: 4px; }
.perf-cell__note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ivory-2);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.fund__docs {
  padding-top: clamp(48px, 6vw, 80px);
}
.fund__docs h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 32px;
  color: var(--ivory);
  letter-spacing: -.02em;
}
.docs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: var(--hair);
  border-left: var(--hair);
}
.doc {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 22px;
  padding: 26px 28px;
  border-right: var(--hair);
  border-bottom: var(--hair);
  align-items: center;
  transition: background .4s var(--ease);
}
.doc:hover { background: rgba(201,169,110,.04); }
.doc__icon {
  width: 48px; height: 48px;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--f-serif);
  font-size: 14px;
  font-style: italic;
}
.doc__t {
  font-family: var(--f-serif);
  font-size: 19px;
  color: var(--ivory);
  line-height: 1.25;
}
.doc__s {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 6px;
}
.doc__arr {
  color: var(--slate);
  font-family: var(--f-serif);
  font-size: 24px;
  transition: color .3s, transform .4s var(--ease);
}
.doc:hover .doc__arr { color: var(--gold); transform: translateX(4px); }

/* ============================================================
   NEWS LIST
   ============================================================ */
.news {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--pad);
}
.news-list {
  border-top: var(--hair);
}
.news-item {
  display: grid;
  grid-template-columns: 200px 120px 1fr 80px;
  gap: 30px;
  padding: 28px 0;
  border-bottom: var(--hair);
  align-items: center;
  transition: padding .5s var(--ease), background .4s var(--ease);
}
.news-item:hover { padding-left: 24px; padding-right: 24px; background: rgba(201,169,110,.025); }
.news-item:hover .news-item__h { color: var(--gold-2); }
.news-item:hover .news-item__arr { color: var(--gold); transform: translateX(4px); }
.news-item__date {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
}
.news-item__cat {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  justify-self: start;
}
.news-item__h {
  font-family: var(--f-serif);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.2;
  color: var(--ivory);
  letter-spacing: -.005em;
  transition: color .4s var(--ease);
}
.news-item__arr {
  font-family: var(--f-serif);
  font-size: 24px;
  color: var(--slate);
  text-align: right;
  transition: color .4s, transform .4s var(--ease);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--pad);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  border-bottom: var(--hair);
}
.contact-card {
  background:
    linear-gradient(180deg, rgba(201,169,110,.04), transparent 60%),
    rgba(18, 40, 66, .5);
  border: var(--hair);
  padding: 48px 44px;
  position: relative;
}
.contact-card::before,
.contact-card::after {
  content: "";
  position: absolute;
  width: 30px; height: 30px;
}
.contact-card::before { top: 0; left: 0; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.contact-card::after  { bottom: 0; right: 0; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

.contact-card h2 {
  font-size: 32px;
  line-height: 1;
  color: var(--ivory);
  margin-bottom: 32px;
  letter-spacing: -.01em;
}
.contact-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
  align-items: start;
}
.contact-row:first-of-type { padding-top: 0; }
.contact-row > span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
  padding-top: 5px;
}
.contact-row a {
  font-size: 18px;
  color: var(--ivory);
  border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s;
}
.contact-row a:hover { color: var(--gold); border-color: var(--gold); }
.contact-row p,
.contact-row address { font-size: 15.5px; color: var(--ivory); line-height: 1.55; }

.contact-lead h2 {
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: .95;
  color: var(--ivory);
  letter-spacing: -.02em;
  margin-bottom: 28px;
}
.contact-lead h2 em { color: var(--gold-2); font-style: italic; }
.contact-lead p {
  font-family: var(--f-serif);
  font-size: 19px;
  line-height: 1.58;
  color: var(--ivory-2);
  max-width: 48ch;
  margin-bottom: 20px;
  font-weight: 300;
}

.directions {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--pad);
  border-bottom: var(--hair);
}
.directions h2 {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -.02em;
  color: var(--ivory);
  margin-bottom: 40px;
}
.directions .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--hair);
  border-left: var(--hair);
}
.directions .cell {
  padding: 32px 28px;
  border-right: var(--hair);
  border-bottom: var(--hair);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 180px;
}
.directions .cell h3 {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.directions .cell p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ivory-2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-ftr {
  border-top: var(--hair);
  margin-top: 60px;
  background: linear-gradient(180deg, transparent, rgba(6, 14, 26, .7));
}
.ftr-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) var(--pad) 56px;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.ftr-brand { display: flex; flex-direction: column; gap: 22px; max-width: 36ch; }
.ftr-brand svg { width: 42px; height: 42px; color: var(--gold); }
.ftr-brand address {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ivory-2);
}
.ftr-brand .reg {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 1.7;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.ftr-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.ftr-nav h4 {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.ftr-nav a {
  display: block;
  font-size: 14px;
  color: var(--ivory-2);
  padding: 6px 0;
  transition: color .3s, transform .3s var(--ease);
}
.ftr-nav a:hover { color: var(--gold); transform: translateX(3px); }

.ftr-bot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px var(--pad);
  border-top: var(--hair);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-2);
}
.ftr-bot .disclaimer {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--slate);
}

/* ============================================================
   REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .site-hdr { grid-template-columns: auto 1fr auto; gap: 20px; }
  .site-nav { gap: 22px; font-size: 11px; }
  .hero__grid { grid-template-columns: 1fr; }
  .kpi { margin-top: 24px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: var(--hair); padding: 36px 0; }
  .pillar + .pillar { padding-left: 0; }
  .pillar:last-child { border-bottom: 0; }
  .m { grid-template-columns: 60px 1fr; }
  .m__cta { grid-column: 2; text-align: left; padding-top: 8px; }
  .svc { grid-template-columns: 1fr; }
  .svc__side { position: static; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .about-intro { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: 1fr 1fr; }
  .fund__hero { grid-template-columns: 1fr; }
  .perf-grid { grid-template-columns: 1fr; }
  .docs { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 150px 100px 1fr 40px; gap: 20px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .directions .grid { grid-template-columns: 1fr; }
  .ftr-top { grid-template-columns: 1fr; gap: 48px; }
  .ftr-nav { grid-template-columns: repeat(2, 1fr); }
  .page-title h1 { font-size: clamp(42px, 10vw, 80px); }
}

@media (max-width: 700px) {
  .site-hdr { grid-template-columns: auto auto; }
  .site-nav { display: none; }
  .cta-ghost { display: none; }
  .util__loc { display: none; }
  .util__reg { display: none; }
  .hero__h { font-size: clamp(50px, 14vw, 84px); }
  .hero__ornament { display: none; }
  .m { grid-template-columns: 1fr; gap: 14px; }
  .m:hover { padding-left: 0; padding-right: 0; }
  .m__cta { grid-column: 1; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-facts { grid-template-columns: 1fr; }
  .about-row { grid-template-columns: 1fr; gap: 16px; }
  .news-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .news-item__arr { display: none; }
  .news-item:hover { padding-left: 0; padding-right: 0; }
  .contact-card { padding: 32px 24px; }
  .contact-row { grid-template-columns: 1fr; gap: 6px; }
  .ftr-nav { grid-template-columns: 1fr 1fr; gap: 28px; }
  .page-title .meta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero__ornament, .ticker__track { animation: none; }
}
