:root {
  --yellow: #fcaf41;
  --yellow-soft: #ffc76f;
  --ink: #080808;
  --ink-2: #101010;
  --ink-3: #171717;
  --paper: #f1f0eb;
  --paper-2: #e7e5de;
  --white: #fffefa;
  --muted-light: rgba(255, 255, 255, 0.62);
  --muted-dark: #6e6d67;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(8, 8, 8, 0.2);
  --page: clamp(24px, 5.25vw, 84px);
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
  --header-h: 80px;
}

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

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Montserrat', 'Avenir Next', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  border-radius: 0;
  font: inherit;
}

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

button {
  color: inherit;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  translate: 0 -150%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: translate 180ms ease;
}

.skip-link:focus {
  translate: 0 0;
}

.page-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-inline: var(--page);
}

.eyebrow {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(120px, 0.29fr) minmax(0, 1fr);
  gap: clamp(36px, 5.2vw, 90px);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms var(--ease),
    transform 720ms var(--ease);
}

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

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  min-height: var(--header-h);
  padding: 14px var(--page);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    min-height 280ms var(--ease),
    background-color 280ms ease,
    backdrop-filter 280ms ease;
}

.site-header.scrolled,
.menu-open .site-header {
  min-height: var(--header-h);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 3.2vw, 52px);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-inquiry {
  transition: color 200ms ease;
}

.desktop-nav a:hover,
.header-inquiry:hover {
  color: var(--yellow);
}

.header-inquiry {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.26);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 7px 0;
  background: white;
  transition: transform 260ms var(--ease);
}

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

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

.mobile-menu {
  position: fixed;
  z-index: 50;
  inset: 0;
  visibility: hidden;
  overflow-y: auto;
  background: var(--ink);
  color: white;
  opacity: 0;
  translate: 0 -16px;
  transition:
    visibility 0s linear 340ms,
    opacity 300ms ease,
    translate 340ms var(--ease);
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  translate: 0 0;
  transition-delay: 0s;
}

.mobile-menu-inner {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 118px var(--page) 54px;
}

.mobile-menu .eyebrow {
  color: var(--yellow);
  margin-bottom: 24px;
}

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

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(2.1rem, 8.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.mobile-menu nav span {
  color: var(--yellow);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.mobile-menu-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  line-height: 1.6;
}

.mobile-menu-contact p {
  grid-column: 1 / -1;
  margin: 12px 0 0;
}

.hero {
  position: relative;
  min-height: max(740px, 100svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  scale: 1.06;
  will-change: transform;
  animation: hero-settle 1.7s var(--ease) both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.89) 0%, rgba(4, 4, 4, 0.44) 55%, rgba(4, 4, 4, 0.48) 100%),
    linear-gradient(0deg, rgba(4, 4, 4, 0.76) 0%, transparent 52%);
}

.hero-grid {
  z-index: -1;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
  mask-image: linear-gradient(90deg, black, transparent 63%);
}

.hero-content {
  position: relative;
  z-index: 4;
  padding-bottom: clamp(106px, 14.5vh, 158px);
}

.hero-eyebrow {
  margin-bottom: 25px;
  color: var(--yellow);
}

.hero h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(3.35rem, 7.15vw, 7.65rem);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 0.91;
}

.hero h1 em,
.about h2 em,
.pane-heading h3 em,
.services h2 em,
.promise h2 em,
.chapter h2 em,
.projects h2 em,
.contact h2 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-summary {
  max-width: 620px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.92rem, 1.2vw, 1.12rem);
  line-height: 1.68;
}

.hero-project {
  position: absolute;
  z-index: 4;
  right: var(--page);
  bottom: clamp(114px, 14.5vh, 158px);
  width: min(300px, 23vw);
  padding-top: 15px;
  border-top: 1px solid var(--line-dark);
}

.hero-project span,
.hero-project small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.6rem;
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-project strong {
  display: block;
  margin: 9px 0 5px;
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-transition {
  --bridge-scale: 1;
  --bridge-opacity: 1;
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--paper);
  opacity: var(--bridge-opacity);
  transform: translate(-50%, 50%) scale(var(--bridge-scale));
  transform-origin: center;
  pointer-events: none;
  will-change: transform, opacity;
}

.discover {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 0;
  display: flex;
  width: 112px;
  height: 112px;
  transform: translate(-50%, 50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.discover:hover {
  color: #97610f;
}

.about {
  position: relative;
  z-index: 3;
  padding: clamp(148px, 17vw, 242px) 0 clamp(110px, 13vw, 188px);
  background: var(--paper);
}

.about-intro h2,
.services-intro h2,
.projects-intro h2 {
  margin: -0.11em 0 0;
  font-size: clamp(3rem, 6.8vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.about-intro .lede {
  max-width: 700px;
  margin: 40px 0 0;
  color: #555550;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.72;
}

.about-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(74px, 9.5vw, 136px) 0 clamp(50px, 6.5vw, 88px);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.about-tabs button {
  min-height: 82px;
  padding: 14px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-light);
  color: #7c7a73;
  cursor: pointer;
  font-size: clamp(0.68rem, 0.95vw, 0.86rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition:
    background-color 260ms ease,
    color 260ms ease;
}

.about-tabs button:last-child {
  border-right: 0;
}

.about-tabs button:hover {
  color: var(--ink);
}

.about-tabs button.active {
  background: var(--yellow);
  color: var(--ink);
}

.about-stage {
  min-height: 650px;
}

.about-pane {
  animation: pane-enter 540ms var(--ease) both;
}

.js .about-pane:not(.active) {
  display: none !important;
}

#pane-who {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(40px, 7vw, 118px);
  align-items: end;
}

.media-mark {
  position: relative;
  overflow: hidden;
  background: #d4d3ce;
}

.media-mark::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  background: url('assets/logo.png') center / contain no-repeat;
  opacity: 0.14;
  pointer-events: none;
}

.about-photo {
  min-height: 650px;
  margin: 0;
}

.about-photo > img,
.team-photo > img,
.project-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo > img {
  position: absolute;
  inset: 0;
}

.proof-copy > div:first-child {
  max-width: 530px;
  margin-bottom: 54px;
  color: #555550;
  font-size: 0.98rem;
  line-height: 1.76;
}

.proof-copy p {
  margin: 0;
}

.proof-copy .pane-kicker {
  margin-bottom: 9px;
  color: var(--ink);
  font-weight: 600;
}

.proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border-top: 1px solid var(--line-light);
}

.proof-stats div {
  padding: 25px 14px 27px 0;
  border-bottom: 1px solid var(--line-light);
}

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

.proof-stats div:nth-child(even) {
  padding-left: 26px;
}

.proof-stats dt {
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.06em;
  line-height: 1;
}

.proof-stats dt sup {
  margin-left: 0.06em;
  color: var(--yellow);
  font-size: 0.38em;
  letter-spacing: 0;
  vertical-align: top;
}

.proof-stats dd {
  margin: 10px 0 0;
  color: #77756f;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.values-pane {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(46px, 8vw, 140px);
  align-items: start;
}

.pane-heading h3,
.team-statement h3,
.founder-title h3 {
  margin: 24px 0 0;
  font-size: clamp(2.6rem, 5.2vw, 5.9rem);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

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

.values-list article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 28px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line-light);
}

.values-list article > span {
  color: #9c9a93;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.values-list h4 {
  margin: 0 0 7px;
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.values-list p {
  max-width: 580px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
  line-height: 1.65;
}

.team-pane {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: stretch;
}

.team-statement {
  display: flex;
  min-height: 610px;
  padding: clamp(34px, 5.5vw, 78px);
  flex-direction: column;
  justify-content: space-between;
  background: var(--yellow);
}

.team-statement h3 {
  margin: auto 0 40px;
}

.team-statement > p:last-child {
  max-width: 560px;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.72;
}

.team-photo {
  min-height: 610px;
  margin: 0;
}

.roles-line {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  white-space: nowrap;
}

.roles-line span {
  display: inline-flex;
  align-items: center;
  color: #55534d;
  font-size: clamp(0.78rem, 1.25vw, 1.08rem);
  font-weight: 500;
}

.roles-line span::after {
  content: '×';
  margin-left: 10px;
  color: var(--yellow);
}

.founders-pane {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(42px, 8vw, 150px);
  padding: clamp(44px, 7vw, 104px);
  background: var(--ink);
  color: var(--white);
}

.founder-title h3 {
  max-width: 820px;
}

.founder-copy {
  align-self: end;
}

.founder-copy p {
  margin: 0 0 24px;
  color: var(--muted-light);
  font-size: 0.92rem;
  line-height: 1.75;
}

.founder-principle {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 50px 1fr 50px 1fr;
  gap: 18px;
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}

.founder-principle span {
  color: var(--yellow);
  font-size: 0.62rem;
}

.founder-principle strong {
  font-size: clamp(1.3rem, 2.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.services {
  padding: clamp(112px, 14vw, 200px) 0 90px;
  overflow: clip;
  background: var(--ink);
  color: var(--white);
}

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

.services-intro .eyebrow {
  color: var(--yellow);
}

.services-intro h2 {
  max-width: 1000px;
}

.services-intro > div > p {
  max-width: 690px;
  margin: 38px 0 0;
  color: var(--muted-light);
  font-size: clamp(0.94rem, 1.3vw, 1.14rem);
  line-height: 1.72;
}

.services-desktop {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  gap: clamp(54px, 7vw, 120px);
}

.service-visual-wrap {
  position: relative;
}

.service-visual {
  position: sticky;
  top: 92px;
  height: calc(100svh - 132px);
  min-height: 590px;
  overflow: hidden;
  background: var(--ink-3);
}

.service-visual > img:not(.service-watermark) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.07);
  clip-path: inset(8% 8% 8% 8%);
  transition:
    opacity 520ms ease,
    transform 900ms var(--ease),
    clip-path 900ms var(--ease);
}

.service-visual > img.active:not(.service-watermark) {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  clip-path: inset(0 0 0 0);
}

.service-visual::after {
  content: '';
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.72), transparent 48%);
  pointer-events: none;
}

.service-visual-grid {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.38) 1px, transparent 1px);
  background-size: 25% 25%;
  pointer-events: none;
}

.service-watermark {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  object-fit: contain;
  opacity: 0.14;
}

.service-caption {
  position: absolute;
  z-index: 4;
  left: 28px;
  bottom: 25px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-steps {
  padding-bottom: 12vh;
}

.service-step {
  min-height: 76svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line-dark);
  opacity: 0.38;
  transition: opacity 360ms ease;
}

.service-step:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.service-step.active {
  opacity: 1;
}

.service-no {
  color: var(--yellow);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-step h3 {
  margin: 24px 0 28px;
  font-size: clamp(3.2rem, 6vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.service-step.active h3 {
  color: var(--yellow);
}

.service-step > p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.7;
}

.service-step ul,
.mobile-service ul {
  max-width: 560px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.service-step li,
.mobile-service li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.45;
}

.services-mobile {
  display: none;
}

.promise {
  padding: clamp(110px, 14vw, 200px) 0 clamp(120px, 15vw, 220px);
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
}

.promise .eyebrow {
  color: var(--yellow);
}

.promise h2 {
  margin: -0.08em 0 0;
  font-size: clamp(3.2rem, 7.5vw, 8.2rem);
  font-weight: 500;
  letter-spacing: -0.064em;
  line-height: 0.92;
}

.promise h2 em {
  -webkit-text-stroke: 1px var(--yellow);
  color: transparent;
}

.promise > .page-shell > div > p {
  max-width: 700px;
  margin: 44px 0 0;
  color: var(--muted-light);
  font-size: 1rem;
  line-height: 1.75;
}

.chapters {
  background: var(--ink);
}

.chapter {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.chapter > img,
.chapter-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chapter > img {
  z-index: -2;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.chapter:hover > img {
  transform: scale(1.025);
}

.chapter-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.75), transparent 66%),
    linear-gradient(0deg, rgba(4, 4, 4, 0.78), transparent 60%);
}

.chapter-content {
  display: grid;
  grid-template-columns: 0.75fr 1fr 0.72fr;
  gap: 32px;
  align-items: end;
  padding-bottom: clamp(60px, 8vw, 118px);
}

.chapter-content > span {
  align-self: start;
  color: var(--yellow);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chapter h2 {
  margin: 0;
  font-size: clamp(3.8rem, 8vw, 8.8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.chapter-content > p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.7;
}

.projects {
  padding: clamp(112px, 15vw, 220px) 0 clamp(130px, 17vw, 250px);
  background: var(--paper);
}

.projects-intro > div > p {
  max-width: 620px;
  margin: 36px 0 0;
  color: var(--muted-dark);
  font-size: 0.98rem;
  line-height: 1.7;
}

.project-list {
  margin-top: clamp(74px, 10vw, 150px);
}

.project {
  margin: 0 0 clamp(86px, 12vw, 180px);
}

.project:last-child {
  margin-bottom: 0;
}

.project-secondary {
  width: 68%;
  margin-left: auto;
}

.project-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  background: #ddd;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.project-secondary .project-media {
  aspect-ratio: 4 / 3;
}

.project-media > img {
  transition: transform 900ms var(--ease);
}

.project-media:hover > img {
  transform: scale(1.035);
}

.project-action {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: flex;
  min-width: 188px;
  min-height: 64px;
  padding: 0 21px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 200ms ease;
}

.project-media:hover .project-action {
  background: var(--white);
}

.project-action b {
  font-size: 1rem;
  font-weight: 500;
}

.project-info {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 24px;
  align-items: start;
  margin-top: 14px;
  padding-top: 21px;
  border-top: 1px solid var(--line-light);
}

.project-info > span {
  color: #85837c;
  font-size: 0.64rem;
  font-weight: 700;
}

.project-info h3 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.project-info p {
  margin: 11px 0 0;
  color: var(--muted-dark);
  font-size: 0.72rem;
  line-height: 1.5;
}

.project-info button {
  display: flex;
  gap: 18px;
  padding: 6px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process {
  padding: clamp(105px, 13vw, 180px) 0;
  background: var(--ink);
  color: var(--white);
}

.process .eyebrow {
  color: var(--yellow);
}

.process h2 {
  max-width: 980px;
  margin: -0.08em 0 0;
  font-size: clamp(2.8rem, 5.7vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 0.96;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(70px, 8vw, 118px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.process-steps li {
  min-height: 250px;
  display: flex;
  padding: 24px;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
}

.process-steps li:last-child {
  border-right: 0;
}

.process-steps span {
  color: var(--yellow);
  font-size: 0.61rem;
  font-weight: 700;
}

.process-steps strong {
  margin: auto 0 10px;
  font-size: clamp(1.5rem, 2.6vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.process-steps small {
  color: var(--muted-light);
  font-size: 0.68rem;
}

.trust {
  padding: clamp(108px, 14vw, 200px) 0 clamp(118px, 15vw, 210px);
  background: var(--yellow);
  color: var(--ink);
}

.trust-intro h2 {
  margin: -0.08em 0 0;
  font-size: clamp(3rem, 6.7vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.062em;
  line-height: 0.93;
}

.partner-band {
  display: flex;
  gap: clamp(18px, 3vw, 48px);
  align-items: center;
  margin: clamp(66px, 8vw, 118px) 0;
  padding: 30px 0;
  overflow: hidden;
  border-top: 1px solid rgba(8, 8, 8, 0.33);
  border-bottom: 1px solid rgba(8, 8, 8, 0.33);
  white-space: nowrap;
}

.partner-band span {
  font-size: clamp(1.35rem, 2.7vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.partner-band i {
  color: rgba(8, 8, 8, 0.42);
  font-style: normal;
}

.trust-body {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(44px, 7vw, 120px);
  align-items: stretch;
}

.trust-tabs {
  border-top: 1px solid rgba(8, 8, 8, 0.35);
}

.trust-tabs button {
  display: flex;
  width: 100%;
  min-height: 72px;
  padding: 0 5px;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.35);
  color: rgba(8, 8, 8, 0.5);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: left;
  transition: color 220ms ease;
}

.trust-tabs button.active,
.trust-tabs button:hover {
  color: var(--ink);
}

.trust-tabs button span {
  font-size: 0.6rem;
}

.trust-quote {
  min-height: 470px;
  display: flex;
  padding: clamp(34px, 5.6vw, 78px);
  flex-direction: column;
  background: var(--ink);
  color: var(--white);
}

.trust-statement {
  max-width: 890px;
  margin: auto 0;
  font-size: clamp(1.5rem, 3.15vw, 3.65rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.22;
}

.trust-quote > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.trust-quote p {
  margin: 0;
}

.trust-quote strong,
.trust-quote p span {
  display: block;
}

.trust-quote strong {
  font-size: 0.78rem;
  font-weight: 600;
}

.trust-quote p span,
.trust-quote > div > span {
  margin-top: 6px;
  color: var(--muted-light);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(115px, 15vw, 215px) 0 clamp(100px, 12vw, 170px);
  isolation: isolate;
  background: var(--ink);
  color: var(--white);
}

.contact-skyline {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.8) 58%, rgba(8, 8, 8, 0.68) 100%),
    url('assets/sevenpointsbg.png') center / cover no-repeat;
}

.contact-skyline::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(252, 175, 65, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 175, 65, 0.55) 1px, transparent 1px);
  background-size: 10vw 10vw;
}

.contact .eyebrow {
  color: var(--yellow);
}

.contact-intro h2 {
  max-width: 1120px;
  margin: -0.1em 0 0;
  font-size: clamp(3rem, 6.6vw, 7.35rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.contact-intro > div > p {
  max-width: 640px;
  margin: 38px 0 0;
  color: var(--muted-light);
  font-size: 0.96rem;
  line-height: 1.72;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(48px, 8vw, 140px);
  margin-top: clamp(72px, 9vw, 132px);
  align-items: start;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 32px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 0 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  font-size: 0.93rem;
  outline: none;
  transition: border-color 180ms ease;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--yellow) 50%), linear-gradient(135deg, var(--yellow) 50%, transparent 50%);
  background-position: calc(100% - 7px) calc(50% - 2px), 100% calc(50% - 2px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.field select option {
  background: var(--ink);
  color: white;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.37);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--yellow);
}

.field input[aria-invalid='true'],
.field select[aria-invalid='true'],
.field textarea[aria-invalid='true'] {
  border-color: #ff8074;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
}

.form-submit p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  line-height: 1.55;
}

.form-submit button {
  display: flex;
  min-width: 270px;
  min-height: 68px;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--yellow);
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease;
}

.form-submit button:hover {
  background: var(--white);
}

.contact-details {
  padding-top: 4px;
  border-top: 1px solid var(--line-dark);
}

.contact-details .eyebrow {
  margin: 24px 0 38px;
}

.contact-details a {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--yellow);
}

.contact-details > p:last-child {
  margin: 42px 0 0;
  color: var(--muted-light);
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer {
  padding: 80px 0 30px;
  background: #050505;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  padding-bottom: 62px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(1.5rem, 2.8vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.footer-brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.footer-top > p {
  max-width: 580px;
  margin: 0;
  color: var(--muted-light);
  font-size: 0.86rem;
  line-height: 1.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
  padding: 62px 0;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-label {
  margin: 0 0 24px !important;
  color: var(--yellow) !important;
  font-size: 0.59rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.75rem;
  line-height: 1.55;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  line-height: 1.5;
  text-transform: uppercase;
}

.back-to-top {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  visibility: hidden;
  background: var(--yellow);
  border: 0;
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition:
    visibility 0s linear 240ms,
    opacity 220ms ease,
    transform 220ms ease;
}

.back-to-top.show {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.project-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  overflow-y: auto;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 360ms ease,
    transform 420ms var(--ease);
}

.project-modal[hidden] {
  display: none;
}

.project-modal.open {
  opacity: 1;
  transform: none;
}

.modal-bar {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  min-height: 76px;
  padding: 0 var(--page);
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 8, 0.9);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(12px);
}

.modal-bar > span,
.modal-bar button {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-bar button {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 12px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.modal-bar button b {
  color: var(--yellow);
  font-size: 1.35rem;
  font-weight: 400;
}

.modal-content {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 140px) var(--page) 110px;
}

.modal-header {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 60px;
  align-items: end;
}

.modal-header .eyebrow {
  color: var(--yellow);
}

.modal-header h2 {
  max-width: 1000px;
  margin: 24px 0 0;
  font-size: clamp(3.4rem, 7.8vw, 8.7rem);
  font-weight: 500;
  letter-spacing: -0.064em;
  line-height: 0.9;
}

.modal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.modal-meta div {
  padding: 18px 10px 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.modal-meta div:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
}

.modal-meta dt {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.55rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.modal-meta dd {
  margin: 8px 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
}

.modal-description {
  max-width: 760px;
  margin: 58px 0 84px auto;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(0.95rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.modal-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.6vw, 42px);
}

.modal-gallery figure {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--ink-3);
}

.modal-gallery figure:nth-child(3n + 1) {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8;
}

.modal-gallery img,
.modal-gallery video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-gallery figure::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  background: url('assets/logo.png') center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.modal-gallery .video-frame::after {
  display: none;
}

@keyframes hero-settle {
  from { scale: 1.12; opacity: 0.62; }
  to { scale: 1.06; opacity: 1; }
}

@keyframes pane-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .hero-project {
    display: none;
  }

  #pane-who {
    grid-template-columns: 1fr 0.9fr;
    gap: 54px;
  }

  .about-photo {
    min-height: 560px;
  }

  .services-desktop {
    grid-template-columns: 1fr 0.88fr;
    gap: 60px;
  }

  .project-secondary {
    width: 78%;
  }

  .chapter-content {
    grid-template-columns: 0.55fr 1.15fr 0.7fr;
  }

  .trust-body {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 54px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 76px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header-h);
    padding-block: 14px;
  }

  .desktop-nav,
  .header-inquiry {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero-project {
    display: none;
  }

  #pane-who,
  .values-pane,
  .team-pane,
  .founders-pane {
    grid-template-columns: 1fr;
  }

  .about-stage {
    min-height: 0;
  }

  .about-photo {
    min-height: 63vw;
  }

  .proof-copy {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
  }

  .proof-copy > div:first-child {
    margin: 0;
  }

  .team-statement,
  .team-photo {
    min-height: 540px;
  }

  .services-desktop {
    display: none;
  }

  .services-mobile {
    display: block;
  }

  .mobile-service-track {
    position: relative;
  }

  .mobile-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
    border: 1px solid var(--line-dark);
    animation: pane-enter 460ms var(--ease) both;
  }

  .js .mobile-service:not(.active) {
    display: none;
  }

  .mobile-service > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-service > div {
    display: flex;
    padding: 42px;
    flex-direction: column;
  }

  .mobile-service > div > span {
    color: var(--yellow);
    font-size: 0.62rem;
    font-weight: 700;
  }

  .mobile-service h3 {
    margin: auto 0 24px;
    color: var(--yellow);
    font-size: clamp(2.8rem, 7vw, 4.6rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.95;
  }

  .mobile-service p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .mobile-service-controls {
    display: grid;
    grid-template-columns: 58px 1fr 58px;
    align-items: center;
    margin-top: 16px;
  }

  .mobile-service-controls button {
    width: 58px;
    height: 58px;
    background: transparent;
    border: 1px solid var(--line-dark);
    color: white;
    cursor: pointer;
  }

  .mobile-service-controls span {
    justify-self: center;
    color: var(--muted-light);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .chapter-content {
    grid-template-columns: 1fr 1.4fr;
  }

  .chapter-content > p {
    grid-column: 2;
  }

  .project-secondary {
    width: 86%;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps li:nth-child(2) {
    border-right: 0;
  }

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

  .trust-body,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .trust-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: 1px solid rgba(8, 8, 8, 0.35);
  }

  .trust-tabs button {
    padding: 0 18px;
    border-right: 1px solid rgba(8, 8, 8, 0.35);
  }

  .trust-quote {
    min-height: 420px;
  }

  .contact-details {
    margin-top: 14px;
  }

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

@media (max-width: 680px) {
  :root {
    --page: 20px;
    --header-h: 72px;
  }

  .page-shell {
    padding-inline: var(--page);
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .eyebrow {
    font-size: 0.59rem;
  }

  .site-header,
  .site-header.scrolled {
    min-height: var(--header-h);
  }

  .brand {
    gap: 8px;
    font-size: 0.62rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu-inner {
    padding-top: 108px;
  }

  .mobile-menu nav a {
    grid-template-columns: 34px 1fr;
    padding: 14px 0;
    font-size: clamp(2rem, 10.7vw, 3rem);
  }

  .mobile-menu-contact {
    grid-template-columns: 1fr;
    font-size: 0.7rem;
  }

  .mobile-menu-contact p {
    grid-column: auto;
  }

  .hero {
    min-height: max(690px, 100svh);
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(4, 4, 4, 0.92) 0%, rgba(4, 4, 4, 0.35) 74%, rgba(4, 4, 4, 0.7) 100%),
      linear-gradient(90deg, rgba(4, 4, 4, 0.34), transparent);
  }

  .hero-grid {
    background-size: 33.333vw 33.333vw;
    mask-image: linear-gradient(0deg, black, transparent 70%);
  }

  .hero-content {
    padding-bottom: 98px;
  }

  .hero-eyebrow {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13.8vw, 4.2rem);
    line-height: 0.94;
  }

  .hero-summary {
    margin-top: 25px;
    font-size: 0.82rem;
    line-height: 1.58;
  }

  .hero-transition {
    --bridge-scale: 1 !important;
    --bridge-opacity: 1 !important;
    width: 88px;
    height: 88px;
  }

  .discover {
    width: 88px;
    height: 88px;
    gap: 7px;
    font-size: 0.49rem;
  }

  .about {
    padding: 128px 0 94px;
  }

  .about-intro h2,
  .services-intro h2,
  .projects-intro h2 {
    font-size: clamp(3.05rem, 14vw, 4.5rem);
    line-height: 0.94;
  }

  .about-intro .lede {
    margin-top: 28px;
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .about-tabs {
    position: sticky;
    z-index: 8;
    top: var(--header-h);
    display: flex;
    margin: 62px -20px 38px;
    overflow-x: auto;
    background: var(--paper);
    scrollbar-width: none;
  }

  .about-tabs::-webkit-scrollbar {
    display: none;
  }

  .about-tabs button {
    min-width: 124px;
    min-height: 58px;
    padding: 8px 10px;
    flex: 0 0 auto;
    font-size: 0.61rem;
  }

  .about-tabs button:first-child {
    margin-left: 20px;
  }

  .about-tabs button:last-child {
    margin-right: 20px;
    border-right: 1px solid var(--line-light);
  }

  #pane-who,
  .values-pane,
  .team-pane,
  .founders-pane {
    gap: 34px;
  }

  .about-photo {
    min-height: 116vw;
  }

  .proof-copy {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .proof-copy > div:first-child {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .proof-stats {
    grid-template-columns: 1fr;
  }

  .proof-stats div,
  .proof-stats div:nth-child(even) {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: end;
    padding: 20px 0;
    border-right: 0;
  }

  .proof-stats dt {
    font-size: clamp(3.8rem, 18vw, 5rem);
  }

  .proof-stats dd {
    max-width: 128px;
    margin: 0 0 6px;
    text-align: right;
  }

  .pane-heading h3,
  .team-statement h3,
  .founder-title h3 {
    font-size: clamp(2.75rem, 12.5vw, 4rem);
  }

  .values-list article {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .values-list h4 {
    font-size: 1.45rem;
  }

  .values-list p {
    font-size: 0.82rem;
  }

  .team-statement {
    min-height: 500px;
    padding: 30px 24px;
  }

  .team-statement > p:last-child {
    font-size: 0.84rem;
  }

  .team-photo {
    min-height: 115vw;
  }

  .roles-line {
    grid-column: auto;
    overflow-x: auto;
  }

  .founders-pane {
    padding: 34px 24px;
  }

  .founder-copy p {
    font-size: 0.82rem;
  }

  .founder-principle {
    grid-template-columns: 32px 1fr;
    margin-top: 20px;
  }

  .founder-principle strong {
    font-size: 1.35rem;
  }

  .services {
    padding: 92px 0 74px;
  }

  .services-intro {
    margin-bottom: 50px;
  }

  .services-intro > div > p {
    margin-top: 27px;
    font-size: 0.86rem;
  }

  .mobile-service {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mobile-service > img {
    aspect-ratio: 4 / 3;
  }

  .mobile-service > div {
    min-height: 430px;
    padding: 26px 22px;
  }

  .mobile-service h3 {
    margin-top: 72px;
    font-size: clamp(2.9rem, 13vw, 4.2rem);
  }

  .mobile-service p {
    font-size: 0.82rem;
  }

  .promise {
    padding: 94px 0 104px;
  }

  .promise h2 {
    font-size: clamp(3.05rem, 14vw, 4.55rem);
    line-height: 0.94;
  }

  .promise > .page-shell > div > p {
    margin-top: 30px;
    font-size: 0.86rem;
  }

  .chapter {
    min-height: 82svh;
  }

  .chapter-content {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 48px;
  }

  .chapter-content > p {
    grid-column: auto;
    font-size: 0.82rem;
  }

  .chapter h2 {
    font-size: clamp(3.8rem, 17.2vw, 5.7rem);
  }

  .projects {
    padding: 94px 0 112px;
  }

  .projects-intro > div > p {
    margin-top: 26px;
    font-size: 0.86rem;
  }

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

  .project,
  .project-secondary {
    width: 100%;
    margin-bottom: 76px;
  }

  .project-media,
  .project-secondary .project-media {
    aspect-ratio: 1 / 1;
  }

  .project-action {
    min-width: 162px;
    min-height: 56px;
    padding: 0 16px;
    gap: 16px;
    font-size: 0.58rem;
  }

  .project-info {
    grid-template-columns: 34px 1fr;
    gap: 15px;
    padding-top: 17px;
  }

  .project-info h3 {
    font-size: 2rem;
  }

  .project-info button {
    grid-column: 2;
    justify-self: start;
    margin-top: 9px;
  }

  .process {
    padding: 92px 0;
  }

  .process h2 {
    font-size: clamp(2.7rem, 12.4vw, 4rem);
  }

  .process-steps {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .process-steps li,
  .process-steps li:nth-child(2) {
    min-height: 148px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-steps li:last-child {
    border-bottom: 0;
  }

  .process-steps strong {
    font-size: 1.85rem;
  }

  .trust {
    padding: 92px 0 104px;
  }

  .trust-intro h2 {
    font-size: clamp(3rem, 13.5vw, 4.4rem);
  }

  .partner-band {
    margin: 56px 0;
    padding: 22px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .partner-band::-webkit-scrollbar {
    display: none;
  }

  .partner-band span {
    font-size: 1.32rem;
  }

  .trust-body {
    gap: 32px;
  }

  .trust-tabs {
    grid-template-columns: 1fr;
  }

  .trust-tabs button {
    min-height: 58px;
  }

  .trust-quote {
    min-height: 470px;
    padding: 30px 24px;
  }

  .trust-statement {
    font-size: clamp(1.45rem, 7.4vw, 2.25rem);
    line-height: 1.24;
  }

  .contact {
    padding: 94px 0 92px;
  }

  .contact-intro h2 {
    font-size: clamp(3rem, 13.7vw, 4.5rem);
    line-height: 0.95;
  }

  .contact-intro > div > p {
    margin-top: 28px;
    font-size: 0.84rem;
  }

  .contact-layout {
    margin-top: 62px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .field-wide {
    grid-column: auto;
  }

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

  .form-submit button {
    width: 100%;
    min-width: 0;
  }

  .contact-details {
    margin-top: 30px;
  }

  .footer {
    padding-top: 62px;
  }

  .footer-top {
    padding-bottom: 46px;
  }

  .footer-brand img {
    width: 66px;
    height: 66px;
  }

  .footer-top > p {
    font-size: 0.78rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 22px;
    padding: 46px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .back-to-top {
    display: none;
  }

  .modal-bar {
    min-height: 68px;
  }

  .modal-content {
    padding-top: 68px;
    padding-bottom: 70px;
  }

  .modal-header {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .modal-header h2 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .modal-description {
    margin: 46px 0 60px;
    font-size: 0.88rem;
  }

  .modal-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .modal-gallery figure,
  .modal-gallery figure:nth-child(3n + 1) {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
}

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

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

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

  .hero-media img {
    transform: none !important;
  }

  .hero-transition {
    --bridge-scale: 1 !important;
    --bridge-opacity: 1 !important;
  }
}

/* =========================================================
   SCROLL-DIRECTED STORIES
   The About chapters and service cube are driven by scroll.
========================================================= */

.about {
  padding: 0;
  overflow: clip;
}

.about-scroll {
  position: relative;
}

.js .about-scroll {
  height: 460svh;
}

.about-sticky {
  position: sticky;
  z-index: 1;
  top: var(--header-h);
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) 1px minmax(0, 1.14fr);
  height: calc(100svh - var(--header-h));
  min-height: 680px;
  isolation: isolate;
  background: var(--paper);
}

.about-anchor {
  display: flex;
  min-width: 0;
  padding: clamp(34px, 4.8vh, 58px) clamp(38px, 4.5vw, 74px) clamp(34px, 4.8vh, 58px) 0;
  flex-direction: column;
}

.about-intro h2 {
  margin: 26px 0 0;
  font-size: clamp(2.9rem, 4.25vw, 5.15rem);
  line-height: 0.94;
}

.about-intro .lede {
  max-width: 600px;
  margin-top: clamp(22px, 3.1vh, 34px);
  font-size: clamp(0.84rem, 1vw, 1rem);
  line-height: 1.65;
}

.about-anchor .about-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(22px, 3.2vh, 36px) 0 clamp(20px, 2.8vh, 30px);
}

.about-anchor .about-tabs button {
  min-width: 0;
  min-height: 50px;
  padding: 9px 7px;
  font-size: clamp(0.51rem, 0.62vw, 0.66rem);
  line-height: 1.25;
}

.about-anchor-media {
  position: relative;
  min-height: 180px;
  height: clamp(180px, 24vh, 268px);
  max-height: 268px;
  margin: auto 0 0;
  overflow: hidden;
  background: #c8c7c1;
}

.about-anchor-media::after {
  content: '';
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.7), transparent 50%);
  pointer-events: none;
}

.about-anchor-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  clip-path: inset(6% 0 6% 0);
  will-change: opacity, transform, clip-path;
}

.about-anchor-media > img.active {
  opacity: 1;
  transform: scale(1);
  clip-path: inset(0);
}

.about-anchor-media figcaption {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 15px;
  left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-rail {
  position: relative;
  height: 100%;
  background: color-mix(in srgb, var(--yellow) 55%, transparent);
}

.about-rail::before,
.about-rail::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(16, 16, 16, 0.42);
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--paper);
}

.about-rail::before { top: 3%; }
.about-rail::after { bottom: 3%; }

.about-rail > span {
  position: absolute;
  z-index: 2;
  top: var(--about-dot-y, 10%);
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--yellow);
  box-shadow:
    0 0 0 7px rgba(252, 175, 65, 0.13),
    0 0 26px 8px rgba(252, 175, 65, 0.5);
  will-change: top;
}

.js .about-stage {
  position: relative;
  height: 100%;
  min-height: 0;
  padding-left: clamp(38px, 5vw, 82px);
  overflow: hidden;
}

.js .about-stage .about-pane,
.js .about-stage #pane-who,
.js .about-stage .values-pane,
.js .about-stage .team-pane,
.js .about-stage .founders-pane,
.js .about-stage .about-pane:not(.active) {
  position: absolute;
  inset: 0;
  display: flex !important;
  align-items: center;
  padding: clamp(34px, 4.2vh, 54px) 0 clamp(34px, 4.2vh, 54px) clamp(38px, 5vw, 82px);
  animation: none;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.js .about-stage .about-pane.active {
  pointer-events: auto;
}

.pane-inner {
  width: 100%;
}

.about-pane-no {
  display: block;
  margin-bottom: clamp(22px, 3vh, 34px);
  color: #8f8c84;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.about-stage .pane-heading h3,
.about-stage .team-statement h3,
.about-stage .founder-title h3 {
  font-size: clamp(2.35rem, 3.65vw, 4.55rem);
}

.who-inner {
  display: grid;
  gap: clamp(42px, 7vh, 78px);
}

.who-inner .pane-heading h3 {
  max-width: 850px;
}

.who-inner .proof-copy {
  display: grid;
  grid-template-columns: minmax(160px, 0.62fr) minmax(360px, 1.38fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.who-inner .proof-copy > .pane-kicker {
  grid-column: 1;
  margin: 0 0 8px;
}

.who-inner .proof-copy > .pane-kicker + p {
  grid-column: 1;
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.82rem;
  line-height: 1.68;
}

.who-inner .proof-stats {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.who-inner .proof-stats div {
  padding-block: clamp(17px, 2vh, 24px);
}

.who-inner .proof-stats dt {
  font-size: clamp(2.25rem, 3.6vw, 4.3rem);
}

.values-pane .pane-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(330px, 1.18fr);
  gap: clamp(34px, 4.8vw, 76px);
  align-items: start;
}

.about-stage .values-list article {
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: clamp(15px, 1.9vh, 22px) 0;
}

.about-stage .values-list h4 {
  font-size: clamp(1.2rem, 1.65vw, 1.72rem);
}

.about-stage .values-list p {
  font-size: 0.75rem;
}

.team-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 3vw, 46px);
}

.about-stage .team-statement,
.about-stage .team-photo {
  min-height: clamp(390px, 52vh, 520px);
}

.about-stage .team-statement {
  padding: clamp(26px, 3.3vw, 48px);
}

.about-stage .team-statement h3 {
  margin-bottom: 28px;
  font-size: clamp(2.1rem, 3.1vw, 3.65rem);
}

.about-stage .team-statement > p:last-child {
  font-size: 0.76rem;
  line-height: 1.65;
}

.team-inner .roles-line {
  padding: 16px 0;
}

.founders-pane {
  padding: 0;
  background: var(--ink);
}

.founder-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(220px, 0.88fr);
  gap: clamp(30px, 4vw, 60px);
  padding: clamp(34px, 4.3vw, 68px);
  color: var(--white);
}

.founder-inner .about-pane-no {
  color: var(--yellow);
}

.about-stage .founder-title h3 {
  font-size: clamp(2.2rem, 3.25vw, 3.9rem);
}

.about-stage .founder-copy p {
  font-size: 0.78rem;
  line-height: 1.68;
}

.about-stage .founder-principle {
  margin-top: 30px;
}

.about-stage .founder-principle strong {
  font-size: clamp(1.05rem, 1.6vw, 1.6rem);
}

/* Scroll-scrubbed image cube */

.service-visual {
  border: 1px solid rgba(252, 175, 65, 0.32);
  perspective: 1700px;
  isolation: isolate;
  background:
    radial-gradient(circle at var(--service-glow-x, 50%) 45%, rgba(252, 175, 65, 0.16), transparent 30%),
    linear-gradient(145deg, #151515, #090909 72%);
}

.service-visual::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 10%;
  right: 8%;
  width: 38%;
  aspect-ratio: 1;
  border: 1px solid rgba(252, 175, 65, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(252, 175, 65, 0.08);
}

.service-visual::after {
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.38), transparent 18%, transparent 82%, rgba(7, 7, 7, 0.32)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.72), transparent 34%);
}

.service-orbit-copy {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: max-content;
  margin: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(2.8rem, 6vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.service-cube-scene {
  --cube-size: clamp(280px, 31vw, 500px);
  --cube-half: calc(var(--cube-size) / 2);
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: var(--cube-size);
  height: var(--cube-size);
  transform: translate(-50%, -50%);
  perspective: 1500px;
}

.service-cube {
  position: relative;
  width: 100%;
  height: 100%;
  transform:
    translate3d(var(--cube-shift-x, 0px), var(--cube-shift-y, 0px), 0)
    rotateX(var(--cube-x, -10deg))
    rotateY(var(--cube-y, -14deg));
  transform-style: preserve-3d;
  will-change: transform;
}

.service-face {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.54);
  backface-visibility: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.16);
  background: #181818;
}

.service-face-front { transform: translateZ(var(--cube-half)); }
.service-face-right { transform: rotateY(90deg) translateZ(var(--cube-half)); }
.service-face-back { transform: rotateY(180deg) translateZ(var(--cube-half)); }
.service-face-left { transform: rotateY(-90deg) translateZ(var(--cube-half)); }
.service-face-top { transform: rotateX(90deg) translateZ(var(--cube-half)); }
.service-face-bottom { transform: rotateX(-90deg) translateZ(var(--cube-half)); }

.service-face > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.service-face > figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-face > figcaption::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -50px -30px -24px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
}

.service-face-top,
.service-face-bottom {
  display: grid;
  place-items: center;
}

.service-face-top {
  color: var(--ink);
  background:
    linear-gradient(rgba(8, 8, 8, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.1) 1px, transparent 1px),
    var(--yellow);
  background-size: 25% 25%;
}

.service-face-bottom {
  color: rgba(255, 255, 255, 0.68);
  background: #111;
}

.service-face-top span,
.service-face-bottom span {
  font-size: clamp(1.2rem, 2.6vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-align: center;
}

.service-face-top span {
  transform: rotate(180deg);
}

.service-visual-grid {
  z-index: 1;
  opacity: 0.08;
}

.service-watermark {
  z-index: 6;
  top: auto;
  right: 23px;
  bottom: 21px;
  left: auto;
  width: 54px;
  height: 54px;
  transform: none;
  opacity: 0.1;
}

.service-caption {
  z-index: 6;
}

.js .service-step {
  min-height: 92svh;
  opacity: 0;
  will-change: opacity, transform;
}

.service-step h3,
.service-step > p,
.service-step ul {
  transform: translate3d(18px, 0, 0);
  transition:
    color 320ms ease,
    opacity 420ms ease,
    transform 700ms var(--ease);
}

.service-step.active h3,
.service-step.active > p,
.service-step.active ul {
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1180px) and (min-width: 901px) {
  .about-sticky {
    grid-template-columns: minmax(320px, 0.9fr) 1px minmax(0, 1.1fr);
  }

  .about-anchor {
    padding-right: 38px;
  }

  .js .about-stage {
    padding-left: 38px;
  }

  .js .about-stage .about-pane,
  .js .about-stage #pane-who,
  .js .about-stage .values-pane,
  .js .about-stage .team-pane,
  .js .about-stage .founders-pane,
  .js .about-stage .about-pane:not(.active) {
    padding-left: 38px;
  }

  .values-pane .pane-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-stage .values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .about-stage .values-list article:nth-child(odd) {
    padding-right: 18px;
    border-right: 1px solid var(--line-light);
  }

  .about-stage .values-list article:nth-child(even) {
    padding-left: 18px;
  }

  .who-inner .proof-copy {
    grid-template-columns: 1fr;
  }

  .who-inner .proof-stats {
    grid-column: 1;
    grid-row: auto;
  }

  .service-cube-scene {
    --cube-size: clamp(270px, 30vw, 360px);
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .about-sticky {
    min-height: 0;
  }

  .about-anchor {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .about-intro h2 {
    margin-top: 15px;
    font-size: clamp(2.5rem, 3.65vw, 4.25rem);
  }

  .about-intro .lede {
    margin-top: 16px;
    font-size: 0.76rem;
  }

  .about-anchor .about-tabs {
    margin-block: 14px;
  }

  .about-anchor .about-tabs button {
    min-height: 42px;
  }

  .about-anchor-media {
    min-height: 116px;
    height: 19vh;
  }

  .js .about-stage .about-pane,
  .js .about-stage #pane-who,
  .js .about-stage .values-pane,
  .js .about-stage .team-pane,
  .js .about-stage .founders-pane,
  .js .about-stage .about-pane:not(.active) {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .about-stage .pane-heading h3,
  .about-stage .founder-title h3 {
    font-size: clamp(2rem, 3.1vw, 3.45rem);
  }

  .who-inner {
    gap: 24px;
  }

  .about-stage .values-list article {
    padding-block: 11px;
  }

  .about-stage .team-statement,
  .about-stage .team-photo {
    min-height: 340px;
  }

  .about-stage .team-statement h3 {
    font-size: clamp(1.8rem, 2.65vw, 2.9rem);
  }

  .service-visual {
    top: 82px;
    height: calc(100svh - 102px);
    min-height: 0;
  }

  .service-cube-scene {
    --cube-size: clamp(230px, 27vw, 350px);
  }

  .service-step {
    min-height: 92svh;
  }
}

@media (max-width: 900px) {
  .about {
    padding: 112px 0 96px;
    overflow: visible;
  }

  .js .about-scroll {
    height: auto;
  }

  .about-sticky {
    position: relative;
    top: auto;
    display: block;
    height: auto;
    min-height: 0;
  }

  .about-anchor {
    display: contents;
  }

  .about-intro h2 {
    margin-top: 24px;
    font-size: clamp(3.1rem, 10.5vw, 5.3rem);
  }

  .about-intro .lede {
    max-width: 660px;
    margin-top: 28px;
    font-size: 0.9rem;
  }

  .about-anchor .about-tabs {
    position: sticky;
    z-index: 9;
    top: var(--header-h);
    display: flex;
    margin: 54px calc(var(--page) * -1) 30px;
    overflow-x: auto;
    border-color: var(--line-light);
    background: color-mix(in srgb, var(--paper) 96%, transparent);
    backdrop-filter: blur(12px);
    scrollbar-width: none;
  }

  .about-anchor .about-tabs::-webkit-scrollbar {
    display: none;
  }

  .about-anchor .about-tabs button {
    min-width: 138px;
    min-height: 58px;
    flex: 0 0 auto;
    font-size: 0.61rem;
  }

  .about-anchor .about-tabs button:first-child {
    margin-left: var(--page);
  }

  .about-anchor .about-tabs button:last-child {
    margin-right: var(--page);
    border-right: 1px solid var(--line-light);
  }

  .about-anchor-media {
    min-height: 340px;
    height: min(68vw, 520px);
    max-height: 520px;
    margin: 0;
  }

  .about-rail {
    display: none;
  }

  .js .about-stage {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .js .about-stage .about-pane,
  .js .about-stage #pane-who,
  .js .about-stage .values-pane,
  .js .about-stage .team-pane,
  .js .about-stage .founders-pane,
  .js .about-stage .about-pane:not(.active) {
    position: relative;
    inset: auto;
    display: block !important;
    padding: 78px 0;
    border-top: 1px solid var(--line-light);
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    scroll-margin-top: calc(var(--header-h) + 58px);
  }

  .js .about-stage .about-pane.active {
    border-top-color: var(--yellow);
  }

  .values-pane .pane-inner,
  .team-inner,
  .founder-inner,
  .who-inner .proof-copy {
    grid-template-columns: 1fr;
  }

  .who-inner {
    gap: 46px;
  }

  .who-inner .proof-stats {
    grid-column: 1;
    grid-row: auto;
  }

  .about-stage .team-statement,
  .about-stage .team-photo {
    min-height: 520px;
  }

  .founder-inner {
    gap: 38px;
    padding: clamp(32px, 7vw, 58px);
  }
}

@media (max-width: 680px) {
  .about {
    padding-top: 104px;
  }

  .about-intro h2 {
    font-size: clamp(3.05rem, 14vw, 4.5rem);
  }

  .about-anchor .about-tabs {
    margin-top: 48px;
  }

  .about-anchor-media {
    min-height: 0;
    height: 112vw;
    max-height: 540px;
  }

  .js .about-stage .about-pane,
  .js .about-stage #pane-who,
  .js .about-stage .values-pane,
  .js .about-stage .team-pane,
  .js .about-stage .founders-pane,
  .js .about-stage .about-pane:not(.active) {
    padding: 68px 0;
  }

  .about-stage .pane-heading h3,
  .about-stage .team-statement h3,
  .about-stage .founder-title h3 {
    font-size: clamp(2.75rem, 12.5vw, 4rem);
  }

  .who-inner .proof-stats {
    grid-template-columns: 1fr;
  }

  .who-inner .proof-stats dt {
    font-size: clamp(3.25rem, 16vw, 4.5rem);
  }

  .about-stage .team-statement,
  .about-stage .team-photo {
    min-height: 500px;
  }

  .team-inner {
    gap: 20px;
  }

  .founder-inner {
    padding: 32px 24px;
  }

  .about-stage .founder-principle {
    grid-template-columns: 34px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-anchor-media > img,
  .service-cube {
    will-change: auto;
  }
}
