:root {
  --ink: #111923;
  --ink-deep: #0a1118;
  --ink-soft: #1a2633;
  --paper: #f7f5ef;
  --paper-warm: #eee9df;
  --white: #ffffff;
  --gold: #d5a75d;
  --gold-light: #f0d49f;
  --gold-dark: #a97428;
  --sage: #98a69c;
  --muted: #626a70;
  --muted-light: rgba(255, 255, 255, 0.68);
  --line: rgba(17, 25, 35, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(10, 17, 24, 0.1);
  --shadow-dark: 0 30px 90px rgba(3, 8, 12, 0.32);
  --container: 1200px;
  --section-space: clamp(5rem, 9vw, 8.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

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

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.7rem;
  font-size: clamp(3.4rem, 5.6vw, 6.4rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

::selection {
  color: var(--ink-deep);
  background: var(--gold-light);
}

:focus-visible {
  outline: 3px solid rgba(213, 167, 93, 0.55);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 0.5rem;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--ink);
  background: rgba(247, 245, 239, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 36px rgba(10, 17, 24, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  color: var(--gold-light);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  place-content: center;
  gap: 0.42rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.21rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.21rem) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.6rem);
}

.primary-nav > a:not(.button) {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.primary-nav > a:not(.button):hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  min-height: 3.65rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button span {
  font-size: 0.95rem;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(4, 10, 15, 0.15);
}

.button:hover span {
  transform: translate(2px, -2px);
}

.button-small {
  min-height: 2.9rem;
  padding: 0.75rem 1rem;
  gap: 1rem;
  font-size: 0.69rem;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--gold-dark);
}

.button-gold {
  color: var(--ink-deep);
  background: var(--gold);
}

.button-gold:hover {
  background: var(--gold-light);
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.button-outline:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow-gold {
  color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 3rem;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(213, 167, 93, 0.16), transparent 25rem),
    radial-gradient(circle at 5% 95%, rgba(109, 137, 151, 0.15), transparent 28rem),
    var(--ink-deep);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(to right, transparent, black 45%, black);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
}

.hero-copy {
  padding-block: 1rem;
}

.hero-lead {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: var(--muted-light);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions,
.opportunity-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-audience {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
}

.hero-audience > span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-audience ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 700;
  list-style: none;
}

.hero-audience li {
  position: relative;
}

.hero-audience li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.82rem;
  width: 0.22rem;
  height: 0.22rem;
  background: var(--gold);
  border-radius: 50%;
}

.portfolio-visual {
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(12px);
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0.25rem 1rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
}

.status i,
.company-status i {
  width: 0.42rem;
  height: 0.42rem;
  background: #73d39f;
  border-radius: 50%;
  box-shadow: 0 0 0 0.24rem rgba(115, 211, 159, 0.12);
}

.parent-node {
  padding: 1.35rem;
  color: var(--ink);
  background: var(--paper);
  border-radius: 0.85rem;
}

.node-heading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.node-monogram {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  color: var(--gold-light);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.node-heading small,
.company-node small {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.node-heading strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.parent-functions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-top: 1.2rem;
}

.parent-functions span {
  padding: 0.65rem 0.45rem;
  color: var(--muted);
  background: var(--paper-warm);
  border-radius: 0.45rem;
  font-size: 0.64rem;
  font-weight: 800;
  text-align: center;
}

.portfolio-connector {
  display: grid;
  place-items: center;
  height: 3.5rem;
}

.portfolio-connector span {
  position: relative;
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
}

.portfolio-connector span::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.company-node {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.company-node:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(213, 167, 93, 0.55);
  transform: translateY(-2px);
}

.company-index {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 800;
}

.company-node small {
  color: rgba(255, 255, 255, 0.48);
}

.company-node strong {
  display: block;
  font-size: 1rem;
}

.company-node p {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  line-height: 1.5;
}

.node-arrow {
  color: var(--gold);
  font-size: 1rem;
}

.visual-note {
  margin: 1rem 0 0;
  padding-inline: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  line-height: 1.6;
}

.signal-bar {
  color: var(--ink);
  background: var(--gold);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid p {
  margin: 0;
  padding: 1.1rem;
  color: inherit;
  border-right: 1px solid rgba(17, 25, 35, 0.17);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.signal-grid p:first-child {
  border-left: 1px solid rgba(17, 25, 35, 0.17);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading h2 {
  max-width: 12ch;
}

.section-heading > p,
.heading-copy p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.75;
}

.heading-copy .text-link {
  margin-top: 1.1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  font-weight: 800;
}

.text-link span {
  color: var(--gold-dark);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.commitment-card {
  min-height: 18rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.commitment-card:first-child {
  border-left: 1px solid var(--line);
}

.card-number {
  display: block;
  margin-bottom: 5rem;
  color: var(--gold-dark);
  font-size: 0.65rem;
  font-weight: 800;
}

.commitment-card h3 {
  font-size: 1.35rem;
}

.commitment-card p {
  max-width: 21rem;
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.7;
}

.companies {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.companies::before {
  content: "";
  position: absolute;
  top: -18rem;
  right: -14rem;
  width: 38rem;
  height: 38rem;
  background: radial-gradient(circle, rgba(213, 167, 93, 0.11), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.section-heading-light {
  position: relative;
}

.section-heading-light > p {
  color: var(--muted-light);
}

.company-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
  background: var(--paper);
  border-radius: 1.35rem;
  box-shadow: var(--shadow-dark);
}

.company-brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 34rem;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(213, 167, 93, 0.1), transparent 45%),
    var(--ink-deep);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.company-wordmark {
  display: grid;
  color: var(--white);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.company-wordmark span {
  margin-left: 0.18rem;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.company-kicker {
  max-width: 19rem;
  margin: auto 0 1.5rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
}

.company-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.company-tags span {
  padding: 0.55rem 0.65rem;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
}

.company-story {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--ink);
}

.company-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-status span:first-child {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.company-story h3 {
  max-width: 18ch;
  margin-bottom: 1.4rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.company-story p {
  max-width: 38rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.75;
}

.company-story .button {
  align-self: flex-start;
  margin-top: 1.2rem;
}

.portfolio-future {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 7vw, 7rem);
  margin-top: 1rem;
  padding: clamp(2rem, 4vw, 3.25rem);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.1rem;
}

.portfolio-future h3 {
  max-width: 20ch;
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.portfolio-future > p {
  align-self: end;
  margin: 0;
  color: var(--muted-light);
  font-size: 0.9rem;
  line-height: 1.75;
}

.operating-model {
  background: var(--paper-warm);
}

.model-list {
  border-top: 1px solid var(--line);
  list-style: none;
}

.model-step {
  display: grid;
  grid-template-columns: 4rem minmax(12rem, 0.65fr) minmax(16rem, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background-color 180ms ease;
}

.model-step:hover {
  padding-inline: 1.25rem;
  background: rgba(255, 255, 255, 0.45);
}

.step-number {
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.step-label {
  margin: 0 0 0.2rem;
  color: var(--gold-dark);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-step h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.model-step > p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.7;
}

.principles {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(213, 167, 93, 0.12), transparent 25rem),
    var(--ink-deep);
}

.principles-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.principles-intro {
  align-self: start;
}

.principles-intro h2 {
  margin-bottom: 1.5rem;
}

.principles-intro > p:not(.eyebrow) {
  max-width: 31rem;
  color: var(--muted-light);
}

.principle-list {
  border-top: 1px solid var(--line-light);
}

.principle {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line-light);
}

.principle > span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
}

.principle h3 {
  color: var(--white);
}

.principle p {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.8rem;
}

.leadership {
  background: var(--paper);
}

.leadership-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  gap: clamp(2rem, 7vw, 7rem);
}

.leadership-portrait {
  position: relative;
  min-height: 36rem;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 1.2rem;
}

.leadership-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10, 17, 24, 0.78), rgba(10, 17, 24, 0.05) 48%, transparent 70%);
  pointer-events: none;
}

.leadership-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portrait-label {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid var(--line-light);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.leadership-copy {
  align-self: center;
  max-width: 40rem;
}

.leadership-copy h2 {
  max-width: 10ch;
  margin-bottom: 2.5rem;
}

.leader-name {
  margin-bottom: 0.15rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.leader-role {
  margin-bottom: 1.5rem;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leadership-copy > p:not(.eyebrow):not(.leader-name):not(.leader-role) {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.opportunities {
  padding-top: 0;
  background: var(--paper);
}

.opportunity-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.75fr);
  gap: clamp(3rem, 7vw, 7rem);
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 0 100%, rgba(213, 167, 93, 0.16), transparent 30rem),
    var(--ink);
  border-radius: 1.35rem;
  box-shadow: var(--shadow);
}

.opportunity-panel::after {
  content: "";
  position: absolute;
  top: -12rem;
  right: -10rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(213, 167, 93, 0.14);
  border-radius: 50%;
}

.opportunity-copy,
.inquiry-paths {
  position: relative;
  z-index: 1;
}

.opportunity-copy h2 {
  max-width: 9ch;
  margin-bottom: 1.4rem;
}

.opportunity-copy > p:not(.eyebrow) {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: var(--muted-light);
}

.inquiry-paths {
  align-self: center;
  border-top: 1px solid var(--line-light);
}

.inquiry-paths a {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-light);
}

.inquiry-paths a > span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
}

.inquiry-paths strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.8rem;
}

.inquiry-paths small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  line-height: 1.45;
}

.inquiry-paths i {
  color: var(--gold);
  font-size: 0.9rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.inquiry-paths a:hover i {
  transform: translate(3px, -3px);
}

.site-footer {
  padding: 5rem 0 1.4rem;
  color: var(--white);
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 0.7fr 0.8fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.brand-footer .brand-mark {
  color: var(--ink);
  background: var(--gold);
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.48);
}

.footer-brand > p {
  max-width: 25rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-column h2 {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.42);
  font-family: "Manrope", sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.73rem;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1200px) {
  .principles-intro {
    position: sticky;
    top: 8rem;
  }
}

@media (max-width: 1080px) {
  .primary-nav {
    gap: 0.8rem;
  }

  .primary-nav > a:not(.button) {
    font-size: 0.68rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 24rem;
    gap: 3rem;
  }

  .section-heading {
    gap: 3rem;
  }
}

@media (max-width: 880px) {
  .js .menu-toggle {
    display: grid;
  }

  .no-js .nav-wrap {
    flex-wrap: wrap;
    padding-block: 0.7rem;
  }

  .no-js .primary-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding-bottom: 0.5rem;
  }

  .js .primary-nav {
    position: fixed;
    inset: 5rem 0 auto;
    display: grid;
    gap: 0;
    padding: 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .js .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav > a:not(.button) {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .nav-button {
    margin-top: 1rem;
  }

  .hero-grid,
  .section-heading,
  .company-feature,
  .portfolio-future,
  .principles-grid,
  .leadership-grid,
  .opportunity-panel {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .portfolio-visual {
    max-width: 34rem;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading h2 {
    max-width: 14ch;
  }

  .company-brand-panel {
    min-height: 25rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .company-story {
    padding-block: 3.5rem;
  }

  .principles-intro {
    max-width: 36rem;
  }

  .leadership-portrait {
    max-width: 36rem;
    min-height: 30rem;
  }

  .leadership-copy h2 {
    max-width: 13ch;
  }

  .opportunity-copy h2 {
    max-width: 12ch;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero {
    padding-top: 3.5rem;
  }

  h1 {
    font-size: clamp(2.85rem, 12.5vw, 4rem);
  }

  h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-actions,
  .opportunity-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-audience {
    align-items: flex-start;
  }

  .hero-audience ul {
    display: grid;
    gap: 0.5rem;
  }

  .hero-audience li::after {
    display: none;
  }

  .parent-functions {
    grid-template-columns: 1fr;
  }

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

  .signal-grid p,
  .signal-grid p:first-child {
    border: 1px solid rgba(17, 25, 35, 0.14);
    border-top: 0;
  }

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

  .commitment-card,
  .commitment-card:first-child {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

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

  .card-number {
    margin-bottom: 3rem;
  }

  .company-feature,
  .opportunity-panel {
    border-radius: 0.85rem;
  }

  .company-brand-panel {
    min-height: 21rem;
    padding: 2rem;
  }

  .company-story {
    padding: 2rem;
  }

  .company-status {
    margin-bottom: 2rem;
  }

  .model-step {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.7rem 1rem;
  }

  .model-step > p {
    grid-column: 2;
  }

  .model-step:hover {
    padding-inline: 0.6rem;
  }

  .leadership-portrait {
    min-height: 25rem;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  .brand-copy small {
    display: none;
  }

  .company-node {
    grid-template-columns: auto 1fr;
  }

  .node-arrow {
    display: none;
  }

  .portfolio-future {
    padding: 1.5rem;
  }

  .principle {
    grid-template-columns: 2rem 1fr;
  }

  .opportunity-panel {
    padding: 1.5rem;
  }

  .inquiry-paths a {
    grid-template-columns: 1.5rem 1fr auto;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
