:root {
  --black: #050505;
  --ink: #0c0b09;
  --panel: #12100c;
  --panel-soft: #18140e;
  --gold: #c99a35;
  --gold-light: #f1d28a;
  --text: #f7f0df;
  --muted: #c7b995;
  --line: rgba(241, 210, 138, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid rgba(241, 210, 138, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: auto;
  height: clamp(42px, 6vw, 58px);
  max-width: 230px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

nav a {
  text-decoration: none;
}

nav a:hover,
.site-footer a:hover {
  color: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.74) 46%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  line-height: 0.96;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fff5dc;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 600;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: #eadfca;
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-logo {
  display: block;
  width: min(650px, 84vw);
  max-height: 280px;
  object-fit: contain;
  object-position: left center;
  margin: -12px 0 20px -12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(241, 210, 138, 0.42);
  background: rgba(201, 154, 53, 0.16);
  color: #fff4d5;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--muted);
}

.button:hover {
  border-color: rgba(241, 210, 138, 0.76);
  background: rgba(201, 154, 53, 0.24);
}

.intro,
.approach,
.portfolio {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 7vw, 96px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  background: var(--ink);
}

.prose {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
}

.prose p {
  margin-bottom: 22px;
}

.approach {
  background:
    linear-gradient(180deg, rgba(201, 154, 53, 0.05), transparent 38%),
    var(--black);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 5vw, 56px);
}

.pillars article {
  min-height: 260px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(241, 210, 138, 0.16);
  background: linear-gradient(180deg, rgba(241, 210, 138, 0.06), rgba(255, 255, 255, 0.02));
}

.pillars span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.pillars h3 {
  margin-bottom: 12px;
  color: #fff3d0;
  font-size: 23px;
  line-height: 1.18;
}

.pillars p {
  margin-bottom: 0;
  color: var(--muted);
}

.portfolio {
  background:
    radial-gradient(circle at 80% 10%, rgba(201, 154, 53, 0.1), transparent 28%),
    var(--black);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(320px, 1fr);
  gap: 16px;
  margin-top: clamp(34px, 5vw, 56px);
}

.portfolio-feature,
.public-portfolio {
  border: 1px solid rgba(241, 210, 138, 0.16);
  background: rgba(18, 16, 12, 0.86);
}

.portfolio-feature {
  min-height: 360px;
  padding: clamp(26px, 4vw, 42px);
}

.public-portfolio {
  padding: clamp(26px, 4vw, 42px);
}

.portfolio-label {
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio h3 {
  margin-bottom: 14px;
  color: #fff3d0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
}

.portfolio p {
  color: var(--muted);
}

.allocation {
  display: grid;
  grid-template-columns: 180px minmax(240px, 1fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: center;
  margin: 28px 0;
}

.donut {
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--panel) 0 45%, transparent 46%),
    conic-gradient(
      #f1d28a 0 26.9%,
      #c99a35 26.9% 38.1%,
      #8f6d2c 38.1% 45.1%,
      rgba(241, 210, 138, 0.22) 45.1% 100%
    );
  box-shadow: inset 0 0 0 1px rgba(241, 210, 138, 0.18);
}

.donut span {
  color: #fff5dc;
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.allocation-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.allocation-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}

.allocation-list strong {
  min-width: 48px;
  color: #fff3d0;
}

.swatch {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.swatch.growth {
  background: #f1d28a;
}

.swatch.leveraged {
  background: #c99a35;
}

.swatch.digital {
  background: #8f6d2c;
}

.swatch.support {
  background: rgba(241, 210, 138, 0.32);
}

.portfolio-copy {
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  margin: 4px 0 18px;
  color: var(--gold-light);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: #fff5dc;
}

.disclosure {
  max-width: 760px;
  margin: 0;
  color: rgba(199, 185, 149, 0.74);
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 7vw, 96px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    gap: 12px;
    padding: 16px 20px;
  }

  .brand img {
    height: 42px;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero {
    min-height: 88vh;
    align-items: flex-end;
    padding-bottom: 52px;
  }

  .hero-content {
    margin-inline: 20px;
    padding-top: 118px;
  }

  h1 {
    position: absolute;
  }

  .hero-logo {
    width: min(355px, 94vw);
    margin: -8px 0 18px -8px;
  }

  .intro,
  .section-heading,
  .portfolio-grid,
  .allocation {
    grid-template-columns: 1fr;
  }

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

  .pillars article {
    min-height: auto;
  }

  .portfolio-feature {
    min-height: auto;
  }

  .donut {
    width: 168px;
    height: 168px;
  }
}
