@property --scene-progress {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

:root {
  color-scheme: light;
  --paper: #ece9df;
  --paper-raised: #f5f2e9;
  --ink: #080a09;
  --ink-soft: #252824;
  --muted: #62665f;
  --line: rgba(8, 10, 9, 0.28);
  --line-strong: #080a09;
  --acid: #d7ff2f;
  --acid-soft: #e5ff79;
  --acid-wash: #d7ff2f;
  --blue: #2147ff;
  --blue-dark: #1533c9;
  --dark: #080a09;
  --dark-raised: #111411;
  --on-dark: #ece9df;
  --on-dark-muted: #aaada5;
  --font-sans:
    -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  --font-display:
    "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue Condensed",
    "Helvetica Neue", Arial, sans-serif;
  --font-micro:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --shadow-sm: none;
  --shadow-lg: none;
  --scene-progress: 0;
  --header-height: 4.25rem;
  --shell: 88rem;
  --gutter: clamp(1.5rem, 3vw, 3rem);
  --ease-kinetic: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-padding-top: calc(var(--header-height) + 1rem);
  background: var(--ink);
}

body {
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  letter-spacing: -0.016em;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-stretch: condensed;
  font-style: normal;
  font-weight: 700;
}

.shell {
  width: min(calc(100% - (2 * var(--gutter))), var(--shell));
}

:focus-visible {
  border-radius: 0;
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.skip-link {
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--font-micro);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-progress {
  top: auto;
  bottom: 0;
  height: 2px;
}

.scroll-progress span {
  background: var(--acid);
}

/* Self-contained, non-blocking boot sequence. */
.boot-sequence {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: var(--gutter);
  background: var(--ink);
  color: var(--on-dark);
  opacity: 1;
  pointer-events: none;
  animation: kinetic-boot-exit 400ms var(--ease-kinetic) 850ms forwards;
}

.boot-sequence::before,
.boot-sequence::after {
  content: "";
  position: absolute;
  background: rgba(236, 233, 223, 0.2);
}

.boot-sequence::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  animation: kinetic-line-in 700ms var(--ease-kinetic) 100ms forwards;
}

.boot-sequence::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: scaleY(0);
  transform-origin: top;
  animation: kinetic-line-in 700ms var(--ease-kinetic) 180ms forwards;
}

.boot-frame {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 58rem);
  min-height: min(30rem, calc(100svh - (2 * var(--gutter))));
  grid-template-rows: auto 1fr auto;
  border: 1px solid rgba(236, 233, 223, 0.42);
  padding: clamp(1rem, 2vw, 1.75rem);
  background: var(--ink);
  transform: translateY(1.5rem);
  opacity: 0;
  animation: kinetic-frame-in 620ms var(--ease-kinetic) 120ms forwards;
}

.boot-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(236, 233, 223, 0.62);
  font-family: var(--font-micro);
  font-size: clamp(0.58rem, 0.8vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.boot-title {
  align-self: center;
  margin: 0;
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 9.5rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.74;
  text-transform: uppercase;
}

.boot-title span {
  display: block;
  color: var(--acid);
}

.boot-meter {
  display: grid;
  grid-template-columns: auto minmax(3rem, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: rgba(236, 233, 223, 0.58);
  font-family: var(--font-micro);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.boot-meter > span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  animation: kinetic-meter 850ms cubic-bezier(0.65, 0, 0.35, 1) 120ms forwards;
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(236, 233, 223, 0.25);
  background: rgba(8, 10, 9, 0.96);
  color: var(--on-dark);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  grid-template-columns: minmax(15rem, 1fr) auto minmax(15rem, 1fr);
  gap: clamp(1rem, 2.5vw, 3rem);
}

.brand {
  min-height: 2.75rem;
  gap: 0.7rem;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(236, 233, 223, 0.55);
  border-radius: 0;
  background: transparent;
  color: var(--acid);
  font-family: var(--font-micro);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.brand-copy {
  gap: 0.08rem;
}

.brand-copy strong {
  color: var(--on-dark);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.brand-copy small {
  color: rgba(236, 233, 223, 0.55);
  font-family: var(--font-micro);
  font-size: 0.57rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-nav {
  gap: 0;
}

.primary-nav a,
.header-cta {
  min-height: 2.75rem;
  border-left: 1px solid rgba(236, 233, 223, 0.18);
  padding: 0.55rem clamp(0.7rem, 1.2vw, 1rem);
  color: rgba(236, 233, 223, 0.8);
  font-family: var(--font-micro);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.primary-nav a:last-child {
  border-right: 1px solid rgba(236, 233, 223, 0.18);
}

.primary-nav a::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--acid);
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--on-dark);
}

.header-cta {
  justify-self: end;
  border: 1px solid var(--acid);
  border-radius: 0;
  background: var(--acid);
  color: var(--ink);
  padding-inline: 1rem;
  transition: transform 180ms var(--ease-kinetic);
}

.header-cta:hover {
  background: var(--acid);
  color: var(--ink);
  transform: translate(-3px, -3px);
}

/* Full-viewport black hero with an editorial image field. */
.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  margin: 0;
  padding: clamp(4.5rem, 8vh, 7.5rem)
    max(var(--gutter), calc((100vw - var(--shell)) / 2))
    clamp(11.5rem, 22vh, 14rem);
  background: var(--ink);
  color: var(--on-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(236, 233, 223, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 233, 223, 0.08) 1px, transparent 1px);
  background-size:
    25vw 100%,
    25vw 100%;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  grid-column: 1 / span 8;
  align-self: center;
  padding-block: 1rem;
}

.hero-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: min(100%, 52rem);
  margin: clamp(2rem, 5vh, 4.5rem) 0 0;
  border-top: 1px solid rgba(236, 233, 223, 0.34);
  padding-top: 0.65rem;
  color: rgba(236, 233, 223, 0.62);
  font-family: var(--font-micro);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow {
  max-width: 55rem;
  margin-bottom: 1.1rem;
  color: var(--acid);
}

.hero .status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0;
  background: var(--acid);
  box-shadow: none;
}

.eyebrow,
.section-kicker {
  font-family: var(--font-micro);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.095em;
  line-height: 1.45;
  text-transform: uppercase;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--muted);
}

.section-kicker::before {
  content: "";
  width: 1.7rem;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 10.7ch;
  color: var(--on-dark);
  font-size: clamp(4.75rem, 8.1vw, 8.8rem);
  font-weight: 800;
  letter-spacing: -0.078em;
  line-height: 0.79;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--acid);
  font-style: normal;
  font-weight: inherit;
}

.hero-lede {
  max-width: 42rem;
  margin-top: 1.65rem;
  color: rgba(236, 233, 223, 0.76);
  font-size: clamp(0.98rem, 1.25vw, 1.14rem);
  line-height: 1.58;
}

.specialisms {
  max-width: 44rem;
  gap: 0;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(236, 233, 223, 0.25);
  border-bottom: 1px solid rgba(236, 233, 223, 0.25);
}

.specialisms li {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  border: 0;
  border-right: 1px solid rgba(236, 233, 223, 0.25);
  border-radius: 0;
  padding: 0.55rem 0.85rem;
  background: transparent;
  color: rgba(236, 233, 223, 0.78);
  font-family: var(--font-micro);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.specialisms li:first-child {
  border-left: 1px solid rgba(236, 233, 223, 0.25);
}

.hero-actions {
  margin-top: 1.75rem;
}

.button {
  position: relative;
  min-height: 3rem;
  overflow: hidden;
  border-radius: 0;
  font-family: var(--font-micro);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease-kinetic);
}

.button:hover {
  transform: translate(-3px, -3px);
}

.button-primary {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
  box-shadow: none;
}

.button-primary:hover {
  background: var(--acid);
}

.button-secondary {
  border-color: rgba(236, 233, 223, 0.55);
  color: var(--on-dark);
}

.button-secondary:hover {
  background: var(--on-dark);
  color: var(--ink);
}

.hero-context {
  max-width: 40rem;
  margin-top: 1.05rem;
  color: rgba(236, 233, 223, 0.52);
  font-family: var(--font-micro);
  font-size: 0.62rem;
  letter-spacing: 0.045em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-showcase {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(55vw, 58rem);
  max-width: none;
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  aspect-ratio: auto;
  border: 0;
  border-left: 1px solid rgba(236, 233, 223, 0.22);
  border-radius: 0;
  background: #161a16;
  box-shadow: none;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      var(--ink) 0%,
      rgba(8, 10, 9, 0.76) 16%,
      transparent 54%
    ),
    linear-gradient(0deg, var(--ink) 0%, transparent 34%);
  pointer-events: none;
}

.hero-art::after {
  inset: 0;
  z-index: 3;
  border-radius: 0;
  background:
    linear-gradient(
      90deg,
      var(--ink) 0%,
      rgba(8, 10, 9, 0.76) 16%,
      transparent 54%
    ),
    linear-gradient(0deg, var(--ink) 0%, transparent 34%),
    linear-gradient(135deg, rgba(33, 71, 255, 0.12), transparent 52%);
  box-shadow: inset 0 0 0 1px rgba(236, 233, 223, 0.08);
  pointer-events: none;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.76) contrast(1.14) brightness(0.76);
  transform: scale(1.045);
}

.hero-art figcaption,
.approach-art figcaption {
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  gap: 0;
}

.hero-art figcaption {
  top: calc(var(--header-height) + 1rem);
  bottom: auto;
  justify-content: flex-end;
}

.hero-art figcaption span,
.hero-art figcaption small,
.approach-art figcaption span,
.approach-art figcaption small,
.visual-caption span,
.visual-caption small {
  min-height: 2.25rem;
  border: 1px solid rgba(236, 233, 223, 0.32);
  border-radius: 0;
  padding: 0.5rem 0.65rem;
  background: rgba(8, 10, 9, 0.88);
  color: var(--on-dark);
  font-family: var(--font-micro);
  font-size: 0.57rem;
  font-weight: 650;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-art figcaption small,
.approach-art figcaption small,
.visual-caption small {
  border-left: 0;
  background: var(--acid);
  color: var(--ink);
}

.proof-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: grid;
  width: 100vw;
  grid-template-columns: minmax(8rem, 0.55fr) minmax(0, 4fr);
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(236, 233, 223, 0.32);
  border-radius: 0;
  padding: 0 max(var(--gutter), calc((100vw - var(--shell)) / 2));
  background: rgba(8, 10, 9, 0.96);
  color: var(--on-dark);
  box-shadow: none;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.proof-panel::before {
  display: none;
}

.proof-panel-top {
  min-height: 8.75rem;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(236, 233, 223, 0.24);
  padding: 1rem 1rem 1rem 0;
  color: rgba(236, 233, 223, 0.58);
  font-family: var(--font-micro);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.preview-chip {
  border: 1px solid rgba(236, 233, 223, 0.3);
  border-radius: 0;
  padding: 0.38rem 0.5rem;
  color: var(--acid);
  font-size: 0.55rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.metric-card,
.metric-card.metric-card-ink,
.metric-card.metric-card-acid {
  min-height: 8.75rem;
  justify-content: space-between;
  border: 0;
  border-right: 1px solid rgba(236, 233, 223, 0.24);
  border-radius: 0;
  padding: 0.85rem 1rem;
  background: transparent;
  color: var(--on-dark);
}

.metric-card strong {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.metric-card > span {
  margin-top: auto;
  color: var(--on-dark);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.metric-card small,
.metric-card-acid small {
  margin-top: 0.35rem;
  color: rgba(236, 233, 223, 0.48);
  font-family: var(--font-micro);
  font-size: 0.51rem;
  letter-spacing: 0.035em;
  line-height: 1.3;
  text-transform: uppercase;
}

.proof-note {
  display: none;
}

/* Continuous product-context ticker. */
.context-strip {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
}

.context-strip-inner {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 3.75rem;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
}

.context-strip-inner > span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: clamp(10rem, 15vw, 14rem);
  border-right: 1px solid var(--ink);
  padding: 0.7rem var(--gutter);
  background: var(--blue);
  color: #fff;
  font-family: var(--font-micro);
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.context-track {
  display: flex;
  min-width: 0;
  overflow: hidden;
}

.context-track ul,
.context-strip .context-track ul {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: max-content;
  animation: kinetic-ticker 24s linear infinite;
}

.context-strip li {
  display: inline-flex;
  align-items: center;
  min-height: 3.7rem;
  border: 0;
  border-right: 1px solid rgba(8, 10, 9, 0.35);
  border-radius: 0;
  padding: 0.7rem clamp(1.4rem, 2.5vw, 2.6rem);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.context-strip li:not(:last-child)::after {
  content: none;
  display: none;
}

/* Shared editorial section language. */
.section {
  padding-block: clamp(6rem, 10vw, 10rem);
}

.section-heading {
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 8rem);
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  color: var(--blue);
}

.section-heading h2,
.about-copy h2,
.contact-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-transform: uppercase;
}

.section-heading > h2 + p {
  align-self: end;
  max-width: 35rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.visual-disclaimer {
  grid-column: 1 / -1;
  margin-top: 0;
  border-top: 1px solid var(--line);
  padding-top: 0.65rem;
  color: var(--muted);
  font-family: var(--font-micro);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* Desktop scene stack. Each card becomes a full-screen editorial chapter. */
.experience-section {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--shell)) / 2));
  background: var(--paper);
}

.experience-section > .section-heading {
  max-width: var(--shell);
  margin-inline: auto;
}

.experience-list {
  width: min(100%, var(--shell));
  gap: 1px;
  margin-inline: auto;
  background: var(--ink);
}

.experience-card {
  --scene-progress: 0;
  position: relative;
  display: grid;
  min-height: min(53rem, calc(100svh - var(--header-height)));
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  box-shadow: none;
  color: var(--ink);
  opacity: clamp(0.86, calc(0.86 + (var(--scene-progress) * 0.14)), 1);
  transition: opacity 220ms linear;
}

.experience-card:hover {
  box-shadow: none;
}

.experience-card:nth-child(even) {
  border-color: rgba(236, 233, 223, 0.38);
  background: var(--ink);
  color: var(--on-dark);
}

.experience-card:nth-child(even) .experience-copy {
  grid-column: 2;
  grid-row: 1;
}

.experience-card:nth-child(even) .experience-visual {
  grid-column: 1;
  grid-row: 1;
  border-right: 1px solid rgba(236, 233, 223, 0.3);
  border-left: 0;
}

.experience-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4.75rem);
}

.card-meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.4rem 1rem;
  margin-bottom: clamp(2.5rem, 7vh, 5rem);
  border-top: 1px solid currentColor;
  padding-top: 0.6rem;
  color: var(--muted);
  font-family: var(--font-micro);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.065em;
  line-height: 1.35;
  text-transform: uppercase;
}

.card-meta span {
  min-width: 0;
}

.card-meta span:first-child {
  display: inline-flex;
  grid-row: 1 / span 3;
  align-items: flex-start;
  justify-content: flex-start;
  width: 2.5rem;
  min-height: auto;
  border: 0;
  border-radius: 0;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.card-meta span:not(:first-child) {
  min-height: auto;
}

.card-meta span:not(:first-child, :last-child)::after {
  display: none;
}

.experience-card:nth-child(even) .card-meta,
.experience-card-dark .card-meta {
  color: rgba(236, 233, 223, 0.56);
}

.experience-card:nth-child(even) .card-meta span:first-child {
  color: var(--acid);
}

.experience-copy h3 {
  max-width: 13ch;
  color: inherit;
  font-family:
    "Avenir Next Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(3rem, 4.7vw, 5.25rem);
  font-synthesis: none;
  font-weight: 700;
  letter-spacing: -0.072em;
  line-height: 0.84;
  text-transform: uppercase;
}

.experience-copy > p:not(.responsible-note) {
  max-width: 37rem;
  margin-top: 1.45rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.experience-card:nth-child(even) .experience-copy > p:not(.responsible-note),
.experience-card-dark .experience-copy > p:not(.responsible-note) {
  color: rgba(236, 233, 223, 0.68);
}

.tag-list {
  gap: 0;
  margin-top: 1.4rem;
}

.tag-list li {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 0.4rem 0.55rem;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-micro);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
}

.tag-list li + li {
  border-left: 0;
}

.experience-card:nth-child(even) .tag-list li,
.experience-card-dark .tag-list li {
  border-color: rgba(236, 233, 223, 0.45);
  background: transparent;
  color: var(--on-dark);
}

.responsible-note {
  margin-top: 1.2rem;
  color: var(--muted);
  font-family: var(--font-micro);
  font-size: 0.55rem;
  letter-spacing: 0.045em;
  line-height: 1.4;
  text-transform: uppercase;
}

.experience-visual {
  position: relative;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border-left: 1px solid var(--ink);
  padding: 0;
  background: #d4d0c5;
}

.visual-image::after {
  height: 52%;
  background: linear-gradient(180deg, transparent, rgba(8, 10, 9, 0.52));
}

.visual-image img {
  filter: saturate(0.82) contrast(1.08);
  transform: scale(calc(1.04 - (var(--scene-progress) * 0.04)));
  transform-origin: center;
  transition: transform 550ms var(--ease-kinetic);
}

.experience-card.is-active .visual-image img {
  transform: scale(1);
}

figure[data-readout]::before {
  content: attr(data-readout);
  position: absolute;
  top: 0.85rem;
  right: auto;
  bottom: auto;
  left: 0.85rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  max-width: calc(100% - 1.7rem);
  border: 1px solid rgba(236, 233, 223, 0.48);
  padding: 0.45rem 0.6rem;
  background: rgba(8, 10, 9, 0.86);
  color: var(--acid);
  font-family: var(--font-micro);
  font-size: 0.54rem;
  font-weight: 650;
  letter-spacing: 0.075em;
  line-height: 1.25;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.visual-caption {
  inset: auto 0.85rem 0.85rem;
  justify-content: flex-start;
  gap: 0;
}

.visual-outcome,
.visual-outcome-top {
  top: auto;
  right: 0.85rem;
  bottom: 4.35rem;
  left: auto;
  width: min(13rem, calc(100% - 1.7rem));
  border: 1px solid rgba(236, 233, 223, 0.42);
  border-radius: 0;
  padding: 1rem;
  background: rgba(8, 10, 9, 0.88);
  color: var(--on-dark);
  box-shadow: none;
}

.visual-outcome strong,
.visual-outcome-top strong {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.75;
}

.visual-outcome span {
  color: var(--on-dark);
  font-family: var(--font-micro);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Dark capability block and oversized kinetic headline. */
.capabilities-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(236, 233, 223, 0.3);
  padding-block: clamp(6rem, 10vw, 9rem);
  background: var(--ink);
  color: var(--on-dark);
}

.capabilities-section::before {
  content: "";
  position: absolute;
  top: -20vw;
  right: -14vw;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(215, 255, 47, 0.32);
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
}

.capabilities-section .shell {
  position: relative;
  z-index: 1;
}

.capabilities-section .section-heading {
  grid-template-columns: 1fr;
  align-items: start;
  margin-bottom: clamp(4rem, 7vw, 6rem);
}

.capabilities-section .section-heading .eyebrow {
  color: var(--acid);
}

.capabilities-section .section-heading h2 {
  max-width: 12ch;
  color: var(--on-dark);
}

.capability-marquee {
  width: max-content;
  margin: 0 0 clamp(3rem, 6vw, 6rem);
  color: var(--acid);
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.7;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-4vw);
  animation: kinetic-capability-drift 16s ease-in-out infinite alternate;
}

.capability-grid {
  border-top: 1px solid rgba(236, 233, 223, 0.35);
  border-bottom: 1px solid rgba(236, 233, 223, 0.35);
}

.capability-grid article {
  min-height: 20rem;
  border-right: 1px solid rgba(236, 233, 223, 0.28);
  padding: 1.25rem;
  background: transparent;
}

.capability-grid article:last-child {
  border-right: 0;
}

.capability-grid article > span {
  color: var(--acid);
  font-family: var(--font-micro);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
}

.capability-grid h3 {
  min-height: auto;
  margin: clamp(5rem, 9vw, 8rem) 0 0.85rem;
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.85rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
  transition: transform 260ms var(--ease-kinetic);
}

.capability-grid article:hover h3 {
  transform: translateY(-0.4rem);
}

.capability-grid p {
  max-width: 24rem;
  color: rgba(236, 233, 223, 0.6);
  font-size: 0.86rem;
  line-height: 1.55;
}

/* Process as a technical table. */
.approach-section {
  width: min(calc(100% - (2 * var(--gutter))), var(--shell));
}

.approach-section .section-heading {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.approach-art {
  position: relative;
  aspect-ratio: 21 / 8;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  border: 1px solid var(--ink);
  border-radius: 0;
  background: #d2cec2;
  box-shadow: none;
}

.approach-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 10, 9, 0.62), transparent 58%);
  pointer-events: none;
}

.approach-art img {
  filter: saturate(0.72) contrast(1.1);
  transform: scale(calc(1.025 - (var(--scene-progress) * 0.025)));
}

.approach-art figcaption {
  z-index: 3;
}

.approach-list {
  border-top: 1px solid var(--ink);
}

.approach-list li {
  position: relative;
  grid-template-columns: minmax(4rem, 0.14fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid var(--ink);
  padding-block: clamp(1.5rem, 3vw, 2.4rem);
}

.approach-list li::after {
  content: "↗";
  position: absolute;
  top: 1.4rem;
  right: 0;
  color: var(--blue);
  font-family: var(--font-micro);
  font-size: 0.72rem;
}

.approach-list li > span {
  color: var(--blue);
  font-family: var(--font-micro);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.approach-list li > div {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
  padding-right: 2.5rem;
}

.approach-list h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.1vw, 3.35rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.approach-list p {
  align-self: start;
  max-width: 38rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Editorial biography split. */
.about-section {
  position: relative;
  width: min(calc(100% - (2 * var(--gutter))), var(--shell));
  grid-template-columns: minmax(18rem, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 8rem);
  border-top: 1px solid var(--ink);
}

.about-media {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  box-shadow: none;
}

.portrait-frame::before {
  content: "PROFILE / 20+ YRS";
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  border: 1px solid rgba(236, 233, 223, 0.45);
  padding: 0.45rem 0.55rem;
  background: rgba(8, 10, 9, 0.82);
  color: var(--acid);
  font-family: var(--font-micro);
  font-size: 0.52rem;
  font-weight: 650;
  letter-spacing: 0.07em;
}

.portrait-frame::after {
  background: linear-gradient(180deg, transparent 60%, rgba(8, 10, 9, 0.66));
}

.portrait-frame img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transform: scale(calc(1.025 - (var(--scene-progress) * 0.025)));
}

.portrait-frame > span {
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  min-height: 2.5rem;
  border: 1px solid rgba(236, 233, 223, 0.5);
  border-radius: 0;
  padding: 0.55rem 0.7rem;
  background: rgba(8, 10, 9, 0.85);
  color: var(--on-dark);
  font-family: var(--font-micro);
  font-size: 0.56rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-facts {
  gap: 0;
  margin-top: -1px;
  border: 1px solid var(--ink);
  background: transparent;
}

.about-facts span {
  min-height: 2.75rem;
  padding: 0.65rem 0.75rem;
  color: var(--ink-soft);
  font-family: var(--font-micro);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-facts span:not(:last-child) {
  border-bottom: 1px solid var(--ink);
}

.about-copy {
  padding-top: clamp(2rem, 5vw, 5rem);
}

.about-copy .eyebrow {
  color: var(--blue);
}

.about-copy h2 {
  max-width: 12ch;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.about-copy > p:not(.eyebrow, .about-earlier) {
  max-width: 48rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.13rem);
  line-height: 1.62;
}

.about-earlier {
  margin-top: 2.25rem;
  border-left: 3px solid var(--blue);
  padding-left: 1rem;
  color: var(--muted);
  font-family: var(--font-micro);
  font-size: 0.66rem;
  letter-spacing: 0.025em;
  line-height: 1.55;
  text-transform: uppercase;
}

.document-links {
  gap: 0;
  margin-top: 2.25rem;
}

.document-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  border: 1px solid var(--ink);
  padding: 0.6rem 0.8rem;
  font-family: var(--font-micro);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms var(--ease-kinetic);
}

.document-links a + a {
  border-left: 0;
}

.document-links a:hover {
  transform: translateY(-3px);
}

/* Cobalt finale. */
.contact-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  background: var(--blue);
  color: #fff;
}

.contact-section::before {
  content: "DW";
  position: absolute;
  right: -0.04em;
  bottom: -0.25em;
  color: rgba(8, 10, 9, 0.14);
  font-family: var(--font-display);
  font-size: min(48vw, 42rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.7;
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  min-height: min(52rem, 82svh);
  grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.5fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  padding-block: clamp(5rem, 10vw, 9rem);
}

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

.contact-inner h2 {
  max-width: 10ch;
  color: #fff;
  font-size: clamp(4rem, 8.5vw, 9rem);
  line-height: 0.77;
}

.contact-inner h2 span {
  display: block;
  color: var(--acid);
}

.contact-copy {
  align-self: end;
  padding-bottom: 0.35rem;
}

.contact-copy > p:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.58;
}

.contact-actions {
  gap: 0;
  margin-top: 1.5rem;
}

.button-light,
.button-ghost {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--on-dark);
}

.button-ghost {
  border-left-color: rgba(236, 233, 223, 0.35);
}

.button-light:hover,
.button-ghost:hover {
  background: var(--ink);
  color: var(--on-dark);
}

/* One interaction model for both contact CTAs. */
.contact-actions .contact-button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--on-dark);
  box-shadow: none;
  transform: translate3d(0, 0, 0);
  transition: transform 180ms var(--ease-kinetic);
}

.contact-actions .contact-button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--on-dark);
  transform: translate3d(-3px, -3px, 0);
}

.contact-actions .contact-button:focus-visible {
  outline-color: var(--on-dark);
}

.privacy-note {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-micro);
  font-size: 0.53rem;
  letter-spacing: 0.045em;
  line-height: 1.45;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid rgba(236, 233, 223, 0.28);
  background: var(--ink);
  color: var(--on-dark);
}

.footer-inner {
  min-height: 5.5rem;
}

.footer-inner p,
.footer-inner a {
  color: rgba(236, 233, 223, 0.6);
  font-family: var(--font-micro);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.footer-inner .status-dot {
  border-radius: 0;
  background: var(--acid);
  box-shadow: none;
}

/* Kinetic state: progress is supplied as a normalized 0–1 custom property. */
[data-kinetic] {
  --scene-progress: 0;
}

html.reveal-ready [data-reveal] {
  transform: translateY(2.5rem);
  opacity: 0;
  transition:
    transform 760ms var(--ease-kinetic),
    opacity 520ms linear;
}

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

@media (min-width: 61rem) {
  .experience-card {
    position: sticky;
    top: var(--header-height);
  }

  .experience-card:nth-child(1) {
    z-index: 1;
  }

  .experience-card:nth-child(2) {
    z-index: 2;
  }

  .experience-card:nth-child(3) {
    z-index: 3;
  }

  .experience-card:nth-child(4) {
    z-index: 4;
  }

  .experience-card:nth-child(5) {
    z-index: 5;
  }
}

@media (max-width: 74rem) {
  :root {
    --gutter: clamp(1.25rem, 2.5vw, 2rem);
  }

  .header-inner {
    grid-template-columns: minmax(12rem, 1fr) auto minmax(8rem, 1fr);
  }

  .brand-copy small {
    display: none;
  }

  .hero-copy {
    grid-column: 1 / span 9;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 8.5vw, 7.4rem);
  }

  .hero-showcase {
    width: 57vw;
  }

  .experience-copy h3 {
    font-size: clamp(2.7rem, 4.9vw, 4.6rem);
  }

  .capability-grid article {
    min-height: 18rem;
  }
}

@media (max-width: 60.99rem) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .primary-nav a {
    padding-inline: 0.62rem;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: clamp(4.5rem, 10vw, 7rem);
    padding-bottom: 0;
  }

  .hero-copy {
    max-width: 52rem;
    padding-bottom: clamp(4rem, 8vw, 6rem);
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-showcase {
    position: relative;
    inset: auto;
    width: calc(
      100% + (2 * max(var(--gutter), calc((100vw - var(--shell)) / 2)))
    );
    height: auto;
    margin-left: calc(
      -1 * max(var(--gutter), calc((100vw - var(--shell)) / 2))
    );
  }

  .hero-art {
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 9;
    border: 0;
    border-top: 1px solid rgba(236, 233, 223, 0.28);
  }

  .hero-art::before {
    background: linear-gradient(0deg, var(--ink) 0%, transparent 42%);
  }

  .hero-art figcaption {
    top: 1rem;
  }

  .proof-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: minmax(8rem, 0.55fr) minmax(0, 4fr);
  }

  .metric-card,
  .metric-card.metric-card-ink,
  .metric-card.metric-card-acid,
  .proof-panel-top {
    min-height: 8.5rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.3rem;
  }

  .section-heading h2 {
    max-width: 13ch;
  }

  .section-heading > h2 + p {
    max-width: 44rem;
  }

  .experience-list {
    gap: 1.25rem;
    background: transparent;
  }

  .experience-card {
    position: relative;
    top: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    opacity: 1;
  }

  .experience-card:nth-child(even) .experience-copy,
  .experience-card:nth-child(even) .experience-visual {
    grid-column: 1;
  }

  .experience-card:nth-child(even) .experience-copy {
    grid-row: 1;
  }

  .experience-card:nth-child(even) .experience-visual {
    grid-row: 2;
  }

  .experience-copy {
    min-height: 31rem;
  }

  .experience-visual,
  .experience-card:nth-child(even) .experience-visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-top: 1px solid currentColor;
    border-right: 0;
    border-left: 0;
  }

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

  .capability-grid article:nth-child(2) {
    border-right: 0;
  }

  .capability-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(236, 233, 223, 0.28);
  }

  .approach-art {
    aspect-ratio: 16 / 7;
  }

  .approach-list li > div {
    grid-template-columns: minmax(13rem, 0.7fr) minmax(16rem, 1fr);
    gap: 2rem;
  }

  .about-section {
    grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 1.2fr);
    gap: 2.5rem;
  }

  .contact-inner {
    min-height: 42rem;
    grid-template-columns: minmax(0, 1.3fr) minmax(17rem, 0.7fr);
    gap: 3rem;
  }
}

@media (max-width: 48rem) {
  :root {
    --gutter: 1rem;
    --header-height: 7.25rem;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 0.75rem);
  }

  .header-inner {
    display: flex;
    min-height: var(--header-height);
    flex-wrap: wrap;
    gap: 0;
    padding-top: 0.45rem;
  }

  .brand,
  .header-cta {
    margin-bottom: 0.45rem;
  }

  .header-cta {
    margin-left: auto;
  }

  .primary-nav {
    order: 3;
    width: calc(100% + (2 * var(--gutter)));
    margin-inline: calc(-1 * var(--gutter));
    border-top: 1px solid rgba(236, 233, 223, 0.2);
  }

  .primary-nav a {
    flex: 1 1 25%;
    min-height: 2.75rem;
    border-left: 0;
    border-right: 1px solid rgba(236, 233, 223, 0.2);
    padding-inline: 0.25rem;
    font-size: 0.56rem;
  }

  .primary-nav a:last-child {
    border-right: 0;
  }

  .hero {
    padding-top: 3.75rem;
  }

  .hero-index {
    margin-bottom: 2.4rem;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3.65rem, 13.5vw, 6.3rem);
    line-height: 0.81;
  }

  .hero-lede {
    max-width: 37rem;
    font-size: 0.98rem;
  }

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

  .specialisms li {
    border: 0;
    border-right: 1px solid rgba(236, 233, 223, 0.25);
    border-bottom: 1px solid rgba(236, 233, 223, 0.25);
  }

  .specialisms li:nth-child(odd) {
    border-left: 1px solid rgba(236, 233, 223, 0.25);
  }

  .specialisms li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .hero-art {
    aspect-ratio: 4 / 3;
  }

  .proof-panel {
    grid-template-columns: 1fr;
    padding-inline: var(--gutter);
  }

  .proof-panel-top {
    min-height: 3.75rem;
    align-items: center;
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid rgba(236, 233, 223, 0.24);
    padding: 0.65rem 0;
  }

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

  .metric-card,
  .metric-card.metric-card-ink,
  .metric-card.metric-card-acid {
    min-height: 8rem;
    padding-inline: 0.75rem;
  }

  .metric-card:nth-child(2) {
    border-right: 0;
  }

  .metric-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(236, 233, 223, 0.24);
  }

  .context-strip-inner {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    padding-block: 0;
  }

  .context-strip-inner > span {
    min-width: 7.5rem;
    padding-inline: 0.75rem;
  }

  .section,
  .capabilities-section {
    padding-block: 5.5rem;
  }

  .section-heading {
    margin-bottom: 3.5rem;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: clamp(3.25rem, 11vw, 5.3rem);
  }

  .experience-section {
    padding-inline: var(--gutter);
  }

  .experience-copy {
    min-height: 0;
    padding: 2rem 1.35rem 2.25rem;
  }

  .card-meta {
    margin-bottom: 2.5rem;
  }

  .experience-copy h3 {
    font-size: clamp(2.9rem, 9vw, 4.2rem);
  }

  .experience-visual,
  .experience-card:nth-child(even) .experience-visual {
    aspect-ratio: 4 / 3;
  }

  .capability-grid article {
    min-height: 16rem;
  }

  .capability-grid h3 {
    margin-top: 5rem;
  }

  .approach-art {
    aspect-ratio: 4 / 3;
  }

  .approach-list li {
    grid-template-columns: 2.75rem minmax(0, 1fr);
  }

  .approach-list li > div {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-media {
    position: static;
    display: grid;
    grid-template-columns: minmax(13rem, 0.8fr) minmax(12rem, 1fr);
    align-items: end;
    gap: 1rem;
  }

  .about-facts {
    margin-top: 0;
  }

  .about-copy {
    padding-top: 0;
  }

  .contact-inner {
    min-height: 44rem;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 3rem;
  }

  .contact-inner h2 {
    font-size: clamp(4rem, 13vw, 6.5rem);
  }

  .contact-copy {
    max-width: 38rem;
  }
}

@media (max-width: 30rem) {
  :root {
    --gutter: 1rem;
  }

  .brand-copy small {
    display: none;
  }

  .boot-frame {
    min-height: 22rem;
  }

  .boot-title {
    font-size: clamp(3.4rem, 21vw, 5.8rem);
  }

  .hero {
    padding-top: 3.15rem;
  }

  .hero-index {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3.25rem, 16vw, 4.8rem);
    line-height: 0.81;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.55rem;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-art {
    aspect-ratio: 1 / 1.05;
  }

  .hero-art figcaption,
  .approach-art figcaption {
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
  }

  .hero-art figcaption {
    top: auto;
    bottom: 0.65rem;
    justify-content: flex-end;
  }

  .hero-art figcaption small,
  .approach-art figcaption small,
  .visual-caption small {
    display: none;
  }

  .metric-card strong {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .metric-card > span {
    font-size: 0.66rem;
  }

  .context-strip-inner > span {
    display: none;
  }

  .section,
  .capabilities-section {
    padding-block: 4.75rem;
  }

  .section-heading {
    margin-bottom: 3rem;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
  }

  .section-heading > h2 + p {
    font-size: 0.94rem;
  }

  .experience-list {
    gap: 0.85rem;
  }

  .experience-copy {
    padding: 1.65rem 1rem 2rem;
  }

  .experience-copy h3 {
    max-width: 14ch;
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .experience-copy > p:not(.responsible-note) {
    font-size: 0.91rem;
  }

  .tag-list li {
    flex: 1 1 50%;
    min-height: 2.75rem;
    justify-content: center;
    text-align: center;
  }

  .tag-list li + li {
    border-left: 1px solid currentColor;
  }

  .tag-list li:nth-child(even) {
    border-left: 0;
  }

  .tag-list li:nth-child(n + 3) {
    border-top: 0;
  }

  .experience-visual,
  .experience-card:nth-child(even) .experience-visual {
    aspect-ratio: 1 / 1.04;
  }

  figure[data-readout]::before {
    top: 0.65rem;
    left: 0.65rem;
    max-width: calc(100% - 1.3rem);
  }

  .visual-caption {
    inset: auto 0.65rem 0.65rem;
  }

  .visual-outcome,
  .visual-outcome-top {
    right: 0.65rem;
    bottom: 3.75rem;
    width: min(10rem, calc(100% - 1.3rem));
    padding: 0.75rem;
  }

  .visual-outcome strong,
  .visual-outcome-top strong {
    font-size: 3.2rem;
  }

  .capability-marquee {
    font-size: clamp(4rem, 24vw, 7rem);
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid article,
  .capability-grid article:nth-child(3) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(236, 233, 223, 0.28);
    padding: 1.25rem 0.25rem 1.6rem;
  }

  .capability-grid article:last-child {
    border-bottom: 0;
  }

  .capability-grid h3 {
    margin-top: 3.5rem;
    font-size: 2.2rem;
  }

  .approach-art {
    aspect-ratio: 1 / 1.02;
    margin-bottom: 2.75rem;
  }

  .approach-list li {
    grid-template-columns: 2.2rem minmax(0, 1fr);
    gap: 0.55rem;
    padding-block: 1.45rem;
  }

  .approach-list li::after {
    top: 1.25rem;
  }

  .approach-list li > div {
    padding-right: 1.25rem;
  }

  .approach-list h3 {
    font-size: 1.95rem;
  }

  .approach-list p {
    font-size: 0.88rem;
  }

  .about-media {
    display: block;
  }

  .about-facts {
    margin-top: -1px;
  }

  .portrait-frame {
    aspect-ratio: 4 / 4.6;
  }

  .document-links {
    flex-direction: column;
  }

  .document-links a {
    width: 100%;
    justify-content: space-between;
  }

  .document-links a + a {
    border-top: 0;
    border-left: 1px solid var(--ink);
  }

  .contact-inner {
    min-height: 42rem;
    padding-block: 4.75rem;
  }

  .contact-inner h2 {
    font-size: clamp(3.4rem, 16.5vw, 4.7rem);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    justify-items: stretch;
    gap: 0;
    padding-block: 0;
  }

  .footer-inner p {
    margin: 0;
  }

  .footer-inner p:first-child {
    display: flex;
    min-width: 0;
    min-height: 3.75rem;
    align-items: center;
    padding-right: 0.75rem;
  }

  .footer-inner p:nth-child(2) {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 3.75rem;
    align-items: center;
    border-top: 1px solid rgba(236, 233, 223, 0.2);
    padding-block: 0.8rem;
    text-align: left;
  }

  .footer-inner a {
    grid-column: 2;
    grid-row: 1;
    min-height: 3.75rem;
    justify-self: stretch;
    border-left: 1px solid rgba(236, 233, 223, 0.2);
    padding-left: 1rem;
  }
}

@media (max-width: 22rem) {
  :root {
    --gutter: 0.75rem;
  }

  .brand-copy {
    display: none;
  }

  .header-cta {
    padding-inline: 0.65rem;
    font-size: 0.55rem;
  }

  .primary-nav a {
    font-size: 0.51rem;
    letter-spacing: 0.035em;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-lede {
    font-size: 0.92rem;
  }

  .specialisms li {
    padding-inline: 0.5rem;
    font-size: 0.53rem;
  }

  .metric-card,
  .metric-card.metric-card-ink,
  .metric-card.metric-card-acid {
    min-height: 7.4rem;
    padding: 0.65rem 0.55rem;
  }

  .metric-card strong {
    font-size: 2rem;
  }

  .metric-card small {
    font-size: 0.46rem;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: 2.75rem;
  }

  .experience-copy h3 {
    font-size: 2.45rem;
  }

  .card-meta {
    gap: 0.35rem 0.6rem;
  }

  .tag-list li {
    font-size: 0.49rem;
  }

  .contact-inner h2 {
    font-size: 3.25rem;
  }
}

@media (min-width: 61rem) and (max-height: 48rem) {
  .hero {
    min-height: 44rem;
    padding-top: 3.5rem;
  }

  .experience-card {
    position: relative;
    top: auto;
    min-height: 44rem;
  }

  .about-media {
    position: static;
  }

  .contact-inner {
    min-height: 42rem;
  }
}

@media (orientation: landscape) and (max-width: 60.99rem) and (max-height: 35rem) {
  :root {
    --header-height: 4.25rem;
  }

  .header-inner {
    display: grid;
    min-height: var(--header-height);
    grid-template-columns: auto 1fr auto;
    padding-top: 0;
  }

  .brand,
  .header-cta {
    margin-bottom: 0;
  }

  .primary-nav {
    order: initial;
    width: auto;
    margin-inline: 0;
    border-top: 0;
  }

  .primary-nav a {
    flex: 0 1 auto;
    padding-inline: 0.45rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-copy {
    padding-bottom: 3.5rem;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3.2rem, 8vw, 4.8rem);
  }

  .hero-art {
    aspect-ratio: 16 / 7;
  }

  .contact-inner {
    min-height: 34rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .boot-sequence {
    display: none;
  }

  .context-track ul,
  .context-strip .context-track ul,
  .capability-marquee {
    animation: none;
    transform: none;
  }

  .context-track ul[aria-hidden="true"] {
    display: none;
  }

  .experience-card,
  .visual-image img,
  .approach-art img,
  .portrait-frame img,
  html.reveal-ready [data-reveal] {
    transform: none !important;
    opacity: 1 !important;
  }
}

@media print {
  .boot-sequence,
  .context-track ul[aria-hidden="true"] {
    display: none;
  }

  .hero {
    background: #fff;
    color: #000;
  }

  .hero h1,
  .hero h1 span,
  .hero-lede,
  .hero-context,
  .hero .eyebrow {
    color: #000;
  }

  .experience-card {
    position: relative;
    top: auto;
    min-height: auto;
    break-inside: avoid;
  }
}

/* Keep the technical microtype legible without losing the reference aesthetic. */
.primary-nav a,
.header-cta,
.button,
.document-links a {
  font-size: 0.75rem;
}

.boot-meta,
.boot-meter,
.brand-mark,
.brand-copy small,
.hero-index,
.eyebrow,
.section-kicker,
.specialisms li,
.hero-context,
.hero-art figcaption span,
.hero-art figcaption small,
.approach-art figcaption span,
.approach-art figcaption small,
.visual-caption span,
.visual-caption small,
.proof-panel-top,
.preview-chip,
.metric-card small,
.context-strip-inner > span,
.visual-disclaimer,
.card-meta,
.tag-list li,
.responsible-note,
figure[data-readout]::before,
.visual-outcome span,
.capability-grid article > span,
.approach-list li > span,
.portrait-frame::before,
.portrait-frame > span,
.about-facts span,
.about-earlier,
.privacy-note,
.footer-inner p,
.footer-inner a {
  font-size: 0.7rem;
}

.boot-meter small {
  font-size: inherit;
}

.metric-card > span {
  font-size: 0.75rem;
}

/* Simplified masthead: one message, one action, and a quieter visual field. */
:root {
  --header-height: 4.75rem;
}

.site-header {
  border-bottom-color: rgba(236, 233, 223, 0.12);
}

.header-inner {
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  gap: clamp(2rem, 4vw, 5rem);
}

.brand {
  gap: 0.7rem;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(236, 233, 223, 0.55);
  color: var(--acid);
  font-family: var(--font-micro);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: normal;
}

.brand-copy strong {
  font-size: 0.76rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.brand-copy small {
  font-family: var(--font-micro);
  font-size: 0.57rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-nav {
  justify-self: end;
  gap: clamp(1rem, 2vw, 2rem);
}

.primary-nav a,
.header-cta {
  min-height: 2.5rem;
  border: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.025em;
}

.primary-nav a:last-child {
  border-right: 0;
}

.primary-nav a::after {
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
}

.header-cta {
  justify-self: end;
  gap: 0.45rem;
  background: transparent;
  color: var(--on-dark);
}

.header-cta:hover {
  background: transparent;
  color: var(--acid);
  transform: none;
}

.header-cta span {
  color: var(--acid);
}

.hero {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.72fr);
  align-items: center;
  column-gap: clamp(3rem, 6vw, 7rem);
  padding: clamp(4.5rem, 9vh, 7rem)
    max(var(--gutter), calc((100vw - var(--shell)) / 2));
  background: #000;
}

.hero::before {
  display: none;
}

.hero-copy {
  grid-column: auto;
  max-width: 48rem;
  padding: 0;
}

.hero .eyebrow {
  margin-bottom: 1.25rem;
  color: rgba(236, 233, 223, 0.62);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.055em;
}

.hero h1 {
  max-width: none;
  font-size: clamp(4.75rem, 7.5vw, 8rem);
  line-height: 0.84;
}

.hero h1 span {
  white-space: nowrap;
}

.hero-lede {
  max-width: 40rem;
  margin-top: 1.75rem;
  color: rgba(236, 233, 223, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}

.specialisms {
  display: flex;
  max-width: 42rem;
  flex-wrap: wrap;
  gap: 0.55rem 1.5rem;
  margin-top: 1.4rem;
  border: 0;
}

.specialisms li,
.specialisms li:first-child {
  min-height: auto;
  border: 0;
  padding: 0;
  color: rgba(236, 233, 223, 0.58);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-actions .button-primary {
  min-height: 3.25rem;
  border: 0;
  padding-inline: 1.25rem;
}

.hero-showcase {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: 35rem;
  height: auto;
  justify-self: end;
}

.hero-art {
  position: relative;
  inset: auto;
  aspect-ratio: 4 / 5;
  border: 0;
  background: #000;
}

.hero-art::before {
  background: linear-gradient(90deg, rgba(8, 10, 9, 0.24), transparent 34%);
}

.hero-art::after {
  display: none;
}

.hero-art img {
  object-position: center;
  filter: saturate(0.82) contrast(1.04) brightness(0.88);
  transform: none;
}

@media (max-width: 60.99rem) {
  .hero {
    display: grid;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: clamp(3rem, 7vw, 4.5rem);
    padding-top: clamp(4.5rem, 9vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
  }

  .hero-copy {
    max-width: 48rem;
    padding-bottom: 0;
  }

  .hero-showcase {
    width: 100%;
    max-width: 48rem;
    margin-left: 0;
    justify-self: start;
  }

  .hero-art {
    aspect-ratio: 16 / 10;
    border: 0;
  }
}

@media (max-width: 48rem) {
  :root {
    --header-height: 4.25rem;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 0.75rem);
  }

  .header-inner {
    display: grid;
    min-height: var(--header-height);
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding-top: 0;
  }

  .brand,
  .header-cta {
    margin-bottom: 0;
  }

  .primary-nav {
    display: none;
  }

  .header-cta {
    margin-left: 0;
  }

  .hero {
    gap: 2.75rem;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3.25rem, 14vw, 5.5rem);
    line-height: 0.84;
  }

  .specialisms {
    display: flex;
    grid-template-columns: none;
  }

  .specialisms li,
  .specialisms li:first-child,
  .specialisms li:nth-child(odd),
  .specialisms li:nth-last-child(-n + 2) {
    border: 0;
  }

  .hero-art {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 22rem) {
  .brand-copy small {
    display: none;
  }

  .hero h1 span {
    white-space: normal;
  }
}

/* Responsive experience deck: sticky on tablets, proximity snap on phones. */
@media screen and (min-width: 45rem) {
  .experience-section {
    isolation: isolate;
  }

  .experience-list {
    gap: 1px;
    background: var(--ink);
  }

  .experience-card {
    position: sticky;
    top: var(--header-height);
    min-height: calc(100svh - var(--header-height));
    scroll-margin-top: var(--header-height);
  }

  html.reveal-ready .experience-card[data-reveal].is-visible {
    transform: none;
  }

  .experience-card:nth-child(1) {
    z-index: 1;
  }

  .experience-card:nth-child(2) {
    z-index: 2;
  }

  .experience-card:nth-child(3) {
    z-index: 3;
  }

  .experience-card:nth-child(4) {
    z-index: 4;
  }

  .experience-card:nth-child(5) {
    z-index: 5;
  }
}

@media screen and (min-width: 45rem) and (max-width: 60.99rem) {
  .experience-card {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    grid-template-rows: 1fr;
    opacity: clamp(0.9, calc(0.9 + (var(--scene-progress) * 0.1)), 1);
  }

  .experience-copy,
  .experience-card:nth-child(even) .experience-copy {
    min-height: 0;
    grid-row: 1;
    padding: clamp(1.5rem, 3vw, 2.25rem);
  }

  .experience-copy {
    grid-column: 1;
  }

  .experience-card:nth-child(even) .experience-copy {
    grid-column: 2;
  }

  .experience-visual,
  .experience-card:nth-child(even) .experience-visual {
    min-height: 100%;
    grid-row: 1;
    aspect-ratio: auto;
    border-top: 0;
  }

  .experience-visual {
    grid-column: 2;
    border-right: 0;
    border-left: 1px solid currentColor;
  }

  .experience-card:nth-child(even) .experience-visual {
    grid-column: 1;
    border-right: 1px solid rgba(236, 233, 223, 0.3);
    border-left: 0;
  }

  .card-meta {
    margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
  }

  .experience-copy h3 {
    font-size: clamp(2.35rem, 5vw, 3.45rem);
    line-height: 0.86;
  }

  .experience-copy > p:not(.responsible-note) {
    margin-top: 1rem;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .tag-list {
    margin-top: 1rem;
  }

  .tag-list li {
    min-height: 2rem;
    padding: 0.35rem 0.45rem;
    font-size: 0.49rem;
  }

  .responsible-note {
    margin-top: 0.85rem;
  }
}

@media screen and (min-width: 45rem) and (max-height: 48rem) {
  .experience-card {
    position: sticky;
    top: var(--header-height);
    min-height: calc(100svh - var(--header-height));
  }

  .experience-copy {
    min-height: 0;
    padding: clamp(1.25rem, 3vw, 2.25rem);
  }

  .card-meta {
    margin-bottom: clamp(1.25rem, 3vh, 2.25rem);
  }

  .experience-copy h3 {
    font-size: clamp(2.4rem, 4.3vw, 4.15rem);
  }

  .experience-copy > p:not(.responsible-note) {
    margin-top: 1rem;
  }

  .tag-list {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 44.99rem) {
  html,
  body {
    scroll-padding-top: calc(var(--header-height) + 0.5rem);
    scroll-snap-type: y proximity;
  }

  .experience-card {
    position: relative;
    top: auto;
    scroll-margin-top: calc(var(--header-height) + 0.5rem);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .capabilities-section {
    scroll-margin-top: var(--header-height);
    scroll-snap-align: start;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 44.99rem) {
  html,
  body {
    scroll-snap-type: none;
  }

  .experience-card {
    scroll-snap-stop: normal;
  }
}

/* Keep evidence cards on one shared visual grid. */
.visual-outcome,
.visual-outcome-top {
  right: auto;
  left: 0.85rem;
}

.visual-caption {
  flex-wrap: nowrap;
}

.visual-caption span,
.visual-caption small {
  position: static;
  height: 2.25rem;
  min-height: 2.25rem;
  margin: 0;
  white-space: nowrap;
}

@media screen and (max-width: 44.99rem) {
  .visual-outcome,
  .visual-outcome-top {
    left: 0.65rem;
  }
}

@media screen and (min-width: 45rem) and (max-width: 60.99rem) {
  .visual-caption span,
  .visual-caption small {
    padding-inline: 0.45rem;
    font-size: 0.57rem;
    letter-spacing: 0.055em;
  }
}

/* Restrained scroll motion: directional type, gentle depth and short staggers. */
html.reveal-ready [data-reveal][data-motion-group] {
  transform: none;
  opacity: 1;
  transition: none;
}

html.reveal-ready [data-motion-group] [data-motion-title] {
  opacity: 0;
  clip-path: var(--motion-clip-start);
  transform: translate3d(var(--motion-title-x), 0, 0);
  transition:
    clip-path 980ms var(--ease-kinetic) 60ms,
    transform 980ms var(--ease-kinetic) 60ms,
    opacity 520ms linear 60ms;
  will-change: transform, opacity, clip-path;
}

[data-motion-title="left"] {
  --motion-title-x: clamp(-3.5rem, -4vw, -1.75rem);
  --motion-clip-start: inset(-0.18em -0.04em -0.3em 10%);
}

[data-motion-title="right"] {
  --motion-title-x: clamp(1.75rem, 4vw, 3.5rem);
  --motion-clip-start: inset(-0.18em 10% -0.3em -0.04em);
}

html.reveal-ready [data-motion-group].is-visible [data-motion-title] {
  opacity: 1;
  clip-path: inset(-0.18em -0.04em -0.3em -0.04em);
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

html.reveal-ready .section-heading[data-motion-group] > .eyebrow,
html.reveal-ready .section-heading[data-motion-group] > p:not(.eyebrow),
html.reveal-ready .about-copy[data-motion-group] > .eyebrow,
html.reveal-ready .about-copy[data-motion-group] > p:not(.eyebrow),
html.reveal-ready .about-copy[data-motion-group] > .document-links,
html.reveal-ready .contact-inner[data-motion-group] > div:first-child .eyebrow,
html.reveal-ready .contact-inner[data-motion-group] > .contact-copy {
  opacity: 0;
  transform: translate3d(0, 0.8rem, 0);
  transition:
    transform 720ms var(--ease-kinetic),
    opacity 480ms linear;
}

html.reveal-ready .section-heading[data-motion-group].is-visible > .eyebrow,
html.reveal-ready .section-heading[data-motion-group].is-visible
  > p:not(.eyebrow),
html.reveal-ready .about-copy[data-motion-group].is-visible > .eyebrow,
html.reveal-ready .about-copy[data-motion-group].is-visible > p:not(.eyebrow),
html.reveal-ready .about-copy[data-motion-group].is-visible > .document-links,
html.reveal-ready
  .contact-inner[data-motion-group].is-visible
  > div:first-child
  .eyebrow,
html.reveal-ready
  .contact-inner[data-motion-group].is-visible
  > .contact-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.reveal-ready .section-heading[data-motion-group] > .eyebrow,
html.reveal-ready .about-copy[data-motion-group] > .eyebrow,
html.reveal-ready .contact-inner[data-motion-group] > div:first-child .eyebrow {
  transition-delay: 20ms;
}

html.reveal-ready .section-heading[data-motion-group] > p:not(.eyebrow),
html.reveal-ready .about-copy[data-motion-group] > p:not(.eyebrow),
html.reveal-ready .contact-inner[data-motion-group] > .contact-copy {
  transition-delay: 220ms;
}

html.reveal-ready .section-heading[data-motion-group] > .visual-disclaimer,
html.reveal-ready .about-copy[data-motion-group] > .about-earlier,
html.reveal-ready .about-copy[data-motion-group] > .document-links {
  transition-delay: 300ms;
}

html.reveal-ready .capability-grid [data-reveal],
html.reveal-ready .approach-list [data-reveal] {
  transform: translate3d(0, 1.4rem, 0) scale(0.992);
}

html.reveal-ready .capability-grid [data-reveal].is-visible,
html.reveal-ready .approach-list [data-reveal].is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.capability-grid [data-reveal]:nth-child(2),
.approach-list [data-reveal]:nth-child(2) {
  transition-delay: 65ms;
}

.capability-grid [data-reveal]:nth-child(3),
.approach-list [data-reveal]:nth-child(3) {
  transition-delay: 130ms;
}

.capability-grid [data-reveal]:nth-child(4),
.approach-list [data-reveal]:nth-child(4) {
  transition-delay: 195ms;
}

html.reveal-ready .about-media .about-facts span {
  opacity: 0;
  transform: translate3d(0, 0.65rem, 0);
  transition:
    transform 620ms var(--ease-kinetic),
    opacity 420ms linear;
}

html.reveal-ready .about-media.is-visible .about-facts span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.about-media .about-facts span:nth-child(1) {
  transition-delay: 120ms;
}

.about-media .about-facts span:nth-child(2) {
  transition-delay: 190ms;
}

.about-media .about-facts span:nth-child(3) {
  transition-delay: 260ms;
}

.contact-button > span,
.document-links a > span,
.header-cta > span {
  transition: transform 220ms var(--ease-kinetic);
}

.contact-button:hover > span,
.document-links a:hover > span,
.header-cta:hover > span {
  transform: translate3d(0.16rem, -0.16rem, 0);
}

@media (prefers-reduced-motion: no-preference) and (min-width: 45rem) {
  .hero-showcase .hero-art img {
    transform: translate3d(
        0,
        calc(0.65rem - (var(--scene-progress) * 1.3rem)),
        0
      )
      scale(1.025);
    transition: transform 90ms linear;
    will-change: transform;
  }

  .approach-art img {
    transform: translate3d(
        0,
        calc(1rem - (var(--scene-progress) * 2rem)),
        0
      )
      scale(1.045);
    transition: transform 90ms linear;
    will-change: transform;
  }

  .about-media .portrait-frame img {
    transform: translate3d(
        0,
        calc(0.85rem - (var(--scene-progress) * 1.7rem)),
        0
      )
      scale(1.04);
    transition: transform 90ms linear;
    will-change: transform;
  }
}

@media screen and (max-width: 44.99rem) {
  [data-motion-title="left"] {
    --motion-title-x: -1.25rem;
  }

  [data-motion-title="right"] {
    --motion-title-x: 1.25rem;
  }
}

/* Keep the method-to-profile handoff compact and free of an orphan divider. */
.approach-section {
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.about-section {
  border-top: 0;
  padding-top: clamp(2.5rem, 4vw, 4rem);
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready [data-motion-group] [data-motion-title],
  html.reveal-ready .section-heading[data-motion-group] > .eyebrow,
  html.reveal-ready .section-heading[data-motion-group] > p:not(.eyebrow),
  html.reveal-ready .about-copy[data-motion-group] > .eyebrow,
  html.reveal-ready .about-copy[data-motion-group] > p:not(.eyebrow),
  html.reveal-ready .about-copy[data-motion-group] > .document-links,
  html.reveal-ready .contact-inner[data-motion-group] > div:first-child .eyebrow,
  html.reveal-ready .contact-inner[data-motion-group] > .contact-copy,
  html.reveal-ready .capability-grid [data-reveal],
  html.reveal-ready .approach-list [data-reveal],
  html.reveal-ready .about-media .about-facts span {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }

  .hero-showcase .hero-art img,
  .approach-art img,
  .about-media .portrait-frame img {
    transform: none;
    transition: none;
  }
}

@keyframes kinetic-boot-exit {
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes kinetic-frame-in {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes kinetic-line-in {
  to {
    transform: scale(1);
  }
}

@keyframes kinetic-meter {
  0% {
    transform: scaleX(0);
  }

  62% {
    transform: scaleX(0.72);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes kinetic-ticker {
  to {
    transform: translateX(-100%);
  }
}

@keyframes kinetic-capability-drift {
  to {
    transform: translateX(-18vw);
  }
}
