/* Valori Capital — shared styles */
:root {
  --coral: #f37b88;
  --rose: #e64e65;
  --red: #bc3e52;
  --wine: #943243;
  --wine-deep: #6d2634;
  --ivory: #fdfbfa;
  --cream: #f7f0ee;
  --paper: #fffdfc;
  --ink: #231a1c;
  --body: #5a4d50;
  --line: #ecdfdc;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --wrap: 1230px;
  --pad: clamp(22px, 5vw, 60px);
  --nav-h: 82px;
  --nav-h-sm: 68px;
  --r: 6px;
  --r-sm: 3px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h-sm) + 18px);
}

body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: rgba(230, 78, 101, .20);
  color: var(--ink);
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad);
}

section {
  padding-block: clamp(67px, 8.8vw, 134px);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--ink);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}

p {
  max-width: 64ch;
  text-wrap: pretty;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .02em;
  padding: .95em 1.7em;
  border-radius: 100px;
  transition: .28s;
  cursor: pointer;
}

.btn-primary {
  background: var(--wine);
  color: #fff;
}

.btn-primary:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
}

.btn-line {
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-line:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
}

.btn-ghost:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}

.arrow {
  transition: transform .28s;
}

.btn:hover .arrow {
  transform: translateX(4px);
}


/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition: background .35s, box-shadow .35s;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 2rem;
  transition: height .35s cubic-bezier(.2, .7, .3, 1);
}

.logo {
  display: block;
  line-height: 0;
}

.logo img {
  height: 46px;
  width: auto;
  transition: height .35s cubic-bezier(.2, .7, .3, 1), opacity .3s;
}

.logo .l-dark {
  display: none;
}

.menu {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  align-items: center;
}

.menu a {
  font-size: 1.02rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: .3em 0;
  transition: color .3s;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--coral);
  transition: .28s;
}

.menu .btn::after {
  display: none;
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

.nav .btn {
  padding: .7em 1.3em;
}

.burger {
  display: none;
  position: relative;
  width: 30px;
  height: 20px;
  background: none;
  border: 0;
  cursor: pointer;
  color: #fff;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform .32s cubic-bezier(.2, .7, .3, 1);
}

.burger span:nth-child(1) {
  top: 5px;
}

.burger span:nth-child(2) {
  top: 13px;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

header.scrolled {
  background: rgba(253, 251, 250, .92);
  backdrop-filter: saturate(1.4) blur(12px);
  box-shadow: 0 1px 0 rgba(148, 50, 67, .10);
}

header.scrolled .nav {
  height: var(--nav-h-sm);
}

header.scrolled .logo img {
  height: 38px;
}

header.scrolled .logo .l-white {
  display: none;
}

header.scrolled .logo .l-dark {
  display: block;
}

header.scrolled .menu a {
  color: var(--ink);
}

header.scrolled .menu a::after {
  background: var(--rose);
}

header.scrolled .burger {
  color: var(--wine);
}

header.scrolled .btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}

header.scrolled .btn-ghost:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}


/* hero */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero>.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.06);
  animation: heroZoom 9s ease-out forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }

}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient( to top, rgba(45, 20, 26, .88) 0%, rgba(45, 20, 26, .28) 42%, rgba(45, 20, 26, .40) 100% ), linear-gradient( 105deg, rgba(109, 38, 52, .45) 0%, rgba(109, 38, 52, 0) 55% );
}

.hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(12px, 3vh, 32px);
}

.hero h1 {
  color: #fff;
  font-weight: 400;
  font-size: clamp(2.7rem, 6.6vw, 5.6rem);
  letter-spacing: -.025em;
  max-width: 17ch;
  margin-top: 1.4rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--coral);
  font-weight: 500;
}

.hero .hsub {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: rgba(255, 255, 255, .9);
  margin-top: 1.6rem;
  max-width: 50ch;
}

.hero .hcta {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.hero.hero-sm {
  height: auto;
  min-height: 0;
  padding-block: clamp(53px, 7vw, 107px);
}

.hero.hero-sm .wrap {
  padding-top: 66px;
  padding-bottom: 14px;
}

.hero.hero-sm h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  max-width: 22ch;
  margin-top: 0;
}

.hero.hero-contact .wrap {
  padding-top: 37px;
  padding-bottom: 0;
}

.hero.hero-contact h1 {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
}

.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  cursor: pointer;
}

.scrolldown::before {
  content: "";
  width: 24px;
  height: 24px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -8px;
  animation: scrollbounce 1.7s infinite;
  transition: border-color .25s;
}

.scrolldown:hover::before {
  border-color: var(--coral);
}

@keyframes scrollbounce {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: .65;
  }

  50% {
    transform: rotate(45deg) translate(6px, 6px);
    opacity: 1;
  }

}

.hero .fx {
  opacity: 0;
  transform: translateY(34px);
  animation: heroUp .95s cubic-bezier(.2, .7, .3, 1) forwards;
}

.hero .fx.d1 {
  animation-delay: .12s;
}

.hero .fx.d2 {
  animation-delay: .26s;
}

.hero .fx.d3 {
  animation-delay: .4s;
}

@keyframes heroUp {
  to {
    opacity: 1;
    transform: none;
  }

}


/* full-bleed image band */
.imgband {
  position: relative;
  padding-block: 0;
  height: clamp(300px, 40vw, 540px);
  overflow: hidden;
}

.imgband img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.imgband::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(45, 20, 26, .30), rgba(45, 20, 26, .10));
}


/* home: positioning statement */
.statement .wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.statement h2 {
  font-weight: 400;
  max-width: 13ch;
}

.statement .col p {
  font-size: 1.14rem;
  color: var(--body);
  margin-bottom: 1.2rem;
}

.statement .col p:first-child {
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

.statement .col p:last-child {
  margin-bottom: 0;
}

.statement--img .wrap {
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
}

.statement--img h2 {
  max-width: 20ch;
  margin-bottom: 1.3rem;
}

.statement--img .col p {
  font-size: 1.12rem;
}

.statement--img .col p:first-child {
  font-size: 1.12rem;
  color: var(--body);
  font-weight: 400;
}

.statement--img .statement-img img {
  width: 100%;
  height: clamp(320px, 38vw, 480px);
  object-fit: cover;
  border-radius: var(--r);
}


/* home: stats band */
.stats-band {
  background: var(--cream);
}

.stats-band .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}

.stats-band.cols-3 .wrap {
  grid-template-columns: repeat(3, 1fr);
}

.stats-band.centered .stat {
  text-align: center;
}

.stat b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 3.8vw, 3.3rem);
  color: var(--wine);
  display: block;
  line-height: 1;
}

.stat b i {
  font-style: normal;
  font-size: .5em;
  color: var(--rose);
}

.stat small {
  display: block;
  margin-top: .8rem;
  font-size: .86rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--body);
}


/* home: label over a stats band */
.stats-band .band-label {
  grid-column: 1/-1;
  max-width: none;
  text-align: center;
  margin-bottom: clamp(1.1rem, 2vw, 1.7rem);
}


/* home: mission and vision */
.mv {
  background: #fff;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2.6rem, 5.5vw, 5rem);
}

.mv-grid h2 {
  font-weight: 400;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
}

.mv-grid h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background: var(--rose);
  margin: clamp(.95rem, 1.5vw, 1.25rem) 0 clamp(1.1rem, 1.8vw, 1.5rem);
}

.mv-grid {
  padding-top: clamp(1.6rem, 2.6vw, 2.2rem);
  border-top: 1px solid var(--line);
}

.mv-grid p {
  font-size: clamp(1rem, 1.1vw, 1.06rem);
  line-height: 1.75;
  color: var(--body);
  max-width: 46ch;
}

.mv-grid p+p {
  margin-top: 1.05rem;
}

.mv-cta {
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
}


/* home: competitive advantage */
.adv {
  background: var(--wine-deep);
  color: rgba(255, 255, 255, .78);
  padding-block: clamp(58px, 7.4vw, 112px);
}

.adv-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(1.3rem, 4.5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.2rem, 3.6vw, 3.2rem);
}

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wine);
}

.adv .eyebrow {
  color: var(--coral);
}

.adv-head h2 {
  margin-top: 1.15rem;
  font-weight: 400;
  color: #fff;
}

.adv-lede {
  font-size: clamp(1.04rem, 1.2vw, 1.14rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, .78);
  max-width: 52ch;
}


/* one main point */
.adv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3.6rem);
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, .20);
  padding-top: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
}

.adv-row figure {
  position: relative;
  min-height: clamp(280px, 30vw, 400px);
  border-radius: var(--r);
  overflow: hidden;
}

.adv-row figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adv-row--flip figure {
  order: 2;
}

.adv-body {
  align-self: center;
}

.adv-row--plain {
  align-items: start;
}

.adv-row--plain>h3 {
  align-self: start;
}

.adv-row h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--coral);
}


/* the sub-points */
.adv-points {
  display: grid;
  gap: clamp(1.15rem, 1.9vw, 1.6rem);
  margin-top: clamp(1.2rem, 1.9vw, 1.6rem);
}

.adv-row--plain>.adv-points {
  margin-top: 0;
}

.adv-points h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.22;
  color: #fff;
}

.adv-points p {
  margin-top: .42rem;
  font-size: .99rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .76);
  max-width: 56ch;
}

.adv-cta {
  margin-top: clamp(2rem, 3.4vw, 3rem);
}

.mkt-cta {
  margin-top: clamp(1.6rem, 2.6vw, 2.2rem);
}

@media (max-width: 880px) {
  .adv-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.2rem;
  }

  .adv-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .adv-row--flip figure {
    order: 0;
  }

  .adv-row figure {
    min-height: 0;
    aspect-ratio: 4/3;
  }

}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 600;
  font-size: .92rem;
  color: var(--wine);
  margin-top: 1.8rem;
  transition: color .25s, gap .25s;
}

.link-arrow:hover {
  color: var(--rose);
  gap: .8em;
}

@media (max-width: 880px) {
  .statement .wrap,
  .statement--img .wrap {
    grid-template-columns: 1fr;
  }

  .stats-band .wrap {
    grid-template-columns: 1fr 1fr;
  }

}


/* home: image + stats */
.sb-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.sb-lead figure img {
  width: 100%;
  height: clamp(300px, 34vw, 440px);
  object-fit: cover;
  border-radius: var(--r);
}

.sb-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 3.5vw, 2.8rem) clamp(1.6rem, 3vw, 2.6rem);
}

.sb-stats .stat {
  border: 0;
  padding: 0;
}


/* strategies page */
.strat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4.8vw, 4.4rem);
  align-items: center;
  padding-block: clamp(1.92rem, 4vw, 3.6rem);
}

.strat figure img {
  width: 100%;
  height: clamp(320px, 36vw, 470px);
  object-fit: cover;
  border-radius: var(--r);
}

.strat h3 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 500;
  color: var(--ink);
}

.strat p {
  font-size: 1.08rem;
  color: var(--body);
  margin-top: 1.3rem;
}

.strat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3.4rem;
  margin-top: 2.1rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--line);
}

.strat-meta span {
  display: flex;
  flex-direction: column;
  font-size: .98rem;
  font-weight: 500;
  color: var(--body);
}

.strat-meta b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: var(--wine);
  line-height: 1;
  margin-bottom: .45rem;
}

.strat--flip figure {
  order: 2;
}

@media (max-width: 880px) {
  .strat {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding-block: clamp(1.6rem, 4vw, 2.4rem);
  }

  .strat--flip figure {
    order: 0;
  }

  .strat figure img {
    height: clamp(220px, 50vw, 320px);
  }

  .geo-figs {
    gap: 1.4rem;
  }

}

.geo {
  background: var(--cream);
}

.geo .wrap {
  display: block;
}

.geo-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.2rem, 3.5vw, 3rem);
}

.geo h2 {
  font-weight: 400;
  max-width: 14ch;
}

.geo-intro p {
  margin-top: 1.2rem;
  color: var(--body);
  font-size: 1.08rem;
}

.geo-figs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
}

.geo-figs b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--wine);
  line-height: 1;
}

.geo-figs b i {
  font-style: normal;
  font-size: .5em;
  color: var(--rose);
}

.geo-figs small {
  display: block;
  margin-top: .7rem;
  font-size: .87rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--body);
}

.geo-map {
  margin-top: clamp(1.6rem, 3vw, 2.6rem);
}

.geo-map img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3.6rem;
  margin-top: clamp(1.4rem, 2.5vw, 2.2rem);
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 500;
  color: var(--ink);
}

.legend i {
  width: clamp(20px, 2.2vw, 28px);
  height: clamp(20px, 2.2vw, 28px);
  border-radius: 5px;
  flex: none;
}

.legend .sw-primary {
  background: var(--red);
}

.legend .sw-secondary {
  background: #f6b7be;
}

@media (max-width: 880px) {
  .sb-lead {
    grid-template-columns: 1fr;
  }

  .strat {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .geo-head {
    grid-template-columns: 1fr;
  }

}


/* home: fund feature */
.fund .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.fund figure img {
  width: 100%;
  height: clamp(340px, 42vw, 540px);
  object-fit: cover;
  border-radius: var(--r);
}

.fund h2 {
  font-weight: 400;
  margin: 1.3rem 0 1.4rem;
}

.fund p {
  color: var(--body);
  font-size: 1.08rem;
  margin-bottom: 1.1rem;
}

.fund .mini {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.fund .mini div b {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--wine);
  display: block;
}

.fund .mini div small {
  font-size: .89rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--body);
}


/* contact block */
.contact .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.contact h2 {
  font-weight: 400;
  margin: 1.3rem 0 1.5rem;
}

.contact .lead {
  font-size: 1.15rem;
  color: var(--body);
  margin-bottom: 2rem;
}

.offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2rem;
}

.office h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--wine);
  margin-bottom: .35rem;
}

.office p {
  font-size: .9rem;
  color: var(--body);
}

.cbox {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2.2rem;
  background: var(--paper);
}

.cbox a.big {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--ink);
  margin: .4rem 0 1.4rem;
}

.cbox a.big:hover {
  color: var(--rose);
}


/* footer */
footer {
  background: var(--wine-deep);
  color: rgba(255, 255, 255, .72);
  padding-block: 4.5rem 2.2rem;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.foot-top img {
  height: 38px;
  margin-bottom: 1.3rem;
}

.foot-top p {
  font-size: .92rem;
  max-width: 34ch;
}

footer h5 {
  color: #fff;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-weight: 600;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: .7rem;
  font-size: .92rem;
}

footer a:hover {
  color: var(--coral);
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}


/* team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3vw, 2.4rem) clamp(2.6rem, 5vw, 4.2rem);
}

.team-section {
  padding-block: 0;
}

#next.team-section {
  padding-top: clamp(38px, 5.6vw, 72px);
}

.team-section + .team-section {
  padding-top: clamp(1.6rem, 3vw, 2.4rem);
}

.team-section:last-of-type {
  padding-bottom: clamp(38px, 5.6vw, 72px);
}

@media (max-width: 880px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

}

.member-card {
  display: block;
  color: inherit;
}

.member-card .pic {
  overflow: hidden;
  border-radius: var(--r);
  margin-bottom: 1.1rem;
  background: transparent;
}

.member-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .5s;
}

.member-card:hover img {
  transform: scale(1.04);
}

.member-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  transition: color .25s;
}

.member-card:hover h3 {
  color: var(--wine);
}

.member-card .role {
  font-size: .95rem;
  font-weight: 500;
  color: var(--body);
  margin-top: .4rem;
}


/* contact page */
.contact-lead {
  padding-bottom: clamp(32px, 4.8vw, 51px);
  text-align: center;
}

.contact-lead .eyebrow {
  max-width: none;
  margin-bottom: clamp(.9rem, 1.4vw, 1.2rem);
}

.big-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(1.9rem, 3.4vw, 2.9rem);
  border-bottom: 1px solid var(--line);
}

.big-contacts--solo {
  grid-template-columns: 1fr;
  justify-items: center;
}

.big-contact {
  display: block;
}

.big-contact span {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 2.9rem);
  color: var(--ink);
  letter-spacing: -.015em;
  line-height: 1.08;
  transition: color .25s;
  word-break: break-word;
}

.big-contact:hover span {
  color: var(--wine);
}

.map-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(1.6rem, 3.4vw, 3rem);
  align-items: stretch;
}

.office-list {
  display: flex;
  flex-direction: column;
}

.office-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  background: none;
  border: 0;
  border-left: 1px solid var(--line);
  padding: clamp(.9rem, 1.4vw, 1.2rem) 0 clamp(.9rem, 1.4vw, 1.2rem) clamp(1rem, 1.7vw, 1.5rem);
  cursor: pointer;
  font-family: inherit;
  transition: border-color .3s;
}

.office-item:hover {
  border-left-color: var(--rose);
}

.office-item.active {
  border-left-color: var(--wine);
}

.office-item h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: var(--ink);
  margin-bottom: .32rem;
  transition: color .25s;
}

.office-item:hover h4,
.office-item.active h4 {
  color: var(--wine);
}

.office-item p {
  font-size: .88rem;
  color: var(--body);
  margin: 0;
  line-height: 1.55;
  max-width: 40ch;
}

.map-frame {
  position: relative;
  min-height: 440px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 2rem;
  text-align: center;
  background: var(--cream);
  color: var(--body);
  font-size: .95rem;
}

@media (max-width: 880px) {
  .big-contacts {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 340px;
    order: -1;
  }

  .office-item {
    flex: none;
  }

}


/* legal pages */
.legal {
  max-width: 800px;
}

.legal .intro {
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 2.4rem;
}

.legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--wine);
  margin: 2.6rem 0 .9rem;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal p {
  margin-bottom: 1.1rem;
  color: var(--body);
}

.legal p:last-child {
  margin-bottom: 0;
}

.foot-bot a {
  transition: color .25s;
}

.foot-bot a:hover {
  color: var(--coral);
}


/* data components */
/* magnitude bars */
.mkt {
  background: var(--cream);
}

.mkt-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.mkt-grid h2 {
  font-weight: 400;
  max-width: 16ch;
}

.mkt-grid .lede {
  margin-top: 1.3rem;
  font-size: 1.08rem;
  color: var(--body);
}

.bars {
  display: flex;
  flex-direction: column;
  gap: clamp(1.3rem, 2.4vw, 1.9rem);
}

.bar-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: .55rem;
}

.bar-lab {
  font-size: .93rem;
  color: var(--body);
  line-height: 1.4;
}

.bar-val {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: var(--wine);
  line-height: 1;
  white-space: nowrap;
}

.bar-track {
  height: 14px;
  background: rgba(148, 50, 67, .10);
  border-radius: 0 4px 4px 0;
}

.bar-fill {
  height: 100%;
  width: 0;
  background: var(--wine);
  border-radius: 0 4px 4px 0;
  transition: width 1.1s cubic-bezier(.2, .7, .3, 1) .15s;
}

.reveal.in .bar-fill {
  width: var(--w);
}

.colchart {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 clamp(1.4rem, 4vw, 3.2rem);
}

.colchart--2 {
  grid-template-columns: repeat(2, 1fr);
}

.col-item {
  display: grid;
  grid-template-rows: 1fr auto;
}

.col-plot {
  position: relative;
  height: clamp(200px, 22vw, 300px);
  border-bottom: 1px solid var(--line);
}

.col-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  max-width: 104px;
  height: 0;
  background: var(--wine);
  border-radius: 4px 4px 0 0;
  transition: height 1.1s cubic-bezier(.2, .7, .3, 1) .15s;
}

.reveal.in .col-bar {
  height: var(--h);
}

.col-val {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--wine);
  line-height: 1;
  padding-bottom: .7rem;
  transition: bottom 1.1s cubic-bezier(.2, .7, .3, 1) .15s;
}

.reveal.in .col-val {
  bottom: var(--h);
}

.col-lab {
  padding-top: 1.1rem;
  font-size: .9rem;
  letter-spacing: .06em;
  line-height: 1.4;
  color: var(--body);
  text-align: center;
}

@media (max-width: 600px) {
  .col-plot {
    height: clamp(150px, 38vw, 200px);
  }

  .col-val {
    font-size: 1.15rem;
  }

  .col-lab {
    font-size: .88rem;
  }

}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  margin-top: clamp(2.8rem, 5vw, 4rem);
}

.tile b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  color: var(--wine);
  line-height: 1;
}

.tile b i {
  font-style: normal;
  font-size: .5em;
  color: var(--rose);
}

.tile strong {
  display: block;
  margin-top: .8rem;
  font-size: .89rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--body);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}


/* counterparty logo marquee */
.logos {
  --logo-gap: clamp(5rem, 9vw, 9rem);
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.logos__track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: max-content;
  animation: logo-scroll 34s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.logos__group {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--logo-gap);
  padding-right: var(--logo-gap);
}

.logos img {
  --logo-h: 34px;
  height: var(--logo-h);
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: .92;
  transition: opacity .3s;
  flex: 0 0 auto;
}

.logos img:hover {
  opacity: 1;
}

.logos img[src$="ebrd.svg"],
.logos img[src$="hig.svg"] {
  --logo-h: 56px;
}

@keyframes logo-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }

}

@media (prefers-reduced-motion: reduce) {
  .logos__track {
    animation: none;
  }

  .logos {
    overflow-x: auto;
  }

}


/* reason / label-and-detail rows */
.reasons>div {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: clamp(1rem, 5vw, 4rem);
  padding: clamp(1.5rem, 2.6vw, 2.1rem) 0;
  align-items: start;
}

.reasons h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 500;
}

.reasons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.reasons li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 1.02rem;
  color: var(--body);
}

.reasons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}


/* strategy detail grid */
.detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.6rem;
  margin-top: 1.9rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--line);
}

.detail h5 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
}

.detail p {
  font-size: .96rem;
  color: var(--body);
  max-width: none;
}

.strat-alloc {
  margin-top: 1.5rem;
}

.strat-alloc b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--wine);
  line-height: 1;
}

.strat-alloc small {
  display: block;
  margin-top: .55rem;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--body);
}

.strat-alloc em {
  display: block;
  margin-top: .9rem;
  font-style: normal;
  font-size: .93rem;
  color: var(--body);
}

.strat-alloc.is-label b {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
}

.band {
  background: var(--cream);
}

@media (max-width: 880px) {
  .mkt-grid {
    grid-template-columns: 1fr;
  }

  .tiles {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .reasons>div {
    grid-template-columns: 1fr;
    gap: .9rem;
  }

  .detail {
    grid-template-columns: 1fr;
  }

  .strat-alloc {
    margin-bottom: 1.4rem;
  }

  .terms>div {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

}


/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .8s cubic-bezier(.2, .7, .3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 880px) {
  .menu {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--wine-deep);
    padding: 1rem var(--pad) 1.6rem;
    transform: translateY(-140%);
    transition: transform .35s cubic-bezier(.2, .7, .3, 1), top .35s;
  }

  header.scrolled .menu {
    top: var(--nav-h-sm);
  }

  .menu.open {
    transform: none;
  }

  .menu a {
    display: block;
    padding: 1rem 0;
    color: #fff;
  }

  .menu .btn {
    margin-top: 1rem;
    justify-content: center;
  }

  .burger {
    display: block;
  }

  header.scrolled .menu a {
    color: #fff;
  }

  .fund .wrap,
  .contact .wrap {
    grid-template-columns: 1fr;
  }

  .fund figure {
    order: -1;
  }

  .offices {
    grid-template-columns: 1fr;
  }

  .foot-top {
    grid-template-columns: 1fr;
  }

}


/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms!important;
    animation-iteration-count: 1!important;
    transition-duration: .001ms!important;
  }

}


/* MOBILE */
@media (max-width: 880px) {
  .hero::after {
    background: linear-gradient(to top, rgba(45, 20, 26, .90) 0%, rgba(45, 20, 26, .56) 50%, rgba(45, 20, 26, .64) 100%), linear-gradient(105deg, rgba(109, 38, 52, .48) 0%, rgba(109, 38, 52, .10) 60%);
  }

  .hero.hero-sm {
    min-height: calc(var(--nav-h) + 88px);
  }

  .hero.hero-contact .wrap {
    padding-top: 54px;
  }

  .menu .btn {
    display: flex;
    justify-content: center;
    padding: .95em 1.3em;
  }

  .hide-sm {
    display: none;
  }

  .logos {
    --logo-gap: 1.6rem;
  }

  .logos img {
    --logo-h: 18px;
  }

  .logos img[src$="ebrd.svg"],
  .logos img[src$="hig.svg"] {
    --logo-h: 30px;
  }

}

@media (max-width: 880px) {
  .stats-band.cols-3 .wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(.5rem, 2.4vw, 2.5rem);
  }

  .stats-band.cols-3 .stat b {
    font-size: clamp(1rem, 6.1vw, 3.3rem);
  }

  .stats-band.cols-3 .stat small {
    font-size: clamp(.56rem, 2.05vw, .86rem);
    letter-spacing: clamp(.03em, .45vw, .12em);
    margin-top: .6rem;
  }

}
