:root {
  --paper: #f3f4f1;
  --paper-soft: #e8eae7;
  --paper-deep: #d8dcda;
  --ink: #17191b;
  --ink-soft: #282c2f;
  --muted: #62686b;
  --line: rgb(23 25 27 / 18%);
  --line-dark: rgb(243 244 241 / 22%);
  --record: #c9403b;
  --header-height: 76px;
  --page-pad: 40px;
  --content-width: 1440px;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

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

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

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

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

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

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

button {
  border: 0;
}

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

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

figure,
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

main section[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

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

:focus-visible {
  outline: 3px solid currentcolor;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.intro {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: grid;
  grid-template-columns: auto auto minmax(120px, 360px) auto;
  gap: 24px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--ink);
  transition: visibility 0s 700ms, opacity 700ms cubic-bezier(0.65, 0, 0.35, 1);
}

.intro strong,
.intro small {
  font-size: 12px;
  font-weight: 800;
}

.intro-line {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgb(255 255 255 / 18%);
}

.intro-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--paper);
  transform-origin: left;
  animation: intro-scan 1.35s cubic-bezier(0.65, 0, 0.35, 1) both;
}

.intro-mark,
.brand-mark {
  display: grid;
  width: 48px;
  gap: 5px;
  transform: skewX(-21deg);
}

.intro-mark i,
.brand-mark i {
  display: block;
  height: 8px;
  background: currentcolor;
}

.intro-mark i:nth-child(1),
.brand-mark i:nth-child(1) {
  width: 100%;
}

.intro-mark i:nth-child(2),
.brand-mark i:nth-child(2) {
  width: 77%;
}

.intro-mark i:nth-child(3),
.brand-mark i:nth-child(3) {
  width: 54%;
}

body.is-ready .intro {
  visibility: hidden;
  opacity: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 126px;
  min-height: var(--header-height);
  border-top: 5px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgb(243 244 241 / 94%);
  backdrop-filter: blur(14px);
  transform: translateY(-100%);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-ready .site-header {
  transform: translateY(0);
}

.brand {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 14px 24px;
  border-right: 1px solid var(--line);
  font-size: 15px;
  font-weight: 900;
  line-height: 0.86;
}

.brand-mark {
  width: 42px;
  flex: 0 0 auto;
}

.brand-mark i {
  height: 7px;
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-width: 0;
}

.site-nav a {
  position: relative;
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 8px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

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

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current] {
  color: var(--ink);
  background: rgb(23 25 27 / 5%);
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a[aria-current]::after {
  transform: scaleX(1);
}

.site-nav span {
  font-size: 9px;
}

.site-nav b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.language-switch button {
  min-width: 0;
  border-left: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.language-switch button:hover {
  color: var(--ink);
  background: var(--paper-soft);
}

.language-switch button.is-active {
  color: var(--paper);
  background: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: 182vh;
  min-height: 1180px;
  background: var(--paper);
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 650px;
  overflow: clip;
  background: var(--paper);
}

.hero-network,
.zoom-stage,
.hero-content {
  position: absolute;
  inset: 0;
}

.hero-network {
  z-index: 2;
  opacity: 0;
  transition: opacity 520ms ease;
  will-change: opacity, transform;
}

body.is-network-ready .hero-network {
  opacity: 1;
}

.network-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.network-spoke,
.network-relation {
  vector-effect: non-scaling-stroke;
  stroke: rgb(23 25 27 / 22%);
  stroke-width: 1;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke 260ms ease, stroke-width 260ms ease, opacity 260ms ease;
}

.network-relation {
  opacity: 0.15;
  stroke: rgb(23 25 27 / 17%);
}

body.is-network-live .network-spoke,
body.is-network-live .network-relation {
  animation: draw-line 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.network-spoke.is-hot,
.network-relation.is-hot {
  opacity: 1;
  stroke: var(--ink);
  stroke-width: 1.7;
}

.network-spoke.is-related {
  opacity: 0.55;
}

.network-flow {
  pointer-events: none;
  opacity: 0;
  vector-effect: non-scaling-stroke;
  stroke-width: 2;
  stroke-dasharray: 0.18 0.82;
  stroke-linecap: round;
  transition: opacity 300ms ease;
}

.network-flow.is-active {
  opacity: 0.95;
  animation: network-flow 1.15s linear infinite;
}

.network-node {
  fill: var(--paper);
  stroke: rgb(23 25 27 / 54%);
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: node-breathe 3.4s ease-in-out infinite;
  transition: fill 220ms ease, r 220ms ease, stroke 220ms ease;
}

.network-node.is-active {
  fill: var(--ink);
  stroke: var(--ink);
  r: 4px;
}

.network-node.is-related {
  fill: var(--paper-deep);
  stroke: var(--ink);
}

.network-node-center {
  fill: var(--ink);
}

.network-word {
  position: absolute;
  z-index: 2;
  top: var(--y);
  left: var(--x);
  display: block;
  padding: 9px 12px;
  color: rgb(23 25 27 / 66%);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1;
  opacity: 0;
  cursor: default;
  transform: translate3d(var(--sx), var(--sy), 0);
  transition: color 220ms ease, opacity 800ms ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-network-live .network-word {
  opacity: 1;
  transform: translate3d(calc(var(--mx, 0) * var(--depth) * 7px), calc(var(--my, 0) * var(--depth) * 5px), 0);
  animation: word-drift 5.8s ease-in-out infinite alternate;
}

.network-word:nth-of-type(3n + 1) {
  animation-delay: -1.4s;
}

.network-word:nth-of-type(3n + 2) {
  animation-delay: -3.1s;
}

.network-word.is-focus {
  z-index: 4;
  color: var(--ink);
}

.network-word.is-related {
  color: var(--ink-soft);
}

.hero-content {
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 44px) var(--page-pad) 70px;
  text-align: center;
  opacity: 0;
  transform: translateY(26px);
  pointer-events: none;
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

body.is-name-ready .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-content > * {
  pointer-events: none;
}

.hero-actions,
.hero-actions * {
  pointer-events: auto;
}

.hero-eyebrow,
.kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 18px 0 20px;
  font-size: 112px;
  font-weight: 900;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-content h1 span {
  display: block;
}

.hero-copy {
  max-width: 720px;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid currentcolor;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 160ms ease;
}

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

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

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

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

.button-light:hover,
.button-light:focus-visible {
  color: var(--paper);
  background: transparent;
}

.button.is-pressed,
button.is-pressed {
  transform: scale(0.97);
}

.scroll-hint {
  position: absolute;
  z-index: 5;
  bottom: 24px;
  left: 50%;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  transform: translateX(-50%);
}

.scroll-hint::before {
  display: block;
  width: 1px;
  height: 28px;
  margin: 0 auto 8px;
  content: "";
  background: currentcolor;
  animation: scroll-guide 1.8s ease-in-out infinite;
  transform-origin: top;
}

.zoom-stage {
  z-index: 3;
  display: grid;
  place-items: center;
  padding: calc(var(--header-height) + 22px) var(--page-pad) 28px;
  pointer-events: none;
}

.light-sweep {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 86%;
  height: 28%;
  opacity: var(--light-opacity, 0);
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 88%), transparent);
  filter: blur(16px);
  transform: translate(-50%, -50%) scaleX(var(--light-scale, 0.05));
  pointer-events: none;
}

.camera-frame {
  --zoom: 0.065;
  --frame-opacity: 0;
  position: relative;
  z-index: 2;
  width: min(88%, 1460px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgb(23 25 27 / 32%);
  background: #0d1012;
  box-shadow: 0 24px 70px rgb(13 16 18 / 18%);
  opacity: var(--frame-opacity);
  transform: scale(var(--zoom));
  transform-origin: center;
  pointer-events: auto;
  will-change: transform, opacity;
}

.camera-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
  transition: filter 450ms ease, transform 8s linear;
}

.camera-frame.is-recording {
  border-color: var(--record);
  box-shadow: inset 0 0 0 4px var(--record), 0 24px 70px rgb(13 16 18 / 25%);
}

.camera-frame.is-recording > img {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.025);
}

.camera-ui {
  position: absolute;
  z-index: 3;
  inset: 0;
  color: #f7f7f3;
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  text-shadow: 0 1px 3px rgb(0 0 0 / 75%);
  pointer-events: none;
}

.hud-top,
.hud-bottom {
  position: absolute;
  right: 22px;
  left: 22px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

.hud-top {
  top: 18px;
}

.hud-bottom {
  bottom: 18px;
}

.hud-top strong {
  color: #dde2df;
}

.is-recording .hud-top strong,
.is-recording #timecode {
  color: #ff6a63;
}

.audio-meters {
  position: absolute;
  bottom: 48px;
  left: 22px;
  display: flex;
  gap: 3px;
  align-items: flex-end;
  width: 54px;
  height: 28px;
  border-left: 1px solid #f7f7f3;
  border-bottom: 1px solid #f7f7f3;
  padding: 0 0 3px 4px;
}

.audio-meters i {
  width: 5px;
  height: calc(var(--audio, 0.15) * 100%);
  min-height: 4px;
  background: #dde2df;
}

.frame-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: #f7f7f3;
  border-style: solid;
  opacity: 0.82;
}

.frame-corner.c1 {
  top: 48px;
  left: 22px;
  border-width: 1px 0 0 1px;
}

.frame-corner.c2 {
  top: 48px;
  right: 22px;
  border-width: 1px 1px 0 0;
}

.frame-corner.c3 {
  right: 22px;
  bottom: 48px;
  border-width: 0 1px 1px 0;
}

.frame-corner.c4 {
  bottom: 48px;
  left: 22px;
  border-width: 0 0 1px 1px;
}

.play-button {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  gap: 10px;
  place-items: center;
  min-width: 140px;
  min-height: 110px;
  color: #fff;
  background: rgb(12 14 16 / 58%);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease, transform 180ms ease, opacity 220ms ease;
}

.play-button:hover {
  background: rgb(12 14 16 / 82%);
  transform: translate(-50%, -50%) scale(1.04);
}

.play-button span {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid currentcolor;
}

.play-button b {
  max-width: 128px;
  font-size: 10px;
  line-height: 1.25;
  text-align: center;
}

.is-recording .play-button {
  opacity: 0;
  pointer-events: none;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.proof-strip a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 94px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease;
}

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

.proof-strip a:hover,
.proof-strip a:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.proof-strip span,
.proof-strip b {
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
}

.section {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 116px var(--page-pad);
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 64px;
}

.section-head > h2,
.section-head > div {
  grid-column: 2;
}

.section-head > .kicker {
  grid-column: 1;
  grid-row: 1;
  padding-top: 10px;
}

.section-head h2,
.decision-copy h2,
.contact-copy h2 {
  max-width: 990px;
  font-size: 64px;
  font-weight: 800;
  line-height: 0.98;
  text-wrap: balance;
}

.section-intro {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 16px;
}

.experience-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.experience-main {
  grid-row: span 2;
  min-height: 676px;
}

.experience-card figure,
.experience-card img {
  width: 100%;
  height: 100%;
}

.experience-card figure {
  position: absolute;
  inset: 0;
}

.experience-card img {
  object-fit: cover;
  transition: filter 600ms ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.experience-card::after {
  position: absolute;
  inset: 28% 0 0;
  content: "";
  background: linear-gradient(transparent, rgb(8 10 12 / 88%));
}

.experience-copy {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.experience-copy > span,
.project-meta > span,
.journal-preview-card span {
  display: block;
  margin-bottom: 11px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.experience-copy h3 {
  max-width: 630px;
  font-size: 28px;
  line-height: 1.05;
}

.experience-copy p {
  max-width: 650px;
  margin-top: 12px;
  color: rgb(255 255 255 / 76%);
  font-size: 15px;
  line-height: 1.5;
}

.experience-card:hover img {
  filter: saturate(1.05);
  transform: scale(1.025);
}

.experience-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  grid-template-rows: repeat(2, 310px);
  gap: 16px;
}

.project {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.project-wide {
  grid-row: 1 / 3;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.84);
  transition: filter 450ms ease, transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-shade {
  position: absolute;
  inset: 24% 0 0;
  background: linear-gradient(transparent, rgb(8 10 12 / 90%));
}

.project-meta {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  transition: transform 320ms ease;
}

.project-meta h3 {
  max-width: 650px;
  font-size: 28px;
  line-height: 1.05;
}

.project-wide .project-meta h3 {
  font-size: 38px;
}

.project-meta p {
  max-width: 610px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgb(255 255 255 / 75%);
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  transition: max-height 300ms ease, margin-top 300ms ease, opacity 300ms ease;
}

.project::after {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 50%);
  content: attr(data-view-label);
  font-size: 10px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.project:hover img,
.project:focus-visible img {
  filter: saturate(1) brightness(0.95);
  transform: scale(1.035);
}

.project:hover .project-meta,
.project:focus-visible .project-meta {
  transform: translateY(-4px);
}

.project:hover .project-meta p,
.project:focus-visible .project-meta p {
  max-height: 90px;
  margin-top: 10px;
  opacity: 1;
}

.project:hover::after,
.project:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.works-page-link,
.journal-all {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.works-page-link::after,
.journal-all::after {
  content: "\2192";
  font-size: 22px;
  transition: transform 180ms ease;
}

.works-page-link:hover,
.journal-all:hover {
  color: var(--paper);
  background: var(--ink);
}

.works-page-link:hover::after,
.journal-all:hover::after {
  transform: translateX(5px);
}

.services {
  width: 100%;
  max-width: none;
  padding-right: max(var(--page-pad), calc((100% - var(--content-width)) / 2 + var(--page-pad)));
  padding-left: max(var(--page-pad), calc((100% - var(--content-width)) / 2 + var(--page-pad)));
  background: var(--paper-soft);
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.service-tabs button {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 14px 10px;
  min-width: 0;
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease;
}

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

.service-tabs button:hover,
.service-tabs button.is-active {
  color: var(--paper);
  background: var(--ink);
}

.service-tabs button.service-tab-core:not(.is-active) {
  background: #e0e3e1;
}

.service-tabs button.service-tab-core:hover {
  background: var(--ink-soft);
}

.service-tabs span {
  font-size: 10px;
  font-weight: 800;
}

.service-tabs b {
  min-width: 0;
  font-size: 20px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.service-tabs small {
  grid-column: 2;
  align-self: end;
  color: var(--muted);
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.service-tabs button:hover small,
.service-tabs button.is-active small {
  color: rgb(243 244 241 / 68%);
}

.service-panels {
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--paper);
}

.service-panel {
  animation: panel-enter 440ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-panel-intro {
  display: grid;
  grid-template-columns: 210px minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 42px;
  align-items: start;
  padding: 68px;
}

.service-panel-intro h3 {
  max-width: 680px;
  font-size: 58px;
  line-height: 0.98;
  text-wrap: balance;
}

.service-panel-intro > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.service-panel-media {
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--paper-deep);
}

.service-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.package {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 32px;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.package:last-child {
  border-right: 0;
}

.package.tier-medium {
  background: var(--paper-soft);
}

.package.tier-premium {
  color: var(--paper);
  background: var(--ink);
}

.package-tier {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 52px;
  font-size: 11px;
  font-weight: 900;
}

.package-tier b {
  font-size: 42px;
  line-height: 1;
}

.package h4 {
  max-width: 340px;
  margin-bottom: 18px;
  font-size: 28px;
  line-height: 1.05;
}

.package p {
  max-width: 440px;
  font-size: 15px;
  line-height: 1.55;
}

.package small {
  display: block;
  max-width: 440px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.tier-premium small {
  color: rgb(243 244 241 / 62%);
}

.service-evidence {
  padding: 24px 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.decision-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: 80px;
  min-height: 610px;
  padding: 100px max(var(--page-pad), calc((100% - var(--content-width)) / 2 + var(--page-pad)));
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.decision-band::before {
  position: absolute;
  top: 56px;
  right: 50px;
  content: attr(data-stage-label);
  color: rgb(243 244 241 / 4%);
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
}

.decision-copy,
.decision-actions {
  position: relative;
  z-index: 2;
}

.decision-copy .kicker {
  color: rgb(243 244 241 / 55%);
}

.decision-copy h2 {
  margin-top: 24px;
  font-size: 58px;
}

.decision-copy > p:last-child {
  max-width: 490px;
  margin-top: 24px;
  color: rgb(243 244 241 / 66%);
  font-size: 17px;
  line-height: 1.55;
}

.decision-actions {
  align-self: center;
  border-top: 1px solid var(--line-dark);
}

.decision-actions button {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  width: 100%;
  min-height: 84px;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, padding-left 180ms ease;
}

.decision-actions button::after {
  grid-column: 3;
  content: "\2192";
  font-size: 22px;
}

.decision-actions button:hover,
.decision-actions button:focus-visible {
  color: var(--ink);
  background: var(--paper);
  padding-left: 30px;
}

.decision-actions span {
  font-size: 10px;
}

.decision-actions b {
  font-size: 20px;
}

.decision-signal {
  position: absolute;
  right: 46px;
  bottom: 46px;
  display: flex;
  gap: 4px;
  align-items: end;
  height: 42px;
  opacity: 0.35;
}

.decision-signal i {
  width: 5px;
  height: 35%;
  background: var(--paper);
  animation: meter 1.4s ease-in-out infinite alternate;
}

.decision-signal i:nth-child(2n) {
  animation-delay: -0.55s;
}

.decision-signal i:nth-child(3n) {
  animation-delay: -0.95s;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid li {
  min-height: 300px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

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

.process-grid li > span {
  display: block;
  margin-bottom: 70px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 16px;
  font-size: 23px;
  line-height: 1.08;
}

.process-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.faq-list {
  margin-left: 252px;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 24px;
  align-items: center;
  min-height: 82px;
  padding: 18px 4px;
  font-size: 20px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary i {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 1px;
  content: "";
  background: currentcolor;
  transition: transform 220ms ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 780px;
  padding: 0 48px 28px 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.journal-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.journal-preview-card {
  display: grid;
  grid-template-rows: 250px 1fr;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.journal-preview-card figure {
  overflow: hidden;
  background: var(--paper-deep);
}

.journal-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journal-preview-card > div {
  min-height: 170px;
  padding: 24px;
}

.journal-preview-card span {
  color: var(--muted);
}

.journal-preview-card h3 {
  font-size: 24px;
  line-height: 1.08;
}

.journal-preview-card:hover,
.journal-preview-card:focus-visible {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-4px);
}

.journal-preview-card:hover img,
.journal-preview-card:focus-visible img {
  transform: scale(1.04);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 92px;
  padding: 110px max(var(--page-pad), calc((100% - var(--content-width)) / 2 + var(--page-pad)));
  color: var(--paper);
  background: var(--ink);
}

.contact-copy .kicker {
  color: rgb(243 244 241 / 55%);
}

.contact-copy h2 {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
}

.contact-copy > p:not(.kicker) {
  max-width: 560px;
  margin-top: 28px;
  color: rgb(243 244 241 / 65%);
  font-size: 17px;
  line-height: 1.6;
}

.contact-copy > a {
  display: inline-block;
  max-width: 100%;
  margin-top: 52px;
  border-bottom: 1px solid currentcolor;
  font-size: 28px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-meta {
  display: flex;
  gap: 20px;
  margin-top: 26px;
  color: rgb(243 244 241 / 55%);
  font-size: 10px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 16px;
  align-content: start;
}

.contact-form label {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.contact-form label > span {
  color: rgb(243 244 241 / 62%);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form .full,
.contact-form .button,
.contact-form .privacy-note,
.contact-form #formStatus {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--paper);
  background: rgb(243 244 241 / 4%);
  font-size: 16px;
  outline: 0;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--paper);
  background: rgb(243 244 241 / 8%);
}

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

.contact-form .button {
  width: 100%;
  margin-top: 6px;
}

.contact-form .privacy-note,
.contact-form #formStatus {
  color: rgb(243 244 241 / 50%);
  font-size: 11px;
  line-height: 1.45;
}

.contact-form #formStatus {
  min-height: 18px;
  color: var(--paper);
}

.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 28px;
  align-items: center;
  min-height: 70px;
  padding: 18px var(--page-pad);
  border-top: 1px solid var(--line-dark);
  color: rgb(243 244 241 / 60%);
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

footer a:hover {
  color: var(--paper);
}

.noscript {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 16px;
  color: var(--paper);
  background: var(--ink);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 720ms ease, transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.experience-card.reveal,
.project.reveal,
.journal-preview-card.reveal {
  clip-path: inset(10% 0 0);
  transition: opacity 720ms ease, transform 820ms cubic-bezier(0.22, 1, 0.36, 1), clip-path 920ms cubic-bezier(0.22, 1, 0.36, 1);
}

.experience-card.reveal.is-visible,
.project.reveal.is-visible,
.journal-preview-card.reveal.is-visible {
  clip-path: inset(0);
}

.experience-grid .reveal:nth-child(2),
.project-grid .reveal:nth-child(2),
.journal-preview-grid .reveal:nth-child(2),
.process-grid .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.experience-grid .reveal:nth-child(3),
.project-grid .reveal:nth-child(3),
.journal-preview-grid .reveal:nth-child(3),
.process-grid .reveal:nth-child(3) {
  transition-delay: 150ms;
}

.process-grid .reveal:nth-child(4) {
  transition-delay: 220ms;
}

@keyframes intro-scan {
  0% { transform: scaleX(0); }
  62% { transform: scaleX(1); transform-origin: left; }
  63% { transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@keyframes network-flow {
  to { stroke-dashoffset: -1; }
}

@keyframes node-breathe {
  0%, 100% { opacity: 0.55; transform: translate(0, 0) scale(0.92); }
  50% { opacity: 1; transform: translate(1.2px, -1px) scale(1.12); }
}

@keyframes word-drift {
  from { margin: -2px 0 0 -2px; }
  to { margin: 3px 0 0 3px; }
}

@keyframes scroll-guide {
  0%, 100% { opacity: 0.25; transform: scaleY(0.35); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes meter {
  from { height: 18%; }
  to { height: 100%; }
}

@keyframes panel-enter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  :root {
    --page-pad: 28px;
  }

  .site-header {
    grid-template-columns: 180px minmax(0, 1fr) 112px;
  }

  .brand {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-nav a {
    gap: 4px;
    font-size: 10px;
  }

  .site-nav span {
    display: none;
  }

  .hero-content h1 {
    font-size: 88px;
  }

  .section-head h2,
  .contact-copy h2 {
    font-size: 54px;
  }

  .section-head,
  .service-panel-intro {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 30px;
  }

  .service-panel-intro > p:last-child {
    grid-column: 2;
  }

  .service-panel-intro h3 {
    font-size: 48px;
  }

  .faq-list {
    margin-left: 200px;
  }

  .decision-band {
    gap: 48px;
  }

  .contact {
    gap: 55px;
  }
}

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

  .site-header {
    grid-template-columns: 178px 1fr 106px;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 72px;
    height: 67px;
    justify-self: end;
    border-left: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    left: 24px;
    width: 25px;
    height: 2px;
    background: var(--ink);
    transition: top 220ms ease, transform 220ms ease;
  }

  .menu-toggle span:first-child {
    top: 27px;
  }

  .menu-toggle span:last-child {
    top: 37px;
  }

  .menu-toggle.is-open span:first-child {
    top: 32px;
    transform: rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    top: 32px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 35px rgb(23 25 27 / 12%);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    transition: visibility 0s 220ms, opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    z-index: 5;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    display: grid;
    grid-template-columns: 44px 1fr;
    min-height: 58px;
    justify-content: start;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 16px;
    font-size: 13px;
    text-align: left;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav span {
    display: inline;
  }

  .site-nav b {
    white-space: normal;
  }

  .language-switch {
    grid-column: 3;
  }

  .hero-content h1 {
    font-size: 76px;
  }

  .section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-head,
  .service-panel-intro {
    grid-template-columns: 1fr;
  }

  .section-head > h2,
  .section-head > div,
  .section-head > .kicker,
  .service-panel-intro > p:last-child {
    grid-column: 1;
  }

  .section-head > .kicker {
    grid-row: auto;
    padding-top: 0;
  }

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

  .experience-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 560px;
  }

  .experience-card:not(.experience-main) {
    min-height: 410px;
  }

  .project-grid {
    grid-template-rows: repeat(2, 280px);
  }

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

  .service-tabs button:nth-child(2) {
    border-right: 0;
  }

  .service-tabs button:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-panel-intro {
    padding: 52px 36px;
  }

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

  .package {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .package:last-child {
    border-bottom: 0;
  }

  .package-tier {
    margin-bottom: 32px;
  }

  .package small {
    margin-top: 30px;
    padding-top: 0;
  }

  .decision-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .decision-band {
    min-height: 0;
  }

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

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

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

  .faq-list {
    margin-left: 0;
  }

  .journal-preview-grid {
    grid-template-columns: 1fr;
  }

  .journal-preview-card {
    grid-template-columns: 42% 1fr;
    grid-template-rows: minmax(210px, auto);
  }

  .contact {
    gap: 62px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 18px;
  }

  html {
    scroll-padding-top: 70px;
  }

  .intro {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 24px;
  }

  .intro-line {
    grid-column: 1 / -1;
  }

  .intro small {
    grid-column: 1 / -1;
  }

  .site-header {
    grid-template-columns: minmax(154px, 1fr) 62px 96px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
    padding: 12px 15px;
    font-size: 13px;
  }

  .brand-mark {
    width: 36px;
  }

  .brand-mark i {
    height: 6px;
  }

  .menu-toggle {
    width: 62px;
  }

  .menu-toggle span {
    left: 19px;
    width: 23px;
  }

  .language-switch {
    min-width: 0;
  }

  .language-switch button {
    font-size: 11px;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding-top: var(--header-height);
  }

  .hero-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .hero-network {
    height: 620px;
  }

  .hero-content {
    position: relative;
    min-height: 620px;
    padding: 112px 18px 70px;
  }

  .hero-eyebrow {
    max-width: 320px;
    font-size: 10px;
  }

  .hero-content h1 {
    margin-top: 16px;
    font-size: 66px;
    line-height: 0.8;
  }

  .hero-copy {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    max-width: 500px;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .network-word {
    padding: 7px;
    font-size: 14px;
  }

  .network-word[data-key="editing"],
  .network-word[data-key="signal"],
  .network-word[data-key="light"] {
    display: none;
  }

  .network-word[data-key="production"] { --x: 5% !important; --y: 22% !important; }
  .network-word[data-key="live"] { --x: 3% !important; --y: 51% !important; }
  .network-word[data-key="camera"] { --x: 20% !important; --y: 34% !important; }
  .network-word[data-key="sound"] { --x: 15% !important; --y: 83% !important; }
  .network-word[data-key="television"] { --x: 44% !important; --y: 14% !important; }
  .network-word[data-key="stage"] { --x: 79% !important; --y: 28% !important; }
  .network-word[data-key="screen"] { --x: 78% !important; --y: 78% !important; }

  .scroll-hint {
    display: none;
  }

  .zoom-stage {
    position: relative;
    inset: auto;
    display: block;
    padding: 0 16px 56px;
  }

  .light-sweep {
    display: none;
  }

  .camera-frame {
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .camera-ui {
    font-size: 8px;
  }

  .hud-top,
  .hud-bottom {
    right: 10px;
    left: 10px;
    gap: 8px;
  }

  .hud-top {
    top: 9px;
  }

  .hud-bottom {
    bottom: 9px;
  }

  .audio-meters {
    bottom: 27px;
    left: 10px;
    width: 39px;
    height: 20px;
  }

  .audio-meters i {
    width: 3px;
  }

  .frame-corner {
    width: 20px;
    height: 20px;
  }

  .frame-corner.c1,
  .frame-corner.c2 {
    top: 27px;
  }

  .frame-corner.c3,
  .frame-corner.c4 {
    bottom: 27px;
  }

  .frame-corner.c1,
  .frame-corner.c4 {
    left: 10px;
  }

  .frame-corner.c2,
  .frame-corner.c3 {
    right: 10px;
  }

  .play-button {
    min-width: 108px;
    min-height: 82px;
  }

  .play-button span {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 17px;
  }

  .play-button b {
    max-width: 96px;
    font-size: 8px;
  }

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

  .proof-strip a {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip a:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .section-head {
    gap: 22px;
    margin-bottom: 38px;
  }

  .section-head h2,
  .contact-copy h2,
  .decision-copy h2 {
    font-size: 40px;
    line-height: 1.02;
  }

  .section-intro {
    margin-top: 18px;
    font-size: 16px;
  }

  .experience-grid,
  .project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .experience-main,
  .experience-card:not(.experience-main) {
    grid-column: auto;
    min-height: 430px;
  }

  .experience-copy,
  .project-meta {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .experience-copy h3,
  .project-meta h3,
  .project-wide .project-meta h3 {
    font-size: 26px;
  }

  .project,
  .project-wide {
    grid-row: auto;
    min-height: 410px;
  }

  .project-meta p {
    max-height: none;
    margin-top: 10px;
    opacity: 1;
  }

  .project::after {
    display: none;
  }

  .services {
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }

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

  .service-tabs button {
    min-height: 130px;
    padding: 17px 14px;
  }

  .service-tabs b {
    font-size: 17px;
  }

  .service-tabs small {
    font-size: 8px;
  }

  .service-panel-intro {
    gap: 20px;
    padding: 38px 20px;
  }

  .service-panel-intro h3 {
    font-size: 38px;
    line-height: 1.02;
  }

  .service-panel-intro > p:last-child {
    font-size: 16px;
  }

  .service-panel-media {
    aspect-ratio: 4 / 3;
  }

  .package {
    padding: 26px 22px;
  }

  .package-tier b {
    font-size: 34px;
  }

  .package h4 {
    font-size: 25px;
  }

  .decision-band,
  .contact {
    padding: 74px var(--page-pad);
  }

  .decision-band {
    gap: 52px;
  }

  .decision-band::before {
    display: none;
  }

  .decision-actions button {
    grid-template-columns: 34px 1fr;
    padding: 0 14px;
  }

  .decision-actions b {
    font-size: 17px;
  }

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

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

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

  .process-grid li > span {
    margin-bottom: 34px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 17px;
  }

  .journal-preview-card {
    grid-template-columns: 1fr;
    grid-template-rows: 220px auto;
  }

  .journal-preview-card > div {
    min-height: 140px;
  }

  .contact {
    gap: 52px;
  }

  .contact-copy > a {
    margin-top: 38px;
    font-size: 22px;
  }

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

  .contact-form .full,
  .contact-form .button,
  .contact-form .privacy-note,
  .contact-form #formStatus {
    grid-column: 1;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 22px 18px;
  }
}

@media (max-width: 420px) {
  .site-header {
    grid-template-columns: minmax(142px, 1fr) 58px 86px;
  }

  .brand {
    font-size: 12px;
  }

  .brand-mark {
    width: 32px;
  }

  .menu-toggle {
    width: 58px;
  }

  .menu-toggle span {
    left: 18px;
    width: 22px;
  }

  .hero-content {
    min-height: 590px;
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 54px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .service-tabs small {
    font-size: 9px;
  }

  .project,
  .project-wide,
  .experience-main,
  .experience-card:not(.experience-main) {
    min-height: 380px;
  }

  .section-head h2,
  .contact-copy h2,
  .decision-copy h2,
  .service-panel-intro h3 {
    font-size: 35px;
  }
}

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

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

  .intro {
    display: none;
  }

  .site-header,
  .hero-content,
  .hero-network,
  .network-word,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .camera-frame {
    opacity: 1;
    transform: none;
  }
}
