:root {
  --ink: #0a1524;
  --navy: #07101d;
  --navy-soft: #0b182a;
  --blue: #2479e9;
  --ice: #dbeaff;
  --paper: #f4f6f7;
  --white: #ffffff;
  --gold: #d8b975;
  --muted: #718094;
  --line: rgba(10, 21, 36, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) auto minmax(15rem, 1fr);
  align-items: center;
  min-height: 6.2rem;
  padding: 0 4vw;
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  color: var(--ice);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: -0.08em;
}

.brand-name {
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-name em {
  color: #9caabd;
  font-style: normal;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.7vw, 3.2rem);
}

.primary-nav a,
.header-link {
  position: relative;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-link {
  justify-self: end;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--gold);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 48rem;
  height: min(58rem, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 52% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 10, 20, 0.96) 0%, rgba(4, 13, 26, 0.76) 40%, rgba(4, 13, 26, 0.08) 72%),
    linear-gradient(0deg, rgba(3, 9, 17, 0.9) 0%, transparent 40%);
}

.hero-grid {
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 7vw 7vw;
  mask-image: linear-gradient(90deg, black, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 90rem);
  margin: 0 auto;
  padding: 10rem 0 7.5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 2rem;
  color: #bdc7d5;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8.8vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.hero h1 i,
.contact h2 i {
  color: var(--ice);
  font-weight: 400;
}

.hero-copy {
  width: min(100%, 37rem);
  margin: 2.3rem 0 0;
  color: #c1ccda;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-top: 2.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-width: 14.5rem;
  padding: 1rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  color: var(--ink);
  background: var(--white);
  transition: background-color 180ms ease, color 180ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.button span {
  color: var(--blue);
  font-size: 1rem;
}

.button:hover span,
.button:focus-visible span {
  color: inherit;
}

.hero-actions p {
  margin: 0;
  color: #91a1b5;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-index {
  position: absolute;
  right: 4vw;
  bottom: 6.8rem;
  z-index: 2;
  width: min(23rem, 25vw);
  padding: 1.35rem 1.5rem;
  background: rgba(6, 15, 28, 0.65);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(12px);
}

.hero-index > p {
  margin: 0 0 1rem;
  color: #91a1b5;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-index ol {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-index li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.hero-index li span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.65rem;
}

.scroll-cue {
  position: absolute;
  right: 4vw;
  bottom: 2.2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #6f8199;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 3rem;
  height: 1px;
  background: #607289;
}

.section {
  padding: clamp(5.5rem, 10vw, 9.5rem) 4vw;
}

.statement,
.approach {
  display: grid;
  grid-template-columns: minmax(11rem, 0.55fr) minmax(0, 2fr);
  gap: 4vw;
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 0.65rem;
  color: var(--muted);
}

.section-label span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
}

.section-label p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label.light {
  color: #8997aa;
}

.statement-copy {
  max-width: 65rem;
}

.kicker {
  margin: 0 0 1.2rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.statement h2,
.approach h2,
.focus h2,
.team h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.2vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.statement h2 em {
  color: var(--blue);
  font-weight: 400;
}

.two-column-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4vw;
  margin-top: 3.2rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--line);
}

.two-column-copy p {
  margin: 0;
  color: #566477;
  font-size: 1.02rem;
}

.focus,
.team {
  color: var(--white);
  background: var(--navy);
}

.focus-heading,
.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  align-items: end;
  gap: 5vw;
  margin: 2.2rem 0 4.5rem calc(22% + 4vw);
}

.focus-heading p,
.team-heading p {
  margin: 0 0 0.6rem;
  color: #94a2b5;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.focus-card {
  position: relative;
  min-height: 32rem;
  padding: 2rem 2vw 2.3rem;
  border-right: 1px solid var(--line-dark);
  transition: background-color 200ms ease, transform 200ms ease;
}

.focus-card:last-child {
  border-right: 0;
}

.focus-card:hover {
  background: var(--navy-soft);
  transform: translateY(-0.35rem);
}

.card-number {
  color: #64758b;
  font-size: 0.7rem;
}

.focus-icon {
  position: relative;
  width: 5.2rem;
  height: 5.2rem;
  margin: 3.4rem 0 3rem;
  border: 1px solid rgba(88, 158, 255, 0.5);
  transform: rotate(45deg);
}

.focus-icon span {
  position: absolute;
  width: 0.38rem;
  height: 0.38rem;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 1rem rgba(216, 185, 117, 0.8);
}

.focus-icon span:nth-child(1) { top: -0.2rem; left: -0.2rem; }
.focus-icon span:nth-child(2) { top: -0.2rem; right: -0.2rem; }
.focus-icon span:nth-child(3) { right: -0.2rem; bottom: -0.2rem; }
.focus-icon span:nth-child(4) { bottom: -0.2rem; left: -0.2rem; }

.icon-stack {
  border: 0;
  transform: none;
}

.icon-stack span {
  inset: auto 0;
  width: 5rem;
  height: 2.8rem;
  border: 1px solid rgba(88, 158, 255, 0.6);
  border-radius: 0;
  background: rgba(36, 121, 233, 0.08);
  box-shadow: none;
  transform: skewY(-15deg);
}

.icon-stack span:nth-child(1) { top: 0; }
.icon-stack span:nth-child(2) { top: 1.15rem; left: 0.3rem; }
.icon-stack span:nth-child(3) { right: auto; bottom: 0; left: 0.6rem; }

.icon-orbit {
  border-radius: 50%;
  transform: none;
}

.icon-orbit::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(88, 158, 255, 0.55);
  border-radius: 50%;
  content: "";
}

.icon-orbit span:nth-child(1) {
  top: 0.55rem;
  right: 0.35rem;
  left: auto;
}

.icon-orbit span:nth-child(2) {
  right: auto;
  bottom: 0.25rem;
  left: 0.7rem;
}

.icon-spark {
  border: 0;
  transform: none;
}

.icon-spark::before,
.icon-spark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(88, 158, 255, 0.7);
  content: "";
  transform: translate(-50%, -50%);
}

.icon-spark::before { width: 100%; height: 1px; }
.icon-spark::after { width: 1px; height: 100%; }
.icon-spark span:nth-child(1) { top: 0; left: 50%; }
.icon-spark span:nth-child(2) { top: 50%; right: 0; left: auto; }
.icon-spark span:nth-child(3) { bottom: 0; left: 50%; }

.focus-card h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.focus-card > p {
  min-height: 7.2rem;
  margin: 0;
  color: #94a2b5;
  font-size: 0.92rem;
}

.focus-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 1.5rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line-dark);
  color: #ccd4df;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  list-style: none;
}

.focus-card li::before {
  margin-right: 0.65rem;
  color: var(--gold);
  content: "·";
}

.approach-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.8fr);
  gap: 7vw;
}

.approach-intro {
  position: sticky;
  top: 3rem;
  align-self: start;
}

.principles {
  border-top: 1px solid var(--line);
}

.principles article {
  padding: 2rem 0 2.4rem;
  border-bottom: 1px solid var(--line);
}

.principles span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.principles h3 {
  margin: 0.8rem 0;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
}

.principles p {
  margin: 0;
  color: #59677a;
}

.team {
  border-top: 1px solid var(--line-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  border-top: 1px solid var(--line-dark);
}

.profile {
  min-height: 31rem;
  padding: 2.6rem 2.5vw;
  border-right: 1px solid var(--line-dark);
}

.profile:last-child {
  border-right: 0;
}

.profile-featured {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(36, 121, 233, 0.14), transparent 65%);
}

.profile-monogram {
  display: grid;
  place-items: center;
  width: 7rem;
  height: 9rem;
  color: #dceaff;
  background:
    linear-gradient(145deg, rgba(36,121,233,.35), rgba(216,185,117,.08)),
    var(--navy-soft);
  border: 1px solid rgba(112, 169, 248, 0.35);
  font-family: var(--serif);
  font-size: 2rem;
}

.profile-role {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.profile h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
}

.profile-bio {
  margin: 1.5rem 0 0;
  color: #9caabd;
}

.profile-meta {
  margin: 2rem 0 0;
  padding-top: 1rem;
  color: #d7dfe9;
  border-top: 1px solid var(--line-dark);
  font-size: 0.76rem;
}

.contact {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 30%, rgba(36, 121, 233, 0.28), transparent 32rem),
    linear-gradient(135deg, #0c1a2d 0%, #07101d 70%);
  overflow: hidden;
}

.contact::after {
  position: absolute;
  top: -18rem;
  right: -9rem;
  width: 35rem;
  height: 35rem;
  border: 1px solid rgba(216, 185, 117, 0.2);
  border-radius: 50%;
  content: "";
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 8vw;
  align-items: end;
}

.contact .eyebrow {
  grid-column: 1 / -1;
}

.contact h2 {
  font-size: clamp(3.6rem, 7.5vw, 7.5rem);
}

.contact-copy {
  padding-bottom: 0.5rem;
}

.contact-copy > p:first-child {
  margin: 0;
  color: #bdc7d5;
  font-size: 1.05rem;
}

.contact-note {
  margin: 2rem 0 0;
  padding-top: 1.3rem;
  color: #72839b;
  border-top: 1px solid var(--line-dark);
  font-size: 0.78rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem 4vw;
  color: #78889d;
  background: #050b14;
  border-top: 1px solid var(--line-dark);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer p:last-child {
  justify-self: end;
  text-align: right;
}

.footer-brand .brand-mark {
  width: 2rem;
  height: 2rem;
}

.footer-brand .brand-name {
  color: #c8d2df;
  font-size: 0.68rem;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .hero-index {
    display: none;
  }

  .hero-content {
    padding-bottom: 6rem;
  }

  .focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .focus-card:nth-child(2) {
    border-right: 0;
  }

  .focus-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

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

  .profile-featured {
    grid-column: 1 / -1;
    min-height: 23rem;
  }

  .team-grid .profile:nth-child(2) {
    border-top: 1px solid var(--line-dark);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 5.2rem;
    padding: 0 1.2rem;
  }

  .header-link {
    font-size: 0.64rem;
  }

  .brand-name {
    display: none;
  }

  .hero {
    min-height: 44rem;
    height: 100svh;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 10, 20, 0.95) 0%, rgba(4, 13, 26, 0.63) 70%, rgba(4, 13, 26, 0.25) 100%),
      linear-gradient(0deg, rgba(3, 9, 17, 0.94) 0%, transparent 55%);
  }

  .hero-content {
    width: auto;
    margin: 0 1.2rem;
    padding: 8rem 0 5rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.2rem);
  }

  .hero-copy {
    max-width: 31rem;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 5rem 1.2rem;
  }

  .statement,
  .approach {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .statement h2,
  .approach h2,
  .focus h2,
  .team h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .two-column-copy,
  .approach-wrap,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .focus-heading,
  .team-heading {
    grid-template-columns: 1fr;
    margin: 2rem 0 3rem;
  }

  .focus-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .focus-card {
    min-height: auto;
    padding: 2rem 0 2.4rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .focus-card:nth-child(2) {
    border-right: 0;
  }

  .focus-card:last-child {
    border-bottom: 0;
  }

  .focus-icon {
    margin: 2.8rem 0;
  }

  .focus-card > p {
    min-height: 0;
  }

  .approach-intro {
    position: static;
  }

  .profile,
  .profile-featured {
    grid-column: auto;
    min-height: auto;
    padding: 2.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .profile-featured {
    grid-template-columns: 1fr;
  }

  .profile:last-child {
    border-bottom: 0;
  }

  .contact .eyebrow {
    grid-column: auto;
  }

  .contact-copy {
    margin-top: 1.5rem;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 2rem 1.2rem;
  }

  footer p:last-child {
    justify-self: start;
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
