@font-face {
  font-family: "Agency FB";
  src: url("fonts/AgencyFB-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --flame: #fa5f1b;
  --pink: #ff0f80;
  --lavender: #d1ccdc;
  --charcoal: #424c55;
  --ink: #010400;
  --paper: #ffffff;
  --line-dark: #242824;
  --line-light: #d9d4e2;
  --font-display: "Agency FB", Impact, "Arial Narrow", sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --site-x: clamp(18px, 2vw, 32px);
  --section-y: clamp(72px, 7.6vw, 112px);
  --section-y-tight: clamp(52px, 5.5vw, 82px);
  --section-min: clamp(560px, 74svh, 780px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

body.is-loading {
  cursor: progress;
}

body.loader-finished .site-loader {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--flame);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 12px;
  font-weight: 700;
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--flame);
  transition:
    opacity 420ms var(--ease),
    visibility 420ms var(--ease);
}

.site-loader span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(100px, 14vw, 220px);
  font-weight: 700;
  line-height: 0.7;
  animation: loaderPulse 880ms var(--ease) infinite alternate;
}

@keyframes loaderPulse {
  from {
    opacity: 0.42;
    transform: scale(0.74);
  }

  to {
    opacity: 1;
    transform: scale(1.12);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px 24px;
  background: rgba(1, 4, 0, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  background: rgba(1, 4, 0, 0.88);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  width: max-content;
}

.brand-word {
  font-family: var(--font-display);
  font-size: 43px;
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--flame);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-cta,
.text-link {
  transition: color 160ms var(--ease);
}

.desktop-nav a:hover,
.header-cta:hover,
.text-link:hover {
  color: var(--flame);
}

.header-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-cta span,
.flame-dot,
.button span {
  color: var(--flame);
}

.menu-toggle {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  z-index: 70;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--paper);
  transition:
    transform 180ms var(--ease),
    opacity 180ms var(--ease);
}

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-rows: 1fr;
  background: var(--ink);
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition:
    transform 420ms var(--ease),
    opacity 240ms var(--ease);
  overflow-y: auto;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-inner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 32px;
  min-height: 100svh;
  padding: 112px 24px 28px;
}

.menu-nav {
  display: grid;
  align-content: center;
  border-top: 1px solid var(--line-dark);
}

.menu-nav a {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 142px);
  line-height: 0.95;
  text-transform: uppercase;
  transition:
    color 160ms var(--ease),
    padding-left 160ms var(--ease);
}

.menu-nav a:hover {
  padding-left: 18px;
  color: var(--flame);
}

.menu-nav span {
  align-self: start;
  padding-top: 0.22em;
  color: var(--flame);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-footer a:hover,
.menu-footer span {
  color: var(--flame);
}

.kinetic-hero {
  position: relative;
  z-index: 15;
  min-height: 420svh;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}

.kinetic-sticky {
  position: sticky;
  top: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  padding: 104px var(--site-x) 56px;
  text-align: center;
}

.kinetic-sticky::before {
  content: "";
  position: absolute;
  inset: 76px var(--site-x) 56px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.kinetic-line {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-items: center;
  gap: 0 0.16em;
  width: 100%;
  min-height: auto;
  margin: clamp(56px, 5vh, 64px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(72px, 9.5vw, 168px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.kinetic-line > span {
  color: var(--paper);
  opacity: 1;
  transform: none;
  transform-origin: center bottom;
  will-change: transform, opacity;
}

.kinetic-line > span:not(:first-child) {
  display: none;
}

.kinetic-line .kinetic-accent {
  color: var(--flame);
}

.kinetic-token {
  display: inline-block;
  transform-origin: center;
  will-change: transform, opacity, filter;
}

.kinetic-line.is-kinetic {
  display: grid;
  align-items: center;
  gap: 0;
  min-height: 1.65em;
  font-size: clamp(72px, 11.5vw, 178px);
  line-height: 0.82;
}

.kinetic-line.is-kinetic > span {
  display: block;
  grid-area: 1 / 1;
  max-width: 10ch;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.28em) scale(0.96);
  text-wrap: balance;
}

.kinetic-line.is-kinetic > span:first-child {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.kinetic-portal {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-top: clamp(82px, 9vh, 112px);
  pointer-events: none;
}

.kinetic-portal span {
  display: block;
  width: clamp(18px, 1.1vw, 24px);
  height: clamp(18px, 1.1vw, 24px);
  background: var(--paper);
  transform-origin: center;
  will-change: transform, opacity;
}

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

.hero-statement,
.intro,
.outcome-strip,
.work,
.capabilities,
.method,
.proof,
.contact {
  will-change: transform, opacity, clip-path;
}

.hero-statement {
  z-index: 16;
  background: var(--paper);
  color: var(--ink);
}

.hero-statement .eyebrow {
  color: var(--charcoal);
}

.hero-shell {
  display: flex;
  min-height: clamp(660px, 90svh, 920px);
  flex-direction: column;
  justify-content: center;
  padding: clamp(96px, 9vw, 124px) var(--site-x) var(--section-y);
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--lavender);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.capability-panel h2,
.proof-copy h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin-top: 22px;
  font-size: clamp(78px, 8.8vw, 128px);
}

.hero h1,
[data-reveal-title] {
  text-wrap: balance;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 520px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 2px solid var(--ink);
}

.hero-bottom p,
.section-copy p {
  margin: 0;
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.45;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    transform 160ms var(--ease),
    box-shadow 160ms var(--ease),
    background 160ms var(--ease),
    color 160ms var(--ease);
}

.button:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--paper);
}

.button-primary {
  border-color: var(--flame);
  background: var(--flame);
  color: var(--paper);
  box-shadow: 6px 6px 0 var(--paper);
}

.button-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--paper);
}

.button-ghost {
  color: var(--paper);
}

.button-ghost:hover {
  color: var(--flame);
}

.ticker {
  position: relative;
  z-index: 20;
  overflow: hidden;
  background: var(--flame);
  color: var(--ink);
  border-block: 2px solid var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker span {
  padding: 16px 22px;
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(150px, 21%) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  padding: var(--section-y) var(--site-x);
}

.services-hero,
.form-hero,
.case-hero-split {
  min-height: var(--section-min);
}

.work,
.proof,
.contact,
.service-cta,
.case-statement {
  min-height: var(--section-min);
}

.section-grid:not(.work-heading),
.method,
.proof,
.contact,
.services-hero,
.service-cta,
.form-hero,
.form-section,
.case-hero-split,
.case-overview,
.case-close {
  align-items: center;
}

.intro {
  background: var(--paper);
  color: var(--ink);
}

.intro .section-label {
  color: var(--charcoal);
}

.section-copy {
  max-width: 1040px;
}

.section-copy h2,
.capability-panel h2,
.proof-copy h2,
.contact h2 {
  font-size: clamp(68px, 6.6vw, 108px);
}

.section-copy p {
  max-width: 640px;
  margin-top: 24px;
  color: var(--charcoal);
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}

.outcome-strip article {
  min-height: 190px;
  padding: 26px var(--site-x);
  border-right: 2px solid var(--ink);
}

.outcome-strip article:last-child {
  border-right: 0;
}

.outcome-strip span {
  display: block;
  margin-bottom: 34px;
  color: var(--flame);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.outcome-strip strong {
  display: block;
  max-width: 17ch;
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
}

.work {
  position: relative;
  padding: clamp(58px, 6vw, 86px) var(--site-x) clamp(86px, 8vw, 124px);
  background: var(--ink);
  overflow: hidden;
}

.work-pin {
  position: relative;
}

.work-heading {
  min-height: 0;
  padding-inline: 0;
  padding-top: 0;
  padding-bottom: clamp(28px, 4.5vh, 46px);
}

.work-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: center;
  min-height: clamp(430px, 48svh, 540px);
  min-width: 0;
}

.work-horizontal {
  display: none;
}

.work-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  min-height: clamp(430px, 48svh, 540px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.work-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px 24px;
  align-items: center;
  min-height: 0;
  padding-inline: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--paper);
  transition:
    color 180ms var(--ease),
    padding-left 180ms var(--ease),
    background 180ms var(--ease);
}

.work-item::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 3px;
  transform: scaleY(0);
  transform-origin: center;
  background: var(--flame);
  transition: transform 180ms var(--ease);
}

.work-item:hover,
.work-item.is-active {
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(250, 95, 27, 0.1), rgba(250, 95, 27, 0));
}

.work-item:hover::before,
.work-item.is-active::before {
  transform: scaleY(1);
}

.work-number,
.work-meta {
  color: var(--lavender);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-number {
  grid-row: 1 / span 2;
}

.work-name {
  font-family: var(--font-display);
  font-size: clamp(29px, 2.9vw, 42px);
  line-height: 0.96;
  text-transform: uppercase;
  transition:
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.work-meta {
  grid-column: 2;
}

.work-item:hover .work-name,
.work-item.is-active .work-name {
  color: var(--flame);
  transform: translateX(3px);
}

.work-preview {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-width: 0;
  height: auto;
  margin: 0;
  flex-direction: column;
  justify-content: center;
  pointer-events: auto;
}

.work-preview-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(48svh, 440px);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: var(--ink);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    12px 12px 0 rgba(250, 95, 27, 0.88);
}

.work-preview-frame::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.work-preview img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--ink);
  filter: saturate(0.9) contrast(1.08);
  transition:
    opacity 180ms var(--ease),
    transform 380ms var(--ease);
}

.work-preview-frame:hover img {
  transform: scale(1.018);
}

.work-preview-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  color: var(--lavender);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-preview-caption > div {
  display: flex;
  min-width: 0;
  gap: 18px;
}

.work-preview-caption [data-work-preview-title] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-preview-caption a {
  position: relative;
  flex: 0 0 auto;
  color: var(--paper);
  letter-spacing: 0.16em;
}

.work-preview-caption a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: var(--flame);
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.work-preview-caption a:hover::after,
.work-preview-caption a:focus-visible::after {
  transform: scaleX(1);
}

@media (min-width: 761px) {
  .work-horizontal {
    display: block;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .work-horizontal-track {
    display: flex;
    width: max-content;
    gap: clamp(22px, 2.8vw, 42px);
    padding: 0 12px 14px 0;
  }

  .work-panel {
    display: grid;
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
    width: min(84vw, 1120px);
    min-height: clamp(430px, 54svh, 600px);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: var(--ink);
    color: var(--paper);
    box-shadow: 10px 10px 0 rgba(250, 95, 27, 0.88);
  }

  .work-panel-copy {
    display: grid;
    align-content: space-between;
    padding: clamp(24px, 3vw, 40px);
    border-right: 2px solid rgba(255, 255, 255, 0.9);
  }

  .work-panel-copy span {
    color: var(--lavender);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .work-panel-copy strong {
    max-width: 9.5ch;
    font-family: var(--font-display);
    font-size: clamp(58px, 5.7vw, 98px);
    font-weight: 700;
    line-height: 0.82;
    text-transform: uppercase;
  }

  .work-panel-copy p {
    max-width: 420px;
    margin: 0;
    color: var(--lavender);
    font-size: 18px;
    line-height: 1.4;
  }

  .work-panel figure {
    position: relative;
    min-width: 0;
    min-height: 100%;
    margin: 0;
    background: var(--ink);
  }

  .work-panel figure::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    pointer-events: none;
  }

  .work-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.08);
    transition:
      filter 180ms var(--ease),
      transform 420ms var(--ease);
  }

  .work-panel:hover img,
  .work-panel:focus-visible img {
    filter: saturate(1.02) contrast(1.1);
    transform: scale(1.018);
  }

  .work-stage {
    display: none;
  }

  .work.is-scroll-driven {
    min-height: var(--work-scroll-height, 360svh);
    overflow: visible;
    padding-top: 0;
    padding-bottom: 0;
  }

  .work.is-scroll-driven .work-pin {
    position: sticky;
    top: 0;
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    justify-content: center;
    padding: clamp(86px, 8vw, 118px) 0 clamp(64px, 6vw, 96px);
  }

  .service-offering.is-scroll-driven {
    min-height: var(--horizontal-scroll-height, 360svh);
    overflow: visible;
    padding-top: 0;
    padding-bottom: 0;
  }

  .service-offering.is-scroll-driven .service-offering-pin {
    position: sticky;
    top: 0;
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    justify-content: center;
    padding: clamp(86px, 8vw, 118px) 0 clamp(64px, 6vw, 96px);
  }

  .service-offering.is-scroll-driven .service-grid {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .service-offering.is-scroll-driven .service-grid-track {
    display: flex;
    width: max-content;
    will-change: transform;
  }

  .service-offering.is-scroll-driven .service-grid article {
    flex: 0 0 min(70vw, 520px);
  }

  .case-media-grid.is-scroll-driven {
    display: block;
    min-height: var(--horizontal-scroll-height, 320svh);
    overflow: visible;
    padding-top: 0;
  }

  .case-media-grid.is-scroll-driven .case-gallery-pin {
    position: sticky;
    top: 0;
    display: flex;
    min-height: 100svh;
    align-items: center;
    padding: clamp(56px, 6vw, 86px) 0 clamp(64px, 6vw, 96px);
  }

  .case-media-grid.is-scroll-driven .case-gallery-track {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .case-media-grid.is-scroll-driven .case-gallery-inner {
    display: flex;
    width: max-content;
    gap: 18px;
    will-change: transform;
  }

  .case-media-grid.is-scroll-driven img,
  .case-media-grid-uniform.is-scroll-driven img,
  .case-media-grid-uniform.is-scroll-driven img:nth-child(2),
  .case-media-grid-uniform.is-scroll-driven img:nth-child(3) {
    flex: 0 0 min(74vw, 960px);
    width: min(74vw, 960px);
    height: min(70svh, 640px);
    aspect-ratio: auto;
  }
}

.capabilities {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}

.capabilities .section-label {
  color: var(--charcoal);
}

.capability-panel {
  max-width: 1120px;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 46px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.capability-list span {
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: flex-end;
  min-height: 132px;
  padding: 20px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
  transform-origin: left bottom;
}

.capability-list span:nth-child(even) {
  background: var(--flame);
  color: var(--paper);
}

.capability-list span:nth-child(odd) {
  background: var(--paper);
  color: var(--ink);
}

.method {
  display: grid;
  grid-template-columns: minmax(160px, 24%) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  padding: var(--section-y) var(--site-x);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.method-copy h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(68px, 6.6vw, 108px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

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

.method-steps article {
  min-height: 240px;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.method-steps span {
  color: var(--flame);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.method-steps h3 {
  margin: 46px 0 18px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
}

.method-steps p {
  max-width: 25ch;
  margin: 0;
  color: var(--lavender);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 34%);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  padding: var(--section-y) var(--site-x);
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}

.case-main {
  background: var(--paper);
  color: var(--ink);
}

.services-main {
  background: var(--paper);
  color: var(--ink);
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  min-height: clamp(600px, 74svh, 800px);
  padding: clamp(104px, 9vw, 128px) var(--site-x) var(--section-y-tight);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.services-hero-copy {
  max-width: 850px;
}

.services-hero h1 {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-size: clamp(76px, 8.2vw, 148px);
  font-weight: 700;
  line-height: 0.84;
  text-transform: uppercase;
}

.services-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--lavender);
  font-size: 20px;
}

.services-hero .hero-actions {
  justify-content: flex-start;
  margin-top: 40px;
}

.services-hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(255, 255, 255, 0.94);
  box-shadow: 12px 12px 0 rgba(250, 95, 27, 0.88);
  background: var(--ink);
  overflow: hidden;
}

.services-hero-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.services-hero-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08em;
  font-family: var(--font-display);
  font-size: clamp(116px, 14vw, 230px);
  line-height: 0.78;
  text-transform: uppercase;
}

.services-hero-wordmark span {
  color: var(--flame);
}

.service-proof-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--flame);
  color: var(--ink);
}

.service-proof-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  border-right: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 52px);
  line-height: 0.9;
  text-transform: uppercase;
}

.service-proof-strip span:last-child {
  border-right: 0;
}

.services-intro {
  background: var(--paper);
}

.service-offering {
  padding: var(--section-y) var(--site-x);
  background: var(--ink);
  color: var(--paper);
}

.service-offering .section-label {
  color: var(--lavender);
}

.service-offering h2,
.faq-section h2,
.service-method h2,
.service-cta h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(70px, 7.2vw, 126px);
  line-height: 0.86;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 2px solid var(--paper);
  border-left: 2px solid var(--paper);
}

.service-grid-track {
  display: contents;
}

.service-grid article {
  min-height: 282px;
  padding: 24px;
  border-right: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
  transition:
    background 180ms var(--ease),
    color 180ms var(--ease);
}

.service-grid article:nth-child(even) {
  background: var(--flame);
  color: var(--paper);
}

.service-grid article:hover {
  background: var(--paper);
  color: var(--ink);
}

.service-grid span,
.service-method-list span {
  display: block;
  margin-bottom: 38px;
  color: var(--flame);
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.9;
}

.service-grid article:nth-child(even) span {
  color: var(--paper);
}

.service-grid article:hover span {
  color: var(--flame);
}

.service-grid h3,
.service-method-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 3vw, 54px);
  line-height: 0.9;
  text-transform: uppercase;
}

.service-grid p,
.service-method-list p,
.faq-list p {
  color: var(--lavender);
  font-size: 16px;
}

.service-grid article:nth-child(even) p,
.service-grid article:hover p {
  color: inherit;
}

.service-method {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  padding: var(--section-y) var(--site-x);
  background: var(--flame);
  color: var(--ink);
}

.service-method .eyebrow {
  color: var(--ink);
}

.service-method-list {
  display: grid;
  gap: 14px;
}

.service-method-list article {
  padding: 22px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.service-method-list span {
  margin-bottom: 34px;
}

.service-method-list p {
  color: var(--charcoal);
}

.faq-section {
  padding: var(--section-y) var(--site-x);
  background: var(--paper);
  color: var(--ink);
}

.faq-section h2 {
  max-width: 960px;
}

.faq-list {
  display: grid;
  margin-top: 48px;
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 2px solid var(--ink);
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 62px);
  line-height: 0.92;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--flame);
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 0.8;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--charcoal);
  font-size: 18px;
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  padding: var(--section-y) var(--site-x);
  background: var(--ink);
  color: var(--paper);
}

.service-cta h2 {
  max-width: 980px;
}

.service-cta-panel {
  display: grid;
  gap: 28px;
  padding: 24px;
  border: 2px solid var(--paper);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--flame);
}

.service-cta-panel p {
  margin: 0;
  color: var(--lavender);
  font-size: 18px;
}

.service-cta .contact-actions {
  margin-top: 0;
}

.case-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  min-height: clamp(600px, 74svh, 800px);
  padding: clamp(104px, 9vw, 128px) var(--site-x) var(--section-y-tight);
  background: var(--ink);
  color: var(--paper);
}

.case-hero-copy {
  max-width: 760px;
}

.case-hero h1 {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-size: clamp(72px, 9.4vw, 152px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.case-hero h1.case-title-tight {
  font-size: clamp(56px, 6.2vw, 106px);
}

.case-hero-lede {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--lavender);
  font-size: 20px;
  line-height: 1.4;
}

.case-hero-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(255, 255, 255, 0.94);
  box-shadow: 12px 12px 0 rgba(250, 95, 27, 0.88);
  overflow: hidden;
}

.case-hero-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.case-hero-card-square {
  aspect-ratio: 1 / 1;
}

.case-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.18);
}

.case-overview {
  display: grid;
  grid-template-columns: minmax(220px, 28%) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  padding: var(--section-y) var(--site-x);
  background: var(--paper);
}

.case-facts {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.case-facts div {
  min-height: 112px;
  padding: 18px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.case-facts span,
.case-narrative article > span {
  display: block;
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.case-facts span {
  margin-bottom: 28px;
}

.case-facts strong {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.case-narrative {
  display: grid;
  gap: 46px;
}

.case-narrative article {
  padding-bottom: 46px;
  border-bottom: 2px solid var(--ink);
}

.case-narrative h2 {
  max-width: 900px;
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 94px);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
}

.case-narrative p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--charcoal);
  font-size: 18px;
}

.case-impact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  padding: var(--section-y-tight) var(--site-x);
  background: var(--ink);
  color: var(--paper);
}

.case-impact-copy h2 {
  max-width: 10.5ch;
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(66px, 7.8vw, 126px);
  font-weight: 700;
  line-height: 0.84;
  text-transform: uppercase;
}

.case-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--paper);
  border-left: 2px solid var(--paper);
}

.case-impact-grid article {
  min-height: 320px;
  padding: 22px;
  border-right: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
  background: rgba(255, 255, 255, 0.02);
}

.case-impact-grid span {
  display: block;
  margin-bottom: 84px;
  color: var(--flame);
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.9;
}

.case-impact-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 0.9;
  text-transform: uppercase;
}

.case-impact-grid p {
  margin: 18px 0 0;
  color: var(--lavender);
  line-height: 1.45;
}

.case-statement {
  display: grid;
  align-items: center;
  padding: var(--section-y) var(--site-x);
  background: var(--flame);
  color: var(--ink);
}

.case-statement p {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(70px, 11vw, 160px);
  font-weight: 700;
  line-height: 0.82;
  text-transform: uppercase;
}

.case-media {
  background: var(--ink);
}

.case-media-full {
  padding: clamp(18px, 3vw, 32px) var(--site-x);
}

.case-media-full img {
  width: 100%;
  max-height: 92svh;
  object-fit: cover;
  border: 6px solid var(--paper);
  cursor: zoom-in;
}

.case-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 var(--site-x) var(--section-y);
  background: var(--ink);
}

.case-gallery-pin,
.case-gallery-track,
.case-gallery-inner {
  display: contents;
}

.case-media-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid var(--paper);
  cursor: zoom-in;
}

.case-media-grid img:nth-child(2),
.case-media-grid img:nth-child(3) {
  aspect-ratio: 1 / 1;
}

.case-media-grid-uniform img,
.case-media-grid-uniform img:nth-child(2),
.case-media-grid-uniform img:nth-child(3) {
  aspect-ratio: 1 / 1;
}

.case-close {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding: var(--section-y) var(--site-x);
  background: var(--paper);
  color: var(--ink);
}

.case-close h2 {
  max-width: 850px;
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(62px, 7vw, 112px);
  line-height: 0.88;
  text-transform: uppercase;
}

.case-close-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 96px;
  align-items: center;
  gap: 18px;
  padding: 80px 24px 24px;
  background: rgba(1, 4, 0, 0.96);
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  display: grid;
  justify-items: center;
  gap: 18px;
  min-width: 0;
  margin: 0;
}

.lightbox-frame img {
  max-width: 100%;
  max-height: calc(100svh - 168px);
  object-fit: contain;
  border: 6px solid var(--paper);
  box-shadow: 12px 12px 0 var(--flame);
}

.lightbox-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  color: var(--lavender);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  border: 2px solid var(--paper);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 160ms var(--ease),
    color 160ms var(--ease),
    transform 160ms var(--ease);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 14px 18px;
}

.lightbox-nav {
  min-height: 78px;
  padding: 18px 10px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--flame);
  color: var(--paper);
  transform: translateY(-2px);
}

.lightbox-prev {
  grid-column: 1;
}

.lightbox-next {
  grid-column: 3;
}

.lightbox-frame {
  grid-column: 2;
}


.proof .eyebrow {
  color: var(--charcoal);
}

.proof-copy h2 {
  margin-top: 18px;
  max-width: 13.5ch;
  font-size: clamp(76px, 6.3vw, 104px);
}

.proof-stats {
  display: grid;
  align-content: center;
  gap: 16px;
}

.proof-stats div {
  border: 2px solid var(--ink);
  padding: 22px;
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--paper);
  transform-origin: left bottom;
}

.proof-stats strong {
  display: block;
  margin-bottom: 26px;
  color: var(--flame);
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 0.9;
}

.proof-stats h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(32px, 2.8vw, 46px);
  line-height: 0.92;
  text-transform: uppercase;
}

.proof-stats span {
  display: block;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.4;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  min-height: calc(100svh - 78px);
  padding: var(--section-y) var(--site-x);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.contact h2 {
  margin-top: 18px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--lavender);
  font-size: 18px;
}

.contact-panel {
  display: grid;
  border-top: 2px solid var(--paper);
  border-left: 2px solid var(--paper);
}

.contact-brief {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px 18px;
  padding: 20px;
  border-right: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
}

.contact-brief span {
  grid-row: 1 / span 2;
  color: var(--flame);
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 0.9;
}

.contact-brief strong {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 0.92;
  text-transform: uppercase;
}

.contact-brief p {
  margin: 0;
  color: var(--lavender);
}

.contact-panel .contact-actions {
  display: grid;
  grid-template-columns: max-content max-content minmax(230px, 1fr);
  align-items: stretch;
  gap: 16px;
  padding: 20px;
  border-right: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
}

.contact-panel .contact-actions .button,
.contact-email-card {
  min-height: 56px;
}

.contact-email-card {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
  padding: 10px 16px;
  border: 2px solid var(--paper);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 6px 6px 0 var(--flame);
  transition:
    background 160ms var(--ease),
    color 160ms var(--ease),
    transform 160ms var(--ease),
    box-shadow 160ms var(--ease);
}

.contact-email-card:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--flame);
}

.contact-email-card span {
  color: var(--lavender);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-email-card:hover span {
  color: var(--charcoal);
}

.contact-email-card strong {
  overflow-wrap: anywhere;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.conversion-bridge {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
  padding: var(--section-y) var(--site-x);
  background: var(--paper);
  color: var(--ink);
}

.conversion-copy h2 {
  max-width: 11ch;
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(72px, 7.2vw, 118px);
  line-height: 0.86;
  text-transform: uppercase;
}

.conversion-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--charcoal);
  font-size: 20px;
  line-height: 1.42;
}

.conversion-path {
  display: grid;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.conversion-path a {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px 20px;
  min-height: 150px;
  padding: 24px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  transition:
    background 180ms var(--ease),
    color 180ms var(--ease),
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.conversion-path a:hover,
.conversion-path a:focus-visible {
  background: var(--flame);
  color: var(--ink);
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--ink);
}

.conversion-path span {
  grid-row: 1 / span 2;
  color: var(--flame);
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 0.9;
}

.conversion-path a:hover span,
.conversion-path a:focus-visible span {
  color: var(--paper);
}

.conversion-path strong {
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 46px);
  line-height: 0.9;
  text-transform: uppercase;
}

.conversion-path p {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.4;
}

.form-main {
  background: var(--paper);
  color: var(--ink);
}

.form-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  min-height: clamp(540px, 70svh, 720px);
  padding: clamp(104px, 9vw, 128px) var(--site-x) var(--section-y-tight);
  background: var(--ink);
  color: var(--paper);
}

.form-hero h1,
.form-intro h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 150px);
  line-height: 0.84;
  text-transform: uppercase;
}

.form-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--lavender);
  font-size: 20px;
}

.form-aside {
  position: relative;
  display: grid;
  gap: 36px;
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.94);
  box-shadow: 10px 10px 0 rgba(250, 95, 27, 0.88);
}

.form-aside::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.form-aside span {
  color: var(--flame);
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.9;
}

.form-aside strong {
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 52px);
  line-height: 0.92;
  text-transform: uppercase;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  padding: var(--section-y) var(--site-x);
}

.form-intro h2 {
  max-width: 8ch;
  font-size: clamp(56px, 6vw, 96px);
}

.avid-form {
  display: grid;
  gap: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.avid-form label {
  display: grid;
  gap: 8px;
}

.avid-form label span,
.avid-form legend {
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.avid-form input,
.avid-form select,
.avid-form textarea {
  width: 100%;
  min-height: 54px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.avid-form textarea {
  resize: vertical;
}

.avid-form input:focus,
.avid-form select:focus,
.avid-form textarea:focus {
  outline: 2px solid var(--flame);
  outline-offset: 3px;
  box-shadow: 6px 6px 0 rgba(250, 95, 27, 0.22);
}

.avid-form fieldset {
  margin: 0;
  padding: 20px;
  border: 2px solid var(--ink);
}

.avid-form legend {
  padding: 0 8px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 8px;
}

.check-grid label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--charcoal);
  font-weight: 700;
}

.check-grid input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--flame);
}

.form-actions {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
}

.form-actions .button,
.form-actions .text-link {
  min-height: 56px;
}

.form-actions .button-primary {
  box-shadow: 6px 6px 0 var(--ink);
}

.form-actions .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    background 160ms var(--ease),
    color 160ms var(--ease),
    transform 160ms var(--ease),
    box-shadow 160ms var(--ease);
}

.form-actions .text-link:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--flame);
}

.avid-form.is-submitting .button {
  pointer-events: none;
  animation: submitPulse 760ms var(--ease) infinite alternate;
}

@keyframes submitPulse {
  from {
    box-shadow: 6px 6px 0 var(--paper);
  }

  to {
    box-shadow: 10px 10px 0 var(--ink);
  }
}

.form-trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.text-link {
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-top: 1px solid var(--line-dark);
  color: var(--lavender);
}

.footer-brand .brand-word {
  font-size: 38px;
}

.footer-brand .brand-dot {
  width: 8px;
  height: 8px;
}

.site-footer p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strategy-sample-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: center;
  min-height: 100dvh;
  padding: clamp(116px, 10vw, 156px) var(--site-x) var(--section-y);
  background: var(--ink);
  color: var(--paper);
}

.strategy-sample-hero h1,
.strategy-section-copy h2,
.ops-copy h2 {
  max-width: 8.5ch;
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: clamp(78px, 9.5vw, 156px);
  line-height: 0.84;
  text-transform: uppercase;
}

.strategy-sample-hero p:not(.eyebrow),
.ops-copy p:not(.section-label) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--lavender);
  font-size: clamp(17px, 1.2vw, 21px);
}

.strategy-map,
.ops-panel {
  position: relative;
  border: 2px solid var(--paper);
  background: var(--ink);
  box-shadow: 14px 14px 0 rgba(250, 95, 27, 0.88);
}

.strategy-map {
  min-height: clamp(520px, 62dvh, 720px);
  padding: clamp(22px, 2.8vw, 38px);
  overflow: hidden;
}

.strategy-map::before,
.ops-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.strategy-map-header,
.ops-panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--lavender);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.strategy-map-header strong {
  color: var(--flame);
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.8;
}

.strategy-map-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(60px, 8vh, 96px);
}

.strategy-map-grid span {
  display: grid;
  min-height: 108px;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 0.88;
  transform-origin: center bottom;
  will-change: transform, opacity, clip-path;
}

.strategy-map-grid span:nth-child(2),
.strategy-map-grid span:nth-child(5) {
  background: var(--flame);
  color: var(--ink);
}

.strategy-map-flow {
  position: absolute;
  inset: auto 38px 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.strategy-map-flow i {
  display: block;
  height: 8px;
  background: var(--paper);
  transform-origin: left center;
  will-change: transform;
}

.strategy-map-flow i:nth-child(2),
.strategy-map-flow i:nth-child(4) {
  background: var(--flame);
}

.strategy-artifacts {
  padding: var(--section-y) var(--site-x);
  background: var(--paper);
  color: var(--ink);
}

.strategy-section-copy {
  display: grid;
  grid-template-columns: minmax(150px, 21%) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.strategy-section-copy h2 {
  max-width: 10ch;
  margin-top: 0;
  font-size: clamp(68px, 8vw, 132px);
}

.artifact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(42px, 5vw, 76px);
}

.artifact-card {
  min-height: clamp(360px, 42dvh, 520px);
  padding: clamp(20px, 2.5vw, 34px);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
  transform-origin: center bottom;
  will-change: transform, opacity;
}

.artifact-card span {
  display: block;
  color: var(--flame);
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 0.82;
}

.artifact-card h3 {
  max-width: 8ch;
  margin: 50px 0 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 4.2vw, 70px);
  line-height: 0.86;
  text-transform: uppercase;
}

.artifact-dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 10px 10px 0 var(--flame);
}

.artifact-orange {
  background: var(--flame);
  color: var(--ink);
}

.artifact-orange span {
  color: var(--paper);
}

.momentum-map,
.launch-bars,
.engine-rings {
  margin-top: clamp(44px, 6vh, 76px);
}

.momentum-map {
  display: grid;
  gap: 8px;
}

.momentum-map b {
  display: block;
  padding: 9px 12px;
  border: 1px solid currentColor;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform-origin: left center;
  will-change: transform, opacity;
}

.momentum-map b:nth-child(even) {
  margin-left: 12%;
  color: var(--flame);
}

.launch-bars {
  display: grid;
  gap: 12px;
}

.launch-bars i {
  display: block;
  width: var(--bar);
  height: 18px;
  background: var(--ink);
  transform-origin: left center;
  will-change: transform;
}

.launch-bars i:nth-child(even) {
  background: var(--flame);
}

.engine-rings {
  position: relative;
  aspect-ratio: 1;
  max-width: 240px;
}

.engine-rings i {
  position: absolute;
  inset: calc(var(--ring, 0) * 13%);
  border: 2px solid currentColor;
  transform-origin: center;
  will-change: transform, opacity;
}

.engine-rings i:nth-child(1) {
  --ring: 0;
}

.engine-rings i:nth-child(2) {
  --ring: 1;
}

.engine-rings i:nth-child(3) {
  --ring: 2;
  background: var(--paper);
}

.ops-sample {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: center;
  min-height: 90dvh;
  padding: var(--section-y) var(--site-x);
  background: var(--ink);
  color: var(--paper);
}

.ops-panel {
  min-height: clamp(520px, 62dvh, 720px);
  padding: clamp(22px, 2.8vw, 38px);
}

.ops-panel-head strong {
  color: var(--flame);
}

.ops-dashboard {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(58px, 8vh, 92px);
}

.ops-dashboard article {
  min-height: 180px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  transform-origin: center bottom;
  will-change: transform, opacity;
}

.ops-dashboard span {
  color: var(--flame);
  font-family: var(--font-display);
  font-size: 42px;
}

.ops-dashboard strong {
  display: block;
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: clamp(38px, 3.5vw, 58px);
  line-height: 0.86;
  text-transform: uppercase;
}

.ops-dashboard i {
  display: block;
  height: 8px;
  margin-top: 30px;
  background: linear-gradient(90deg, var(--flame) 0 58%, rgba(255, 255, 255, 0.22) 58% 100%);
  transform-origin: left center;
  will-change: transform;
}

.ops-copy h2 {
  max-width: 9ch;
  font-size: clamp(64px, 7.4vw, 128px);
}

@media (min-width: 1800px) {
  :root {
    --site-x: clamp(32px, 2.4vw, 52px);
    --section-y: clamp(96px, 6.2vw, 132px);
    --section-y-tight: clamp(72px, 4.8vw, 104px);
  }

  .site-header {
    padding-inline: clamp(28px, 2vw, 42px);
  }

  .kinetic-line.is-kinetic {
    font-size: clamp(150px, 8.8vw, 220px);
  }

  .hero-shell {
    min-height: clamp(720px, 86dvh, 980px);
  }

  .hero h1 {
    font-size: clamp(118px, 7.4vw, 170px);
  }

  .section-copy h2,
  .capability-panel h2,
  .method-copy h2,
  .proof-copy h2,
  .service-offering h2,
  .faq-section h2,
  .service-method h2,
  .service-cta h2,
  .contact h2 {
    font-size: clamp(92px, 6.2vw, 150px);
  }

  .work-panel {
    width: min(76vw, 1380px);
  }

  .case-media-grid.is-scroll-driven img,
  .case-media-grid-uniform.is-scroll-driven img,
  .case-media-grid-uniform.is-scroll-driven img:nth-child(2),
  .case-media-grid-uniform.is-scroll-driven img:nth-child(3) {
    flex-basis: min(68vw, 1240px);
    width: min(68vw, 1240px);
    height: min(68dvh, 780px);
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .hero h1 {
    font-size: 78px;
  }

  .section-copy h2,
  .capability-panel h2,
  .method-copy h2,
  .proof-copy h2,
  .services-hero h1,
  .service-offering h2,
  .faq-section h2,
  .service-method h2,
  .service-cta h2,
  .contact h2 {
    font-size: clamp(62px, 7.2vw, 84px);
  }

  .services-hero,
  .service-method,
  .service-cta,
  .conversion-bridge,
  .contact,
  .form-hero,
  .form-section {
    grid-template-columns: 1fr;
  }

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

  .service-proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-proof-strip span:nth-child(3n) {
    border-right: 0;
  }

  .outcome-strip {
    grid-template-columns: 1fr;
  }

  .outcome-strip article,
  .outcome-strip article:last-child {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .outcome-strip article:last-child {
    border-bottom: 0;
  }

  .work-name {
    font-size: 38px;
  }

  .work-stage {
    gap: 30px;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  :root {
    --site-x: clamp(22px, 3.2vw, 36px);
  }

  .site-header {
    padding-inline: var(--site-x);
  }

  .kinetic-hero {
    min-height: 360svh;
  }

  .kinetic-line.is-kinetic {
    max-width: 100%;
    font-size: clamp(92px, 13vw, 148px);
  }

  .hero-shell {
    min-height: clamp(600px, 78dvh, 800px);
  }

  .hero-bottom,
  .contact-actions {
    align-items: start;
  }

  .work-panel {
    grid-template-columns: minmax(270px, 0.44fr) minmax(0, 0.56fr);
    width: min(86vw, 920px);
    min-height: clamp(420px, 52dvh, 560px);
  }

  .work-panel-copy strong {
    font-size: clamp(54px, 8vw, 82px);
  }

  .work-panel-copy p {
    font-size: 16px;
  }

  .service-grid article {
    min-height: 300px;
  }

  .case-hero-split,
  .case-overview,
  .case-impact,
  .case-close {
    grid-template-columns: 1fr;
  }

  .case-hero-card {
    max-height: 62dvh;
  }

  .case-media-grid.is-scroll-driven img,
  .case-media-grid-uniform.is-scroll-driven img,
  .case-media-grid-uniform.is-scroll-driven img:nth-child(2),
  .case-media-grid-uniform.is-scroll-driven img:nth-child(3) {
    flex-basis: min(78vw, 860px);
    width: min(78vw, 860px);
    height: min(64dvh, 620px);
  }

  .strategy-sample-hero,
  .ops-sample {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .strategy-map,
  .ops-panel {
    min-height: 560px;
  }

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

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    padding: 14px 18px;
  }

  .brand-word {
    font-size: 36px;
  }

  .brand-dot {
    width: 7px;
    height: 7px;
  }

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

  .header-cta {
    display: none;
  }

  .menu-inner {
    padding: 104px 18px 24px;
  }

  .menu-nav a {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 20px 0;
    font-size: 52px;
  }

  .menu-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-shell {
    min-height: auto;
    padding: 88px 18px 68px;
  }

  .kinetic-hero {
    min-height: 300svh;
  }

  .kinetic-sticky {
    min-height: 100dvh;
    padding: 92px 18px 50px;
  }

  .kinetic-sticky::before {
    inset: 72px 18px 46px;
  }

  .kinetic-line {
    font-size: clamp(52px, 14vw, 78px);
    margin-top: 58px;
  }

  .kinetic-line.is-kinetic {
    min-height: 2.1em;
    font-size: clamp(54px, 15vw, 92px);
  }

  .kinetic-portal {
    margin-top: 82px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 0.9;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 28px;
    padding-top: 24px;
  }

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

  .button {
    min-height: 52px;
    padding-inline: 16px;
  }

  .hero-bottom p,
  .section-copy p {
    font-size: 16px;
  }

  .ticker span {
    padding: 14px 18px;
    font-size: 32px;
  }

  .section-grid,
  .method,
  .proof,
  .conversion-bridge,
  .contact {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 68px 18px;
  }

  .section-label {
    font-size: 10px;
  }

  .outcome-strip article {
    min-height: 150px;
    padding: 18px;
  }

  .outcome-strip span {
    margin-bottom: 30px;
  }

  .outcome-strip strong {
    max-width: 18ch;
    font-size: 34px;
  }

  .services-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 104px 18px 56px;
  }

  .services-hero h1 {
    font-size: 50px;
    line-height: 0.88;
  }

  .services-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .services-hero-mark {
    width: calc(100% - 8px);
    justify-self: center;
    border-width: 2px;
    box-shadow: 8px 8px 0 rgba(250, 95, 27, 0.88);
  }

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

  .service-proof-strip span,
  .service-proof-strip span:nth-child(3n) {
    min-height: 62px;
    border-right: 2px solid var(--ink);
    font-size: 32px;
  }

  .service-proof-strip span:nth-child(2n) {
    border-right: 0;
  }

  .services-intro,
  .service-offering,
  .service-method,
  .faq-section,
  .service-cta,
  .form-section {
    padding: 68px 18px;
  }

  .service-cta {
    min-height: auto;
    gap: 36px;
  }

  .service-cta-panel {
    padding: 18px;
  }

  .section-copy h2,
  .capability-panel h2,
  .method-copy h2,
  .proof-copy h2,
  .service-offering h2,
  .faq-section h2,
  .service-method h2,
  .service-cta h2,
  .contact h2,
  .form-intro h2 {
    font-size: 46px;
    line-height: 0.9;
  }

  .form-hero {
    gap: 36px;
    min-height: auto;
    padding: 104px 18px 48px;
  }

  .form-hero h1 {
    font-size: 52px;
  }

  .form-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .form-aside {
    gap: 28px;
    padding: 18px;
    box-shadow: 8px 8px 0 rgba(250, 95, 27, 0.88);
  }

  .form-aside span {
    font-size: 46px;
  }

  .form-aside strong {
    font-size: 30px;
  }

  .form-section {
    padding-top: 46px;
  }

  .form-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

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

  .form-actions .button,
  .form-actions .text-link {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .service-grid article {
    min-height: 230px;
    padding: 20px;
  }

  .service-grid span,
  .service-method-list span {
    margin-bottom: 34px;
    font-size: 46px;
  }

  .service-method {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-list {
    margin-top: 36px;
  }

  .faq-list summary {
    gap: 16px;
    padding: 20px 0;
    font-size: 30px;
  }

  .faq-list summary::after {
    font-size: 42px;
  }

  .contact {
    gap: 36px;
  }

  .conversion-copy h2 {
    font-size: 50px;
  }

  .conversion-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .conversion-path a {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 138px;
    padding: 18px;
  }

  .conversion-path span {
    font-size: 40px;
  }

  .conversion-path strong {
    font-size: 31px;
  }

  .contact-panel {
    min-width: 0;
  }

  .contact-panel .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-email-card,
  .contact-panel .contact-actions .button {
    width: 100%;
  }

  .contact-brief {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 18px;
  }

  .contact-brief strong {
    font-size: 28px;
  }

  .work {
    min-height: auto;
    justify-content: flex-start;
    padding: 68px 18px 88px;
  }

  .work-heading {
    padding-top: 0;
  }

  .work-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    height: auto;
    min-height: 0;
  }

  .work-list {
    order: 2;
    min-height: auto;
  }

  .work-preview {
    order: 1;
  }

  .work-item {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 86px;
    gap: 14px;
    padding-right: 8px;
  }

  .work-item:hover,
  .work-item.is-active {
    padding-left: 12px;
  }

  .work-meta {
    grid-column: 2;
  }

  .work-name {
    font-size: 28px;
  }

  .work-preview {
    position: relative;
    top: auto;
    width: calc(100% - 6px);
    height: auto;
    min-width: 0;
    margin-top: 0;
    margin-left: 0;
  }

  .work-preview-frame {
    border-width: 2px;
    box-shadow: 8px 8px 0 rgba(250, 95, 27, 0.88);
  }

  .work-preview img {
    aspect-ratio: 4 / 3;
  }

  .work-preview-frame {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .work-preview-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
  }

  .work-preview-caption > div {
    width: 100%;
    justify-content: space-between;
  }

  .work-preview-caption [data-work-preview-title] {
    max-width: 24ch;
  }

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

  .capability-list span {
    min-height: 76px;
    padding: 16px;
    font-size: clamp(25px, 8.6vw, 32px);
  }

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

  .method-steps article {
    min-height: 190px;
  }

  .method-steps h3 {
    margin-top: 42px;
    font-size: 36px;
  }

  .proof-stats {
    gap: 14px;
  }

  .proof-stats div {
    padding: 18px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .proof-stats strong {
    margin-bottom: 26px;
    font-size: 44px;
  }

  .proof-stats h3 {
    font-size: 34px;
  }

  .case-hero-split,
  .case-overview,
  .case-impact,
  .case-close {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 92px 18px 60px;
  }

  .case-hero-split {
    gap: 32px;
  }

  .case-hero h1 {
    font-size: 56px;
  }

  .case-hero h1.case-title-tight {
    font-size: 48px;
  }

  .case-hero-lede {
    font-size: 17px;
  }

  .case-hero-card {
    aspect-ratio: 1 / 1;
    border-width: 2px;
    box-shadow: 8px 8px 0 rgba(250, 95, 27, 0.88);
  }

  .case-hero-card-square {
    aspect-ratio: 1 / 1;
  }

  .case-overview {
    padding-top: 68px;
  }

  .case-facts {
    position: static;
  }

  .case-narrative {
    gap: 44px;
  }

  .case-narrative article {
    padding-bottom: 44px;
  }

  .case-narrative h2 {
    font-size: 40px;
  }

  .case-impact {
    gap: 34px;
    padding-top: 68px;
  }

  .case-impact-copy h2 {
    font-size: 48px;
  }

  .case-impact-grid {
    grid-template-columns: 1fr;
  }

  .case-impact-grid article {
    min-height: 230px;
    padding: 18px;
  }

  .case-impact-grid span {
    margin-bottom: 42px;
    font-size: 42px;
  }

  .case-impact-grid strong {
    font-size: 32px;
  }

  .case-statement {
    min-height: auto;
    padding: 68px 18px;
  }

  .case-statement p {
    font-size: 62px;
  }

  .case-media-full {
    padding: 18px;
  }

  .case-media-full img,
  .case-media-grid img {
    border-width: 4px;
  }

  .case-media-grid {
    grid-template-columns: 1fr;
    padding: 0 18px 68px;
  }

  .case-close {
    padding-top: 68px;
  }

  .case-close h2 {
    font-size: 50px;
  }

  .case-close-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 76px 18px 18px;
  }

  .lightbox-frame {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-frame img {
    max-height: calc(100svh - 180px);
    border-width: 4px;
    box-shadow: 8px 8px 0 var(--flame);
  }

  .lightbox-frame figcaption {
    flex-direction: column;
    gap: 6px;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
    min-height: 56px;
  }

  .lightbox-prev {
    grid-column: 1;
  }

  .lightbox-next {
    grid-column: 2;
  }

  .lightbox-close {
    top: 18px;
    right: 18px;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 18px;
  }

  .strategy-sample-hero,
  .strategy-artifacts,
  .ops-sample {
    padding: 104px 18px 68px;
  }

  .strategy-sample-hero,
  .strategy-section-copy,
  .ops-sample {
    grid-template-columns: 1fr;
  }

  .strategy-sample-hero h1,
  .strategy-section-copy h2,
  .ops-copy h2 {
    font-size: 52px;
  }

  .strategy-map,
  .ops-panel {
    min-height: 520px;
    box-shadow: 8px 8px 0 rgba(250, 95, 27, 0.88);
  }

  .strategy-map-grid,
  .ops-dashboard,
  .artifact-grid {
    grid-template-columns: 1fr;
  }

  .strategy-map-grid span {
    min-height: 82px;
    font-size: 34px;
  }

  .strategy-map-flow {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .artifact-card {
    min-height: 330px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .artifact-dark {
    box-shadow: 8px 8px 0 var(--flame);
  }

  .artifact-card h3 {
    font-size: 44px;
  }

  .ops-dashboard article {
    min-height: 148px;
  }
}

@media (max-width: 480px) {
  .menu-nav a {
    font-size: 46px;
  }

  .kinetic-line.is-kinetic {
    font-size: clamp(48px, 14vw, 78px);
  }

  .hero h1,
  .services-hero h1 {
    font-size: 48px;
  }

  .section-copy h2,
  .capability-panel h2,
  .method-copy h2,
  .proof-copy h2,
  .service-offering h2,
  .faq-section h2,
  .service-method h2,
  .service-cta h2,
  .contact h2,
  .form-intro h2 {
    font-size: 38px;
  }

  .button {
    letter-spacing: 0.14em;
  }

  .work-name {
    font-size: 25px;
  }

  .outcome-strip strong,
  .proof-stats h3,
  .contact-brief strong {
    font-size: 30px;
  }

  .service-grid h3,
  .service-method-list h3 {
    font-size: 34px;
  }

  .case-hero h1 {
    font-size: 50px;
  }

  .case-hero h1.case-title-tight {
    font-size: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ticker-track {
    animation: none !important;
  }
}
