:root {
  --paper: #f1efe8;
  --paper-2: #e9e6dd;
  --ink: #121612;
  --muted: #646861;
  --line: rgba(18, 22, 18, 0.18);
  --green: #b8d66a;
  --green-deep: #667b37;
  --white: #f7f6f1;
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(100%, var(--max-width));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.055em;
}

.wordmark-mark {
  width: 0.85em;
  height: 0.85em;
  margin: 0 0.06em;
  border: 0.1em solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.2em var(--green);
  flex: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #353934;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.contact-link {
  transition: opacity 180ms ease;
}

.site-nav a:hover,
.contact-link:hover {
  opacity: 0.55;
}

.contact-link {
  justify-self: end;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  width: min(100%, var(--max-width));
  min-height: 840px;
  margin: 0 auto;
  padding: 184px 48px 72px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 780px;
  padding-bottom: 34px;
}

.eyebrow,
.section-label,
.principles-kicker,
.role,
.contact-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 650;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 54px;
  color: #454a43;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-deep);
  box-shadow: 0 0 0 5px rgba(184, 214, 106, 0.23);
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(74px, 7.25vw, 116px);
  font-weight: 540;
  letter-spacing: -0.07em;
  line-height: 0.91;
}

.hero h1 span {
  display: block;
  color: #686d64;
}

.hero-intro {
  max-width: 475px;
  margin: 46px 0 38px;
  color: #555b53;
  font-size: 17px;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  padding: 0 0 9px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 15px;
  transition: transform 180ms ease;
}

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

.hero-object {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(92%, 490px);
  aspect-ratio: 0.9;
}

.object-frame {
  position: absolute;
  isolation: isolate;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 22, 18, 0.22);
  border-radius: 50% 50% 4px 4px;
  background:
    linear-gradient(rgba(18, 22, 18, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 22, 18, 0.055) 1px, transparent 1px),
    var(--paper-2);
  background-size: 46px 46px;
}

.object-frame::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(18, 22, 18, 0.18);
  border-radius: 50%;
  content: "";
}

.object-code,
.object-caption {
  position: absolute;
  z-index: 4;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.object-code {
  top: 32px;
  left: 32px;
}

.object-caption {
  right: 28px;
  bottom: 26px;
}

.orb {
  position: absolute;
  border: 1px solid rgba(18, 22, 18, 0.26);
  border-radius: 50%;
  opacity: 0.42;
}

.orb-one {
  top: 22%;
  left: 13%;
  width: 74%;
  height: 54%;
  transform: rotate(28deg);
}

.orb-two {
  top: 17%;
  left: 23%;
  width: 55%;
  height: 68%;
  transform: rotate(-32deg);
}

.axis {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(18, 22, 18, 0.22);
  opacity: 0.38;
}

.axis-x {
  width: 80%;
  height: 1px;
  transform: translate(-50%, -50%);
}

.axis-y {
  width: 1px;
  height: 80%;
  transform: translate(-50%, -50%);
}

.object-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112px;
  height: 112px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(18, 22, 18, 0.5);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 16px rgba(241, 239, 232, 0.45);
  opacity: 0.34;
}

.thinking-orb-canvas {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: contents;
}

.hero-index {
  position: absolute;
  right: 48px;
  bottom: 30px;
  left: 48px;
  display: flex;
  justify-content: space-between;
  font-family: "SFMono-Regular", Consolas, monospace;
  color: #777c73;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.company-section,
.leadership-section {
  display: grid;
  grid-template-columns: 0.32fr 1fr;
  gap: 64px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 142px 48px 158px;
}

.section-label {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding-top: 10px;
  color: #555a52;
}

.section-label span {
  font-family: "SFMono-Regular", Consolas, monospace;
  color: #8d9189;
  font-size: 9px;
}

.section-label p {
  margin: 0;
}

.company-statement h2,
.focus-heading h2,
.leadership-copy h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(54px, 6vw, 90px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.company-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  max-width: 770px;
  margin: 72px 0 0 auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.company-body p {
  margin: 0;
  color: #585e56;
  font-size: 15px;
  line-height: 1.7;
}

.focus-section {
  display: grid;
  grid-template-columns: 0.32fr 1fr;
  column-gap: 64px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 138px 48px 88px;
  background: var(--ink);
  color: var(--white);
}

.section-label-light {
  grid-row: 1 / span 2;
  color: #d3d5cf;
}

.section-label-light span {
  color: #777c72;
}

.focus-heading {
  display: flex;
  justify-content: space-between;
  gap: 56px;
  align-items: flex-end;
}

.focus-heading h2 {
  max-width: 680px;
  font-size: clamp(52px, 5vw, 80px);
}

.focus-heading > p {
  max-width: 300px;
  margin: 0 0 4px;
  color: #aeb2a9;
  font-size: 14px;
  line-height: 1.65;
}

.focus-list {
  margin-top: 94px;
}

.focus-item {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 70px minmax(240px, 1fr) minmax(260px, 0.8fr) 40px;
  gap: 28px;
  align-items: center;
  min-height: 148px;
  border-top: 1px solid rgba(247, 246, 241, 0.2);
}

.focus-item::before {
  --beam-angle: 0deg;
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 2.5px;
  pointer-events: none;
  background: conic-gradient(
    from var(--beam-angle),
    transparent 0deg 272deg,
    rgba(184, 214, 106, 0.18) 292deg,
    #b8d66a 318deg,
    #f7f6f1 335deg,
    #b8d66a 351deg,
    transparent 360deg
  );
  opacity: 0.94;
  -webkit-mask:
    linear-gradient(#12160f 0 0) content-box,
    linear-gradient(#12160f 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#12160f 0 0) content-box,
    linear-gradient(#12160f 0 0);
  mask-composite: exclude;
  animation: focus-beam 3.9s linear infinite;
  filter: brightness(1.18) drop-shadow(0 0 7px rgba(184, 214, 106, 0.46));
  transition: opacity 260ms ease, filter 260ms ease;
  will-change: --beam-angle, opacity, filter;
}

.focus-item:nth-child(2)::before { animation-delay: -1.3s; }
.focus-item:nth-child(3)::before { animation-delay: -2.6s; }

.focus-item:hover::before {
  opacity: 1;
  filter: brightness(1.38) drop-shadow(0 0 11px rgba(184, 214, 106, 0.68));
  animation-duration: 2.2s;
}

@keyframes focus-beam {
  to { --beam-angle: 360deg; }
}

.focus-item:last-child {
  border-bottom: 1px solid rgba(247, 246, 241, 0.2);
}

.focus-number {
  font-family: "SFMono-Regular", Consolas, monospace;
  color: #858a80;
  font-size: 10px;
}

.focus-item h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.focus-item p {
  max-width: 320px;
  margin: 0;
  color: #aeb2a9;
  font-size: 14px;
  line-height: 1.6;
}

.focus-symbol {
  color: var(--green);
  font-size: 28px;
  text-align: right;
}

.principles-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 150px 14% 154px;
  background: var(--green);
  color: var(--ink);
}

.goo-filter {
  position: absolute;
}

.liquid-field {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  filter: url("#goo");
  opacity: 0.48;
}

.liquid-blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: #f1efe8;
  will-change: transform;
}

.liquid-blob-one {
  top: -9%;
  right: 2%;
  width: clamp(230px, 34vw, 510px);
  aspect-ratio: 1;
  animation: liquid-one 7.2s ease-in-out infinite alternate;
}

.liquid-blob-two {
  right: 19%;
  bottom: -25%;
  width: clamp(205px, 31vw, 465px);
  aspect-ratio: 1;
  background: #f7f6f1;
  animation: liquid-two 8.4s ease-in-out infinite alternate;
}

.liquid-blob-three {
  top: 24%;
  left: -13%;
  width: clamp(180px, 27vw, 405px);
  aspect-ratio: 1;
  background: #d5e9a3;
  animation: liquid-three 6.3s ease-in-out infinite alternate;
}

.liquid-blob-four {
  top: 12%;
  left: 34%;
  width: clamp(130px, 21vw, 320px);
  aspect-ratio: 1;
  background: #f7f6f1;
  animation: liquid-four 7.7s ease-in-out -2.4s infinite alternate;
}

@keyframes liquid-one {
  to { transform: translate3d(-46%, 32%, 0) scale(1.17, 0.9) rotate(16deg); }
}

@keyframes liquid-two {
  to { transform: translate3d(42%, -48%, 0) scale(0.84, 1.16) rotate(-20deg); }
}

@keyframes liquid-three {
  to { transform: translate3d(72%, -24%, 0) scale(1.22, 0.88) rotate(22deg); }
}

@keyframes liquid-four {
  to { transform: translate3d(58%, 54%, 0) scale(0.82, 1.24) rotate(-18deg); }
}

.principles-line {
  position: absolute;
  top: 0;
  left: 14%;
  width: 1px;
  height: 100%;
  background: rgba(18, 22, 18, 0.18);
}

.principles-kicker {
  margin: 0 0 50px;
}

.principles-copy {
  max-width: 1090px;
  margin: 0;
  font-size: clamp(44px, 4.8vw, 74px);
  font-weight: 470;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.principles-copy em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.principle-words {
  display: flex;
  justify-content: space-between;
  margin-top: 92px;
  padding-top: 20px;
  border-top: 1px solid rgba(18, 22, 18, 0.3);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.leadership-section {
  padding-top: 150px;
  padding-bottom: 164px;
}

.leadership-card {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 74px;
  align-items: center;
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.leadership-monogram {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at center, transparent 0 30%, rgba(18, 22, 18, 0.11) 30.25% 30.65%, transparent 31%),
    linear-gradient(rgba(18, 22, 18, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 22, 18, 0.06) 1px, transparent 1px),
    var(--paper-2);
  background-size: auto, 38px 38px, 38px 38px, auto;
  animation: leadership-bloom 5.5s ease-in-out infinite;
  transition: box-shadow 360ms ease;
  will-change: box-shadow;
}

@property --beam-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.leadership-monogram .beam-ring {
  --beam-angle: 0deg;
  position: absolute;
  z-index: 3;
  inset: 0;
  padding: 2.5px;
  pointer-events: none;
  background: conic-gradient(
    from var(--beam-angle),
    transparent 0deg 268deg,
    rgba(184, 214, 106, 0.22) 292deg,
    #b8d66a 319deg,
    #f7f6f1 337deg,
    #b8d66a 352deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#12160f 0 0) content-box,
    linear-gradient(#12160f 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#12160f 0 0) content-box,
    linear-gradient(#12160f 0 0);
  mask-composite: exclude;
  animation: leadership-beam 3.35s linear infinite;
  filter: brightness(1.22) drop-shadow(0 0 8px rgba(184, 214, 106, 0.58));
  transition: opacity 300ms ease, filter 300ms ease;
  will-change: --beam-angle, opacity, filter;
}

.leadership-monogram .beam-ring::before {
  --beam-angle: 360deg;
  position: absolute;
  inset: 0;
  content: "";
  background: conic-gradient(
    from var(--beam-angle),
    transparent 0deg 294deg,
    rgba(247, 246, 241, 0.2) 320deg,
    rgba(184, 214, 106, 0.62) 346deg,
    transparent 360deg
  );
  animation: leadership-beam-reverse 5.6s linear infinite;
  will-change: --beam-angle;
}

.leadership-monogram .photo-fx {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(247, 246, 241, 0.14) 0,
      rgba(247, 246, 241, 0.14) 1px,
      transparent 1px,
      transparent 4px
    ),
    linear-gradient(
      to bottom,
      transparent 0 39%,
      rgba(184, 214, 106, 0.2) 44%,
      rgba(247, 246, 241, 0.72) 49%,
      rgba(184, 214, 106, 0.32) 54%,
      transparent 62% 100%
    ),
    linear-gradient(125deg, rgba(18, 22, 15, 0.14), rgba(184, 214, 106, 0.26));
  background-size: 100% 100%, 100% 225%, 100% 100%;
  background-position: 0 0, 0 -160%, 0 0;
  mix-blend-mode: hard-light;
  opacity: 0;
  transition: opacity 320ms ease;
  will-change: opacity, background-position;
}

.leadership-card:hover .photo-fx {
  opacity: 0.94;
  animation: photo-scan 1.45s ease-in-out infinite;
}

.leadership-card:hover .leadership-photo {
  filter: grayscale(0.32) sepia(0.22) saturate(1.42) hue-rotate(18deg) brightness(1.025) contrast(1.16);
}

@keyframes photo-scan {
  to { background-position: 0 0, 0 160%, 0 0; }
}

.leadership-card:hover {
  transform: scale(1.015);
}

.leadership-card:hover .leadership-monogram {
  animation-name: leadership-bloom-hover;
}

.leadership-card:hover .beam-ring {
  filter: brightness(1.48) drop-shadow(0 0 13px rgba(184, 214, 106, 0.76));
  animation-duration: 1.95s;
}

.leadership-card:hover .beam-ring::before {
  animation-duration: 5.5s;
}

@keyframes leadership-beam {
  to { --beam-angle: 360deg; }
}

@keyframes leadership-beam-reverse {
  to { --beam-angle: 0deg; }
}

@keyframes leadership-bloom {
  0%, 100% { box-shadow: 0 0 28px rgba(184, 214, 106, 0.2); }
  50% { box-shadow: 0 0 48px rgba(184, 214, 106, 0.36); }
}

@keyframes leadership-bloom-hover {
  0%, 100% { box-shadow: 0 0 40px rgba(184, 214, 106, 0.34); }
  50% { box-shadow: 0 0 64px rgba(184, 214, 106, 0.5); }
}

.leadership-monogram::before,
.leadership-monogram::after {
  position: absolute;
  content: "";
}

.leadership-monogram::before {
  inset: 10%;
  border: 1px solid rgba(18, 22, 18, 0.22);
  border-radius: 50%;
}

.leadership-monogram::after {
  top: 16%;
  right: 16%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--green);
}

.leadership-monogram span {
  position: relative;
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 7vw, 104px);
  font-style: italic;
  letter-spacing: -0.08em;
}

.leadership-monogram small {
  position: absolute;
  right: 25px;
  bottom: 22px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.leadership-copy .role {
  margin: 0 0 34px;
  color: var(--green-deep);
}

.leadership-copy h2 {
  font-size: clamp(60px, 6.5vw, 96px);
}

.leadership-copy > p:last-child {
  max-width: 480px;
  margin: 44px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #555b53;
  font-size: 15px;
  line-height: 1.7;
}

.contact-section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 136px 14% 144px;
  background: var(--paper-2);
}

.contact-kicker {
  margin: 0 0 48px;
  color: #666b63;
}

.contact-section h2 {
  font-size: clamp(72px, 8.7vw, 132px);
}

.contact-section > a {
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  padding: 24px 0 20px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.03em;
}

.contact-section > a::before,
.contact-section > a::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent 34%, #b8d66a 43%, #f7f6f1 50%, #b8d66a 57%, transparent 66%);
  background-size: 220% 100%;
  filter: drop-shadow(0 0 6px rgba(184, 214, 106, 0.78));
  animation: contact-row-beam 3.2s linear infinite;
}

.contact-section > a::before { top: -1px; }
.contact-section > a::after {
  bottom: -1px;
  animation-direction: reverse;
  animation-delay: -1.6s;
}

.contact-section > a span {
  --beam-angle: 0deg;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  font-size: 22px;
  animation: contact-glow 3.8s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 260ms ease;
  will-change: transform, box-shadow;
}

.contact-section > a span::before {
  position: absolute;
  z-index: -1;
  inset: -6px;
  padding: 2.5px;
  border-radius: inherit;
  pointer-events: none;
  content: "";
  background: conic-gradient(
    from var(--beam-angle),
    transparent 0deg 250deg,
    rgba(184, 214, 106, 0.5) 294deg,
    #b8d66a 317deg,
    #f7f6f1 339deg,
    #b8d66a 352deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#12160f 0 0) content-box,
    linear-gradient(#12160f 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#12160f 0 0) content-box,
    linear-gradient(#12160f 0 0);
  mask-composite: exclude;
  animation: contact-beam 3.45s linear infinite;
  filter: drop-shadow(0 0 8px rgba(184, 214, 106, 0.66));
  will-change: --beam-angle;
}

.contact-section > a:hover span {
  transform: rotate(45deg);
  box-shadow: 0 0 0 12px rgba(184, 214, 106, 0.2), 0 0 40px rgba(184, 214, 106, 0.62);
}

.contact-section > a:hover span::before {
  animation-duration: 1.85s;
}

@keyframes contact-row-beam {
  from { background-position: 100% 50%; }
  to { background-position: -100% 50%; }
}

@keyframes contact-beam {
  to { --beam-angle: 360deg; }
}

@keyframes contact-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 214, 106, 0.13), 0 0 20px rgba(184, 214, 106, 0.3); }
  50% { box-shadow: 0 0 0 11px rgba(184, 214, 106, 0.15), 0 0 38px rgba(184, 214, 106, 0.52); }
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  width: min(100%, var(--max-width));
  min-height: 210px;
  margin: 0 auto;
  padding: 44px 48px;
  background: var(--ink);
  color: var(--white);
}

.wordmark-footer .wordmark-mark {
  box-shadow: inset 0 0 0 4px var(--green);
}

.wordmark-footer {
  grid-column: 1 / -1;
  font-size: clamp(58px, 8vw, 116px);
  line-height: 0.78;
}

.wordmark-footer > span:not(.wordmark-mark) {
  background:
    linear-gradient(
      105deg,
      #555b54 0%,
      #eef0e9 16%,
      #747b72 31%,
      #ffffff 44%,
      #b8d66a 49%,
      #ffffff 54%,
      #8f968d 68%,
      #f2f3ed 82%,
      #50564f 100%
    );
  background-size: 280% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: metal-sweep 2.8s ease-in-out infinite;
  will-change: background-position;
}

.wordmark-footer > span:first-child { animation-delay: -0.12s; }
.wordmark-footer > span:last-child { animation-delay: -0.02s; }

@keyframes metal-sweep {
  0%, 12% { background-position: 100% 50%; }
  72%, 100% { background-position: 0% 50%; }
}

.site-footer > p {
  justify-self: center;
  margin: 0;
  color: #aeb2aa;
  font-size: 12px;
}

.footer-meta {
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
  font-family: "SFMono-Regular", Consolas, monospace;
  color: #8c9188;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding: 0 24px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 150px 24px 72px;
  }

  .hero h1 {
    font-size: clamp(58px, 16vw, 86px);
  }

  .hero-object {
    justify-self: center;
    width: min(100%, 460px);
    margin-top: 74px;
  }

  .hero-index {
    display: none;
  }

  .company-section,
  .focus-section,
  .leadership-section {
    grid-template-columns: 1fr;
    gap: 62px;
    padding: 96px 24px;
  }

  .company-body,
  .leadership-card {
    grid-template-columns: 1fr;
  }

  .company-body {
    gap: 28px;
    margin-top: 48px;
  }

  .section-label-light {
    grid-row: auto;
  }

  .focus-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .focus-list {
    margin-top: 64px;
  }

  .focus-item {
    grid-template-columns: 38px 1fr 32px;
    gap: 16px;
    padding: 28px 0;
  }

  .focus-item p {
    grid-column: 2 / -1;
  }

  .principles-section,
  .contact-section {
    padding: 96px 24px;
  }

  .principles-line {
    display: none;
  }

  .principle-words {
    gap: 24px;
    overflow: hidden;
  }

  .leadership-monogram {
    max-width: 500px;
  }

  .contact-section > a {
    margin-top: 60px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 46px;
    align-items: start;
    min-height: 270px;
    padding: 48px 24px;
  }

  .wordmark-footer {
    grid-column: 1;
    font-size: clamp(52px, 19vw, 104px);
  }

  .site-footer > p,
  .footer-meta {
    justify-self: start;
  }

  .footer-meta {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-object {
    opacity: 0;
    transform: translateY(18px);
    animation: reveal 720ms cubic-bezier(0.2, 0.75, 0.3, 1) forwards;
  }

  .hero-object {
    animation-delay: 130ms;
  }

  .object-core {
    animation: breathe 5s ease-in-out infinite;
  }

  @keyframes reveal {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes breathe {
    0%, 100% { box-shadow: 0 0 0 16px rgba(241, 239, 232, 0.45); }
    50% { box-shadow: 0 0 0 28px rgba(241, 239, 232, 0.22); }
  }
}

/* Leadership headshot (real photo replaces the JS monogram) */
.leadership-monogram .leadership-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: grayscale(0.06) contrast(1.02);
  transition: filter 180ms ease-out;
  will-change: filter;
}
.leadership-monogram:has(.leadership-photo)::before { display: none; }
.leadership-monogram:has(.leadership-photo)::after { z-index: 3; }
.leadership-monogram:has(.leadership-photo) small {
  z-index: 3;
  color: #f7f6f1;
  background: rgba(18, 22, 18, 0.55);
  padding: 3px 8px;
  border-radius: 3px;
  right: 16px;
  bottom: 16px;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .leadership-card,
  .leadership-monogram,
  .leadership-monogram .beam-ring,
  .leadership-monogram .beam-ring::before {
    animation: none;
    transition: none;
  }

  .leadership-card:hover {
    transform: none;
  }

  .leadership-monogram {
    box-shadow: inset 0 0 0 1px #b8d66a;
  }

  .leadership-monogram .beam-ring {
    display: none;
  }

  .focus-item::before,
  .contact-section > a span::before {
    opacity: 0.42;
    background: linear-gradient(90deg, rgba(184, 214, 106, 0.55), rgba(247, 246, 241, 0.72));
  }

  .liquid-field {
    filter: none;
    opacity: 0.12;
  }

  .liquid-blob-one { transform: translate3d(-12%, 10%, 0); }
  .liquid-blob-two { transform: translate3d(16%, -8%, 0); }
  .liquid-blob-three { transform: translate3d(20%, -6%, 0); }
  .liquid-blob-four { transform: translate3d(18%, 14%, 0); }

  .leadership-monogram .photo-fx {
    display: none;
  }

  .wordmark-footer > span:not(.wordmark-mark) {
    background-position: 48% 50%;
  }
}

/* Jack Shi profile links (leadership) */
.leadership-links {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.leadership-links a {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555b53;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(18, 22, 18, 0.18);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.leadership-links a:hover {
  color: #12160f;
  border-color: #b8d66a;
}
