:root {
  --black: #0a0a0a;
  --paper: #f3f1ec;
  --signal: #ff4b2b;
  --muted: #aaa8a2;
  --line-dark: rgba(243, 241, 236, 0.18);
  --line-light: rgba(10, 10, 10, 0.18);
  --shell: min(92vw, 1500px);
  --pad: clamp(6rem, 10vw, 11rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  background: var(--black);
}

html.is-programmatic-scroll {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.detail-open {
  overflow: hidden;
}

main > section {
  min-height: 100svh;
  scroll-snap-align: start;
}

.section-motion-layer {
  opacity: var(--section-opacity, 1);
  filter: blur(var(--section-blur, 0));
  transform: translate3d(0, var(--section-shift, 0), 0);
  transition:
    opacity 180ms linear,
    filter 300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}

::selection {
  color: var(--black);
  background: var(--signal);
}

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 1rem 4vw;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, min-height 300ms ease;
}

.site-header.scrolled {
  min-height: 70px;
  background: rgba(10, 10, 10, 0.86);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.brand img {
  width: 112px;
  height: auto;
}

.brand span {
  padding-left: 1.1rem;
  border-left: 1px solid var(--line-dark);
  color: rgba(243, 241, 236, 0.68);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav > a {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1rem;
  color: var(--black);
  background: var(--signal);
}

.nav-cta span {
  font-size: 1rem;
  transition: transform 250ms ease;
}

.nav-cta:hover span {
  transform: translate(0.16rem, -0.16rem);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media {
  z-index: -2;
  background: var(--black);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  transform: scale(1.035);
  animation: hero-in 1.8s var(--ease) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.58) 43%, rgba(10, 10, 10, 0.08) 75%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.62), transparent 45%);
}

.hero-grain {
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  top: 13%;
  right: 7%;
  width: min(33vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(243, 241, 236, 0.18);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

.hero-orbit::before {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  content: "";
}

.hero-content {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding-top: 9rem;
  padding-bottom: 8rem;
}

.eyebrow,
.section-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
  color: rgba(243, 241, 236, 0.76);
}

.eyebrow i {
  width: 5px;
  height: 5px;
  background: var(--signal);
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4.3rem, 9.1vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.signal {
  color: var(--signal);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 420px) auto;
  align-items: start;
  gap: clamp(2rem, 8vw, 8rem);
  margin-top: clamp(1.6rem, 2.7vh, 2.5rem);
}

.hero-bottom > p {
  margin: 0;
  color: rgba(243, 241, 236, 0.82);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
}

.round-link {
  display: flex;
  width: 104px;
  height: 104px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243, 241, 236, 0.48);
  border-radius: 50%;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 400ms var(--ease), background 400ms var(--ease), transform 400ms var(--ease);
}

.round-link:hover {
  color: var(--black);
  background: var(--paper);
  transform: rotate(-6deg);
}

.hero-index {
  position: absolute;
  right: 4vw;
  bottom: 2rem;
  left: 4vw;
  display: flex;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-dark);
  color: rgba(243, 241, 236, 0.5);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.light-section {
  color: var(--black);
  background: var(--paper);
}

.dark-section {
  color: var(--paper);
  background: var(--black);
}

.about-featured {
  position: relative;
  display: flex;
  align-items: stretch;
  padding-block: clamp(6.8rem, 10vh, 8.5rem) clamp(2.5rem, 5vh, 4.5rem);
  overflow: hidden;
}

.about-featured::after {
  position: absolute;
  right: -0.18em;
  bottom: -0.42em;
  color: rgba(255, 75, 43, 0.035);
  content: "01";
  font-size: clamp(18rem, 38vw, 40rem);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 1;
  pointer-events: none;
}

.about-featured-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  column-gap: clamp(0.75rem, 1.6vw, 1.75rem);
  width: var(--shell);
}

.about-featured-topline {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: inherit;
  align-items: start;
  padding-bottom: clamp(1.5rem, 3vh, 2.5rem);
  border-bottom: 1px solid var(--line-light);
}

.about-featured-topline .section-label {
  grid-column: 1 / 4;
}

.about-featured-statement {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: inherit;
  align-items: end;
  padding-block: clamp(2.2rem, 4.5vh, 4rem);
}

.about-featured-title {
  grid-column: 1 / -1;
  margin: 0;
  font-size: clamp(5.5rem, 10.8vw, 12.5rem);
  font-weight: 500;
  letter-spacing: -0.085em;
  line-height: 0.77;
}

.about-featured-title em {
  display: block;
  margin-left: clamp(2rem, 10vw, 10rem);
  color: var(--signal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.about-featured-foundation {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: inherit;
  align-items: start;
  padding-block: clamp(1.5rem, 3vh, 2.75rem);
  border-top: 1px solid var(--line-light);
}

.about-featured-subheads {
  grid-column: 1 / 7;
}

.about-featured-subheads p {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.about-featured-subheads p:last-child {
  color: var(--signal);
}

.about-featured-copy {
  grid-column: 8 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.about-featured-copy p {
  margin: 0;
  color: rgba(10, 10, 10, 0.62);
  font-size: clamp(0.88rem, 1vw, 1.02rem);
  line-height: 1.55;
}

.about-featured-engagements {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
}

.team-section {
  height: 100svh;
  min-height: 760px;
  padding: clamp(6.5rem, 10vh, 8rem) 0 clamp(1.5rem, 3vh, 2.5rem);
  overflow: hidden;
}

.team-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(2rem, 4vh, 3.25rem);
  height: 100%;
}

.team-header {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1.75rem);
  align-items: end;
}

.team-header > div {
  grid-column: 1 / 4;
  align-self: start;
}

.team-intro {
  max-width: 30ch;
  margin: 1.5rem 0 0;
  color: rgba(10, 10, 10, 0.58);
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  line-height: 1.5;
}

.team-header h2 {
  grid-column: 5 / -1;
  margin: 0;
  font-size: clamp(4.5rem, 7.5vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.team-header h2 em {
  color: var(--signal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.65fr);
  gap: clamp(0.8rem, 1.4vw, 1.4rem);
  min-height: 0;
}

.founder-profile,
.specialist-panel {
  min-height: 0;
  color: var(--paper);
  background: var(--black);
}

.founder-profile {
  position: relative;
  overflow: hidden;
}

.founder-media {
  position: absolute;
  inset: 0;
}

.founder-media::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.92));
  content: "";
}

.founder-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.04);
  transition: transform 1400ms var(--ease);
}

.founder-profile:hover .founder-media img {
  transform: scale(1.025);
}

.founder-meta {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 1;
}

.founder-meta p,
.specialist-meta p {
  margin: 0 0 0.65rem;
  color: var(--signal);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.founder-meta h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(2rem, 2.7vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.founder-meta > span,
.specialist-meta > span {
  color: rgba(243, 241, 236, 0.55);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.specialist-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.35rem;
  overflow: hidden;
}

.specialist-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line-dark);
}

.specialist-panel-head h3 {
  margin: 0;
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.specialist-panel-head p {
  max-width: 36ch;
  margin: 0;
  color: rgba(243, 241, 236, 0.52);
  font-size: 0.68rem;
  line-height: 1.45;
  text-align: right;
}

.specialist-roster {
  display: grid;
  grid-auto-columns: minmax(210px, 1fr);
  grid-auto-flow: column;
  gap: 1px;
  min-height: 0;
  background: var(--line-dark);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.specialist-roster::-webkit-scrollbar {
  display: none;
}

.specialist-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  background: #111;
}

.specialist-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 75, 43, 0.17), transparent 34%),
    linear-gradient(145deg, #151515, #090909);
  overflow: hidden;
}

.specialist-visual::before,
.specialist-visual::after {
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  border: 1px solid rgba(243, 241, 236, 0.13);
  border-radius: 50%;
  content: "";
}

.specialist-visual::after {
  width: 72%;
  border-color: rgba(255, 75, 43, 0.15);
}

.specialist-visual span {
  position: relative;
  z-index: 1;
  color: rgba(243, 241, 236, 0.72);
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.07em;
}

.specialist-meta {
  min-height: 150px;
  padding: 1.15rem;
  border-top: 1px solid var(--line-dark);
}

.specialist-meta h4 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.35rem, 1.8vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-label {
  padding-top: 0.5rem;
  color: currentColor;
  opacity: 0.55;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 3.2fr;
  gap: clamp(3rem, 7vw, 8rem);
  margin-bottom: clamp(4rem, 7vw, 8rem);
}

.section-head h2,
.process-intro h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.5rem, 7.2vw, 8.4rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.work-section {
  position: relative;
  height: 100svh;
  min-height: 720px;
  padding: clamp(6.5rem, 11vh, 8.5rem) 0 clamp(1.5rem, 3vh, 2.5rem);
  overflow: hidden;
  scroll-snap-stop: always;
}

.work-shell {
  display: grid;
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
}

.work-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(1.2rem, 2.5vh, 2rem);
}

.work-heading {
  display: grid;
  grid-template-columns: 1fr 3.2fr;
  align-items: end;
  gap: clamp(3rem, 7vw, 8rem);
}

.work-heading h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.8rem, 4.5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.work-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.work-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  font: inherit;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease;
}

.work-controls button:hover,
.work-controls button:focus-visible {
  border-color: var(--paper);
  color: var(--black);
  background: var(--paper);
}

.work-controls p {
  min-width: 4.8rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-align: center;
}

.work-carousel {
  position: relative;
  min-height: 0;
  overflow: hidden;
  outline: none;
}

.work-track {
  display: flex;
  height: 100%;
  transition: transform 1200ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.work-slide {
  display: grid;
  min-width: 100%;
  height: 100%;
  flex: 0 0 100%;
  grid-template-rows: minmax(250px, 1fr) auto;
  gap: clamp(1rem, 2vh, 1.5rem);
}

.project-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #151515;
}

.project-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.05), rgba(10,10,10,0.36));
  content: "";
  pointer-events: none;
}

.project-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.045);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1400ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 800ms ease;
}

.work-slide[aria-hidden="false"] .project-media img {
  opacity: 1;
  transform: scale(1);
}

.work-slide[aria-hidden="false"]:hover .project-media img {
  filter: contrast(1.04);
  transform: scale(1.012);
}

.project-index,
.project-credit {
  position: absolute;
  z-index: 1;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-index {
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--black);
  background: var(--paper);
}

.project-credit {
  right: 1rem;
  bottom: 1rem;
  padding: 0.7rem 0.85rem;
  color: var(--paper);
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(10px);
}

.project-meta {
  display: grid;
  grid-template-columns: 1.05fr 2.35fr 1.25fr;
  align-items: start;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  padding-bottom: 0.85rem;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) 240ms,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 180ms;
}

.work-slide[aria-hidden="false"] .project-meta {
  opacity: 1;
  transform: translateY(0);
}

.project-title p,
.project-title h3,
.project-description,
.project-facts,
.project-facts dd {
  margin: 0;
}

.project-title p,
.project-facts dt {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-title h3 {
  margin-top: 0.25rem;
  font-size: clamp(1.65rem, 2.5vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.project-facts {
  display: grid;
  grid-template-columns: 1.1fr 1fr 2.15fr 0.55fr;
  gap: clamp(0.9rem, 1.8vw, 2rem);
}

.project-facts div {
  min-width: 0;
}

.project-facts dd {
  margin-top: 0.45rem;
  color: rgba(243, 241, 236, 0.84);
  font-size: clamp(0.68rem, 0.76vw, 0.78rem);
  line-height: 1.45;
}

.project-summary {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.project-description {
  color: rgba(243, 241, 236, 0.68);
  font-size: clamp(0.72rem, 0.84vw, 0.86rem);
  line-height: 1.5;
}

.breakdown-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  border: 0;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breakdown-link span {
  color: var(--signal);
  transition: transform 350ms var(--ease);
}

.breakdown-link:hover span,
.breakdown-link:focus-visible span {
  transform: translate(0.18rem, -0.18rem);
}

.work-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line-dark);
  overflow: hidden;
}

.work-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--signal);
  transform: scaleX(0.3333);
  transform-origin: left center;
  transition: transform 1200ms cubic-bezier(0.76, 0, 0.24, 1);
}

.project-detail {
  position: fixed;
  inset: 0;
  z-index: 200;
  color: var(--paper);
  background: rgba(7, 7, 7, 0.985);
  opacity: 0;
  pointer-events: none;
  transform: translateY(2.5rem);
  visibility: hidden;
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 850ms;
}

.project-detail.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.detail-panel {
  display: grid;
  width: var(--shell);
  height: 100svh;
  min-height: 620px;
  margin-inline: auto;
  padding: clamp(2rem, 5vh, 4rem) 0 clamp(1.5rem, 3vh, 2.5rem);
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(1.25rem, 3vh, 2.5rem);
}

.detail-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.detail-header p,
.detail-header h3,
.detail-actions p,
.detail-frame figcaption p {
  margin: 0;
}

.detail-header > div:first-child > p,
.detail-frame figcaption span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-header h3 {
  margin-top: 0.35rem;
  font-size: clamp(2.4rem, 4.5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.detail-actions,
.detail-controls {
  display: flex;
  align-items: center;
}

.detail-actions {
  gap: clamp(1rem, 2vw, 2rem);
}

.detail-controls {
  gap: 0.7rem;
}

.detail-controls button,
.detail-close {
  border: 1px solid var(--line-dark);
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.detail-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
}

.detail-controls p {
  min-width: 4.6rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.detail-close {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 0.95rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-close span {
  color: var(--signal);
  font-size: 1rem;
}

.detail-controls button:hover,
.detail-controls button:focus-visible,
.detail-close:hover,
.detail-close:focus-visible {
  border-color: var(--paper);
  color: var(--black);
  background: var(--paper);
}

.detail-project {
  min-height: 0;
  overflow: hidden;
  display: none;
}

.detail-project.is-active {
  display: block;
}

.detail-track {
  display: flex;
  height: 100%;
  transition: transform 1250ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.detail-frame {
  display: grid;
  min-width: 100%;
  height: 100%;
  margin: 0;
  flex: 0 0 100%;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 1rem;
}

.detail-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #101010;
}

.detail-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(243, 241, 236, 0.08);
  content: "";
  pointer-events: none;
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transform: scale(1.035);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1) 180ms,
    transform 1500ms cubic-bezier(0.16, 1, 0.3, 1) 100ms;
}

.detail-frame[aria-hidden="false"] .detail-media img {
  opacity: 1;
  transform: scale(1);
}

.detail-frame--crop .detail-media img {
  object-position: 72% center;
  transform: scale(1.22);
}

.detail-frame--crop[aria-hidden="false"] .detail-media img {
  transform: scale(1.16);
}

.detail-frame figcaption {
  display: grid;
  grid-template-columns: 0.65fr 2fr;
  gap: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line-dark);
}

.detail-frame figcaption p {
  max-width: 60ch;
  color: rgba(243, 241, 236, 0.72);
  font-size: clamp(0.82rem, 1vw, 1rem);
  line-height: 1.5;
}

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

.capability {
  position: relative;
  display: grid;
  grid-template-columns: 0.5fr 1.1fr 1.3fr 1.15fr;
  align-items: start;
  gap: clamp(1rem, 3vw, 3.5rem);
  min-height: 270px;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
}

.capability > span {
  font-size: 0.65rem;
  font-weight: 700;
}

.capability h3 {
  margin: -0.45rem 0 0;
  font-size: clamp(2.8rem, 5vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.capability p {
  max-width: 35ch;
  margin: 0;
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  line-height: 1.5;
}

.capability ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  line-height: 2;
  text-transform: uppercase;
}

.capability i {
  position: absolute;
  right: -0.05em;
  bottom: -0.34em;
  z-index: 0;
  color: rgba(255, 75, 43, 0.06);
  font-size: 18rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  transition: color 500ms ease, transform 700ms var(--ease);
}

.capability:hover i {
  color: rgba(255, 75, 43, 0.14);
  transform: translateX(-0.04em);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(4rem, 10vw, 12rem);
}

.process-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.process-intro h2 {
  max-width: none;
  margin-top: 3rem;
  font-size: clamp(3.3rem, 4.8vw, 5.8rem);
  line-height: 0.9;
}

.process-intro > p:last-child {
  max-width: 35ch;
  margin: 3rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.process-steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  min-height: 190px;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.process-steps li > span {
  color: var(--signal);
  font-size: 0.65rem;
  font-weight: 700;
}

.process-steps h3 {
  margin: -0.35rem 0 1.2rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.process-steps p {
  max-width: 37ch;
  margin: 0;
  color: var(--muted);
}

.engagements {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.engagements span {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-light);
  border-radius: 99px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact {
  padding-top: var(--pad);
}

.contact-top h2 {
  max-width: 13ch;
  margin: 3rem 0 0;
  font-size: clamp(3.7rem, 7.5vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.contact-intro {
  max-width: 45ch;
  margin: 3rem 0 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
}

.brief-form {
  margin-top: clamp(5rem, 9vw, 9rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 6rem);
  margin-bottom: 3rem;
}

.brief-form label,
.brief-form fieldset {
  min-width: 0;
}

.brief-form label > span,
.brief-form legend {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(243, 241, 236, 0.35);
  border-radius: 0;
  outline: none;
  color: var(--paper);
  background: transparent;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 400;
  transition: border-color 220ms ease;
}

.brief-form input,
.brief-form select {
  height: 3.5rem;
}

.brief-form textarea {
  min-height: 130px;
  padding: 0.6rem 0;
  resize: vertical;
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  border-color: var(--signal);
}

.brief-form input::placeholder,
.brief-form textarea::placeholder {
  color: rgba(243, 241, 236, 0.3);
}

.brief-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--signal) 50%), linear-gradient(135deg, var(--signal) 50%, transparent 50%);
  background-position: calc(100% - 13px) 50%, calc(100% - 7px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.brief-form select option {
  color: var(--black);
  background: var(--paper);
}

.brief-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.choice-group label {
  cursor: pointer;
}

.choice-group input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-group label > span {
  display: block;
  margin: 0;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(243, 241, 236, 0.35);
  border-radius: 99px;
  color: var(--paper);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.choice-group input:checked + span,
.choice-group input:focus-visible + span {
  border-color: var(--signal);
  color: var(--black);
  background: var(--signal);
}

.full-field {
  display: block;
  margin-top: 4rem;
}

.form-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
}

.form-end > p {
  max-width: 49ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.form-end > p a {
  color: var(--paper);
}

.submit-button {
  display: inline-flex;
  min-width: min(100%, 260px);
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.3rem;
  border: 0;
  color: var(--black);
  background: var(--signal);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.submit-button b {
  font-size: 1.2rem;
  transition: transform 250ms ease;
}

.submit-button:hover b {
  transform: translate(0.2rem, -0.2rem);
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--signal);
  font-size: 0.8rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.65fr;
  gap: 3rem;
  align-items: end;
  margin-top: clamp(7rem, 12vw, 14rem);
  padding-block: 3rem;
  border-top: 1px solid var(--line-dark);
}

.footer-brand {
  position: relative;
  width: min(100%, 520px);
}

.footer-brand img {
  width: 100%;
}

.footer-signal {
  position: absolute;
  right: -0.01em;
  bottom: 0;
  width: 3.2%;
  height: 23%;
  background: var(--signal);
}

.footer-links,
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-meta a {
  color: var(--paper);
}

.scroll-progress {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 120;
  height: 2px;
  pointer-events: none;
}

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

.reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 1000ms var(--ease) var(--reveal-delay, 0ms),
    filter 950ms var(--ease) var(--reveal-delay, 0ms),
    transform 1150ms var(--ease) var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.reveal--headline {
  transform: translate3d(0, 46px, 0);
}

.reveal--copy {
  transform: translate3d(0, 22px, 0);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.12); }
  to { opacity: 1; transform: scale(1.035); }
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0.16; }
}

@media (max-width: 960px) {
  .team-header > div {
    grid-column: 1 / 5;
  }

  .team-header h2 {
    grid-column: 5 / -1;
  }

  .team-grid {
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  }

  .specialist-roster {
    grid-auto-columns: minmax(200px, 1fr);
  }

  .brand span { display: none; }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    border: 0;
    color: var(--paper);
    background: transparent;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-toggle i,
  .menu-toggle i::after {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 300ms ease;
  }

  .menu-toggle i::after { transform: translateY(6px); }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::after { transform: rotate(-90deg); }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 1.5rem 4vw 2rem;
    border-top: 1px solid var(--line-dark);
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
  }

  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.7rem 0; }
  .nav-cta { padding: 1rem; }

  .section-head,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .about-featured-subheads { grid-column: 1 / 6; }
  .about-featured-copy { grid-column: 7 / -1; }

  .process-intro { position: static; }
  .work-heading { grid-template-columns: 0.65fr 2fr; gap: 2rem; }
  .project-meta { grid-template-columns: 0.8fr 2fr; }
  .project-summary { grid-column: 1 / -1; }
  .capability { grid-template-columns: 0.3fr 1fr 1.5fr; }
  .capability ul { grid-column: 2 / -1; }
  .site-footer { grid-template-columns: 1.4fr 1fr; }
  .footer-meta { grid-column: 2; }
}

@media (max-width: 640px) {
  .team-section {
    height: auto;
    min-height: 100svh;
    padding: 6rem 0 3rem;
    overflow: visible;
  }

  .team-shell {
    display: block;
    height: auto;
  }

  .team-header {
    display: block;
    margin-bottom: 2.5rem;
  }

  .team-header > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .team-intro {
    max-width: 18ch;
    margin: 0;
    text-align: right;
  }

  .team-header h2 {
    margin-top: 3rem;
    font-size: clamp(4rem, 19vw, 5.8rem);
    line-height: 0.82;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .founder-profile {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .specialist-panel {
    min-height: 540px;
    padding: 1rem;
  }

  .specialist-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .specialist-panel-head p {
    text-align: left;
  }

  .specialist-roster {
    grid-auto-columns: minmax(72vw, 1fr);
    min-height: 410px;
  }

  .specialist-meta {
    min-height: 140px;
  }

  :root { --shell: 90vw; --pad: 5.5rem; }

  html { scroll-snap-type: none; }

  .site-header { min-height: 70px; padding-inline: 5vw; }
  .brand img { width: 92px; }
  .hero-content { justify-content: flex-end; padding-bottom: 8rem; }
  .hero-media img { object-position: 63% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(10,10,10,.92) 5%, rgba(10,10,10,.35) 78%), linear-gradient(90deg, rgba(10,10,10,.6), transparent); }
  .hero-orbit { top: 18%; right: -18%; width: 72vw; }
  .hero h1 {
    font-size: clamp(3.9rem, 19vw, 6rem);
    letter-spacing: -0.035em;
    line-height: 0.9;
  }
  .hero-bottom { grid-template-columns: 1fr; margin-top: 1.4rem; }
  .round-link { display: none; }
  .hero-index span:last-child { display: none; }

  .about-featured {
    padding-block: 6rem 3rem;
  }
  .about-featured-grid {
    display: block;
  }
  .about-featured-topline {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .about-featured-topline > p:last-child {
    max-width: 17ch;
    text-align: right;
  }
  .about-featured-statement {
    display: block;
    padding-block: 3.5rem;
  }
  .about-featured-title {
    font-size: clamp(4.3rem, 21vw, 6.4rem);
    line-height: 0.81;
  }
  .about-featured-title em {
    margin-left: 0.35em;
  }
  .about-featured-foundation {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    padding-block: 2rem 2.75rem;
  }
  .about-featured-subheads,
  .about-featured-copy {
    grid-column: auto;
  }
  .about-featured-subheads p {
    font-size: clamp(2.45rem, 11.5vw, 3.4rem);
  }
  .about-featured-copy {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .about-featured-copy p {
    font-size: 0.96rem;
  }
  .about-featured-engagements {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-head h2,
  .process-intro h2 { font-size: clamp(3.3rem, 16vw, 5.4rem); }

  .process-intro h2 { font-size: clamp(3rem, 13vw, 4rem); }

  .work-section {
    height: 100svh;
    min-height: 780px;
    padding: 5.5rem 0 1rem;
  }

  .work-header {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 1rem;
  }

  .work-heading {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .work-heading h2 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 3.4rem);
    line-height: 0.92;
  }

  .work-controls {
    justify-content: flex-end;
  }

  .work-controls button {
    width: 38px;
    height: 38px;
  }

  .work-slide {
    grid-template-rows: minmax(220px, 1fr) auto;
    gap: 0.85rem;
  }

  .project-index {
    width: 38px;
    height: 38px;
  }

  .project-credit {
    padding: 0.6rem 0.7rem;
  }

  .project-meta {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-bottom: 0.65rem;
  }

  .project-title h3 {
    font-size: 1.8rem;
  }

  .project-facts {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 1.2rem;
  }

  .project-facts div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .project-description {
    grid-column: auto;
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .project-summary {
    grid-column: auto;
    gap: 0.5rem;
  }

  .breakdown-link {
    font-size: 0.58rem;
  }

  .detail-panel {
    width: 90vw;
    min-height: 580px;
    padding: 1.25rem 0 1rem;
    gap: 1rem;
  }

  .detail-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 1rem;
  }

  .detail-header h3 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .detail-actions {
    align-items: flex-end;
    flex-direction: column-reverse;
    gap: 0.65rem;
  }

  .detail-controls button {
    width: 38px;
    height: 38px;
  }

  .detail-close {
    padding: 0.55rem 0.7rem;
  }

  .detail-frame {
    gap: 0.75rem;
  }

  .detail-frame figcaption {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-bottom: 0.6rem;
  }

  .detail-frame figcaption p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .capability {
    grid-template-columns: 38px 1fr;
    min-height: 0;
    padding: 1.7rem 0 2.5rem;
  }
  .capability h3 { margin-top: -0.5rem; }
  .capability p,
  .capability ul { grid-column: 2; }
  .capability i { font-size: 11rem; }

  .process-steps li { grid-template-columns: 42px 1fr; min-height: 170px; }
  .engagements { align-items: flex-start; flex-direction: column; }

  .contact-top h2 { font-size: clamp(3.7rem, 17vw, 6rem); }
  .contact-intro { margin-left: 0; }
  .field-row { grid-template-columns: 1fr; margin-bottom: 2rem; }
  .full-field { margin-top: 2.5rem; }
  .form-end { align-items: stretch; flex-direction: column; }
  .submit-button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-meta { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .section-motion-layer { opacity: 1; filter: none; transform: none; }
}
