/* =====================================================================
   Circle Private Capital — Home stylesheet
   Design tokens + semantic component styles. No build step required.
   Palette & type scale follow the Circle brand system (normativa v2).
   ===================================================================== */

:root {
  /* Brand palette */
  --gold: #997b3b;
  --bg: #17171c; /* base dark            */
  --panel: #111116; /* darker panel         */
  --navy: #103245; /* brand navy           */
  --ink: #20292f; /* text on light        */
  --cream: #f6f4f0; /* light section bg     */
  --white: #ffffff;

  /* Layout */
  --font: "Century Gothic", Arial, sans-serif;
  --maxw: 1180px; /* content width  */
  --px: clamp(20px, 5vw, 72px); /* horizontal gutter */
}

/* ---------------------------------------------------------------------
   Reset & base
   --------------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
}
a {
  color: inherit;
}

input,
textarea {
  font-family: var(--font);
  outline: none;
}
input:focus,
textarea:focus {
  border-color: var(--gold);
}
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* ---------------------------------------------------------------------
   Accessibility helpers
   --------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font);
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 16px;
  text-decoration: none;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* ---------------------------------------------------------------------
   Shared interactive states
   --------------------------------------------------------------------- */
.btn-gold {
  transition: opacity 0.18s ease;
}
.btn-gold:hover {
  opacity: 0.88;
}
.nav-link {
  transition: color 0.18s ease;
}
.nav-link:hover {
  color: var(--gold);
}

/* ---------------------------------------------------------------------
   Responsive navigation (desktop links vs. mobile toggle)
   --------------------------------------------------------------------- */
@media (min-width: 1000px) {
  .nav-desktop {
    display: flex !important;
    align-items: center;
  }
  #menuBtn {
    display: none !important;
  }
}
@media (max-width: 999px) {
  .nav-desktop {
    display: none !important;
  }
  #menuBtn {
    display: block !important;
  }
}

/* ====================================================================
   HEADER · TOP BAR
   ==================================================================== */

.topbar {
  background: var(--panel);
}
.topbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 9px var(--px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  border-bottom: 1px solid rgba(153, 123, 59, 0.16);
}
.lang {
  display: flex;
  align-items: center;
  gap: 9px;
}
.lang__label {
  font-family: var(--font);
  letter-spacing: 0.06em;
  font-size: 10.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.lang__link--active {
  font-family: var(--font);
  font-weight: bold;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--bg);
  text-decoration: none;
}
.lang__link {
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}
.topbar__investors {
  font-family: var(--font);
  letter-spacing: 0.06em;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

/* ====================================================================
   PRIMARY NAV + MOBILE MENU
   ==================================================================== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 23, 28, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(153, 123, 59, 0.14);
}
.site-nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-nav__logo-img {
  height: 26px;
  display: block;
}
.is-hidden {
  display: none;
}
.nav-link {
  font-family: var(--font);
  letter-spacing: 0.08em;
  font-size: 12.5px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  margin-right: 26px;
}
.nav-cta {
  font-family: var(--font);
  font-weight: bold;
  letter-spacing: 0.06em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 11px 20px;
  text-decoration: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(153, 123, 59, 0.4);
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  margin-bottom: 5px;
}
.nav-toggle__bar--last {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
}
.mobile-menu {
  display: none;
  background: var(--bg);
  padding: 8px var(--px) 20px;
}
.mobile-menu__link {
  display: block;
  font-family: var(--font);
  letter-spacing: 0.08em;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(153, 123, 59, 0.18);
}
.mobile-menu__cta {
  display: block;
  text-align: center;
  font-family: var(--font);
  font-weight: bold;
  letter-spacing: 0.06em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 14px;
  text-decoration: none;
  margin-top: 14px;
}

/* ====================================================================
   HERO — DEFAULT (variant A)
   ==================================================================== */

.hero {
  position: relative;
  min-height: clamp(560px, 84vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 42%;
  filter: grayscale(0.62) brightness(0.5) contrast(1.08);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 23, 28, 0.55) 0%,
    rgba(23, 23, 28, 0.18) 42%,
    rgba(23, 23, 28, 0.94) 100%
  );
}
.hero__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(32, 41, 47, 0.42), rgba(32, 41, 47, 0.05));
  mix-blend-mode: multiply;
}
.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--px) clamp(48px, 8vh, 80px);
}
.eyebrow {
  font-family: var(--font);
  letter-spacing: 0.34em;
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--font);
  font-weight: bold;
  font-size: clamp(40px, 6.2vw, 78px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-top: 18px;
  max-width: 15ch;
  text-wrap: balance;
}
.lede {
  margin-top: 22px;
  border-collapse: collapse;
}
.lede__dash {
  border-top: 1px solid var(--gold);
  width: 46px;
  padding: 0;
}
.lede__gap {
  width: 14px;
}
.hero__lede {
  font-size: 15px;
  line-height: 1.6;
  color: var(--white);
  max-width: 46ch;
  padding-top: 8px;
}
.hero__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__cta-primary {
  font-family: var(--font);
  font-weight: bold;
  letter-spacing: 0.06em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 15px 26px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.hero__cta-secondary {
  font-family: var(--font);
  font-weight: bold;
  letter-spacing: 0.06em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 15px 26px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* ====================================================================
   HERO — CENTERED (variant B)
   ==================================================================== */

.hero-centered {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: clamp(72px, 12vh, 128px) var(--px) clamp(72px, 12vh, 120px);
  text-align: center;
}
.hero-centered__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(620px, 90vw);
  height: min(620px, 90vw);
  border: 1px solid rgba(153, 123, 59, 0.24);
  border-radius: 50%;
}
.hero-centered__ring--inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(440px, 64vw);
  height: min(440px, 64vw);
  border: 1px solid rgba(153, 123, 59, 0.14);
  border-radius: 50%;
}
.hero-centered__content {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.hero-centered__title {
  font-family: var(--font);
  font-weight: bold;
  font-size: clamp(38px, 5.6vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--white);
  margin-top: 20px;
  text-wrap: balance;
}
.hero-centered__rule {
  width: 46px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto 0;
}
.hero-centered__lede {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 24px auto 0;
}
.hero-centered__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}
.hero-alt__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font);
  font-weight: bold;
  letter-spacing: 0.06em;
  font-size: 14px;
  text-transform: uppercase;
  padding: 16px 30px;
  text-decoration: none;
}
.hero-alt__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-family: var(--font);
  letter-spacing: 0.06em;
  font-size: 14px;
  text-transform: uppercase;
  padding: 16px 28px;
  text-decoration: none;
}

/* ====================================================================
   HERO — SPLIT (variant C)
   ==================================================================== */

.hero-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  background: var(--bg);
}
.hero-split__text {
  padding: clamp(56px, 9vh, 104px) var(--px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-split__title {
  font-family: var(--font);
  font-weight: bold;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.012em;
  color: var(--white);
  margin-top: 18px;
  text-wrap: balance;
}
.lede--split {
  margin-top: 20px;
  border-collapse: collapse;
}
.lede__dash--sm {
  border-top: 1px solid var(--gold);
  width: 36px;
  padding: 0;
}
.hero-split__lede {
  font-size: 15px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.82);
  max-width: 40ch;
  padding-top: 6px;
}
.hero-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-split__media {
  position: relative;
  min-height: clamp(360px, 60vh, 640px);
  overflow: hidden;
}
.hero-split__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 42%;
  filter: grayscale(0.4) brightness(0.82) contrast(1.05);
}
.hero-split__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 23, 28, 0.6), transparent 30%);
}

/* ====================================================================
   PROPOSAL
   ==================================================================== */

.proposal {
  position: relative;
  background: var(--bg);
  padding: clamp(64px, 10vh, 110px) 0;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--px);
}
.kicker {
  font-family: var(--font);
  letter-spacing: 0.28em;
  font-size: 12px;
  color: var(--gold);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin-top: 16px;
}
.proposal__title {
  font-family: var(--font);
  font-weight: bold;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  color: var(--white);
}
.proposal__sub {
  font-family: var(--font);
  font-style: italic;
  font-size: 17.5px;
  line-height: 1.5;
  color: var(--gold);
  padding-top: 8px;
}
.proposal__body {
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}
.proposal__body-2 {
  font-size: 14.5px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.66);
  margin-top: 18px;
}

/* ====================================================================
   STRATEGIES
   ==================================================================== */

.strategies {
  background: var(--panel);
  padding: clamp(64px, 10vh, 110px) 0;
}
.section-title {
  font-family: var(--font);
  font-weight: bold;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  color: var(--white);
  margin-top: 16px;
  max-width: 20ch;
}
.strategies__intro {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.66);
  margin-top: 18px;
  max-width: 64ch;
}
.strategies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(36px, 5vh, 52px);
}
.strategy-card--active {
  border-color: rgba(153, 123, 59, 0.55);
}
.strategy-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font);
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 10px;
  text-transform: uppercase;
  padding: 7px 14px;
}
.strategy-card__cat {
  font-family: var(--font);
  letter-spacing: 0.24em;
  font-size: 12px;
  color: var(--gold);
}
.strategy-card__name {
  font-family: var(--font);
  font-weight: bold;
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.05;
  color: var(--white);
  margin-top: 12px;
}
.strategy-card__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 16px;
}
.metrics {
  margin-top: 26px;
  border-top: 1px solid rgba(153, 123, 59, 0.24);
}
.metrics__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.metrics__label {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.66);
}
.metrics__value {
  font-family: var(--font);
  font-weight: bold;
  font-size: 20px;
  color: var(--gold);
  white-space: nowrap;
}
.strategy-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  font-family: var(--font);
  letter-spacing: 0.06em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.strategy-card {
  position: relative;
  border: 1px solid rgba(153, 123, 59, 0.22);
  background: var(--bg);
  padding: clamp(28px, 3.5vw, 40px);
}
.strategy-card__badge--outline {
  position: absolute;
  top: 0;
  right: 0;
  border-left: 1px solid rgba(153, 123, 59, 0.22);
  border-bottom: 1px solid rgba(153, 123, 59, 0.22);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font);
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 10px;
  text-transform: uppercase;
  padding: 7px 14px;
}

/* ====================================================================
   FEATURED PROJECT
   ==================================================================== */

.featured {
  background: var(--cream);
}
.featured__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vh, 100px) var(--px);
}
.featured__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin-top: 22px;
  align-items: center;
}
.featured__title {
  font-family: var(--font);
  font-weight: bold;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--navy);
}
.featured__addr {
  font-family: var(--font);
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--gold);
  margin-top: 14px;
}
.featured__body {
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 1.72;
  color: var(--ink);
  margin-top: 22px;
}
.featured__points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px 26px;
  margin-top: 28px;
}
.point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-top: 15px;
  border-top: 1px solid rgba(16, 50, 69, 0.18);
}
.point__mark {
  margin-top: 6px;
  flex: 0 0 auto;
}
.point__text {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.featured__pull {
  font-family: var(--font);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.45;
  color: var(--navy);
  margin-top: 30px;
  font-style: italic;
}
.stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.featured__frame {
  padding: 9px;
  border: 1px solid rgba(16, 50, 69, 0.16);
}
.featured__img {
  width: 100%;
  height: clamp(240px, 34vh, 340px);
  object-fit: cover;
  object-position: 60% 42%;
  display: block;
}
.featured__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.featured__thumb {
  padding: 8px;
  border: 1px solid rgba(16, 50, 69, 0.16);
}
.featured__thumb-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

/* ====================================================================
   SHARED DARK PANEL (simulator + contact)
   ==================================================================== */

.panel {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.panel__ring {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(153, 123, 59, 0.14);
  border-radius: 50%;
}
.panel__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 10vh, 110px) var(--px);
}

/* ====================================================================
   RETURNS SIMULATOR
   ==================================================================== */

.sim__title {
  font-family: var(--font);
  font-weight: bold;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  color: var(--white);
  margin-top: 16px;
  max-width: 22ch;
}
.sim__intro {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 18px;
  max-width: 56ch;
}
.sim__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(36px, 5vh, 52px);
  align-items: center;
}
.sim__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font);
  letter-spacing: 0.08em;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.sim__out {
  font-family: var(--font);
  font-weight: bold;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0;
}
.sim__slider {
  width: 100%;
  margin-top: 10px;
  accent-color: var(--gold);
}
.sim__row--mt {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font);
  letter-spacing: 0.08em;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 26px;
}
.sim__chip {
  border: 1px solid rgba(153, 123, 59, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-top: 22px;
}
.sim__chip-label {
  font-family: var(--font);
  letter-spacing: 0.08em;
  font-size: 10.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.sim__chip-value {
  font-family: var(--font);
  font-weight: bold;
  font-size: 15px;
  color: var(--gold);
}
.sim__result {
  border: 1px solid rgba(153, 123, 59, 0.4);
  background: var(--panel);
  padding: clamp(24px, 3vw, 34px);
}
.sim__result-label {
  font-family: var(--font);
  letter-spacing: 0.16em;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.sim__result-value {
  font-family: var(--font);
  font-weight: bold;
  font-size: clamp(36px, 5vw, 54px);
  color: var(--gold);
  margin-top: 8px;
}
.sim__breakdown {
  display: flex;
  gap: 32px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.sim__bd-label {
  font-family: var(--font);
  letter-spacing: 0.08em;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.sim__bd-value {
  font-family: var(--font);
  font-weight: bold;
  font-size: 16px;
  color: var(--white);
  margin-top: 4px;
}
.sim__bd-value--gain {
  font-family: var(--font);
  font-weight: bold;
  font-size: 16px;
  color: var(--gold);
  margin-top: 4px;
}
.sim__disclaimer {
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
}

/* ====================================================================
   BACKGROUND · PORTFOLIO · TRACK RECORD
   ==================================================================== */

.background {
  background: var(--bg);
  padding: clamp(64px, 10vh, 110px) 0;
}
.background__intro {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.66);
  margin-top: 18px;
  max-width: 62ch;
}
.background__subhead {
  font-family: var(--font);
  letter-spacing: 0.16em;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: clamp(36px, 5vh, 52px);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(153, 123, 59, 0.2);
}
.portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  margin-top: 26px;
}
.portfolio-card {
  border: 1px solid rgba(153, 123, 59, 0.2);
  background: var(--panel);
}
.portfolio-card__media {
  position: relative;
}
.portfolio-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.portfolio-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font);
  font-weight: bold;
  letter-spacing: 0.08em;
  font-size: 10px;
  text-transform: uppercase;
  padding: 5px 11px;
}
.portfolio-card__status {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(23, 23, 28, 0.8);
  color: var(--white);
  font-family: var(--font);
  letter-spacing: 0.08em;
  font-size: 10px;
  text-transform: uppercase;
  padding: 5px 11px;
}
.portfolio-card__body {
  padding: 22px;
}
.portfolio-card__title {
  font-family: var(--font);
  font-weight: bold;
  font-size: 19px;
  color: var(--white);
}
.portfolio-card__meta {
  margin-top: 14px;
}
.portfolio-card__meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.portfolio-card__meta-label {
  font-family: var(--font);
  letter-spacing: 0.06em;
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.portfolio-card__meta-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
}
.background__subhead--track {
  font-family: var(--font);
  letter-spacing: 0.16em;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 56px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(153, 123, 59, 0.2);
}
.track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 26px;
}
.track-card {
  border: 1px solid rgba(153, 123, 59, 0.16);
  background: var(--panel);
}
.track-card__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 68%;
  display: block;
}
.track-card__body {
  padding: 18px;
  background: var(--panel);
}
.track-card__cat {
  font-family: var(--font);
  letter-spacing: 0.08em;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--gold);
}
.track-card__title {
  font-family: var(--font);
  font-weight: bold;
  font-size: 16px;
  color: var(--white);
  margin-top: 8px;
}
.track-card__desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.66);
  margin-top: 8px;
}
.track-card__status {
  font-family: var(--font);
  letter-spacing: 0.04em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}
.background__footnote {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 30px;
}

/* ====================================================================
   PARTNERSHIPS
   ==================================================================== */

.partners {
  background: var(--panel);
  padding: clamp(56px, 8vh, 88px) 0;
}
.partners__title {
  font-family: var(--font);
  font-weight: bold;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  color: var(--white);
  margin-top: 14px;
  max-width: 20ch;
}
.partners__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
  margin-top: 36px;
}
.partners__logo--lg {
  height: 64px;
  width: auto;
  display: block;
}
.partners__logo {
  height: 30px;
  width: auto;
  display: block;
}
.partners__logo--md {
  height: 34px;
  width: auto;
  display: block;
}
.partners__logo--nexos {
  height: 32px;
  width: auto;
  display: block;
}
.partners__capital {
  border-top: 1px solid rgba(153, 123, 59, 0.2);
  margin-top: 36px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.partners__capital-label {
  font-family: var(--font);
  letter-spacing: 0.16em;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.partners__capital-logo {
  height: 20px;
  width: auto;
  display: block;
}

/* ====================================================================
   CONTACT
   ==================================================================== */

.contact__title {
  font-family: var(--font);
  font-weight: bold;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.06;
  color: var(--white);
}
.contact__intro {
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 20px;
  max-width: 44ch;
}
.contact__details {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__detail {
  font-size: 14px;
  color: var(--white);
}
.contact__detail-label {
  color: rgba(255, 255, 255, 0.5);
}
.field {
  font-family: var(--font);
  font-size: 14px;
  background: var(--panel);
  border: 1px solid rgba(153, 123, 59, 0.3);
  color: var(--white);
  padding: 13px 14px;
}
.field--textarea {
  resize: vertical;
}
.contact-form__submit {
  font-family: var(--font);
  font-weight: bold;
  letter-spacing: 0.06em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  border: none;
  padding: 15px 26px;
  cursor: pointer;
}
.contact-form__note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}
.contact-success {
  display: none;
  text-align: center;
  padding: 30px 0;
}
.contact-success__title {
  font-family: var(--font);
  font-weight: bold;
  font-size: 22px;
  color: var(--white);
  margin-top: 16px;
}
.contact-success__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}
.contact-success__reset {
  font-family: var(--font);
  letter-spacing: 0.06em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: none;
  padding: 10px 20px;
  margin-top: 16px;
  cursor: pointer;
}

/* ====================================================================
   SITE FOOTER
   ==================================================================== */

.site-footer {
  background: var(--panel);
  padding: clamp(48px, 7vh, 72px) 0 clamp(36px, 5vh, 52px);
}
.site-footer__cols {
  border-top: 1px solid rgba(153, 123, 59, 0.16);
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.site-footer__label {
  font-family: var(--font);
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--gold);
}
.site-footer__text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 9px;
}
.site-footer__bottom {
  border-top: 1px solid rgba(153, 123, 59, 0.16);
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__copy {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
}
.site-footer__link {
  font-size: 11.5px;
  color: var(--gold);
  text-decoration: none;
}
