:root {
  --black: #070706;
  --charcoal: #11100d;
  --panel: #17130d;
  --panel-soft: #211a10;
  --gold: #c59a3d;
  --gold-bright: #f0d18a;
  --cream: #fff4d9;
  --text: #f4ead7;
  --muted: #b9aa88;
  --line: rgba(240, 209, 138, 0.18);
  --line-strong: rgba(240, 209, 138, 0.34);
}

* {
  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: 30;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px clamp(22px, 5vw, 72px);
  background: rgba(7, 7, 6, 0.76);
  border-bottom: 1px solid rgba(240, 209, 138, 0.1);
  backdrop-filter: blur(18px);
}

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

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

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav a {
  position: relative;
  text-decoration: none;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold-bright);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 34%, rgba(197, 154, 61, 0.16), transparent 28%),
    linear-gradient(135deg, var(--black), var(--panel));
}

.hero::after {
  position: absolute;
  right: clamp(22px, 6vw, 82px);
  bottom: clamp(20px, 6vw, 82px);
  width: min(38vw, 520px);
  height: min(38vw, 520px);
  border: 1px solid rgba(240, 209, 138, 0.16);
  border-radius: 50%;
  content: "";
  opacity: 0.55;
}

.hero-image {
  position: absolute;
  inset: 0 0 0 44%;
  width: 56%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.75) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.98) 0%, rgba(7, 7, 6, 0.9) 48%, rgba(7, 7, 6, 0.44) 100%),
    linear-gradient(180deg, rgba(7, 7, 6, 0.08), rgba(7, 7, 6, 0.88));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(680px, calc(100% - 44px));
  margin-left: clamp(22px, 7vw, 96px);
  padding-top: 96px;
}

.eyebrow,
.section-kicker,
.portfolio-label {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

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

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--cream);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(42px, 6.2vw, 86px);
  font-weight: 600;
  line-height: 0.94;
}

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

.hero-logo {
  display: block;
  width: min(420px, 72vw);
  max-height: 160px;
  object-fit: contain;
  object-position: left center;
  margin: -8px 0 28px -10px;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(244, 234, 215, 0.78);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.48;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  background: rgba(197, 154, 61, 0.16);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(244, 234, 215, 0.16);
  color: var(--muted);
}

.button:hover {
  border-color: var(--gold-bright);
  background: rgba(240, 209, 138, 0.22);
}

.intro,
.approach,
.portfolio {
  padding: clamp(70px, 9vw, 120px) clamp(22px, 7vw, 96px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(197, 154, 61, 0.05), transparent 40%),
    var(--charcoal);
}

.about-photo {
  position: relative;
  min-height: clamp(420px, 45vw, 620px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.about-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(7, 7, 6, 0.22)),
    inset 0 0 0 14px rgba(240, 209, 138, 0.04);
  content: "";
  pointer-events: none;
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.76) contrast(1.06);
}

.about-panel {
  max-width: 820px;
}

.about-panel h2 {
  margin-bottom: clamp(26px, 4vw, 40px);
}

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

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

.credentials {
  margin-top: 38px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(240, 209, 138, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(7, 7, 6, 0.24);
}

.credentials h3 {
  margin-bottom: 24px;
  color: var(--cream);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
}

.credentials ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.credentials li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.45;
}

.credentials li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  content: "";
}

.approach {
  background:
    radial-gradient(circle at 12% 14%, rgba(240, 209, 138, 0.08), transparent 30%),
    var(--black);
}

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

.pillars article {
  min-height: 310px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(240, 209, 138, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel);
}

.pillars span {
  display: block;
  margin-bottom: clamp(58px, 8vw, 96px);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.pillars h3 {
  margin-bottom: 14px;
  color: var(--cream);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  line-height: 1;
}

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

.portfolio {
  background:
    radial-gradient(circle at 82% 8%, rgba(240, 209, 138, 0.11), transparent 26%),
    linear-gradient(180deg, var(--charcoal), var(--black));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: end;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(340px, 1fr);
  gap: 16px;
  margin-top: clamp(36px, 5vw, 58px);
}

.portfolio-feature,
.public-portfolio {
  border: 1px solid var(--line);
  background: rgba(23, 19, 13, 0.88);
}

.portfolio-feature {
  min-height: 390px;
  padding: clamp(28px, 4vw, 44px);
}

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

.portfolio h3 {
  margin-bottom: 16px;
  color: var(--cream);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 600;
  line-height: 1;
}

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

.allocation {
  display: grid;
  grid-template-columns: 184px minmax(240px, 1fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  margin: 34px 0;
}

.donut {
  display: grid;
  width: 184px;
  height: 184px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--panel) 0 45%, transparent 46%),
    conic-gradient(
      #f0d18a 0 26.9%,
      #c59a3d 26.9% 38.1%,
      #8f6d2c 38.1% 45.1%,
      rgba(240, 209, 138, 0.24) 45.1% 100%
    );
  box-shadow: inset 0 0 0 1px var(--line);
}

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

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

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

.allocation-list strong {
  min-width: 52px;
  color: var(--cream);
}

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

.swatch.growth {
  background: #f0d18a;
}

.swatch.leveraged {
  background: var(--gold);
}

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

.swatch.support {
  background: rgba(240, 209, 138, 0.28);
}

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

.text-link {
  display: inline-flex;
  margin: 8px 0 18px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--cream);
}

.disclosure {
  max-width: 760px;
  margin: 0;
  color: rgba(185, 170, 136, 0.72);
  font-size: 13px;
}

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

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

@media (max-width: 900px) {
  .intro,
  .section-heading,
  .portfolio-grid,
  .allocation,
  .pillars {
    grid-template-columns: 1fr;
  }

  .pillars article,
  .portfolio-feature {
    min-height: auto;
  }
}

@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;
    font-size: 10px;
  }

  .hero {
    min-height: 88svh;
    align-items: end;
    padding-bottom: 46px;
  }

  .hero::after {
    display: none;
  }

  .hero-image {
    inset: 0;
    width: 100%;
    opacity: 0.18;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin-inline: 20px;
    padding-top: 128px;
  }

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

  .hero-copy {
    font-size: 19px;
  }

  .button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 10px;
  }

  .about-photo {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

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