:root {
  --bg: #050505;
  --bg-raised: #090909;
  --surface: #0d0d0d;
  --surface-hover: #11100e;
  --text: #f3f0e8;
  --text-soft: #cbc7bd;
  --muted: #9b978f;
  --muted-2: #6e6b65;
  --gold: #c9a45f;
  --gold-bright: #e0ba6e;
  --gold-dim: rgba(201, 164, 95, 0.16);
  --line: rgba(243, 240, 232, 0.11);
  --line-strong: rgba(243, 240, 232, 0.18);
  --line-gold: rgba(201, 164, 95, 0.32);
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --space-section: clamp(84px, 10vw, 148px);
  --display: "Inter Variable", "SF Pro Display", "Segoe UI Variable Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Inter Variable", "SF Pro Text", "Segoe UI Variable Text", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 4%, rgba(201, 164, 95, 0.055), transparent 25rem),
    var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}

::selection { background: var(--gold); color: #080706; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.65; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  padding: 10px 14px;
  background: var(--gold-bright);
  color: #080706;
  font-size: 13px;
  font-weight: 750;
}
.skip-link:focus { transform: translateY(0); }

.section-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}
.header-inner {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 44px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1px solid var(--line-gold);
  background: linear-gradient(145deg, rgba(201,164,95,.08), rgba(201,164,95,.015));
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 740;
  letter-spacing: -.04em;
}
.brand-name {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.018em;
}
nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 520;
}
nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color .18s ease;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
nav a:hover { color: var(--text); }
nav a:hover::after { transform: scaleX(1); transform-origin: left; }

#ventures, #principles, #about { scroll-margin-top: 96px; }

.hero {
  min-height: min(790px, calc(100svh - 76px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 330px);
  gap: clamp(56px, 7vw, 104px);
  align-items: end;
  padding-block: clamp(100px, 12vh, 150px) clamp(72px, 9vh, 100px);
}
.hero-main { max-width: 940px; }
.eyebrow {
  margin: 0 0 24px;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: .185em;
  font-size: 10.5px;
  line-height: 1.3;
  font-weight: 760;
}
h1, h2, h3 { margin-top: 0; font-family: var(--display); }
h1 {
  max-width: 980px;
  margin-bottom: 30px;
  font-size: clamp(62px, 7.2vw, 108px);
  line-height: .91;
  font-weight: 585;
  letter-spacing: -.066em;
  text-wrap: balance;
}
.hero-copy {
  max-width: 690px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.56;
  letter-spacing: -.012em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid var(--gold);
  font-size: 12.5px;
  font-weight: 720;
  letter-spacing: -.005em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button-primary { background: var(--gold); color: #080706; }
.button-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-1px); }
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 650;
  transition: color .18s ease;
}
.text-link span { margin-left: 9px; color: var(--gold); }
.text-link:hover { color: var(--text); }

.portfolio-index {
  align-self: end;
  border-top: 1px solid var(--line-gold);
}
.portfolio-index-head,
.portfolio-row {
  display: grid;
  align-items: baseline;
}
.portfolio-index-head {
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 15px 0 13px;
}
.portfolio-index-head p,
.portfolio-index-head span {
  margin: 0;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 9.5px;
  font-weight: 740;
}
.portfolio-row {
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.portfolio-row > span { color: var(--gold); font-size: 10px; }
.portfolio-row strong { font-size: 13px; font-weight: 650; letter-spacing: -.012em; }
.portfolio-row em { color: var(--muted-2); font-size: 10.5px; font-style: normal; }

.statement-wrap {
  border-block: 1px solid var(--line);
  background: var(--bg-raised);
}
.statement {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 30px;
  align-items: start;
  padding-block: clamp(72px, 8vw, 104px);
}
.statement-mark { color: var(--gold); font-size: 25px; line-height: 1; }
.statement-label {
  margin: 0 0 17px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 9.5px;
  font-weight: 760;
}
blockquote {
  max-width: 1020px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(35px, 4.45vw, 64px);
  line-height: 1.02;
  font-weight: 535;
  letter-spacing: -.048em;
  text-wrap: balance;
}

.ventures-section,
.principles-section,
.about-section { padding-block: var(--space-section); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) 1.3fr;
  gap: clamp(48px, 7vw, 88px);
  align-items: start;
  margin-bottom: clamp(50px, 6vw, 76px);
}
.section-heading h2,
.about-section h2 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(43px, 5vw, 72px);
  line-height: .97;
  font-weight: 570;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.section-heading-label .eyebrow,
.about-label .eyebrow { margin-bottom: 18px; }
.section-number {
  display: inline-block;
  color: var(--muted-2);
  font-size: 10px;
  letter-spacing: .1em;
}
.section-intro {
  max-width: 680px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.venture {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.014), transparent 42%), var(--surface);
}
.venture::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: .82;
}
.venture-featured {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(54px, 7vw, 86px);
  padding: clamp(38px, 5vw, 62px);
}
.venture-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.venture-number { color: var(--muted-2); font-size: 10px; }
.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 9px;
  font-weight: 760;
}
.status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.status-live::before { background: var(--gold-bright); }
.venture h3 {
  margin: clamp(42px, 5vw, 70px) 0 9px;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: .94;
  font-weight: 585;
  letter-spacing: -.058em;
}
.venture-subtitle { margin: 0; color: var(--muted); font-size: 13px; }
.venture-body { color: var(--muted); font-size: 15.5px; }
.venture-body > p:not(.venture-lead):not(.venture-line) { max-width: 620px; }
.venture-lead {
  margin: 0 0 28px;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 45px);
  line-height: 1.01;
  font-weight: 535;
  letter-spacing: -.042em;
}
.venture-line {
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 11.5px;
  line-height: 1.9;
}
.venture-line span { margin-inline: 5px; color: var(--gold); }
.venture-destination {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.venture-destination strong { color: var(--gold); font-size: 9px; font-weight: 760; }
.venture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.venture-secondary {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 40px);
  transition: background .2s ease, border-color .2s ease;
}
.venture-secondary:hover { background-color: var(--surface-hover); border-color: var(--line-strong); }
.venture-secondary-body { margin-top: auto; padding-top: 62px; }
.venture-secondary h3 { margin: 0 0 13px; font-size: clamp(34px, 3vw, 44px); }
.venture-tagline { margin: 0 0 18px; color: var(--text-soft); font-size: 15px; font-weight: 590; letter-spacing: -.01em; }
.venture-secondary-body > p:last-child { max-width: 540px; margin: 0; color: var(--muted); font-size: 14.5px; }
.venture-secondary .venture-destination { margin-top: 34px; }

.principles-wrap {
  border-block: 1px solid var(--line);
  background: var(--bg-raised);
}
.principle-list { border-top: 1px solid var(--line); }
.principle {
  display: grid;
  grid-template-columns: 78px minmax(240px, .78fr) 1.22fr;
  gap: 30px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.principle-number { padding-top: 2px; color: var(--gold); font-size: 10px; }
.principle h3 { margin: 0; font-size: 19px; font-weight: 620; letter-spacing: -.025em; }
.principle p { max-width: 620px; margin: 0; color: var(--muted); font-size: 14.5px; }

.about-section {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) 1.3fr;
  gap: clamp(48px, 7vw, 88px);
}
.about-content h2 { max-width: 900px; }
.about-content > p {
  max-width: 720px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-block: 44px 58px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 11.5px;
}
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand strong { color: var(--text); font-size: 13px; font-weight: 650; }
.footer-brand p { margin: 4px 0 0; }
.footer-meta { display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 66px;
    padding-block: 104px 76px;
  }
  .portfolio-index { max-width: 600px; }
  .section-heading,
  .about-section { grid-template-columns: 1fr; gap: 30px; }
  .section-heading { margin-bottom: 46px; }
  .section-heading-label { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
  .section-heading-label .eyebrow { margin-bottom: 0; }
  .venture-featured { grid-template-columns: 1fr; gap: 48px; }
  .principle { grid-template-columns: 52px minmax(210px, .8fr) 1.2fr; gap: 22px; }
}

@media (max-width: 720px) {
  :root { --gutter: 18px; --space-section: 78px; }

  .header-inner {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .brand {
    min-height: 62px;
    border-bottom: 1px solid var(--line);
  }
  .brand-name { display: inline; }
  .brand-mark { width: 34px; height: 34px; flex-basis: 34px; }
  nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    font-size: 11.5px;
  }
  nav a {
    justify-content: center;
    min-height: 43px;
    border-right: 1px solid var(--line);
  }
  nav a:first-child { justify-content: flex-start; }
  nav a:last-child { justify-content: flex-end; border-right: 0; }
  nav a::after { display: none; }

  #ventures, #principles, #about { scroll-margin-top: 116px; }

  .hero {
    gap: 50px;
    padding-block: 72px 58px;
  }
  h1 {
    max-width: 650px;
    font-size: clamp(50px, 14vw, 68px);
    line-height: .94;
    letter-spacing: -.058em;
  }
  .hero-copy { font-size: 16.5px; line-height: 1.62; }
  .hero-actions { margin-top: 31px; gap: 16px; }
  .button { min-height: 46px; }

  .portfolio-index { max-width: none; }
  .portfolio-row { padding-block: 13px; }

  .statement {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 66px;
  }
  .statement-mark { font-size: 21px; }
  blockquote { font-size: clamp(33px, 9vw, 48px); }

  .section-heading h2,
  .about-section h2 { font-size: clamp(38px, 10.5vw, 52px); }
  .section-intro { margin-top: 20px; font-size: 15px; }

  .venture-featured { padding: 29px; }
  .venture h3 { margin-top: 54px; }
  .venture-lead { font-size: clamp(29px, 8vw, 38px); }
  .venture-line { font-size: 11px; }
  .venture-grid { grid-template-columns: 1fr; }
  .venture-secondary { min-height: 335px; padding: 28px; }
  .venture-secondary-body { padding-top: 54px; }
  .venture-secondary h3 { font-size: 35px; }

  .principle {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 25px 0;
  }
  .principle p { grid-column: 2; }

  .about-section { gap: 34px; }
  .about-content > p { margin-top: 24px; font-size: 16px; }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding-block: 38px 48px;
  }
  .footer-meta { justify-content: flex-start; gap: 8px 18px; }
}

@media (max-width: 390px) {
  .eyebrow { letter-spacing: .15em; }
  .brand-name { font-size: 13px; }
  nav { font-size: 11px; }
  h1 { font-size: clamp(46px, 14vw, 58px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; justify-content: space-between; }
  .venture-meta { align-items: flex-start; }
  .status { max-width: 170px; justify-content: flex-end; text-align: right; line-height: 1.45; }
  .venture-destination { align-items: flex-start; }
  .venture-destination strong { text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
