:root {
  --paper: #f4f2ed;
  --paper-deep: #e5e1d7;
  --white: #fbfaf7;
  --ink: #171816;
  --ink-soft: #55564f;
  --night: #151714;
  --night-soft: #24271f;
  --brass: #a88c4f;
  --brass-light: #c8ae69;
  --oxide: #9b4938;
  --sage: #687261;
  --blue-gray: #65717a;
  --line: rgba(23, 24, 22, 0.2);
  --line-light: rgba(244, 242, 237, 0.22);
  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --page-pad: clamp(24px, 5vw, 72px);
  --header-h: 88px;
  --ease: cubic-bezier(0.22, 0.68, 0.24, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 26px);
}

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

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  backdrop-filter: none;
}

::selection {
  color: var(--white);
  background: var(--oxide);
}

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

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

button {
  border: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 250;
  height: 2px;
  pointer-events: none;
}

.page-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.97);
  transition: min-height 240ms var(--ease), background 240ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(18px);
}

.home .site-header:not(.is-scrolled) {
  border-bottom-color: var(--line-light);
  background: transparent;
}

.home .site-header:not(.is-scrolled) .nav-link,
.home .site-header:not(.is-scrolled) .button-outline {
  color: var(--paper);
}

.home .site-header:not(.is-scrolled) .button-outline {
  border-color: var(--brass-light);
}

.home .site-header:not(.is-scrolled) .menu-toggle {
  color: var(--paper);
}

.home .site-header:not(.is-scrolled) .menu-toggle i {
  background: var(--paper);
}

.home.menu-open .site-header:not(.is-scrolled) {
  border-bottom-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.home.menu-open .site-header:not(.is-scrolled) .menu-toggle {
  color: var(--ink);
}

.home.menu-open .site-header:not(.is-scrolled) .nav-link,
.home.menu-open .site-header:not(.is-scrolled) .button-outline {
  color: var(--ink);
}

.home.menu-open .site-header:not(.is-scrolled) .menu-toggle i {
  background: var(--ink);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}

.brand-original-frame {
  display: block;
  width: 152px;
  height: 58px;
  overflow: hidden;
  background: transparent;
}

.brand-original-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-nav,
.nav-links {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: clamp(24px, 3vw, 44px);
}

.nav-links {
  gap: clamp(18px, 2.3vw, 34px);
}

.nav-link {
  position: relative;
  padding: 9px 0;
  color: #30312d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--brass);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: color 200ms ease, background 200ms ease, transform 200ms var(--ease);
}

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

.button-small {
  min-height: 42px;
  padding: 11px 14px;
}

.button-outline {
  border-color: var(--brass);
  color: var(--ink);
  background: transparent;
}

.button-outline:hover,
.button-brass {
  color: var(--night);
  background: var(--brass-light);
}

.button-brass:hover {
  background: #d5bd7c;
}

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

.button-dark:hover {
  background: #2a2d26;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.text-link .arrow-icon {
  width: 16px;
  transition: transform 200ms var(--ease);
}

.text-link:hover .arrow-icon {
  transform: translate(3px, -3px);
}

.eyebrow,
.label,
.meta {
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-label {
  display: grid;
  grid-template-columns: 46px 1fr;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label p {
  margin: 0;
}

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

/* Home */

.home-hero {
  display: grid;
  min-height: max(820px, 100svh);
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  grid-template-rows: 1fr auto;
  padding: calc(var(--header-h) + clamp(70px, 9vh, 120px)) var(--page-pad) 0;
  color: var(--paper);
  background: var(--night);
}

.hero-main {
  max-width: 820px;
  align-self: center;
  padding: 20px clamp(36px, 6vw, 92px) 80px 0;
}

.hero-kicker {
  margin-bottom: clamp(34px, 5vh, 62px);
  color: var(--brass-light);
}

.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 6.4vw, 100px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.hero-title span {
  display: inline-block;
}

.hero-title > .hero-line {
  display: block;
}

.hero-title > .hero-line:last-child {
  max-width: 880px;
  color: var(--brass-light);
}

.hero-intro {
  max-width: 690px;
  margin: 42px 0 0;
  color: rgba(244, 242, 237, 0.72);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.hero-founder {
  display: grid;
  align-self: center;
  gap: 12px;
  padding-bottom: 80px;
}

.founder-portrait {
  position: relative;
  min-height: clamp(380px, 38vw, 500px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: #cbc6b9;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.78) contrast(1.04);
}

.founder-portrait figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(21, 23, 20, 0.9));
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-portrait figcaption span {
  display: grid;
  gap: 3px;
}

.founder-portrait figcaption b {
  color: var(--brass-light);
  font-size: 12px;
}

.founder-portrait figcaption a {
  flex: 0 0 auto;
  border-bottom: 1px solid rgba(244, 242, 237, 0.5);
}

.operating-record {
  align-self: center;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line-light);
  background: var(--night-soft);
}

.hero-founder .record-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-founder .record-grid > div,
.hero-founder .record-grid > div:nth-child(odd),
.hero-founder .record-grid > div:nth-child(even) {
  min-height: 78px;
  padding: 13px 10px;
  border-right: 1px solid var(--line-light);
  border-bottom: 0;
}

.hero-founder .record-grid > div:first-child {
  padding-left: 0;
}

.hero-founder .record-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-founder .record-grid strong {
  font-size: clamp(26px, 2.15vw, 35px);
}

.hero-founder .record-grid span {
  display: block;
  font-size: 9px;
  line-height: 1.25;
}

.record-heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(244, 242, 237, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.record-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.record-grid > div {
  min-height: 84px;
  padding: 14px 14px 12px 0;
  border-bottom: 1px solid var(--line-light);
}

.record-grid > div:nth-child(3),
.record-grid > div:nth-child(4) {
  border-bottom: 0;
}

.record-grid > div:nth-child(odd) {
  border-right: 1px solid var(--line-light);
}

.record-grid > div:nth-child(even) {
  padding-left: 22px;
}

.record-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: clamp(29px, 2.8vw, 43px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.record-grid span {
  color: rgba(244, 242, 237, 0.63);
  font-size: 11px;
}

.materials-key {
  display: grid;
  height: 10px;
  grid-template-columns: 1.4fr 0.6fr 1fr 0.8fr 1.2fr;
  gap: 4px;
  margin: 28px 0;
}

.materials-key i:nth-child(1) { background: var(--brass); }
.materials-key i:nth-child(2) { background: var(--oxide); }
.materials-key i:nth-child(3) { background: var(--sage); }
.materials-key i:nth-child(4) { background: var(--blue-gray); }
.materials-key i:nth-child(5) { background: #d0c5ac; }

.hero-featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(130px, 0.4fr) repeat(3, 1fr);
  align-items: stretch;
  color: var(--night);
  background: var(--brass-light);
}

.hero-featured > p,
.hero-featured > a {
  margin: 0;
  padding: 22px 24px;
  border-right: 1px solid rgba(21, 23, 20, 0.22);
}

.hero-featured > p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-featured > a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 25px);
  transition: background 180ms ease;
}

.hero-featured > a:hover {
  background: rgba(251, 250, 247, 0.3);
}

.hero-featured > a span:last-child {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
}

.chapter {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1.32fr);
  padding: clamp(100px, 12vw, 180px) var(--page-pad);
  background: var(--paper);
}

.chapter-heading {
  min-width: 0;
  align-self: start;
  padding-right: clamp(34px, 5vw, 80px);
  border-right: 1px solid var(--line);
}

.media-home .chapter-heading > h2 {
  max-inline-size: 22ch;
  overflow-wrap: normal;
  word-break: normal;
  white-space: normal;
  text-wrap: balance;
  hyphens: none;
}

.chapter-heading > h2,
.operator-value-heading h2,
.principles-heading h2 {
  margin: clamp(54px, 7vw, 94px) 0 0;
  font-family: var(--serif);
  font-size: calc(clamp(52px, 5.5vw, 82px) - 6px);
  font-weight: 300;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.chapter-body {
  min-width: 0;
  padding-left: clamp(36px, 6vw, 104px);
}

.chapter-intro {
  max-width: 760px;
  margin: 0 0 clamp(68px, 9vw, 120px);
  color: var(--ink-soft);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.48;
}

.story-section {
  background: var(--white);
}

.journey-list {
  position: relative;
}

.journey-track {
  position: absolute;
  top: 12px;
  bottom: 16px;
  left: 20px;
  width: 1px;
  background: var(--line);
}

.journey-track b {
  position: absolute;
  inset: 0;
  background: var(--brass);
  transform: scaleY(0);
  transform-origin: top;
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding-bottom: clamp(64px, 8vw, 108px);
}

.journey-step:last-child {
  padding-bottom: 0;
}

.journey-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  background: var(--white);
  font-size: 10px;
  font-weight: 700;
}

.journey-step h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(32px, 3.1vw, 48px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.journey-step p {
  max-width: 690px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.journey-step small {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.investment-row {
  display: grid;
  min-height: 155px;
  grid-template-columns: 54px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 26px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding 200ms var(--ease), background 200ms ease;
}

.investment-row:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: rgba(168, 140, 79, 0.08);
}

.investment-number {
  align-self: start;
  padding-top: 8px;
  color: var(--brass);
  font-size: 10px;
  font-weight: 700;
}

.investment-row h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(29px, 2.6vw, 42px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.investment-row p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.investment-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.investment-arrow .arrow-icon {
  width: 16px;
}

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

.investment-item {
  border-bottom: 1px solid var(--line);
}

.investment-item summary {
  display: grid;
  min-height: 168px;
  grid-template-columns: 54px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 26px;
  padding: 28px 4px;
  cursor: pointer;
  list-style: none;
  transition: padding 200ms var(--ease), background 200ms ease;
}

.investment-item summary::-webkit-details-marker {
  display: none;
}

.investment-item summary:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: rgba(168, 140, 79, 0.08);
}

.investment-item h3 {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: clamp(29px, 2.6vw, 42px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.investment-item summary p:not(.meta) {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.investment-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 300;
  transition: color 200ms ease, border-color 200ms ease, transform 240ms var(--ease);
}

.investment-item[open] .investment-toggle {
  border-color: var(--brass);
  color: var(--brass);
  transform: rotate(45deg);
}

.investment-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: clamp(34px, 6vw, 90px);
  padding: 4px 42px 48px 84px;
}

.investment-detail > p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.5;
}

.investment-detail .label {
  color: var(--brass);
}

.investment-detail ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.investment-detail li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
}

.partnership-links {
  grid-column: 1 / -1;
  padding-top: 8px;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.partnership-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  transition: border-color 200ms ease, transform 200ms var(--ease);
}

.partnership-card:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
}

.partnership-logo {
  display: grid;
  height: 88px;
  place-items: center;
  padding: 12px;
  overflow: hidden;
  background: #fff;
}

.partnership-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partnership-card > span:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 3px;
  font-size: 11px;
  font-weight: 700;
}

.partnership-card i {
  color: var(--brass);
  font-size: 14px;
  font-style: normal;
}

.section-end {
  display: flex;
  justify-content: flex-end;
  margin-top: 48px;
}

.operator-value {
  padding: clamp(100px, 12vw, 170px) var(--page-pad);
  color: var(--paper);
  background: var(--night);
}

.operator-value-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  align-items: start;
  gap: 60px;
  margin-bottom: clamp(70px, 9vw, 120px);
}

.operator-value-heading h2 {
  margin: 0;
}

.operator-value .eyebrow {
  color: var(--brass-light);
}

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

.value-grid article {
  min-height: 330px;
  padding: 34px clamp(24px, 3vw, 44px) 38px 0;
  border-right: 1px solid var(--line-light);
}

.value-grid article + article {
  padding-left: clamp(24px, 3vw, 44px);
}

.value-grid article:last-child {
  border-right: 0;
}

.value-grid article > span {
  color: var(--brass-light);
  font-size: 10px;
  font-weight: 700;
}

.value-grid h3 {
  margin: 88px 0 20px;
  font-family: var(--serif);
  font-size: clamp(29px, 2.6vw, 42px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.value-grid p {
  margin: 0;
  color: rgba(244, 242, 237, 0.62);
  font-size: 14px;
}

.newsroom-preview {
  background: var(--paper-deep);
}

.media-home {
  background: var(--paper-deep);
}

.home-news-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 18px;
  padding: 0 0 18px;
  border-top: 0;
}

.home-news-filters button {
  width: auto;
  flex: 0 0 auto;
  gap: 12px;
  padding: 9px 12px;
  border: 1px solid var(--line);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.news-card:hover {
  box-shadow: 0 18px 40px rgba(23, 24, 22, 0.08);
  transform: translateY(-4px);
}

.news-card-top {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-card-visual {
  position: relative;
  display: flex;
  min-height: 225px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  color: var(--paper);
  background: var(--night-soft);
}

.news-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 22px 26px;
}

.news-card-copy .meta {
  color: var(--ink-soft);
}

.news-card-copy h3 {
  margin: 24px 0 14px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.038em;
  line-height: 1.02;
}

.news-card-copy > p:not(.meta) {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 13px;
}

.news-cta {
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
}

.closing-cta {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  align-items: center;
  gap: 8vw;
  padding: clamp(100px, 13vw, 180px) var(--page-pad);
  color: var(--paper);
  background: var(--oxide);
}

.closing-rule {
  display: grid;
  height: 300px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  border-bottom: 1px solid rgba(244, 242, 237, 0.5);
}

.closing-rule i {
  background: rgba(244, 242, 237, 0.78);
}

.closing-rule i:nth-child(1) { height: 22%; }
.closing-rule i:nth-child(2) { height: 46%; }
.closing-rule i:nth-child(3) { height: 73%; }
.closing-rule i:nth-child(4) { height: 100%; }

.closing-copy h2,
.media-inquiry h2 {
  margin: 34px 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.4vw, 94px);
  font-weight: 300;
  letter-spacing: -0.052em;
  line-height: 0.94;
}

.closing-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(244, 242, 237, 0.75);
  font-size: 18px;
}

/* Shared interior */

.page-hero {
  display: flex;
  min-height: 640px;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + clamp(80px, 10vw, 140px)) var(--page-pad) 52px;
  background: var(--paper-deep);
}

.page-hero > .eyebrow {
  margin-bottom: clamp(38px, 6vw, 72px);
  color: var(--brass);
}

.page-title {
  max-width: 1220px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 8.2vw, 124px);
  font-weight: 300;
  letter-spacing: -0.058em;
  line-height: 0.92;
}

.page-hero-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(160px, 0.25fr);
  gap: 60px;
  align-items: end;
  margin-top: clamp(58px, 8vw, 94px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.page-hero-bottom > p:first-child {
  max-width: 780px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.55vw, 22px);
}

.hero-index {
  justify-self: end;
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Investments */

.investments-hero {
  color: var(--paper);
  background: var(--night);
}

.investments-hero .page-hero-bottom {
  border-color: var(--line-light);
}

.investments-hero .page-hero-bottom > p:first-child {
  color: rgba(244, 242, 237, 0.67);
}

.theme-nav {
  position: sticky;
  top: 70px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  padding: 16px var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(16px);
  white-space: nowrap;
}

.theme-nav span,
.theme-nav a {
  font-size: 10px;
  font-weight: 700;
}

.theme-nav span {
  color: var(--brass);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.theme-nav a:hover {
  color: var(--brass);
}

.theme-list {
  padding: 0 var(--page-pad);
}

.theme-detail {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(30px, 5vw, 80px);
  padding: clamp(90px, 11vw, 150px) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 145px;
}

.theme-number span {
  color: var(--brass);
  font-size: 11px;
  font-weight: 700;
}

.theme-number i {
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 18px;
  background: var(--brass);
}

.theme-main h2 {
  margin: 24px 0 32px;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 90px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.theme-thesis {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}

.theme-questions {
  align-self: end;
  padding: 28px;
  border-top: 4px solid var(--brass);
  background: var(--paper-deep);
}

.theme-questions ul {
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.theme-questions li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 20px;
}

.thesis-note {
  background: var(--white);
}

/* Perspectives */

.perspectives-hero {
  background: #e7e3d8;
}

.perspectives-list-section {
  padding: clamp(90px, 11vw, 150px) var(--page-pad);
}

.list-heading {
  margin-bottom: 62px;
}

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

.note-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(260px, 0.75fr) minmax(280px, 0.9fr) 44px;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 200ms var(--ease), background 200ms ease;
}

.note-row:hover {
  padding-right: 14px;
  padding-left: 14px;
  background: rgba(168, 140, 79, 0.07);
}

.note-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.note-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.note-row > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.note-arrow .arrow-icon {
  width: 18px;
}

.article-page {
  padding-top: var(--header-h);
}

.article-header {
  padding: clamp(90px, 10vw, 150px) var(--page-pad) 70px;
  background: var(--paper-deep);
}

.back-link {
  display: inline-block;
  margin-bottom: 90px;
  font-size: 11px;
  font-weight: 700;
}

.article-header .eyebrow {
  margin-bottom: 36px;
  color: var(--brass);
}

.article-dek {
  max-width: 860px;
  margin: 50px 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1.2;
}

.article-meta {
  display: flex;
  gap: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(90px, 11vw, 150px) var(--page-pad);
}

.article-body > p {
  margin-bottom: 32px;
  color: #343630;
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.65;
}

.article-body > .article-lead {
  color: var(--ink);
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.42;
}

.article-source {
  margin-top: 70px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-source .label {
  margin-bottom: 12px;
  color: var(--brass);
}

.article-source a {
  font-family: var(--serif);
  font-size: 20px;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 52px var(--page-pad);
  color: var(--paper);
  background: var(--night);
}

.article-footer p {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
}

/* Newsroom */

.media-hero {
  background: #dedfd9;
}

.newsroom {
  display: grid;
  grid-template-columns: minmax(210px, 0.36fr) minmax(0, 1.64fr);
  gap: clamp(40px, 6vw, 90px);
  padding: clamp(90px, 11vw, 150px) var(--page-pad);
}

.news-filters {
  align-self: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.news-filters .label {
  margin-bottom: 30px;
  color: var(--brass);
}

.news-filters button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.news-filters button.is-active,
.news-filters button:hover {
  color: var(--brass);
}

.news-filters.home-news-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 18px;
  border-top: 0;
}

.news-filters.home-news-filters button {
  width: auto;
  flex: 0 0 auto;
  gap: 12px;
  padding: 9px 12px;
  border: 1px solid var(--line);
}

.results-count {
  margin: 0 0 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-card.is-filtered-out {
  display: none;
}

.media-inquiry {
  padding: clamp(90px, 11vw, 150px) var(--page-pad);
  color: var(--paper);
  background: var(--night);
}

.media-inquiry .eyebrow {
  color: var(--brass-light);
}

.media-inquiry h2 {
  max-width: 1100px;
}

/* About */

.about-hero {
  background: #e7e3d8;
}

.founder-record {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 0.95fr) minmax(250px, 0.55fr);
  gap: clamp(40px, 6vw, 90px);
  padding: clamp(100px, 12vw, 170px) var(--page-pad);
  background: var(--white);
}

.founder-name h2 {
  margin: 34px 0 14px;
  font-family: var(--serif);
  font-size: clamp(64px, 7vw, 104px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.founder-name > p {
  max-width: 310px;
  color: var(--ink-soft);
  font-size: 13px;
}

.founder-profile-photo {
  margin: 44px 0 0;
}

.founder-profile-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 874 / 728;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.78) contrast(1.04);
}

.founder-profile-photo figcaption {
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-profile-photo figcaption a {
  border-bottom: 1px solid var(--line);
}

.founder-copy p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.6;
}

.founder-copy .founder-lead {
  color: var(--ink);
  font-size: clamp(27px, 2.5vw, 38px);
  line-height: 1.35;
}

.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 40px;
}

.founder-proof {
  align-self: start;
  padding: 30px;
  color: var(--paper);
  background: var(--night-soft);
}

.founder-proof > span {
  display: block;
  margin-bottom: 56px;
  color: var(--brass-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-proof strong {
  display: block;
  margin-top: 26px;
  font-family: var(--serif);
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.profile-panel strong {
  font-size: clamp(36px, 3vw, 46px);
}

.founder-proof p {
  margin: 4px 0 0;
  color: rgba(244, 242, 237, 0.6);
  font-size: 11px;
}

.principles-section {
  padding: clamp(100px, 12vw, 170px) var(--page-pad);
  color: var(--paper);
  background: var(--night);
}

.principles-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 90px;
}

.principles-heading h2 {
  margin: 0;
}

.principles-heading .eyebrow {
  color: var(--brass-light);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
}

.principles-grid article {
  min-height: 270px;
  padding: 28px 38px 36px 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.principles-grid article:nth-child(even) {
  padding-left: 38px;
  border-right: 0;
}

.principles-grid span {
  color: var(--brass-light);
  font-size: 10px;
  font-weight: 700;
}

.principles-grid h3 {
  margin: 62px 0 16px;
  font-family: var(--serif);
  font-size: clamp(29px, 2.7vw, 42px);
  font-weight: 400;
  line-height: 1.04;
}

.principles-grid p {
  max-width: 520px;
  margin: 0;
  color: rgba(244, 242, 237, 0.62);
  font-size: 13px;
}

/* Connect */

.connect-hero {
  background: var(--paper-deep);
}

.contact-paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 var(--page-pad);
  background: var(--white);
}

.contact-path {
  display: grid;
  min-height: 260px;
  grid-template-columns: 44px 1fr 28px;
  gap: 26px;
  align-items: start;
  padding: 44px 36px 44px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, padding 200ms var(--ease);
}

.contact-path:nth-child(even) {
  padding-left: 36px;
  border-right: 0;
}

.contact-path:hover,
.contact-path.is-selected {
  color: var(--paper);
  background: var(--night-soft);
}

.contact-path:hover,
.contact-path.is-selected {
  padding-right: 28px;
  padding-left: 28px;
}

.contact-path > span {
  color: var(--brass);
  font-size: 10px;
  font-weight: 700;
}

.contact-path h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.contact-path p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.contact-path:hover p,
.contact-path.is-selected p {
  color: rgba(244, 242, 237, 0.65);
}

.contact-path .arrow-icon {
  width: 18px;
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 7vw, 110px);
  padding: clamp(100px, 12vw, 170px) var(--page-pad);
  color: var(--paper);
  background: var(--night);
}

.contact-form-intro h2 {
  margin: 72px 0 32px;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 90px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.contact-form-intro > p {
  max-width: 460px;
  color: rgba(244, 242, 237, 0.62);
  font-size: 13px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(244, 242, 237, 0.32);
  border-radius: 0;
  outline: 0;
  color: var(--paper);
  background: transparent;
}

.contact-form input,
.contact-form select {
  height: 52px;
}

.contact-form textarea {
  padding: 12px 0;
  resize: vertical;
}

.contact-form select option {
  color: var(--ink);
}

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

.consent {
  flex-direction: row !important;
  align-items: flex-start;
}

.consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--brass);
}

.consent span {
  color: rgba(244, 242, 237, 0.65);
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
}

.form-submit p {
  margin: 0;
  color: rgba(244, 242, 237, 0.5);
  font-size: 11px;
}

/* Footer */

.site-footer {
  padding: clamp(72px, 9vw, 120px) var(--page-pad) 30px;
  color: var(--paper);
  background: #0e0f0d;
}

.brand-footer .brand-original-frame {
  width: auto;
  max-width: 100%;
  height: clamp(96px, 15vw, 240px);
  aspect-ratio: 188 / 72;
}

.brand-footer {
  width: 100%;
  min-width: 0;
  grid-column: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.footer-column:first-of-type {
  grid-column: auto;
}

.footer-column .label {
  margin-bottom: 28px;
  color: rgba(244, 242, 237, 0.42);
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 27px);
}

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

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 110px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
}

.footer-bottom p {
  max-width: 600px;
  margin: 0;
  color: rgba(244, 242, 237, 0.45);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.not-found {
  min-height: 760px;
  padding: calc(var(--header-h) + 100px) var(--page-pad) 100px;
}

.not-found .eyebrow {
  margin-bottom: 50px;
  color: var(--brass);
}

.not-found > p:not(.eyebrow) {
  margin: 40px 0 28px;
  color: var(--ink-soft);
}

/* Motion */

.js-motion .reveal,
.js-motion .reveal-x {
  opacity: 0;
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-motion .reveal {
  transform: translateY(18px);
}

.js-motion .reveal-x {
  transform: translateX(-20px);
}

.js-motion .reveal.is-visible,
.js-motion .reveal-x.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.js-motion [data-hero] .hero-kicker,
.js-motion [data-hero] [data-hero-word],
.js-motion [data-hero] .hero-intro,
.js-motion [data-hero] .hero-actions,
.js-motion [data-hero] .hero-coordinate,
.js-motion [data-hero] .hero-featured {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 820ms var(--ease), transform 820ms var(--ease);
  transition-delay: var(--hero-delay, 0ms);
}

.js-motion [data-hero].hero-ready .hero-kicker,
.js-motion [data-hero].hero-ready [data-hero-word],
.js-motion [data-hero].hero-ready .hero-intro,
.js-motion [data-hero].hero-ready .hero-actions,
.js-motion [data-hero].hero-ready .hero-coordinate,
.js-motion [data-hero].hero-ready .hero-featured {
  opacity: 1;
  transform: translateY(0);
}

.js-motion [data-hero] .founder-portrait {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 900ms var(--ease);
  transition-delay: var(--hero-delay, 0ms);
}

.js-motion [data-hero] .founder-portrait img {
  transform: scale(1.03);
  transition: transform 1100ms var(--ease);
  transition-delay: var(--hero-delay, 0ms);
}

.js-motion [data-hero].hero-ready .founder-portrait {
  clip-path: inset(0);
}

.js-motion [data-hero].hero-ready .founder-portrait img {
  transform: scale(1);
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 18px;
  }

  .site-nav {
    gap: 22px;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  }

  .founder-portrait {
    min-height: 430px;
  }

  .hero-title {
    font-size: clamp(58px, 7.2vw, 80px);
  }

  .chapter {
    grid-template-columns: minmax(270px, 0.58fr) minmax(0, 1.42fr);
  }

  .theme-detail {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .theme-questions {
    grid-column: 2;
    max-width: 720px;
  }

  .founder-record {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .founder-proof {
    grid-column: 2;
    width: min(100%, 520px);
  }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .media-home .chapter-heading > h2 {
    font-size: calc(clamp(46px, 4.4vw, 52px) - 6px);
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 72px;
    --page-pad: 22px;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: var(--header-h);
    background: rgba(251, 250, 247, 0.97);
    backdrop-filter: blur(16px);
  }

  .home .site-header:not(.is-scrolled) {
    border-bottom-color: var(--line-light);
    background: transparent;
    backdrop-filter: none;
  }

  .home.menu-open .site-header:not(.is-scrolled) {
    border-bottom-color: var(--line);
    background: var(--white);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 58px;
    height: 40px;
    grid-template-columns: 1fr 15px;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    font-size: 10px;
    font-weight: 700;
  }

  .menu-toggle i {
    position: absolute;
    right: 0;
    width: 15px;
    height: 1px;
    background: var(--ink);
    transition: transform 220ms ease, top 220ms ease;
  }

  .menu-toggle i:nth-of-type(1) { top: 15px; }
  .menu-toggle i:nth-of-type(2) { top: 23px; }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(1) { top: 19px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(2) { top: 19px; transform: rotate(-45deg); }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 34px;
    padding: 104px var(--page-pad) 40px;
    opacity: 0;
    background: var(--white);
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-link {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -0.04em;
  }

  .nav-link::after {
    display: none;
  }

  .site-nav .button {
    width: 100%;
  }

  .home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: calc(var(--header-h) + 70px);
  }

  .hero-main {
    padding: 0 0 68px;
  }

  .hero-title {
    font-size: clamp(50px, 13.5vw, 66px);
  }

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

  .hero-founder .record-grid > div,
  .hero-founder .record-grid > div:nth-child(odd),
  .hero-founder .record-grid > div:nth-child(even) {
    min-height: 84px;
    padding: 14px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .hero-founder .record-grid > div:nth-child(odd) {
    padding-left: 0;
  }

  .hero-founder .record-grid > div:nth-child(even) {
    padding-right: 0;
    border-right: 0;
  }

  .hero-founder .record-grid > div:nth-child(3),
  .hero-founder .record-grid > div:nth-child(4) {
    border-bottom: 0;
  }

  .hero-intro {
    font-size: 17px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    width: fit-content;
  }

  .hero-founder {
    padding-bottom: 52px;
  }

  .founder-portrait {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

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

  .hero-featured > p,
  .hero-featured > a {
    border-right: 0;
    border-bottom: 1px solid rgba(21, 23, 20, 0.22);
  }

  .chapter {
    grid-template-columns: 1fr;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .chapter-heading {
    padding: 0 0 64px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .chapter-heading > h2,
  .operator-value-heading h2,
  .principles-heading h2 {
    font-size: calc(clamp(48px, 13vw, 68px) - 6px);
  }

  .chapter-body {
    padding: 60px 0 0;
  }

  .chapter-intro {
    margin-bottom: 70px;
  }

  .journey-step {
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .journey-track {
    left: 20px;
  }

  .investment-row {
    min-height: 145px;
    grid-template-columns: 36px minmax(0, 1fr) 30px;
    gap: 14px;
  }

  .investment-row p {
    display: none;
  }

  .investment-arrow {
    width: 30px;
    height: 30px;
  }

  .investment-item summary {
    min-height: 150px;
    grid-template-columns: 36px minmax(0, 1fr) 30px;
    gap: 14px;
  }

  .investment-toggle {
    width: 30px;
    height: 30px;
  }

  .investment-detail {
    grid-template-columns: 1fr;
    padding: 0 0 42px 50px;
  }

  .partnership-links {
    grid-column: auto;
  }

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

  .partnership-logo {
    height: 100px;
  }

  .operator-value-heading,
  .principles-heading {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .value-grid article,
  .value-grid article + article {
    min-height: auto;
    padding: 30px 0 38px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .value-grid h3 {
    margin-top: 46px;
  }

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

  .closing-cta {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .closing-rule {
    width: min(100%, 360px);
    height: 180px;
  }

  .closing-copy h2,
  .media-inquiry h2 {
    font-size: clamp(48px, 13.5vw, 70px);
  }

  .page-hero {
    min-height: 610px;
    padding-top: calc(var(--header-h) + 72px);
  }

  .page-title {
    font-size: clamp(54px, 15.5vw, 82px);
  }

  .page-hero-bottom {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-index {
    justify-self: start;
  }

  .theme-nav {
    top: 72px;
  }

  .theme-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .theme-number,
  .theme-main,
  .theme-questions {
    grid-column: 1;
  }

  .theme-main h2 {
    font-size: clamp(52px, 14vw, 74px);
  }

  .theme-questions {
    max-width: none;
  }

  .note-row {
    grid-template-columns: 1fr 30px;
    gap: 20px;
  }

  .note-meta,
  .note-row h3,
  .note-row > p {
    grid-column: 1;
  }

  .note-arrow {
    grid-row: 1 / span 3;
    grid-column: 2;
  }

  .article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .article-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .news-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 18px;
  }

  .news-filters .label {
    display: none;
  }

  .news-filters button {
    width: auto;
    flex: 0 0 auto;
    gap: 10px;
    padding: 9px 12px;
    border: 1px solid var(--line);
  }

  .founder-record {
    grid-template-columns: 1fr;
  }

  .founder-proof {
    grid-column: 1;
  }

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

  .principles-grid article,
  .principles-grid article:nth-child(even) {
    min-height: auto;
    padding: 30px 0 38px;
    border-right: 0;
  }

  .contact-paths {
    grid-template-columns: 1fr;
  }

  .contact-path,
  .contact-path:nth-child(even) {
    min-height: 220px;
    padding: 34px 0;
    border-right: 0;
  }

  .contact-path:hover,
  .contact-path.is-selected {
    padding-right: 18px;
    padding-left: 18px;
  }

  .contact-form-section {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .brand-footer .brand-original-frame {
    height: clamp(64px, 18vw, 120px);
  }

  .footer-column {
    margin: 0;
  }

  .footer-column:first-of-type {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    margin-top: 80px;
  }

}

@media (max-width: 480px) {
  .hero-featured > a {
    font-size: 20px;
  }

  .chapter-heading > h2,
  .operator-value-heading h2,
  .principles-heading h2 {
    font-size: 42px;
  }

  .journey-step h3 {
    font-size: 31px;
  }

  .news-card-visual {
    min-height: 190px;
  }

  .news-card-copy h3 {
    font-size: 31px;
  }

  .investment-item h3 {
    font-size: 30px;
  }

  .investment-item summary p:not(.meta) {
    display: none;
  }

  .theme-nav span {
    display: none;
  }

  .contact-path {
    grid-template-columns: 34px 1fr 20px;
    gap: 14px;
  }

  .contact-path h2 {
    font-size: 34px;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (min-width: 821px) {
  .hero-title [data-hero-word] {
    white-space: nowrap;
  }
}

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

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

  .js-motion .reveal,
  .js-motion .reveal-x,
  .js-motion [data-hero] .hero-kicker,
  .js-motion [data-hero] [data-hero-word],
  .js-motion [data-hero] .hero-intro,
  .js-motion [data-hero] .hero-actions,
  .js-motion [data-hero] .hero-coordinate,
  .js-motion [data-hero] .hero-featured {
    opacity: 1;
    transform: none;
  }

  .js-motion [data-hero] .founder-portrait {
    clip-path: none;
  }
}

/* Dark atmospheric revision */

.home {
  color: var(--paper);
  background: #0b0c0b;
}

.home .site-header,
.home .site-header.is-scrolled {
  border-bottom-color: rgba(244, 242, 237, 0.13);
  color: var(--paper);
  background: rgba(12, 13, 12, 0.86);
  backdrop-filter: blur(20px);
}

.home .site-header .nav-link,
.home .site-header .button-outline {
  color: var(--paper);
}

.home .site-header .button-outline {
  border-color: rgba(200, 174, 105, 0.72);
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: max(780px, 100svh);
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.24fr);
  grid-template-rows: 1fr auto;
  background: #101010;
}

.smoke-scene,
.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.smoke-scene {
  z-index: -2;
  overflow: hidden;
  background: radial-gradient(circle at 70% 47%, #4a4a47 0, #171816 34%, #101010 72%);
}

.smoke-scene canvas {
  width: 100%;
  height: 100%;
  opacity: 0.72;
  filter: contrast(1.06);
}

.smoke-scene.is-static canvas {
  display: none;
}

.hero-atmosphere {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 10, 9, 0.96) 0%, rgba(9, 10, 9, 0.84) 36%, rgba(9, 10, 9, 0.22) 71%, rgba(9, 10, 9, 0.58) 100%),
    linear-gradient(0deg, rgba(9, 10, 9, 0.82) 0%, transparent 34%, rgba(9, 10, 9, 0.16) 78%, rgba(9, 10, 9, 0.62) 100%),
    linear-gradient(rgba(244, 242, 237, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 242, 237, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
}

.hero-main {
  position: relative;
  z-index: 1;
  max-width: 960px;
  padding-right: clamp(40px, 8vw, 130px);
  padding-bottom: clamp(90px, 11vh, 140px);
}

.hero-kicker {
  color: rgba(220, 194, 126, 0.9);
}

.hero-title {
  max-width: 1020px;
  font-size: clamp(64px, 7.15vw, 112px);
  text-wrap: balance;
}

.hero-title > .hero-line:last-child {
  color: #d5bd7c;
}

.hero-intro {
  max-width: 660px;
  color: rgba(245, 245, 245, 0.68);
}

.hero-coordinate {
  position: relative;
  z-index: 1;
  display: grid;
  width: 150px;
  align-self: center;
  gap: 18px;
  justify-self: end;
  padding: 16px 0 100px;
  color: rgba(245, 245, 245, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-coordinate i {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, var(--brass-light), transparent);
}

.hero-featured {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(140px, 0.4fr) repeat(3, 1fr);
  border-top: 1px solid rgba(244, 242, 237, 0.18);
  color: var(--paper);
  background: rgba(12, 13, 12, 0.7);
  backdrop-filter: blur(18px);
}

.hero-featured > p,
.hero-featured > a {
  border-right-color: rgba(244, 242, 237, 0.15);
}

.hero-featured > p,
.hero-featured > a span:last-child {
  color: var(--brass-light);
}

.hero-featured > a:hover {
  background: rgba(245, 245, 245, 0.07);
}

.home .chapter {
  position: relative;
  color: var(--paper);
  background: rgba(16, 17, 16, 0.99);
}

.home .story-section {
  background: #141514;
}

.home .investments-preview {
  background: #0e0f0e;
}

.home .media-home {
  background: #151615;
}

.home .chapter-heading,
.home .section-label,
.home .investment-accordion,
.home .investment-item,
.home .investment-detail li,
.home .news-card,
.home .news-card-top {
  border-color: rgba(244, 242, 237, 0.16);
}

.home .section-label,
.home .chapter-intro,
.home .journey-step p,
.home .investment-item summary p:not(.meta),
.home .investment-detail > p,
.home .investment-detail li,
.home .news-card-copy .meta,
.home .news-card-copy > p:not(.meta) {
  color: rgba(244, 242, 237, 0.61);
}

.home .journey-track {
  background: rgba(244, 242, 237, 0.16);
}

.home .journey-number {
  color: var(--brass-light);
  background: #141514;
}

.home .journey-step small {
  border-color: rgba(244, 242, 237, 0.16);
  color: rgba(244, 242, 237, 0.58);
}

.home .investment-item summary:hover {
  background: rgba(200, 174, 105, 0.055);
}

.home .investment-toggle {
  border-color: rgba(244, 242, 237, 0.24);
}

.home .home-news-filters button {
  border-color: rgba(244, 242, 237, 0.18);
  color: rgba(244, 242, 237, 0.62);
}

.home .home-news-filters button.is-active,
.home .home-news-filters button:hover {
  border-color: var(--brass);
  color: var(--brass-light);
}

.home .results-count {
  color: rgba(244, 242, 237, 0.5);
}

.home .news-card {
  background: #101110;
  box-shadow: none;
}

.home .news-card:hover {
  border-color: rgba(200, 174, 105, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.news-card-visual {
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  background: #000;
}

.news-card-visual--photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-visual--photo.is-zoomed-out img {
  object-fit: contain;
}

.news-card-visual--plate {
  display: grid;
  place-content: center;
  place-items: center;
  padding: 12%;
  background: var(--night-soft);
}

.news-card-visual--plate img {
  display: block;
  width: 55%;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  margin: 0;
  transform: scale(1.65);
  transform-origin: center;
}

.home .news-card-copy h3 {
  color: var(--paper);
}

.home .news-cta {
  color: var(--brass-light);
}

/* About — dark editorial continuation */

.about-page {
  color: var(--paper);
  background: #0b0c0b;
}

.about-page .site-header,
.about-page .site-header.is-scrolled {
  border-bottom-color: rgba(244, 242, 237, 0.13);
  color: var(--paper);
  background: rgba(12, 13, 12, 0.9);
  backdrop-filter: blur(20px);
}

.about-page .site-header .nav-link,
.about-page .site-header .button-outline {
  color: var(--paper);
}

.about-page .site-header .button-outline {
  border-color: rgba(200, 174, 105, 0.72);
}

.about-page .about-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 32%, rgba(101, 101, 97, 0.34), transparent 31%),
    linear-gradient(125deg, #0b0c0b 0%, #171817 56%, #101110 100%);
}

.about-page .about-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(244, 242, 237, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 242, 237, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
  pointer-events: none;
}

.about-page .about-hero .page-hero-bottom {
  border-color: rgba(244, 242, 237, 0.17);
}

.about-page .about-hero .page-hero-bottom > p:first-child {
  color: rgba(244, 242, 237, 0.66);
}

.about-page .about-hero .hero-index {
  color: rgba(244, 242, 237, 0.58);
}

.about-page .founder-record {
  color: var(--paper);
  background: #131413;
}

.about-page .founder-name .section-label,
.about-page .founder-profile-photo figcaption a {
  border-color: rgba(244, 242, 237, 0.16);
}

.about-page .founder-name .section-label,
.about-page .founder-name > p,
.about-page .founder-profile-photo figcaption,
.about-page .founder-copy p {
  color: rgba(244, 242, 237, 0.61);
}

.about-page .founder-copy .founder-lead {
  color: var(--paper);
}

.about-page .founder-links .text-link {
  color: var(--brass-light);
}

.about-page .founder-proof {
  border: 1px solid rgba(244, 242, 237, 0.15);
  background: #0c0d0c;
}

@media (max-width: 820px) {
  .home .site-header,
  .home .site-header.is-scrolled,
  .home .site-header:not(.is-scrolled),
  .home.menu-open .site-header:not(.is-scrolled) {
    border-bottom-color: rgba(244, 242, 237, 0.13);
    color: var(--paper);
    background: rgba(12, 13, 12, 0.9);
    backdrop-filter: blur(18px);
  }

  .home.menu-open .site-header,
  .home.menu-open .site-header:not(.is-scrolled) {
    background: #101110;
    backdrop-filter: none;
  }

  .home.menu-open .site-header .button-outline,
  .home.menu-open .site-header:not(.is-scrolled) .button-outline {
    color: var(--paper);
  }

  .home .site-nav {
    color: var(--paper);
    background: #101110;
  }

  .home .nav-link {
    color: var(--paper) !important;
    border-bottom-color: rgba(244, 242, 237, 0.16);
  }

  .home .menu-toggle,
  .home.menu-open .site-header:not(.is-scrolled) .menu-toggle {
    color: var(--paper);
  }

  .home .menu-toggle i,
  .home.menu-open .site-header:not(.is-scrolled) .menu-toggle i {
    background: var(--paper);
  }

  .home-hero {
    min-height: max(760px, 100svh);
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    padding-top: calc(var(--header-h) + 76px);
  }

  .hero-main {
    align-self: center;
    padding: 24px 0 82px;
  }

  .hero-title {
    font-size: clamp(52px, 14vw, 76px);
  }

  .hero-coordinate {
    display: none;
  }

  .hero-atmosphere {
    background:
      linear-gradient(90deg, rgba(9, 10, 9, 0.91) 0%, rgba(9, 10, 9, 0.57) 72%, rgba(9, 10, 9, 0.62) 100%),
      linear-gradient(0deg, rgba(9, 10, 9, 0.86) 0%, transparent 48%, rgba(9, 10, 9, 0.52) 100%),
      linear-gradient(rgba(244, 242, 237, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244, 242, 237, 0.025) 1px, transparent 1px);
    background-size: auto, auto, 48px 48px, 48px 48px;
  }

  .smoke-scene canvas {
    opacity: 0.58;
  }

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

  .hero-featured > p,
  .hero-featured > a {
    border-right: 0;
    border-bottom-color: rgba(244, 242, 237, 0.14);
  }

  .home .chapter-heading {
    border-bottom-color: rgba(244, 242, 237, 0.16);
  }

  .brand-original-frame {
    width: 112px;
    height: 42px;
  }

  .about-page .site-header,
  .about-page .site-header.is-scrolled {
    border-bottom-color: rgba(244, 242, 237, 0.13);
    color: var(--paper);
    background: rgba(12, 13, 12, 0.92);
    backdrop-filter: blur(18px);
  }

  .about-page.menu-open .site-header,
  .about-page.menu-open .site-header.is-scrolled {
    background: #101110;
    backdrop-filter: none;
  }

  .about-page .site-nav {
    color: var(--paper);
    background: #101110;
  }

  .about-page .nav-link {
    color: var(--paper) !important;
    border-bottom-color: rgba(244, 242, 237, 0.16);
  }

  .about-page .menu-toggle,
  .about-page.menu-open .menu-toggle,
  .about-page.menu-open .site-header .button-outline {
    color: var(--paper);
  }

  .about-page .menu-toggle i,
  .about-page.menu-open .menu-toggle i {
    background: var(--paper);
  }

  .about-page .about-hero::before {
    background-size: 48px 48px;
  }

}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(48px, 14.5vw, 64px);
  }

  .hero-intro {
    margin-top: 30px;
    font-size: 16px;
  }

  .news-card-visual {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .smoke-scene canvas {
    opacity: 0.56;
  }
}
