:root {
  --ink: #071923;
  --ink-soft: #18313a;
  --ivory: #f4f0e8;
  --stone: #c9c1b5;
  --brass: #a8864b;
  --brass-light: #c5a66c;
  --white: #ffffff;
  --text: #152129;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.hero {
  position: relative;
  min-height: 900px;
  height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 20, 29, .98) 0%, rgba(4, 20, 29, .92) 46%, rgba(4, 20, 29, .18) 72%, rgba(4, 20, 29, .03) 100%),
    url("assets/united-fund-hero.png") center center / cover no-repeat;
  color: var(--ivory);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 52%;
  z-index: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, .08), transparent 42%);
  opacity: .4;
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 10, 15, .25), transparent 25%, transparent 75%, rgba(2, 10, 15, .45));
}

.site-header {
  position: relative;
  z-index: 5;
  height: 104px;
  padding: 0 clamp(28px, 4.2vw, 68px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.wordmark {
  color: var(--ivory);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
  font-size: 14px;
}

.nav a,
.header-contact {
  transition: color .2s ease;
}

.nav a:hover,
.header-contact:hover {
  color: var(--brass-light);
}

.header-contact {
  justify-self: end;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.header-contact span {
  margin-left: 8px;
  color: var(--brass-light);
}

.menu-button {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(670px, 50vw);
  margin: clamp(100px, 14vh, 170px) 0 0 clamp(28px, 4.2vw, 68px);
  animation: rise-in .8s ease-out both;
}

.kicker,
.section-label,
.eyebrow {
  margin: 0 0 26px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  font-weight: 700;
}

.kicker {
  color: var(--brass-light);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(68px, 7.5vw, 116px);
  line-height: .88;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 40px;
  color: rgba(244, 240, 232, .86);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
}

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

.button {
  min-height: 62px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--brass);
  color: #fff;
}

.button-gold:hover {
  background: #ba985a;
}

.button-outline {
  border-color: var(--brass);
  color: var(--ivory);
}

.button-outline:hover {
  background: var(--brass);
}

.hero-principles {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: clamp(28px, 4.2vw, 68px);
  right: clamp(28px, 4.2vw, 68px);
  height: 112px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-top: 1px solid rgba(197, 166, 108, .65);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 10px;
}

.hero-principles span + span {
  border-left: 1px solid rgba(197, 166, 108, .7);
  padding-left: 9vw;
}

.section-pad {
  padding: 120px clamp(28px, 6vw, 96px);
}

.intro {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 80px;
  background: var(--ivory);
}

.section-label {
  color: #7a6848;
}

.intro-copy {
  max-width: 920px;
}

.intro h2,
.section-head h2,
.private-copy h2,
.contact h2 {
  margin-bottom: 36px;
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 1.04;
}

.intro-copy > p {
  max-width: 790px;
  color: #536068;
  font-size: 20px;
  line-height: 1.8;
}

.platform {
  padding-top: 90px;
  background: #e7e1d8;
}

.section-head {
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 72px;
}

.section-head h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-head > p {
  margin-bottom: 8px;
  color: #5f696e;
  font-size: 15px;
  line-height: 1.8;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #c6beb2;
  border: 1px solid #c6beb2;
}

.capability {
  min-height: 540px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  transition: background .25s ease, color .25s ease;
}

.capability:hover {
  background: var(--ink);
  color: var(--ivory);
}

.capability-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 66px;
  color: #7d7060;
  font-size: 13px;
}

.capability .eyebrow {
  margin-bottom: 20px;
  color: var(--brass);
}

.capability h3 {
  max-width: 360px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 400;
  line-height: 1.12;
}

.capability > p:not(.eyebrow) {
  color: #657076;
  font-size: 15px;
  line-height: 1.75;
  transition: color .25s ease;
}

.capability:hover > p:not(.eyebrow) {
  color: rgba(244, 240, 232, .7);
}

.capability > a {
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid #cfc7bb;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}

.thesis {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 110px;
  background: var(--ink);
  color: var(--ivory);
}

.section-label.light {
  color: var(--brass-light);
}

.thesis-lead {
  position: sticky;
  top: 70px;
  align-self: start;
}

.thesis h2 {
  margin-bottom: 36px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.02;
}

.thesis-lead > p:last-child {
  max-width: 520px;
  color: rgba(244, 240, 232, .62);
  font-size: 17px;
  line-height: 1.7;
}

.theme-row {
  min-height: 180px;
  display: grid;
  grid-template-columns: 55px 1fr 1fr;
  gap: 30px;
  align-items: start;
  padding: 38px 0;
  border-top: 1px solid rgba(244, 240, 232, .2);
}

.theme-row > span {
  color: var(--brass-light);
  font-size: 11px;
}

.theme-row h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.theme-row p {
  color: rgba(244, 240, 232, .55);
  font-size: 14px;
  line-height: 1.7;
}

.private-office {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  background: #d8d0c3;
}

.private-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255,255,255,.24), transparent 45%),
    #20352c;
  color: #ded4c3;
}

.private-visual > span {
  position: absolute;
  top: 36px;
  left: 38px;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 10px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(222, 212, 195, .35);
  border-radius: 50%;
}

.orbit-one {
  width: 520px;
  height: 520px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-two {
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #c8b79d;
  color: #20352c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
}

.private-copy {
  align-self: center;
}

.private-copy > p:not(.section-label) {
  max-width: 650px;
  color: #4f5953;
  font-size: 17px;
  line-height: 1.8;
}

.private-services {
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(32, 53, 44, .35);
}

.private-services span {
  padding: 18px 0;
  border-bottom: 1px solid rgba(32, 53, 44, .35);
  font-size: 13px;
}

.private-services span:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid rgba(32, 53, 44, .35);
}

.text-link {
  display: inline-flex;
  gap: 45px;
  padding-bottom: 9px;
  border-bottom: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}

.process {
  background: var(--ivory);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #bdb5a9;
}

.process-step {
  min-height: 300px;
  padding: 30px 30px 0 0;
}

.process-step + .process-step {
  padding-left: 30px;
  border-left: 1px solid #bdb5a9;
}

.process-step > span {
  color: var(--brass);
  font-size: 11px;
}

.process-step h3 {
  margin: 70px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.process-step p {
  color: #667177;
  font-size: 14px;
  line-height: 1.7;
}

.insights {
  background: #d9d2c7;
}

.text-link.dark {
  justify-self: end;
  margin-bottom: 12px;
}

.insight-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 1px;
  background: #bcb3a6;
  border: 1px solid #bcb3a6;
}

.insight-grid article {
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: #ece6dd;
}

.insight-grid article:first-child {
  background: var(--ink-soft);
  color: var(--ivory);
}

.insight-grid article > p {
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
}

.insight-grid h3 {
  max-width: 560px;
  margin: 60px 0 40px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 400;
  line-height: 1.2;
}

.insight-grid a {
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
}

.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  background: #061821;
  color: var(--ivory);
}

.contact-intro > p:not(.section-label) {
  max-width: 520px;
  color: rgba(244, 240, 232, .62);
  line-height: 1.8;
}

.contact-intro > a {
  display: inline-block;
  margin-top: 24px;
  color: var(--brass-light);
}

form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(244, 240, 232, .72);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(244, 240, 232, .35);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ivory);
  text-transform: none;
  letter-spacing: normal;
  font-size: 16px;
}

select {
  color-scheme: dark;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brass-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

form .button {
  align-self: flex-start;
  margin-top: 10px;
}

.form-note {
  color: rgba(244, 240, 232, .4);
  font-size: 11px;
}

.success-message {
  min-height: 430px;
  padding: 60px;
  border: 1px solid rgba(197, 166, 108, .5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.success-message > span {
  color: var(--brass-light);
  font-size: 34px;
}

.success-message h3 {
  margin: 25px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
}

.success-message p {
  max-width: 500px;
  color: rgba(244, 240, 232, .62);
  line-height: 1.7;
}

.success-message button {
  align-self: flex-start;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid var(--brass-light);
  background: transparent;
  color: var(--brass-light);
  cursor: pointer;
}

footer {
  padding: 58px clamp(28px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
  background: #020d12;
  color: rgba(244, 240, 232, .55);
  font-size: 11px;
}

footer .wordmark {
  grid-row: span 2;
}

footer div {
  justify-self: end;
  display: flex;
  gap: 30px;
}

footer > span {
  grid-column: 2 / 4;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1050px) {
  .header-contact {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .capability {
    min-height: 500px;
    padding: 28px;
  }

  .thesis,
  .private-office,
  .contact {
    gap: 60px;
  }
}

@media (max-width: 800px) {
  .hero {
    min-height: 760px;
    height: auto;
    background:
      linear-gradient(180deg, rgba(4,20,29,.72), rgba(4,20,29,.98) 65%),
      linear-gradient(135deg, #8f8678, #1b2326);
  }

  .hero::after {
    inset: 0 0 45% 38%;
    opacity: .5;
  }

  .site-header {
    height: 84px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    padding: 12px 8px;
    border: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
  }

  .menu-button > span:not(.sr-only) {
    width: 25px;
    height: 1px;
    display: block;
    background: var(--ivory);
  }

  .nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    padding: 30px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .nav-open {
    display: flex;
  }

  .hero-content {
    width: auto;
    margin: 110px 28px 0;
  }

  h1 {
    font-size: clamp(62px, 16vw, 90px);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-principles {
    position: relative;
    margin-top: 105px;
    height: auto;
    padding: 30px 0;
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .hero-principles span + span {
    padding-left: 0;
    border-left: 0;
  }

  .section-pad {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .intro,
  .section-head,
  .thesis,
  .private-office,
  .contact {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .capability-grid,
  .process-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .capability {
    min-height: 440px;
  }

  .thesis-lead {
    position: static;
  }

  .theme-row {
    grid-template-columns: 38px 1fr;
  }

  .theme-row p {
    grid-column: 2;
  }

  .private-visual {
    min-height: 500px;
  }

  .process-step,
  .process-step + .process-step {
    min-height: 235px;
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid #bdb5a9;
  }

  .process-step h3 {
    margin-top: 45px;
  }

  .text-link.dark {
    justify-self: start;
  }

  .insight-grid article {
    min-height: 300px;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer .wordmark,
  footer > span {
    grid-column: 1;
  }

  footer div {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .wordmark {
    font-size: 14px;
  }

  .hero-actions,
  .form-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .private-services {
    grid-template-columns: 1fr;
  }

  .private-services span:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .orbit-one {
    width: 390px;
    height: 390px;
  }

  .orbit-two {
    width: 255px;
    height: 255px;
  }
}

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

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