:root {
  --ink: #080808;
  --ink-soft: #11110f;
  --paper: #efede6;
  --paper-2: #e3e0d7;
  --white: #fffef8;
  --muted: #9a9994;
  --line: rgba(255, 255, 255, 0.17);
  --line-dark: rgba(8, 8, 8, 0.18);
  --orange: #f26a1b;
  --orange-bright: #ff7a22;
  --shell: min(1540px, calc(100vw - 72px));
  --header-height: 104px;
  --display: "Arial Narrow", "Helvetica Neue Condensed", Impact, sans-serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--orange) var(--ink);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--white);
  background: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

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

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

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

.section-pad {
  padding-block: clamp(88px, 10vw, 168px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--orange-bright);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-inline: max(36px, calc((100vw - 1540px) / 2));
  border-bottom: 1px solid transparent;
  transition: height 240ms var(--ease), background 240ms ease, border-color 240ms ease;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.site-header.is-scrolled {
  height: 78px;
  border-color: var(--line);
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(15px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.2vw, 58px);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav > a {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 5px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a[aria-current="page"] {
  color: var(--white);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav small {
  color: var(--orange-bright);
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}

.site-nav .nav-contact {
  margin-left: 8px;
  padding: 14px 20px;
  color: var(--orange-bright);
  border: 1px solid var(--orange);
}

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

.nav-socials {
  display: none;
}

.menu-toggle {
  display: none;
  padding: 10px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-toggle-icon {
  display: grid;
  gap: 6px;
  width: 28px;
}

.menu-toggle-icon i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--orange-bright);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) 2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 92px);
}

.section-heading h2 {
  max-width: 980px;
  margin: -0.14em 0 18px;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7vw, 8rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading > div > p {
  max-width: 720px;
  margin: 0;
  color: #686762;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.section-heading-light > div > p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  min-height: 56px;
  padding: 14px 22px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

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

.button-primary {
  color: var(--orange-bright);
  border: 1px solid var(--orange);
  background: rgba(242, 106, 27, 0.03);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--ink);
  background: var(--orange-bright);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.43);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--ink);
  background: var(--white);
}

/* Engineered open-cube hero */
.hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background:
    radial-gradient(circle at 69% 49%, rgba(242, 106, 27, 0.07), transparent 21%),
    radial-gradient(circle at 32% 54%, rgba(255, 255, 255, 0.025), transparent 36%),
    var(--ink);
}

.open-box-grid,
.contact-grid,
.signal-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, transparent 0%, black 35%, black 90%, transparent 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(590px, 1.25fr);
  gap: clamp(22px, 2.5vw, 52px);
  align-items: center;
  padding-top: var(--header-height);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-block: 90px 72px;
}

.hero-copy h1 {
  margin: 24px 0 26px;
  font-family: var(--display);
  font-size: clamp(5.4rem, 7.5vw, 9rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.83;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}

.open-cube-stage {
  position: relative;
  width: min(100%, 940px);
  min-height: 650px;
  justify-self: end;
  contain: layout;
}

.open-cube-stage::before {
  position: absolute;
  z-index: -1;
  inset: 25% 7% 4% 5%;
  content: "";
  background: radial-gradient(ellipse, rgba(242, 106, 27, 0.12), transparent 64%);
  filter: blur(32px);
}

.cube-scene {
  position: absolute;
  inset: 5% 0 3%;
  perspective: 980px;
  perspective-origin: 59% 42%;
}

.cube-rig {
  position: absolute;
  inset: 0;
  transform: translate3d(var(--cube-shift-x, 0), var(--cube-shift-y, 0), 0) rotateX(calc(-7deg + var(--cube-rotate-x, 0deg))) rotateY(calc(-16deg + var(--cube-rotate-y, 0deg))) rotateZ(-1.2deg);
  transform-style: preserve-3d;
  will-change: transform;
}

.cube-panel {
  position: absolute;
  border: 1px solid rgba(255, 254, 248, 0.68);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.06), transparent 40%, rgba(242, 106, 27, 0.025)),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(255, 255, 255, 0.16) 32px 33px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(255, 255, 255, 0.16) 32px 33px),
    rgba(255, 254, 248, 0.035);
  box-shadow: inset 0 0 45px rgba(255, 255, 255, 0.025), 0 28px 50px rgba(0, 0, 0, 0.42);
  transform-style: preserve-3d;
  transition: border-color 280ms ease, box-shadow 280ms ease;
  will-change: transform;
}

.cube-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 52% 48%, rgba(255, 255, 255, 0.07), transparent 42%);
  pointer-events: none;
}

.cube-panel-back {
  top: 12%;
  left: 22%;
  width: 61%;
  height: 54%;
  transform: translate3d(var(--panel-x, 0), var(--panel-y, 0), calc(-68px + var(--panel-z, 0px))) rotateY(var(--panel-turn, 0deg));
}

.cube-panel-floor {
  top: 66%;
  left: 20%;
  width: 62%;
  height: 45%;
  transform: translate3d(var(--panel-x, 0), var(--panel-y, 0), calc(-68px + var(--panel-z, 0px))) rotateX(calc(63deg + var(--panel-turn, 0deg))) rotateZ(1deg);
  transform-origin: center top;
}

.cube-panel-left {
  top: 13%;
  left: 2%;
  width: 20%;
  height: 51%;
  border-color: rgba(242, 106, 27, 0.64);
  transform: translate3d(var(--panel-x, 0), var(--panel-y, 0), calc(-68px + var(--panel-z, 0px))) rotateY(calc(72deg + var(--panel-turn, 0deg)));
  transform-origin: right center;
}

.cube-panel-right {
  top: 10%;
  left: 83%;
  width: 34%;
  height: 57%;
  border-color: rgba(242, 106, 27, 0.64);
  transform: translate3d(var(--panel-x, 0), var(--panel-y, 0), calc(-68px + var(--panel-z, 0px))) rotateY(calc(-61deg + var(--panel-turn, 0deg)));
  transform-origin: left center;
}

.cube-panel-floor {
  border-color: rgba(242, 106, 27, 0.68);
}

.cube-panel.is-lit {
  border-color: rgba(255, 122, 34, 0.95);
  box-shadow: inset 0 0 55px rgba(242, 106, 27, 0.07), 0 0 26px rgba(242, 106, 27, 0.08), 0 28px 50px rgba(0, 0, 0, 0.42);
}

.cube-scanline {
  position: absolute;
  top: 54%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 122, 34, 0.65);
  box-shadow: 0 0 9px rgba(242, 106, 27, 0.45);
  opacity: 0.42;
  transition: opacity 260ms ease, box-shadow 260ms ease;
}

.cube-panel.is-lit .cube-scanline {
  box-shadow: 0 0 18px rgba(242, 106, 27, 0.9);
  opacity: 1;
}

.cube-node {
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 7px;
  border: 1px solid var(--orange-bright);
  background: #ffd1a8;
  box-shadow: 0 0 0 1px rgba(8, 8, 8, 0.8);
  transition: box-shadow 260ms ease, background 260ms ease, transform 260ms var(--ease);
}

.cube-node.node-a { top: -4px; left: -4px; }
.cube-node.node-b { top: -4px; right: -4px; }
.cube-node.node-c { right: -4px; bottom: -4px; }
.cube-node.node-d { bottom: -4px; left: -4px; }
.cube-node.node-e { top: 54%; left: 52%; width: 5px; height: 5px; }

.cube-panel.is-lit .cube-node:nth-of-type(2) {
  background: var(--white);
  box-shadow: 0 0 18px 5px rgba(242, 106, 27, 0.55);
  transform: scale(1.18);
}

.cube-route {
  position: absolute;
  height: 1px;
  background: rgba(242, 106, 27, 0.62);
  transform-origin: left;
}

.cube-route-a { top: 13%; left: 8%; width: 20%; transform: rotate(9deg) translateZ(3px); }
.cube-route-b { top: 11%; right: -2%; width: 23%; transform: rotate(12deg) translateZ(3px); }

.cube-readout {
  position: absolute;
  right: 4%;
  bottom: 5%;
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.56rem;
  letter-spacing: 0.17em;
}

/* Work */
.work-section,
.insights-section {
  color: var(--ink);
  background: var(--paper);
}

.filter-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: start;
  padding-block: 26px 34px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-filters button {
  min-height: 38px;
  padding: 8px 13px;
  color: #4b4a47;
  border: 1px solid rgba(8, 8, 8, 0.21);
  background: transparent;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.work-filters button:hover,
.work-filters button[aria-pressed="true"] {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.filter-count {
  margin: 7px 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.work-preview-action {
  display: flex;
  justify-content: flex-end;
  margin: 34px 0 0;
}

.work-archive-section {
  padding-bottom: clamp(88px, 10vw, 160px);
  color: var(--ink);
  background: var(--paper);
}

.work-archive-inner {
  padding-top: clamp(54px, 6vw, 92px);
}

.work-archive-section .work-grid {
  margin-bottom: 0;
}

@media (min-width: 1181px) {
  .work-archive-section .work-filters {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.work-card {
  min-width: 0;
  background: var(--paper);
  transition: opacity 220ms ease;
}

.work-card[hidden] {
  display: none;
}

.work-card a {
  display: grid;
  height: 100%;
  padding: 10px 10px 24px;
  text-decoration: none;
}

.work-card figure {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0 0 17px;
  overflow: hidden;
  background: #1b1b19;
}

.work-card figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.14) 12%, transparent 42%, rgba(4, 4, 4, 0.92) 100%);
  pointer-events: none;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.28) brightness(0.66) contrast(1.04);
  transition: transform 500ms var(--ease), filter 300ms ease;
}

.work-card a:hover img,
.work-card a:focus-visible img,
.work-card:focus-within img {
  filter: saturate(1) brightness(0.96) contrast(1.02);
  transform: scale(1.032) translateY(-0.3%);
}

.work-card-overlay {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  color: var(--white);
}

.work-card-overlay .work-card-top {
  color: rgba(255, 255, 255, 0.7);
}

.work-card-overlay .work-card-top span:last-child {
  color: #ffc18e;
  text-align: right;
}

.work-card-overlay h3 {
  max-width: 92%;
  margin: 13px 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 2.7vw, 3.35rem);
  font-stretch: condensed;
  letter-spacing: -0.025em;
  line-height: 0.9;
  text-transform: uppercase;
  transition: transform 420ms var(--ease);
}

.work-card a:hover .work-card-overlay h3,
.work-card a:focus-visible .work-card-overlay h3 {
  transform: translateY(-4px);
}

.work-card-top,
.insight-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: #73716b;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-card-copy {
  align-self: end;
}

.work-card-meta,
.work-card-role {
  margin: 0;
  color: #696762;
  font-size: 0.78rem;
}

.work-card-role {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.noscript-message {
  padding: 20px;
  border: 1px solid var(--line-dark);
}

/* Capabilities */
.services-section {
  background: var(--ink-soft);
}

.capability-strip {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-strip li {
  flex: 1 1 25%;
  min-width: 260px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-strip a {
  display: flex;
  gap: 14px;
  align-items: baseline;
  min-height: 76px;
  padding: 19px 21px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.capability-strip a:hover,
.capability-strip a:focus-visible {
  color: var(--ink);
  background: var(--orange-bright);
}

.capability-strip a:hover span,
.capability-strip a:focus-visible span {
  color: var(--ink);
}

.capability-strip span {
  color: var(--orange-bright);
  font-size: 0.58rem;
}

/* Insights carousel and archive */
.carousel {
  border-top: 1px solid var(--line-dark);
}

.carousel-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  gap: 1px;
  background: var(--line-dark);
  transition: transform 820ms var(--ease);
  will-change: transform;
}

.insight-card {
  min-width: 0;
  background: var(--paper);
}

.carousel .insight-card {
  flex: 0 0 calc((100% - 2px) / 3);
}

.insight-card > a {
  display: block;
  height: 100%;
  padding: 12px 12px 30px;
  text-decoration: none;
}

.insight-card figure {
  aspect-ratio: 16 / 9;
  margin: 0 0 20px;
  overflow: hidden;
  background: #181816;
}

.insight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.73);
  transition: transform 450ms var(--ease), filter 240ms ease;
}

.insight-card a:hover img,
.insight-card a:focus-visible img {
  filter: saturate(1);
  transform: scale(1.035);
}

.insight-card h2,
.insight-card h3 {
  margin: 22px 0 14px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.7vw, 3.25rem);
  font-stretch: condensed;
  letter-spacing: -0.02em;
  line-height: 0.97;
  text-transform: uppercase;
}

.insight-card p {
  margin: 0;
  color: #6e6c66;
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 11px;
}

.round-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

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

.round-button:focus-visible,
.carousel-toggle:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.carousel-toggle {
  min-width: 64px;
  height: 34px;
  padding: 0 12px;
  color: #5e5c57;
  border: 1px solid var(--line-dark);
  background: transparent;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
}

.carousel-toggle[hidden] {
  display: none;
}

.carousel-counter {
  min-width: 68px;
  margin-left: 8px;
  color: #66645f;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.text-link,
.about-links a {
  color: var(--ink);
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

/* About, proof strip and contact */
.about-section {
  background: #151512;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) 2fr;
  gap: 40px;
}

.about-layout h2 {
  max-width: 1040px;
  margin: -0.12em 0 28px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.4vw, 7rem);
  font-stretch: condensed;
  line-height: 0.9;
  text-transform: uppercase;
}

.about-layout > div > p {
  max-width: 830px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 38px;
}

.about-links a {
  color: var(--white);
}

.experience-section {
  border-block: 1px solid var(--line);
  background: var(--ink);
}

.experience-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 42px;
  align-items: center;
  min-height: 118px;
  padding-block: 24px;
}

.experience-inner h2 {
  margin: 0;
  color: var(--orange-bright);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.experience-inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 25px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  list-style: none;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-inner li:not(:last-child)::after {
  margin-left: 25px;
  color: var(--orange);
  content: "/";
}

.contact-section {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 50%, rgba(242, 106, 27, 0.11), transparent 30%),
    var(--ink);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
}

.contact-inner > p {
  margin: 0 0 12px;
  color: var(--orange-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-inner h2 {
  margin: 0;
}

[data-pixel-egg] {
  position: relative;
  display: grid;
  min-height: 1em;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  border: 0;
  background: transparent;
  font-family: var(--display);
  font-size: clamp(4.8rem, 12vw, 13rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

[data-pixel-egg] span {
  grid-area: 1 / 1;
  transition: opacity 220ms ease, transform 350ms var(--ease);
}

.egg-alt {
  color: var(--orange-bright);
  opacity: 0;
  transform: translateY(45%);
}

[data-pixel-egg]:hover .egg-primary,
[data-pixel-egg]:focus-visible .egg-primary,
[data-pixel-egg].is-pixel .egg-primary {
  opacity: 0;
  transform: translateY(-45%);
}

[data-pixel-egg]:hover .egg-alt,
[data-pixel-egg]:focus-visible .egg-alt,
[data-pixel-egg].is-pixel .egg-alt {
  opacity: 1;
  transform: translateY(0);
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(720px, 100%);
  margin-top: 42px;
  padding-block: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: clamp(1rem, 2vw, 1.4rem);
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 40px;
  align-items: center;
  min-height: 128px;
}

.footer-brand img {
  width: 165px;
}

.footer-inner p {
  margin: 0;
  color: #777671;
  font-size: 0.68rem;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-links a,
.back-top {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.back-top {
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Shared internal pages */
.detail-body,
.article-body,
.archive-body,
.profile-body,
.simple-body,
.error-body {
  background: var(--ink);
}

.detail-hero,
.article-header,
.profile-hero,
.archive-hero .page-shell {
  padding-top: calc(var(--header-height) + clamp(90px, 9vw, 150px));
  padding-bottom: clamp(70px, 8vw, 130px);
}

.breadcrumb {
  display: inline-block;
  margin-bottom: clamp(50px, 7vw, 100px);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.detail-hero h1,
.article-header h1,
.archive-hero h1,
.profile-hero h1,
.signal-copy h1 {
  max-width: 1350px;
  margin: 25px 0 32px;
  font-family: var(--display);
  font-size: clamp(4rem, 9.4vw, 11rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.84;
  text-transform: uppercase;
}

.detail-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 36px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.detail-meta span:not(:last-child)::after,
.article-meta > *:not(:last-child)::after {
  margin-left: 36px;
  color: var(--orange);
  content: "/";
}

.project-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.project-video-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 11px 17px;
  color: var(--orange-bright);
  border: 1px solid var(--orange);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.project-video-actions a:hover,
.project-video-actions a:focus-visible {
  color: var(--ink);
  background: var(--orange-bright);
  transform: translateY(-2px);
}

.project-record,
.profile-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1.4fr;
  gap: clamp(40px, 8vw, 150px);
  padding-block: clamp(75px, 9vw, 140px);
  color: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.project-record,
.profile-section,
.article-shell {
  position: relative;
  z-index: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.project-record h2,
.profile-section h2,
.other-worlds h2 {
  margin: 15px 0 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  font-stretch: condensed;
  line-height: 0.9;
  text-transform: uppercase;
}

.project-copy p {
  margin: 0;
  padding-block: 17px;
  border-bottom: 1px solid var(--line-dark);
  color: #44433f;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.project-evidence {
  display: grid;
  gap: 0;
}

.project-evidence > section {
  padding-block: 22px;
  border-bottom: 1px solid var(--line-dark);
}

.project-evidence > section:first-child {
  padding-top: 0;
}

.project-evidence h3 {
  margin: 0 0 10px;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-evidence p,
.project-evidence li {
  color: #44433f;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.project-evidence p {
  margin: 0;
}

.project-evidence ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-evidence li {
  padding: 7px 10px;
  border: 1px solid rgba(8, 8, 8, 0.22);
  font-size: 0.78rem;
}

.project-evidence .project-copy p {
  padding-block: 10px;
}

.project-media {
  padding-block: clamp(72px, 8vw, 125px);
}

.project-media > header {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) 1.4fr;
  gap: 18px clamp(40px, 8vw, 150px);
  margin-bottom: 38px;
}

.project-media > header .section-kicker {
  grid-row: 1 / span 2;
}

.project-media h2,
.related-content h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  font-stretch: condensed;
  line-height: 0.9;
  text-transform: uppercase;
}

.project-media > header > p:last-child {
  margin: 0;
  color: var(--muted);
}

.privacy-video {
  position: relative;
  width: min(100%, 1080px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0d0d0c;
}

.privacy-video-poster,
.privacy-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.privacy-video-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.2), rgba(8, 8, 8, 0.7));
}

.privacy-video-poster img,
.privacy-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.privacy-video-poster img {
  filter: saturate(0.5) brightness(0.72);
}

.privacy-video-poster button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  min-width: min(84%, 520px);
  min-height: 58px;
  padding: 15px 22px;
  color: var(--ink);
  border: 0;
  background: var(--orange-bright);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.video-provider {
  display: block;
  color: var(--orange-bright);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-video-poster > .video-provider {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
}

.privacy-video > p:not(.video-provider) {
  margin: 0;
  padding: 15px 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.privacy-video > p a {
  color: var(--white);
}

.external-broadcast {
  padding: clamp(26px, 5vw, 60px);
}

.external-broadcast h3 {
  max-width: 750px;
  margin: 18px 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.external-broadcast > p:not(.video-provider) {
  max-width: 720px;
  padding: 0;
}

.external-broadcast .button {
  width: auto;
  margin-top: 28px;
}

.article-video {
  padding: 22px;
  color: var(--white);
}

.article-video > button {
  min-height: 48px;
  margin: 10px 15px 10px 0;
  padding: 12px 17px;
  color: var(--ink);
  border: 0;
  background: var(--orange-bright);
  font-weight: 750;
  cursor: pointer;
}

.article-video .privacy-video-frame {
  margin-bottom: 16px;
}

.related-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1.4fr;
  gap: clamp(40px, 8vw, 150px);
  padding-block: clamp(75px, 9vw, 140px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.related-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.related-project-grid a {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
}

.related-project-grid span {
  color: #6d6b65;
  font-size: 0.57rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-project-grid strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.4vw, 2.7rem);
  font-weight: 750;
  line-height: 0.92;
  text-transform: uppercase;
}

.context-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.context-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-block: clamp(70px, 8vw, 130px);
}

.project-gallery figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #171715;
}

.project-gallery a {
  display: block;
  width: 100%;
  height: 100%;
}

.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 440ms var(--ease), filter 250ms ease;
}

.project-gallery a:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.detail-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-pagination a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-decoration: none;
  text-transform: uppercase;
}

.detail-pagination a:last-child {
  text-align: right;
}

.detail-pagination span {
  color: var(--orange-bright);
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

.lightbox {
  width: min(94vw, 1440px);
  max-width: none;
  max-height: 94vh;
  padding: 50px 16px 16px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid var(--line);
  background: #080808;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.91);
}

.lightbox img {
  width: 100%;
  height: calc(94vh - 70px);
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  top: 12px;
  right: 16px;
  padding: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* Article and insights index */
.article-header {
  max-width: 1300px;
}

.article-header h1 {
  font-size: clamp(4rem, 8vw, 9rem);
}

.article-shell {
  max-width: 1180px;
  padding-block: clamp(60px, 8vw, 120px);
  color: #242321;
}

.article-feature {
  margin: 0 0 clamp(50px, 8vw, 110px);
}

.article-feature img {
  width: 100%;
  height: auto;
}

.article-copy {
  width: min(820px, 100%);
  margin-inline: auto;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.78;
  overflow-wrap: anywhere;
}

.article-copy h2,
.article-copy h3,
.article-copy h4 {
  color: var(--ink);
  font-family: var(--display);
  font-stretch: condensed;
  line-height: 1;
}

.article-copy h2 {
  margin: 2.2em 0 0.65em;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.article-copy h3 {
  margin: 2em 0 0.6em;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.article-copy h4 {
  margin-top: 1.8em;
  font-size: 1.45rem;
}

.article-copy p,
.article-copy ul,
.article-copy ol,
.article-copy blockquote {
  margin-block: 1.1em;
}

.article-copy li + li {
  margin-top: 0.42em;
}

.article-copy a {
  color: #b94500;
}

.article-copy table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-block: 32px;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 0.83rem;
}

.article-copy th,
.article-copy td {
  min-width: 130px;
  padding: 12px;
  border: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

.article-copy img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-block: 48px;
}

.article-gallery figure {
  margin: 0;
}

.article-gallery img {
  width: 100%;
}

.external-video {
  margin-block: 40px;
  padding: 25px;
  color: var(--white);
  background: var(--ink);
}

.external-video p {
  margin-top: 0;
}

.external-video a {
  color: var(--orange-bright);
  font-weight: 700;
}

.archive-hero {
  background: var(--ink);
}

.archive-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
}

.insights-archive {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: clamp(80px, 10vw, 150px);
  color: var(--ink);
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

/* Profile */
.profile-hero > p:not(.eyebrow) {
  max-width: 920px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  margin-top: 40px;
}

.profile-links > a:not(.button) {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-page {
  position: relative;
  color: var(--ink);
}

.profile-hero {
  color: var(--white);
}

.profile-prose p {
  max-width: 780px;
  margin: 0 0 1.1em;
  color: #474641;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.timeline,
.role-grid,
.credential-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li,
.credential-list li {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 8px 24px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.timeline span,
.credential-list span,
.recognition-grid span,
.world-grid > a > span,
.journal-link > span {
  color: #74716b;
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline h3,
.timeline p,
.credential-list strong,
.credential-list small {
  grid-column: 2;
  margin: 0;
}

.timeline h3 {
  font-size: 1rem;
  text-transform: uppercase;
}

.timeline p {
  color: #5b5954;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
}

.role-grid li {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  padding: 23px;
  background: var(--paper);
}

.role-grid span {
  margin-top: auto;
  color: #686660;
  font-size: 0.8rem;
}

.source-note {
  color: #74716b;
  font-size: 0.78rem;
}

.credential-list strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.credential-list small {
  color: #67655f;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
}

.recognition-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--paper);
}

.recognition-grid h3 {
  margin: 20px 0 10px;
  font-size: 1rem;
  text-transform: uppercase;
}

.recognition-grid p {
  margin: 0;
  color: #5b5954;
}

.other-worlds {
  padding-block: clamp(100px, 11vw, 180px);
  color: var(--white);
}

.other-worlds h2 {
  max-width: 1100px;
  margin-block: 28px 55px;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.world-grid > a {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: clamp(28px, 4vw, 58px);
  background: var(--ink);
  text-decoration: none;
  transition: background 200ms ease;
}

.world-grid > a:hover {
  background: #171714;
}

.world-grid h3 {
  margin: 36px 0 16px;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.7rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.world-grid p {
  max-width: 500px;
  color: var(--muted);
}

.world-grid b {
  margin-top: auto;
  color: var(--orange-bright);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-link {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 32px 0 0;
}

.journal-link a {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Academy, 404 and policy pages */
.signal-page {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
}

.signal-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-block: calc(var(--header-height) + 80px) 100px;
}

.signal-copy h1 {
  max-width: 1180px;
}

.signal-copy > p:not(.eyebrow) {
  margin: 0 0 40px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.error-page .signal-copy {
  padding-right: min(48vw, 700px);
}

.broken-cube {
  position: absolute;
  top: 24%;
  right: 7vw;
  width: min(38vw, 560px);
  aspect-ratio: 1;
  transform: rotate(-8deg);
}

.cube-face {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.cube-a { inset: 18% 21% 25% 13%; transform: skewY(-8deg); }
.cube-b { top: 10%; right: 3%; bottom: 34%; width: 20%; transform: skewY(23deg); border-left-color: var(--orange); }
.cube-c { right: 25%; bottom: 1%; left: 20%; height: 23%; transform: skewX(-24deg); border-top-color: var(--orange); }
.broken-cube i { position: absolute; top: 47%; right: 15%; width: 26%; height: 2px; background: var(--ink); box-shadow: 0 0 0 2px var(--ink); transform: rotate(29deg); }
.broken-cube b { position: absolute; top: 46%; right: 40%; width: 7px; height: 7px; background: var(--orange-bright); box-shadow: 0 0 18px var(--orange); }

.policy-page {
  padding-top: calc(var(--header-height) + clamp(80px, 9vw, 150px));
  padding-bottom: clamp(90px, 10vw, 160px);
}

.policy-page header {
  max-width: 950px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}

.policy-page h1 {
  margin: 24px 0 16px;
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 11rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.policy-page header > p:last-child {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-page section {
  width: min(760px, 100%);
  margin: 70px auto 0;
}

.policy-page h2 {
  margin: 2.2em 0 0.6em;
  font-family: var(--display);
  font-size: 2.2rem;
  text-transform: uppercase;
}

.policy-page p {
  color: #b3b1aa;
}

.media-unavailable,
.media-unavailable-inline {
  display: grid;
  place-items: center;
  min-height: 160px;
  color: #9b9992;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  background: #121210;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-unavailable-inline {
  min-height: 120px;
  margin-block: 24px;
  color: #6f6d67;
  border-color: var(--line-dark);
  background: var(--paper-2);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1080px);
  }

  .site-header {
    padding-inline: 24px;
  }

  .site-nav {
    gap: 22px;
  }

  .site-nav .nav-contact {
    padding-inline: 14px;
  }

  .hero-layout {
    grid-template-columns: minmax(350px, 0.8fr) minmax(470px, 1.1fr);
  }

  .hero-copy h1 {
    font-size: clamp(4.7rem, 8vw, 7rem);
  }

  .open-cube-stage {
    min-height: 540px;
  }

  .work-grid,
  .insights-archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-archive-section .work-filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .back-top {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 82px;
  }

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

  .brand img {
    width: 180px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 13px;
    align-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    padding: 95px 24px 32px;
    overflow-y: auto;
    visibility: hidden;
    background: rgba(8, 8, 8, 0.985);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 260ms var(--ease), visibility 200ms;
  }

  .menu-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .menu-open {
    overflow: hidden;
  }

  .site-nav > a {
    font-family: var(--display);
    font-size: clamp(2.3rem, 8vw, 4rem);
    letter-spacing: -0.01em;
    line-height: 0.98;
  }

  .site-nav small {
    font-family: var(--sans);
    font-size: 0.52rem;
  }

  .site-nav .nav-contact {
    margin: 8px 0 0;
    padding: 12px 16px;
    font-family: var(--sans);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }

  .nav-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 22px;
  }

  .nav-socials a {
    color: var(--muted);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .menu-open .menu-toggle-icon i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle-icon i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 75px);
    padding-bottom: 65px;
  }

  .hero-copy {
    padding-block: 40px 0;
  }

  .hero-copy h1 {
    font-size: clamp(4.9rem, 14vw, 8rem);
    white-space: normal;
  }

  .open-cube-stage {
    width: min(100%, 720px);
    min-height: 470px;
    justify-self: center;
  }

  .cube-scene {
    inset-inline: 3%;
  }

  .section-heading,
  .about-layout,
  .project-record,
  .profile-section,
  .related-content,
  .project-media > header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-media > header .section-kicker {
    grid-row: auto;
  }

  .related-project-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .about-layout h2 {
    margin-top: 0;
  }

  .carousel .insight-card {
    flex-basis: 100%;
    min-height: 0;
  }

  .carousel .insight-card figure {
    aspect-ratio: 16 / 7;
  }

  .capability-strip li {
    flex-basis: 50%;
  }

  .experience-inner {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-inner {
    grid-template-columns: auto 1fr;
    padding-block: 30px;
  }

  .footer-links {
    grid-column: 1 / -1;
  }

  .error-page .signal-copy {
    padding-right: 0;
  }

  .broken-cube {
    top: 35%;
    right: -10%;
    width: 68vw;
    opacity: 0.25;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 150px;
  }

  .section-pad {
    padding-block: 78px;
  }

  .hero-layout {
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-copy h1 {
    font-size: clamp(4.2rem, 19vw, 6.8rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .button {
    width: 100%;
  }

  .open-cube-stage {
    min-height: 350px;
    margin-top: -20px;
  }

  .cube-scene {
    inset: 2% 0 0;
  }

  .cube-panel {
    background-size: auto, 25px 25px, 25px 25px, auto;
  }

  .cube-panel-back { left: 20%; width: 66%; }
  .cube-panel-floor { left: 17%; width: 67%; }

  .cube-panel-left {
    left: -2%;
    width: 22%;
  }

  .cube-panel-right {
    left: 86%;
    width: 30%;
  }

  .cube-readout {
    display: none;
  }

  .desktop-copy-break {
    display: none;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2,
  .about-layout h2 {
    font-size: clamp(3.1rem, 17vw, 5.2rem);
  }

  .filter-shell {
    display: block;
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .work-filters,
  .work-archive-section .work-filters {
    display: flex;
    flex-wrap: nowrap;
    margin-inline: -16px;
    padding-inline: 16px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .work-filters button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .filter-count {
    margin-top: 18px;
  }

  .work-grid,
  .insights-archive,
  .project-gallery,
  .role-grid,
  .recognition-grid,
  .world-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    margin-top: 36px;
  }

  .work-card-copy h3 {
    font-size: 2.35rem;
  }

  .capability-strip {
    flex-wrap: nowrap;
    margin-inline: -16px;
    padding-left: 16px;
    overflow-x: auto;
    border-left: 0;
    scroll-snap-type: x mandatory;
  }

  .capability-strip li {
    flex: 0 0 76vw;
    min-width: 0;
    scroll-snap-align: start;
  }

  .capability-strip a {
    min-height: 86px;
  }

  .carousel .insight-card figure {
    aspect-ratio: 16 / 9;
  }

  .carousel-footer {
    align-items: flex-end;
  }

  .text-link {
    max-width: 105px;
    text-align: right;
  }

  .experience-inner ul {
    display: block;
    columns: 2;
  }

  .experience-inner li {
    margin-bottom: 7px;
  }

  .experience-inner li::after {
    display: none;
  }

  .contact-section,
  .contact-inner {
    min-height: 540px;
  }

  [data-pixel-egg] {
    font-size: clamp(4rem, 19vw, 6.2rem);
  }

  .contact-link {
    font-size: 0.92rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-links {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .detail-hero,
  .article-header,
  .profile-hero,
  .archive-hero .page-shell {
    padding-top: calc(var(--header-height) + 70px);
  }

  .breadcrumb {
    margin-bottom: 50px;
  }

  .detail-hero h1,
  .article-header h1,
  .archive-hero h1,
  .profile-hero h1,
  .signal-copy h1 {
    font-size: clamp(3.5rem, 17vw, 6.5rem);
  }

  .detail-meta,
  .article-meta {
    display: grid;
  }

  .detail-meta span::after,
  .article-meta > *::after {
    display: none;
  }

  .project-record h2,
  .profile-section h2,
  .other-worlds h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .project-gallery {
    gap: 6px;
  }

  .detail-pagination {
    grid-template-columns: 1fr;
  }

  .detail-pagination a {
    min-height: 150px;
  }

  .detail-pagination a:last-child {
    text-align: left;
  }

  .article-shell {
    width: 100%;
    padding-inline: 16px;
  }

  .article-copy {
    line-height: 1.7;
  }

  .article-gallery {
    grid-template-columns: 1fr;
  }

  .timeline li,
  .credential-list li {
    grid-template-columns: 1fr;
  }

  .timeline h3,
  .timeline p,
  .credential-list strong,
  .credential-list small {
    grid-column: 1;
  }

  .profile-links {
    align-items: flex-start;
  }

  .profile-links .button {
    flex-basis: 100%;
  }

  .world-grid > a {
    min-height: 330px;
  }

  .journal-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (hover: none), (pointer: coarse) {
  .work-card img,
  .insight-card img {
    filter: saturate(1) brightness(1) contrast(1.02);
  }

  .work-card a:hover img,
  .insight-card a:hover img {
    transform: none;
  }
}

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

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

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

  .work-card a:hover img,
  .work-card a:focus-visible img,
  .work-card:focus-within img,
  .insight-card a:hover img,
  .insight-card a:focus-visible img {
    transform: none;
  }

  .carousel-track {
    will-change: auto;
  }
}
