/* ============================================================
   SÁSSOLA PARTNERS — Private Banking
   Sistema de identidad oficial · Manual de Estilo
   Colores: PANTONE 654C navy + 661C blue + 877C plata + Cool Gray 8C
   Fuentes: Merriweather (web) + Akzidenz-Grotesk Extended (logo)
   ============================================================ */

/* Fuentes locales del manual de marca */
@font-face {
  font-family: 'Akzidenz Grotesk Extended';
  src: url('../fonts/AkzidenzGroteskExtended.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Merriweather desde Google Fonts (idéntica a Merriweather.ttf, con todos los pesos) */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700&display=swap');

:root {
  /* ===== Colores corporativos oficiales (Manual de Marca) ===== */
  --navy: #002C5F;            /* PANTONE 654C · Azul oscuro · primario */
  --navy-dark: #001A3D;       /* tono más profundo */
  --navy-tone: #0B4078;       /* tono medio */
  --blue: #003591;            /* PANTONE 661C · Azul claro · secundario */
  --silver: #B2B4B3;          /* PANTONE 877C · Gris plata */
  --silver-soft: #D6D8D7;     /* gris plata más claro */
  --gray-dark: #777777;       /* PANTONE Cool Gray 8C · Gris oscuro */
  --gray-text: #555555;
  --gray-mute: #9BA3AE;

  /* ===== Neutrales ===== */
  --white: #FFFFFF;
  --paper: #FFFFFF;
  --paper-soft: #F7F8FA;
  --paper-2: #EEF1F5;
  --bone: #E9EDF1;

  --text: #1A1F2C;
  --text-2: #4A5160;
  --text-3: #777777;
  --border: #DCE0E6;
  --border-soft: #E9EDF1;
  --border-strong: #B2B4B3;

  /* ===== Efectos ===== */
  --shadow-xs: 0 1px 2px rgba(0, 44, 95, 0.05);
  --shadow-sm: 0 2px 12px rgba(0, 44, 95, 0.08);
  --shadow-md: 0 18px 40px rgba(0, 44, 95, 0.12);
  --shadow-lg: 0 32px 80px rgba(0, 44, 95, 0.18);

  /* ===== Layout ===== */
  --container: 1280px;
  --container-narrow: 920px;
  --container-wide: 1440px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-full: 9999px;

  /* ===== Tipografía ===== */
  --font-brand: 'Akzidenz Grotesk Extended', 'Barlow Condensed', sans-serif;
  --font-serif: 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-sans:  'Merriweather', Georgia, serif; /* Merriweather como fuente única corporativa */

  /* Sizes */
  --display-xxl: clamp(2.25rem, 6.5vw, 5rem);
  --display-xl:  clamp(2rem, 5vw, 4rem);
  --display-l:   clamp(1.75rem, 3.6vw, 2.75rem);
  --display-m:   clamp(1.4rem, 2.6vw, 2.1rem);
  --h1:          clamp(1.5rem, 2.4vw, 2rem);
  --h2:          clamp(1.25rem, 1.8vw, 1.55rem);
  --h3:          1.1rem;
  --eyebrow:     0.72rem;
  --body-l:      1.05rem;
  --body:        1rem;
  --small:       0.875rem;
  --xs:          0.78rem;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.65, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 180ms;
  --t-base: 280ms;
  --t-slow: 600ms;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-serif);
  font-size: var(--body);
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
input, textarea, select { font: inherit; color: inherit; font-family: var(--font-serif); }
ul, ol { padding: 0; list-style: none; }

::selection { background: var(--navy); color: var(--white); }

/* ===== Tipografía ===== */
.eyebrow {
  font-family: var(--font-serif);
  font-size: var(--eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--navy);
}
.eyebrow--num::before {
  content: attr(data-num) " — ";
  font-variant-numeric: tabular-nums;
  color: var(--silver);
}
.eyebrow--light { color: var(--silver); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.005em;
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }

.display, .display-xl, .display-l, .display-m {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.display { font-size: var(--display-xxl); line-height: 1.15; }
.display-xl { font-size: var(--display-xl); line-height: 1.2; }
.display-l { font-size: var(--display-l); line-height: 1.22; }
.display-m { font-size: var(--display-m); line-height: 1.3; }

.display em, .display-xl em, .display-l em, .display-m em {
  font-style: italic;
  font-weight: 400;
  color: var(--navy-tone);
}

p { color: var(--gray-text); font-size: var(--body); line-height: 1.8; }
p.lead { font-size: var(--body-l); line-height: 1.8; color: var(--text); }
p.small { font-size: var(--small); color: var(--gray-dark); }

.muted { color: var(--gray-dark); }
.silver { color: var(--silver); }
.tabular { font-variant-numeric: tabular-nums; }

a.text-link {
  color: var(--navy);
  border-bottom: 1px solid var(--silver);
  padding-bottom: 1px;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
a.text-link:hover { color: var(--blue); border-color: var(--blue); }

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(56px, 8vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(40px, 5vw, 80px) 0; }
.section--soft { background: var(--paper-soft); }
.section--bone { background: var(--bone); }
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy h1,.section--navy h2,.section--navy h3,
.section--navy .display, .section--navy .display-xl,.section--navy .display-l,.section--navy .display-m { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.82); }
.section--navy .eyebrow { color: var(--silver); }

/* ===== Top bar ===== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.78);
  font-size: var(--xs);
  letter-spacing: 0.04em;
  font-weight: 400;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  gap: 24px;
}
.topbar a { color: rgba(255,255,255,0.82); transition: color var(--t-fast) var(--ease); }
.topbar a:hover { color: var(--silver); }
.topbar__contact { display: flex; gap: 24px; }
.topbar__contact span { display: inline-flex; align-items: center; gap: 8px; }
.topbar__cnmv {
  color: var(--silver);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-brand);
  font-size: 11px;
}

@media (max-width: 820px) {
  .topbar__contact span:not(:first-child) { display: none; }
  .topbar__inner { gap: 12px; }
  .topbar__cnmv { font-size: 9.5px; }
}

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.nav__brand img {
  height: 62px;
  width: auto;
  transition: height var(--t-base) var(--ease), opacity var(--t-fast) var(--ease);
  display: block;
}
.nav.is-scrolled .nav__brand img { height: 52px; }
@media (max-width: 720px) {
  .nav__brand img { height: 48px; }
  .nav.is-scrolled .nav__brand img { height: 44px; }
}
.nav__brand:hover img { opacity: 0.85; }

.nav__menu { display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  font-family: var(--font-serif);
  transition: color var(--t-fast) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 4px;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-base) var(--ease);
}
.nav__link:hover { color: var(--navy); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--navy); font-weight: 700; }
.nav__link .caret { width: 10px; height: 10px; stroke-width: 2; }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  min-width: 290px;
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base) var(--ease);
  z-index: 100;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
  border-left: 2px solid transparent;
}
.nav__dropdown a:hover {
  background: var(--paper-soft);
  color: var(--navy);
  border-left-color: var(--navy);
  padding-left: 26px;
}

.nav__cta { margin-left: 8px; }
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--navy);
}
.nav__burger svg { width: 24px; height: 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--t-base) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

.btn--blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--blue:hover { background: var(--navy); border-color: var(--navy); }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }

.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn--text {
  padding: 0;
  background: none;
  color: var(--navy);
  border: 0;
  border-bottom: 1px solid var(--silver);
  border-radius: 0;
  padding-bottom: 4px;
  letter-spacing: 0.16em;
  font-size: 11.5px;
}
.btn--text:hover { color: var(--blue); border-color: var(--blue); }
.btn--text:hover svg { transform: translateX(4px); }

.btn--lg { padding: 17px 36px; font-size: 13px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: clamp(72px, 10vw, 160px) 0 clamp(56px, 8vw, 120px);
}
/* Diagonal overlays — estética del manual de marca */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 44, 95, 0.85) 0%, rgba(0, 44, 95, 0.92) 45%, rgba(0, 26, 61, 0.98) 100%);
  z-index: 1;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, transparent 0%, transparent 55%, rgba(11, 64, 120, 0.55) 55%, rgba(11, 64, 120, 0.55) 100%),
    linear-gradient(125deg, transparent 0%, transparent 70%, rgba(0, 53, 145, 0.4) 70%);
  z-index: 2;
  opacity: 0.6;
}
.hero__inner { position: relative; z-index: 3; }
.hero__intro { display: flex; align-items: center; gap: 18px; margin-bottom: 32px; }
.hero__intro-line { height: 1px; width: 56px; background: var(--silver); }
.hero__intro .eyebrow { color: var(--silver); }

.hero__display {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--display-xxl);
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 36px;
  max-width: 22ch;
  letter-spacing: -0.01em;
}
.hero__display em { font-style: italic; color: var(--silver); font-weight: 400; }

.hero__bottom {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.hero__lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.85;
  color: rgba(255,255,255,0.86);
  max-width: 540px;
  font-weight: 300;
}
.hero__lead .quote {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--silver);
  margin-bottom: 18px;
  line-height: 1.5;
  font-weight: 400;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: clamp(28px, 4vw, 40px);
}
.hero__stat { padding: 0 24px 0 0; border-right: 1px solid rgba(255,255,255,0.18); }
.hero__stat:last-child { border-right: 0; padding-right: 0; }
.hero__stat:not(:first-child) { padding-left: 24px; }
.hero__stat-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  line-height: 1.05;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.hero__stat-num sup { font-size: 0.5em; vertical-align: super; color: var(--silver); margin-left: 2px; font-weight: 400; }
.hero__stat-num em { font-style: italic; color: var(--silver); font-size: 0.5em; margin-left: 6px; font-weight: 400; }
.hero__stat-label {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
}

@media (max-width: 820px) {
  .hero__bottom { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; gap: 0; }
  .hero__stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.14); padding: 18px 0; }
  .hero__stat:not(:first-child) { padding-left: 0; }
  .hero__stat:last-child { border-bottom: 0; }
}

/* Hero medallion — logo en círculo blanco como en el manual */
.hero__medallion {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 38vw, 480px);
  height: clamp(280px, 38vw, 480px);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.hero__medallion::before {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px solid rgba(178, 180, 179, 0.18);
}
.hero__medallion img {
  width: 50%;
  height: auto;
  opacity: 0.72;
  filter: brightness(0) invert(1) opacity(0.5);
}
@media (max-width: 920px) {
  .hero__medallion { display: none; }
}

/* ===== Section header ===== */
.sec-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.sec-head--split {
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}
.sec-head__lead p { max-width: 540px; }
@media (max-width: 820px) {
  .sec-head--split { grid-template-columns: 1fr; align-items: start; }
}

/* ===== Values grid ===== */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.value {
  padding: 44px 28px 32px 0;
  border-right: 1px solid var(--border);
  transition: background var(--t-base) var(--ease);
  position: relative;
}
.value:last-child { border-right: 0; padding-right: 0; }
.value:not(:first-child) { padding-left: 28px; }
.value::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--navy);
}
.value:not(:first-child)::before { left: 28px; }
.value__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--silver);
  margin-bottom: 18px;
  display: block;
  font-weight: 400;
}
.value__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
  font-weight: 700;
}
.value__body { font-size: 0.93rem; line-height: 1.75; color: var(--gray-text); font-weight: 300; }

@media (max-width: 980px) {
  .values { grid-template-columns: repeat(2, 1fr); }
  .value { border-bottom: 1px solid var(--border); padding: 32px 24px; }
  .value:nth-child(2) { border-right: 0; padding-right: 24px; }
  .value:nth-child(3) { border-right: 1px solid var(--border); padding-left: 24px; }
  .value:nth-child(odd) { padding-left: 0; }
  .value:nth-child(even) { padding-right: 0; }
  .value:nth-last-child(-n+2) { border-bottom: 0; }
  .value::before { left: 0 !important; }
}
@media (max-width: 580px) {
  .values { grid-template-columns: 1fr; }
  .value, .value:nth-child(odd), .value:nth-child(even), .value:nth-child(3) {
    border-right: 0; padding: 28px 0;
    border-bottom: 1px solid var(--border);
  }
  .value:last-child { border-bottom: 0; }
}

/* ===== Service cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card:hover::before { transform: scaleX(1); }
.card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--silver);
  margin-bottom: 18px;
  font-weight: 400;
}
.card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
  font-weight: 700;
}
.card__body { color: var(--gray-text); font-size: 0.9rem; line-height: 1.75; flex-grow: 1; font-weight: 300; }
.card__link {
  margin-top: 24px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--silver);
  padding-bottom: 4px;
  transition: color var(--t-fast) var(--ease), gap var(--t-base) var(--ease), border-color var(--t-fast) var(--ease);
}
.card__link:hover { color: var(--blue); gap: 12px; border-color: var(--blue); }
.card__link svg { width: 14px; height: 14px; }

.card--dark { background: var(--navy); border-color: var(--navy); color: var(--white); }
.card--dark:hover { background: var(--navy-dark); border-color: var(--navy-dark); }
.card--dark::before { background: var(--silver); }
.card--dark .card__title { color: var(--white); }
.card--dark .card__body { color: rgba(255,255,255,0.78); }
.card--dark .card__num { color: var(--silver); }
.card--dark .card__link { color: var(--silver); border-color: var(--silver); }

/* ===== Editorial split ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split__visual { position: relative; overflow: hidden; }
.split__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split__visual--portrait img { aspect-ratio: 3/4; }
.split__visual--wide img { aspect-ratio: 5/4; }
.split__visual::after {
  content: "";
  position: absolute;
  left: 18px; bottom: 18px;
  width: 56px; height: 2px;
  background: var(--silver);
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse > :first-child { order: 0; }
}

/* ===== Stat band ===== */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: var(--white);
}
.stat-band__item {
  padding: clamp(36px, 5vw, 64px) 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-band__item:last-child { border-right: 0; }
.stat-band__num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat-band__num sup { font-size: 0.55em; color: var(--silver); }
.stat-band__num em { font-style: italic; color: var(--silver); font-size: 0.55em; margin-left: 4px; font-weight: 400; }
.stat-band__label {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 700;
}
@media (max-width: 880px) {
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .stat-band__item:nth-child(2) { border-right: 0; }
  .stat-band__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 480px) {
  .stat-band { grid-template-columns: 1fr; }
  .stat-band__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-band__item:last-child { border-bottom: 0; }
}

/* ===== Fund cards ===== */
.funds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fund-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--t-base) var(--ease);
  overflow: hidden;
}
.fund-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.fund-card:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fund-card:hover::before { transform: scaleX(1); }

.fund-card__label {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 14px;
  font-family: var(--font-brand), var(--font-serif);
}
.fund-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 28px;
  font-weight: 700;
}
.fund-card__perf-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.fund-card__perf {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 3.6vw, 3.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.fund-card__perf-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy-tone);
  font-variant-numeric: tabular-nums;
  font-style: italic;
}
.fund-card__perf-unit { font-size: 0.45em; color: var(--silver); margin-left: 4px; font-weight: 400; font-style: italic; }
.fund-card__perf-meta {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--gray-dark);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
}
.fund-card__class {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-dark);
  font-weight: 700;
}

.fund-card--highlight {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.fund-card--highlight::before { background: var(--silver); transform: scaleX(1); }
.fund-card--highlight .fund-card__label { color: var(--silver); }
.fund-card--highlight .fund-card__name { color: var(--white); }
.fund-card--highlight .fund-card__perf { color: var(--white); }
.fund-card--highlight .fund-card__perf-label,
.fund-card--highlight .fund-card__perf-meta,
.fund-card--highlight .fund-card__class { color: rgba(255,255,255,0.72); border-color: rgba(255,255,255,0.18); }
.fund-card--highlight .fund-card__perf-unit { color: var(--silver); }
.fund-card--highlight .fund-card__perf-sub { color: var(--silver); }

@media (max-width: 980px) { .funds { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .funds { grid-template-columns: 1fr; } }

/* ===== Team grid ===== */
.people {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
}
.person { display: flex; flex-direction: column; }
.person__photo {
  aspect-ratio: 4/5;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  background: var(--paper-soft);
  border: 1px solid var(--border);
}
.person__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 0.8s var(--ease-out), filter 0.4s var(--ease);
}
.person:hover .person__photo img { transform: scale(1.04); filter: grayscale(0%); }
.person__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--silver);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, var(--paper-soft), var(--paper-2));
}
.person__photo::after {
  content: "";
  position: absolute;
  left: 14px; bottom: 14px;
  width: 32px; height: 2px;
  background: var(--silver);
  z-index: 2;
}
.person__role {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}
.person__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
  font-weight: 700;
}
.person__bio {
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--gray-text);
  font-weight: 300;
}
.person__bio + .person__bio { margin-top: 8px; }

@media (max-width: 1024px) { .people { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .people { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; } }
@media (max-width: 460px) { .people { grid-template-columns: 1fr; } }

/* ===== Segments ===== */
.segments {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.segment {
  padding: 56px 28px;
  border-right: 1px solid var(--border);
  background: var(--white);
  transition: background var(--t-base) var(--ease);
  position: relative;
}
.segment:hover { background: var(--paper-soft); }
.segment:last-child { border-right: 0; }
.segment__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--silver);
  margin-bottom: 28px;
  display: block;
  font-weight: 400;
}
.segment__icon { width: 36px; height: 36px; margin-bottom: 24px; color: var(--navy); stroke-width: 1.2; }
.segment__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.25;
  font-weight: 700;
}
.segment__body { font-size: 0.88rem; line-height: 1.8; color: var(--gray-text); font-weight: 300; }
.segment__body + .segment__body { margin-top: 12px; }

@media (max-width: 1024px) {
  .segments { grid-template-columns: repeat(2, 1fr); }
  .segment { border-right: 0; border-bottom: 1px solid var(--border); }
  .segment:nth-child(odd) { border-right: 1px solid var(--border); }
  .segment:nth-child(-n+4) { border-bottom: 1px solid var(--border); }
  .segment:last-child { border-bottom: 0; border-right: 0; grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .segments { grid-template-columns: 1fr; }
  .segment, .segment:nth-child(odd) { border-right: 0; }
  .segment:last-child { grid-column: auto; }
}

/* ===== Partners / Collaborators ===== */
.partners-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.partner {
  padding: 36px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  gap: 12px;
  transition: background var(--t-base) var(--ease);
}
.partner:hover { background: var(--paper-soft); }
.partner:last-child { border-right: 0; }
.partner img { max-height: 36px; width: auto; filter: grayscale(100%); opacity: 0.7; transition: all var(--t-base) var(--ease); }
.partner:hover img { filter: grayscale(0%); opacity: 1; }
.partner__name { font-family: var(--font-serif); font-size: 1rem; color: var(--navy); font-weight: 700; }
.partner__role { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-dark); font-weight: 700; }

@media (max-width: 880px) {
  .partners-row { grid-template-columns: repeat(3, 1fr); }
  .partner:nth-child(3n) { border-right: 0; }
  .partner:not(:nth-last-child(-n+3)) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 520px) {
  .partners-row { grid-template-columns: repeat(2, 1fr); }
  .partner:nth-child(3n) { border-right: 1px solid var(--border); }
  .partner:nth-child(2n) { border-right: 0; }
  .partner:last-child { border-right: 0; }
}

/* Collaborator detail */
.coll-list { display: flex; flex-direction: column; }
.coll {
  display: grid;
  grid-template-columns: 0.5fr 1.2fr;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(48px, 6vw, 72px) 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.coll:last-child { border-bottom: 1px solid var(--border); }
.coll__brand { display: flex; flex-direction: column; gap: 14px; }
.coll__brand img { max-width: 180px; max-height: 60px; object-fit: contain; object-position: left center; }
.coll__brand-name { font-family: var(--font-serif); font-size: clamp(1.3rem, 1.8vw, 1.6rem); color: var(--navy); line-height: 1.2; font-weight: 700; }
.coll__body p { font-size: var(--body-l); line-height: 1.85; color: var(--gray-text); max-width: 65ch; font-weight: 300; }
.coll__body p + p { margin-top: 16px; }
@media (max-width: 820px) { .coll { grid-template-columns: 1fr; gap: 20px; } }

/* ===== CTA band ===== */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: clamp(56px, 8vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, transparent 55%, rgba(11, 64, 120, 0.6) 55%, rgba(0, 53, 145, 0.4) 100%);
  pointer-events: none;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: end;
  gap: clamp(32px, 5vw, 80px);
  position: relative;
}
.cta-band h2 { color: var(--white); font-size: var(--display-m); font-weight: 700; line-height: 1.25; }
.cta-band h2 em { font-style: italic; color: var(--silver); font-weight: 400; }
.cta-band p { color: rgba(255,255,255,0.82); font-size: var(--body-l); max-width: 480px; line-height: 1.85; font-weight: 300; }
.cta-band__actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-band__actions .btn { width: 100%; max-width: 280px; }
@media (max-width: 820px) { .cta-band__inner { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 32px;
  font-size: var(--small);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand img { height: 90px; width: auto; margin-bottom: 24px; }
.footer__about { max-width: 320px; color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.8; font-weight: 300; }
.footer__col h4 {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 22px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: rgba(255,255,255,0.75); transition: color var(--t-fast) var(--ease); font-size: 0.85rem; font-weight: 300; }
.footer__col a:hover { color: var(--silver); }
.footer__col p { color: rgba(255,255,255,0.75); font-size: 0.85rem; line-height: 1.85; margin-bottom: 10px; font-weight: 300; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 32px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,0.55); font-size: 11.5px; }
.footer__legal a:hover { color: var(--silver); }

@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

/* ===== Forms ===== */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.form .field--full { grid-column: 1 / -1; }
.field { position: relative; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  padding: 14px 0;
  font-size: 1rem;
  color: var(--navy);
  outline: none;
  transition: border-color var(--t-base) var(--ease);
  border-radius: 0;
  font-family: var(--font-serif);
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--navy); }
.field textarea { resize: vertical; min-height: 100px; }
.field--check { display: flex; align-items: flex-start; gap: 12px; font-size: 0.86rem; color: var(--gray-text); line-height: 1.55; font-weight: 300; }
.field--check input { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; accent-color: var(--navy); }
@media (max-width: 720px) { .form { grid-template-columns: 1fr; } }

/* ===== Page intro ===== */
.page-intro {
  background: var(--navy);
  color: var(--white);
  padding: clamp(64px, 10vw, 144px) 0 clamp(48px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 44, 95, 0.0) 0%, rgba(11, 64, 120, 0.55) 60%, rgba(0, 53, 145, 0.4) 100%);
  pointer-events: none;
}
.page-intro__inner { position: relative; z-index: 2; }
.page-intro__crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
}
.page-intro__crumb a { color: rgba(255,255,255,0.65); }
.page-intro__crumb a:hover { color: var(--silver); }
.page-intro__crumb span { color: var(--silver); }

.page-intro__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--display-xl);
  line-height: 1.18;
  color: var(--white);
  max-width: 20ch;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.page-intro__title em { font-style: italic; color: var(--silver); font-weight: 400; }
.page-intro__lead {
  font-size: var(--body-l);
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  max-width: 60ch;
  font-weight: 300;
}

/* ===== Disclaimer ===== */
.disclaimer {
  margin-top: 36px;
  padding: 20px 24px;
  border-left: 2px solid var(--silver);
  background: var(--paper-soft);
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--gray-text);
  font-style: italic;
  font-weight: 300;
}

/* ===== Mobile nav ===== */
@media (max-width: 1080px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  padding: 24px var(--gutter);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  visibility: hidden;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__head img { height: 50px; }
.mobile-menu__close {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--navy);
}
.mobile-menu__list { flex-grow: 1; padding: 24px 0; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu__list > li > a, .mobile-menu__list > li > div > a:first-child {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  padding: 10px 0;
  display: block;
  line-height: 1.3;
  font-weight: 700;
}
.mobile-menu__sub {
  padding: 4px 0 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid var(--border);
  margin-left: 4px;
  margin-bottom: 8px;
}
.mobile-menu__sub a {
  font-size: 0.9rem;
  color: var(--gray-text);
  padding: 4px 0 4px 12px;
  display: block;
  font-weight: 300;
}
.mobile-menu__sub a:hover { color: var(--navy); }
.mobile-menu__cta { padding: 16px 0; border-top: 1px solid var(--border); }
.mobile-menu__cta .btn { width: 100%; }

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Misc ===== */
.bullet-list { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
}
.bullet-list li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--navy);
  margin-top: 10px;
  flex-shrink: 0;
  border-radius: 50%;
}

.dual-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.dual-list h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 18px;
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--navy);
}
@media (max-width: 820px) { .dual-list { grid-template-columns: 1fr; gap: 32px; } }

/* EU logos */
.eu-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 24px 0 0;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.eu-logos img { max-height: 36px; opacity: 0.85; filter: brightness(0) invert(1) opacity(0.85); }
