:root {
  --graphite: #1d2424;
  --iron: #4d504d;
  --copper: #b56a35;
  --ivory: #f4f0e8;
  --stone: #d8cbb4;
  --white: #fff;
  --muted: #6f706b;
  --border: rgba(29, 36, 36, 0.17);
  --font-display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --font-sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --container: 1240px;
  --gutter: clamp(22px, 4vw, 64px);
  --section-space: clamp(96px, 13vw, 180px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

html.intro-pending {
  background: #080a0a;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--graphite);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.intro-pending body {
  overflow: hidden;
}

.intro-pending .site-header,
.intro-pending main,
.intro-pending .site-footer {
  opacity: 0;
  transform: scale(1.012);
}

.intro-ending .site-header,
.intro-ending main,
.intro-ending .site-footer {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1050ms var(--ease), transform 1300ms var(--ease);
}

.site-intro {
  display: none;
}

.intro-pending .site-intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #080a0a;
  color: var(--white);
  opacity: 1;
  isolation: isolate;
}

.site-intro::before,
.site-intro::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.site-intro::before {
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 49.94%, rgba(255, 255, 255, 0.035) 50%, transparent 50.06%),
    linear-gradient(0deg, transparent 49.94%, rgba(255, 255, 255, 0.025) 50%, transparent 50.06%);
  transition: opacity 1500ms ease 300ms;
}

.site-intro::after {
  top: 50%;
  left: 50%;
  width: min(72vw, 820px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) scale(0.72);
  border: 1px solid rgba(216, 203, 180, 0.04);
  border-radius: 50%;
  opacity: 0;
  box-shadow:
    0 0 0 clamp(40px, 7vw, 100px) rgba(216, 203, 180, 0.012),
    0 0 0 clamp(90px, 14vw, 200px) rgba(216, 203, 180, 0.009);
  transition: opacity 1600ms ease 250ms, transform 2200ms var(--ease) 150ms;
}

.site-intro.is-playing::before,
.site-intro.is-playing::after {
  opacity: 1;
}

.site-intro.is-playing::after {
  transform: translate(-50%, -50%) scale(1);
}

.site-intro__atmosphere {
  position: absolute;
  inset: -25%;
  z-index: -1;
  background: radial-gradient(circle at 50% 47%, rgba(77, 80, 77, 0.19), transparent 31%);
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 1800ms ease, transform 2600ms var(--ease);
}

.site-intro.is-playing .site-intro__atmosphere {
  opacity: 1;
  transform: scale(1);
}

.site-intro__stage {
  position: relative;
  display: grid;
  width: min(52vw, 390px);
  place-items: center;
  opacity: 0;
  transform: translateY(12px) scale(0.975);
  transition: opacity 900ms var(--ease) 240ms, transform 1300ms var(--ease) 180ms;
}

.site-intro.is-playing .site-intro__stage {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-intro__logo {
  width: 100%;
  opacity: 0;
  filter: drop-shadow(0 18px 50px rgba(0, 0, 0, 0.32));
  transform: scale(0.96);
  transition: opacity 1000ms ease 480ms, transform 1500ms var(--ease) 390ms;
}

.site-intro.is-playing .site-intro__logo {
  opacity: 1;
  transform: scale(1);
}

.site-intro__line {
  position: absolute;
  left: 50%;
  width: 0;
  height: 1px;
  transform: translateX(-50%);
  transition: width 1150ms var(--ease) 620ms, opacity 800ms ease;
}

.site-intro__line--top {
  top: 8%;
  background: var(--copper);
}

.site-intro__line--bottom {
  bottom: 8%;
  background: rgba(255, 255, 255, 0.32);
}

.site-intro.is-playing .site-intro__line {
  width: 42%;
}

.site-intro__skip {
  position: absolute;
  right: clamp(20px, 3vw, 48px);
  bottom: clamp(20px, 3vw, 40px);
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  opacity: 0;
  cursor: pointer;
  transition: color 250ms ease, opacity 600ms ease 900ms;
}

.site-intro.is-playing .site-intro__skip {
  opacity: 1;
}

.site-intro__skip:hover,
.site-intro__skip:focus-visible {
  color: var(--white);
}

.site-intro.is-leaving {
  opacity: 0;
  transition: opacity 950ms var(--ease);
}

.site-intro.is-leaving .site-intro__stage {
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 580ms ease, transform 1000ms var(--ease);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--graphite);
  color: var(--white);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(29, 36, 36, 0.1);
  background: rgba(244, 240, 232, 0.93);
  box-shadow: 0 8px 28px rgba(29, 36, 36, 0.04);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
}

.brand {
  display: block;
  width: 140px;
}

.brand img {
  width: 100%;
  height: 64px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  color: var(--iron);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--copper);
  transition: transform 300ms var(--ease);
}

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

.primary-nav .nav-contact {
  padding: 11px 19px;
  border: 1px solid rgba(29, 36, 36, 0.44);
  border-radius: 999px;
  transition: background 250ms ease, color 250ms ease, border-color 250ms ease;
}

.primary-nav .nav-contact::after {
  display: none;
}

.primary-nav .nav-contact:hover,
.primary-nav .nav-contact:focus-visible {
  border-color: var(--graphite);
  background: var(--graphite);
  color: var(--white);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--graphite);
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  position: relative;
  display: block;
  width: 27px;
  height: 18px;
}

.menu-toggle__icon i {
  position: absolute;
  left: 0;
  width: 27px;
  height: 1px;
  background: currentColor;
  transition: transform 250ms ease, top 250ms ease;
}

.menu-toggle__icon i:first-child { top: 5px; }
.menu-toggle__icon i:last-child { top: 13px; }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding: 152px 0 52px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(244, 240, 232, 0.68), transparent 58%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.27;
  background-image: linear-gradient(to right, rgba(29, 36, 36, 0.1) 1px, transparent 1px);
  background-size: calc((100vw - (var(--gutter) * 2)) / 6) 100%;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 77%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 77%, transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 880px);
  align-items: center;
  margin-block: auto;
}

.eyebrow,
.overline {
  margin: 0 0 30px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: var(--copper);
}

.hero h1,
.section-heading h2,
.philosophy-copy h2,
.criteria-intro h2,
.long-term h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(55px, 5.9vw, 92px);
}

.hero h1 em {
  color: var(--copper);
  font-weight: 400;
}

.hero-intro {
  max-width: 590px;
  margin: 36px 0 0;
  color: var(--iron);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  align-items: center;
  margin-top: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 12px 23px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 250ms var(--ease), background 250ms ease;
}

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

.button--primary {
  background: var(--graphite);
  color: var(--white);
}

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

.text-link {
  position: relative;
  color: var(--iron);
  font-size: 13px;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: var(--stone);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  background: var(--ivory) url("../video/toshav-motion-poster.webp") center / cover no-repeat;
}

.hero-background video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  opacity: 0.9;
}

.hero-background__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 240, 232, 0.92) 0%, rgba(244, 240, 232, 0.68) 43%, rgba(244, 240, 232, 0.12) 76%, rgba(244, 240, 232, 0.32) 100%),
    linear-gradient(180deg, rgba(244, 240, 232, 0.32), transparent 36%, rgba(244, 240, 232, 0.35));
}

.hero-video__control {
  position: absolute;
  top: 116px;
  right: var(--gutter);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(29, 36, 36, 0.18);
  border-radius: 999px;
  background: rgba(244, 240, 232, 0.78);
  color: var(--graphite);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease;
}

.hero-video__control:hover,
.hero-video__control:focus-visible {
  border-color: rgba(29, 36, 36, 0.45);
  background: rgba(244, 240, 232, 0.94);
}

.hero-video__control-mark {
  display: block;
  width: 7px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.hero-video__control.is-paused .hero-video__control-mark {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-right: 0;
  border-bottom: 4px solid transparent;
  border-left: 7px solid currentColor;
}

.hero-foot {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-foot__line {
  width: 54px;
  height: 1px;
  background: var(--stone);
}

.section {
  padding: var(--section-space) 0;
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: clamp(30px, 6vw, 96px);
  align-items: start;
}

.section-index {
  margin: 8px 0 0;
  color: var(--copper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-index--light {
  color: #ca8455;
}

.section-heading h2,
.criteria-intro h2,
.long-term h2,
.contact h2 {
  font-size: clamp(47px, 6.1vw, 86px);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 130px);
  margin: clamp(74px, 9vw, 126px) 0 0 25%;
}

.about-lead p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.24;
}

.about-body {
  color: var(--iron);
  font-size: 17px;
}

.about-body p:first-child { margin-top: 5px; }
.about-body p:last-child { margin-bottom: 0; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.principles article {
  position: relative;
  min-height: 250px;
  padding: 30px clamp(24px, 3vw, 44px) 35px;
}

.principles article + article {
  border-left: 1px solid var(--border);
}

.principles span {
  color: var(--copper);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.principles h3 {
  margin: 68px 0 12px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
}

.principles p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.philosophy {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
  background: var(--graphite);
  color: var(--white);
}

.philosophy::after {
  content: "";
  position: absolute;
  right: -13vw;
  bottom: -38vw;
  width: 72vw;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 203, 180, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(216, 203, 180, 0.025), 0 0 0 16vw rgba(216, 203, 180, 0.02);
  transform-origin: center;
  animation: philosophy-orbit 32s ease-in-out infinite;
  will-change: transform, opacity;
}

.philosophy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: clamp(50px, 8vw, 130px);
}

.philosophy-aside {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: space-between;
}

.philosophy-symbol {
  width: 138px;
  opacity: 0.22;
  filter: grayscale(1) brightness(2.3);
  transform-origin: center;
  animation: symbol-breathe 24s ease-in-out infinite;
  will-change: transform, opacity;
}

.philosophy-copy {
  max-width: 830px;
}

.philosophy-copy h2 {
  font-size: clamp(45px, 5.4vw, 78px);
}

.philosophy-copy > p:not(.overline) {
  max-width: 680px;
  margin: 38px 0 0 auto;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.philosophy-copy > p + p:not(.overline) {
  margin-top: 18px;
}

.philosophy-line {
  position: relative;
  height: 2px;
  margin-top: 58px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
}

.philosophy-line span {
  display: block;
  width: 18%;
  height: 100%;
  background: var(--copper);
  transform-origin: left;
  animation: stewardship-line 18s var(--ease) infinite;
  will-change: transform, opacity;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
}

.section-heading--split > p {
  max-width: 390px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 16px;
}

.investment-list {
  margin-top: clamp(70px, 9vw, 120px);
  border-top: 1px solid var(--graphite);
}

.investment-item {
  position: relative;
  display: grid;
  grid-template-columns: 0.25fr 0.8fr 1fr 50px;
  gap: 24px;
  align-items: center;
  min-height: 150px;
  border-bottom: 1px solid var(--border);
  transition: padding 300ms var(--ease), background 300ms ease;
}

.investment-item:hover {
  padding-inline: 18px;
  background: rgba(244, 240, 232, 0.52);
}

.investment-item__index {
  color: var(--copper);
  font-size: 10px;
}

.investment-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.5vw, 39px);
  font-weight: 400;
}

.investment-item p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.investment-item__mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--stone);
  border-radius: 50%;
  color: var(--copper);
}

.criteria {
  padding: var(--section-space) 0;
  background: var(--ivory);
}

.criteria-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 10vw, 156px);
}

.criteria-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.criteria-intro h2 {
  margin-top: 25px;
}

.criteria-intro > p:last-child {
  max-width: 470px;
  margin: 38px 0 0;
  color: var(--muted);
}

.criteria-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.criteria-list li {
  display: grid;
  grid-template-columns: 56px 0.8fr 1.2fr;
  gap: 22px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.criteria-list span {
  color: var(--copper);
  font-size: 10px;
}

.criteria-list strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}

.criteria-list small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.long-term {
  position: relative;
  min-height: 780px;
  padding: var(--section-space) 0;
  overflow: hidden;
  background: var(--white);
}

.long-term__rings {
  position: absolute;
  top: 50%;
  left: 68%;
  width: min(52vw, 710px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  opacity: 0.78;
  animation: rings-drift 34s ease-in-out infinite;
  will-change: transform;
}

.long-term__rings::before,
.long-term__rings::after,
.long-term__rings i {
  content: "";
  position: absolute;
  border: 1px solid rgba(181, 106, 53, 0.18);
  border-radius: 50%;
}

.long-term__rings::before { inset: 0; }
.long-term__rings::after { inset: 12%; }
.long-term__rings i:nth-child(1) { inset: 24%; }
.long-term__rings i:nth-child(2) { inset: 36%; }
.long-term__rings i:nth-child(3) { inset: 48%; background: var(--copper); border: 0; }

.long-term__rings::before,
.long-term__rings::after,
.long-term__rings i {
  transform-origin: center;
  animation: ring-breathe 26s ease-in-out infinite;
  will-change: transform, opacity;
}

.long-term__rings::after { animation-delay: -5s; }
.long-term__rings i:nth-child(1) { animation-delay: -10s; }
.long-term__rings i:nth-child(2) { animation-delay: -15s; }
.long-term__rings i:nth-child(3) { animation: core-breathe 13s ease-in-out infinite; }

@keyframes philosophy-orbit {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; }
  50% { transform: translate3d(-1.5vw, -1vw, 0) scale(1.035); opacity: 0.78; }
}

@keyframes symbol-breathe {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.2; }
  50% { transform: translate3d(7px, -5px, 0) scale(1.025); opacity: 0.3; }
}

@keyframes stewardship-line {
  0%, 100% { transform: translateX(0) scaleX(1); opacity: 0.8; }
  48% { transform: translateX(250%) scaleX(1.42); opacity: 1; }
  52% { transform: translateX(250%) scaleX(1.42); opacity: 1; }
}

@keyframes rings-drift {
  0%, 100% { transform: translate(-50%, -50%) rotate(0.001deg) scale(1); }
  50% { transform: translate(-48.5%, -51.5%) rotate(0.001deg) scale(1.025); }
}

@keyframes ring-breathe {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.028); opacity: 1; }
}

@keyframes core-breathe {
  0%, 100% { transform: scale(0.88); opacity: 0.78; }
  50% { transform: scale(1.12); opacity: 1; }
}

.long-term__inner {
  position: relative;
  z-index: 1;
}

.long-term h2 {
  max-width: 990px;
  margin-top: 60px;
}

.long-term__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 780px;
  margin: 90px 0 0 auto;
  padding: 30px 0 0;
  border-top: 1px solid var(--border);
  color: var(--iron);
}

.long-term__copy p { margin: 0; }

.contact {
  position: relative;
  padding: clamp(90px, 11vw, 150px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 44%, rgba(181, 106, 53, 0.09), transparent 29%),
    var(--graphite);
  color: var(--white);
  isolation: isolate;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.contact::before {
  top: 50%;
  right: -9vw;
  width: min(42vw, 610px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 1px solid rgba(181, 106, 53, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 clamp(38px, 6vw, 90px) rgba(181, 106, 53, 0.035),
    0 0 0 clamp(88px, 12vw, 180px) rgba(181, 106, 53, 0.018);
}

.contact::after {
  top: 0;
  bottom: 0;
  left: calc(var(--gutter) + 2px);
  width: 1px;
  background: linear-gradient(transparent, rgba(181, 106, 53, 0.3), transparent);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
}

.contact .section-index--light {
  color: var(--stone);
}

.contact h2 {
  margin-top: 30px;
  font-size: clamp(47px, 5.4vw, 76px);
}

.contact-action {
  padding-bottom: 7px;
}

.contact-action p {
  margin: 0 0 18px;
  color: rgba(216, 203, 180, 0.72);
  font-size: 13px;
}

.contact-action a {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(181, 106, 53, 0.72);
  font-size: clamp(17px, 1.5vw, 21px);
}

.contact-action a span {
  transition: transform 250ms var(--ease);
}

.contact-action a:hover span,
.contact-action a:focus-visible span {
  transform: translate(4px, -4px);
}

.contact-action a:hover,
.contact-action a:focus-visible {
  color: var(--stone);
}

.site-footer {
  padding: 76px 0 30px;
  background: var(--graphite);
  color: var(--white);
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 210px;
}

.footer-brand {
  width: 155px;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 70px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
}

.footer-legal {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-legal p { margin: 0; }

.footer-legal__identity {
  display: grid;
  gap: 7px;
}

.footer-legal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: flex-end;
}

.footer-legal__links a {
  transition: color 220ms ease;
}

.footer-legal__links a:hover,
.footer-legal__links a:focus-visible {
  color: var(--white);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.js [data-reveal][data-delay="1"] {
  transition-delay: 120ms;
}

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

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 5px;
}

@media (max-width: 1050px) {
  .hero-copy { max-width: 760px; }

  .about-layout {
    margin-left: 12.5%;
  }

  .criteria-grid {
    gap: 70px;
  }
}

@media (max-width: 860px) {
  .header-inner { min-height: 82px; }
  .brand { width: 116px; }
  .brand img { height: 54px; }

  .menu-toggle { display: flex; }

  .primary-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px var(--gutter) 34px;
    transform: translateY(-120%);
    visibility: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--ivory);
    opacity: 0;
    transition: transform 350ms var(--ease), opacity 250ms ease, visibility 350ms;
  }

  .primary-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }

  .primary-nav .nav-contact {
    width: max-content;
    margin-top: 18px;
    padding: 11px 19px;
    border-bottom: 1px solid rgba(29, 36, 36, 0.44);
  }

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

  .nav-open .menu-toggle__icon i:first-child { top: 9px; transform: rotate(45deg); }
  .nav-open .menu-toggle__icon i:last-child { top: 9px; transform: rotate(-45deg); }

  .hero {
    min-height: 100svh;
    padding: 128px 0 82px;
  }

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

  .hero-copy { max-width: 710px; }

  .hero-background__veil {
    background:
      linear-gradient(90deg, rgba(244, 240, 232, 0.9), rgba(244, 240, 232, 0.58) 68%, rgba(244, 240, 232, 0.3)),
      linear-gradient(180deg, rgba(244, 240, 232, 0.35), transparent 36%, rgba(244, 240, 232, 0.48));
  }

  .hero-foot { display: none; }

  .section-heading,
  .section-heading--split,
  .philosophy-grid,
  .criteria-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .section-heading { gap: 34px; }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-left: 0;
  }

  .about-lead { max-width: 670px; }
  .about-body { max-width: 650px; margin-left: auto; }

  .philosophy-grid { gap: 55px; }
  .philosophy-aside { min-height: auto; }
  .philosophy-symbol { display: none; }

  .section-heading--split > p {
    max-width: 570px;
    margin-top: 10px;
  }

  .investment-item {
    grid-template-columns: 55px 0.9fr 1.1fr 44px;
  }

  .criteria-intro {
    position: static;
    max-width: 670px;
  }

  .criteria-list {
    max-width: 760px;
    margin-left: auto;
  }

  .contact-inner { gap: 65px; }
  .contact-action { max-width: 540px; }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
    --section-space: 92px;
  }

  html { scroll-padding-top: 78px; }
  .header-inner { min-height: 76px; }
  .brand { width: 102px; }
  .brand img { height: 48px; }

  .primary-nav { inset: 76px 0 auto; }

  .site-intro__stage {
    width: min(69vw, 310px);
  }

  .hero {
    padding: 118px 0 82px;
  }

  .eyebrow { margin-bottom: 22px; }

  .hero h1 {
    font-size: clamp(47px, 14.7vw, 72px);
    line-height: 1.01;
  }

  .hero h1 br { display: none; }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 34px;
  }

  .hero-video__control {
    top: auto;
    right: 20px;
    bottom: 20px;
  }

  .section-heading h2,
  .criteria-intro h2,
  .long-term h2,
  .contact h2 {
    font-size: clamp(42px, 12.4vw, 60px);
  }

  .section-heading h2 br,
  .long-term h2 br,
  .contact h2 br {
    display: none;
  }

  .about-layout { margin-top: 60px; }
  .about-lead p { font-size: 29px; }
  .about-body { font-size: 16px; }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .principles article {
    min-height: 0;
    padding: 27px 0 32px;
  }

  .principles article + article {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .principles h3 { margin-top: 32px; }

  .philosophy-copy h2 {
    font-size: clamp(41px, 11.8vw, 58px);
  }

  .philosophy-copy > p:not(.overline) {
    margin-top: 30px;
    font-size: 15px;
  }

  .investment-list { margin-top: 60px; }

  .investment-item {
    grid-template-columns: 38px 1fr 40px;
    gap: 14px;
    min-height: 0;
    padding: 27px 0;
  }

  .investment-item:hover { padding-inline: 8px; }
  .investment-item h3 { font-size: 28px; }
  .investment-item p { grid-column: 2 / 4; }
  .investment-item__mark { grid-column: 3; grid-row: 1; }

  .criteria-list li {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 25px 0;
  }

  .criteria-list small {
    grid-column: 2;
  }

  .long-term {
    min-height: 700px;
  }

  .long-term__rings {
    top: 66%;
    left: 68%;
    width: 115vw;
  }

  .long-term h2 { margin-top: 42px; }

  .long-term__copy {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 65px;
    padding: 24px 0;
    background: rgba(255, 255, 255, 0.72);
  }

  .contact-action a {
    gap: 12px;
    font-size: 15px;
  }

  .footer-main {
    flex-direction: column;
    gap: 58px;
    min-height: 290px;
  }

  .footer-nav { gap: 13px 50px; }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }

  .footer-legal__links {
    justify-content: flex-start;
    margin-top: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .site-intro { display: none !important; }

  .philosophy::after,
  .philosophy-symbol,
  .philosophy-line span,
  .long-term__rings,
  .long-term__rings::before,
  .long-term__rings::after,
  .long-term__rings i {
    animation: none !important;
  }
}
