@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/barlow-condensed-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/barlow-condensed-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/barlow-condensed-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #0b0b0a;
  --paper: #f3f0e7;
  --white: #ffffff;
  --yellow: #ffd400;
  --red: #f04b36;
  --muted: #5f5d56;
  --line: #bdb9af;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 1240px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: var(--body);
}

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

img {
  width: 100%;
  height: auto;
}

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

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

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

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--ink);
  background: rgba(243, 240, 231, 0.97);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark,
.footer-wordmark {
  display: inline-grid;
  grid-template-columns: 1fr;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}

.wordmark {
  padding: 0;
  background: transparent;
}

.brand-logo {
  display: block;
  width: 12rem;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav > a:not(.nav-cta):hover::after,
.desktop-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  color: var(--white);
  background: var(--ink);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--ink);
  background: var(--yellow);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  min-width: 72px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(300px, calc(100vw - 40px));
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.mobile-nav nav a {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.mobile-nav nav a:last-child {
  border-bottom: 0;
  background: var(--yellow);
}

.hero {
  padding: clamp(60px, 7vw, 104px) 0 clamp(84px, 9vw, 132px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(50px, 7vw, 104px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 5px;
  display: inline-block;
  flex: 0 0 auto;
  background: var(--red);
}

.hero h1,
.section-heading h2,
.story h2,
.brief-copy h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(4rem, 6.2vw, 6.8rem);
  line-height: 0.94;
}

.hero-line {
  display: block;
  text-wrap: balance;
  white-space: nowrap;
}

.hero-line + .hero-line {
  margin-top: 0.12em;
}

.hero-promise {
  display: block;
  width: fit-content;
  margin-top: 0.12em;
  padding: 0 0.08em 0.03em;
  color: var(--ink);
  background: var(--yellow);
}

.hero-lead {
  max-width: 620px;
  margin-top: 38px;
  color: #373630;
  font-size: clamp(1.03rem, 1.45vw, 1.24rem);
  line-height: 1.65;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button span {
  font-size: 1rem;
}

.button:hover,
.button:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 4px 4px 0 var(--ink);
}

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

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

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

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

.hero-media {
  position: relative;
  min-width: 0;
  margin-right: 14px;
}

.hero-media::before {
  position: absolute;
  z-index: -1;
  top: 18px;
  right: -18px;
  bottom: -18px;
  left: 18px;
  content: "";
  background: var(--yellow);
}

.hero-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--ink);
  filter: saturate(0.92) contrast(1.03);
}

.hero-media figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--ink);
}

.hero-media figcaption span,
.work-card figcaption span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  max-width: 220px;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.hero-tag {
  position: absolute;
  top: 22px;
  left: -28px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid var(--ink);
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left top;
}

.signal-strip {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 13px 0;
  color: var(--white);
  background: var(--ink);
  border-block: 1px solid var(--ink);
}

.signal-track {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem clamp(0.8rem, 1.7vw, 1.55rem);
  padding-inline: 20px;
  font-family: var(--display);
  font-size: clamp(0.84rem, 1.15vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.signal-item:not(:first-child)::before {
  margin-right: clamp(0.8rem, 1.7vw, 1.55rem);
  color: var(--yellow);
  font-size: 0.62em;
  content: "◆";
  vertical-align: middle;
}

.section {
  padding: clamp(86px, 10vw, 144px) 0;
}

.section-heading {
  margin-bottom: clamp(54px, 7vw, 90px);
}

.split-heading,
.work-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.story h2,
.brief-copy h2 {
  font-size: clamp(3.3rem, 6.3vw, 6.2rem);
  line-height: 0.85;
}

.split-heading > p,
.work-heading > p {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 0.97rem;
}

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

.capability-grid article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.22);
}

.capability-grid article:hover {
  background: var(--yellow);
}

.capability-grid h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.capability-grid p {
  max-width: 500px;
  margin-top: 18px;
  color: #484741;
  font-size: 0.93rem;
}

.capability-grid a {
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.capability-grid a span {
  margin-left: 8px;
}

.work {
  color: var(--white);
  background: var(--ink);
}

.work .eyebrow > span {
  background: var(--yellow);
}

.work-heading > p {
  color: #b8b6af;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 92px;
  gap: 18px;
}

.work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #343431;
  background: #1b1b18;
}

.work-card-large {
  grid-column: 1 / 8;
  grid-row: 1 / 7;
}

.work-card-tall {
  grid-column: 8 / 13;
  grid-row: 1 / 7;
}

.work-card-square:nth-child(3) {
  grid-column: 1 / 7;
  grid-row: 7 / 12;
}

.work-card-square:nth-child(4) {
  grid-column: 7 / 13;
  grid-row: 7 / 12;
}

.work-card-wide {
  grid-column: 1 / 13;
  grid-row: 12 / 18;
}

.work-card picture,
.work-card img {
  width: 100%;
  height: 100%;
}

.work-card img {
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.work-card:hover img {
  transform: scale(1.025);
}

.work-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 12px 14px;
  color: var(--ink);
  background: var(--yellow);
}

.work-card figcaption span,
.work-card figcaption strong {
  display: block;
}

.work-card figcaption strong {
  margin-top: 2px;
  font-family: var(--display);
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.selected-work {
  background: var(--paper);
}

.selected-work-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 60px;
  margin-bottom: clamp(48px, 7vw, 84px);
}

.selected-work-head h2 {
  font-family: var(--display);
  font-size: clamp(3.3rem, 6.3vw, 6.2rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.selected-work-intro {
  padding-bottom: 6px;
}

.selected-work-intro p {
  color: #56544d;
  font-size: 0.94rem;
}

.selected-work-intro .text-link {
  display: inline-block;
  margin-top: 22px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.selected-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  grid-template-rows: repeat(2, minmax(270px, 1fr));
  gap: 18px;
}

.selected-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.selected-card-teamwear {
  grid-row: 1 / 3;
}

.selected-card picture,
.selected-card img {
  width: 100%;
  height: 100%;
}

.selected-card img {
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.selected-card-teamwear img {
  object-position: center;
}

.selected-card:hover img {
  transform: scale(1.025);
}

.selected-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 12px 14px;
  color: var(--white);
  background: var(--ink);
}

.selected-card figcaption span,
.selected-card figcaption strong {
  display: block;
}

.selected-card figcaption span {
  color: var(--yellow);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selected-card figcaption strong {
  margin-top: 3px;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.story {
  color: var(--white);
  background: #171714;
  border-top: 1px solid #343431;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.eyebrow-light > span {
  background: var(--red);
}

.story-intro > p:last-child {
  max-width: 540px;
  margin-top: 34px;
  color: #bebcb5;
  font-size: 1rem;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #5b5953;
}

.timeline li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 30px;
  padding: 30px 0 34px;
  border-bottom: 1px solid #5b5953;
}

.timeline time {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 0.85;
}

.timeline h3 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.timeline p {
  margin-top: 9px;
  color: #aaa8a1;
  font-size: 0.9rem;
}

.brief-section {
  background: var(--yellow);
}

.brief-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  align-items: start;
  gap: clamp(54px, 8vw, 110px);
}

.brief-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin-top: 28px;
  color: #3f3d36;
}

.brief-copy address {
  display: grid;
  gap: 24px;
  margin-top: 52px;
  font-style: normal;
}

.brief-copy address > div {
  padding-top: 16px;
  border-top: 1px solid rgba(11, 11, 10, 0.45);
}

.brief-copy address > div > span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brief-copy address a,
.brief-copy address p {
  max-width: 460px;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.55;
}

.contact-links {
  display: grid;
  margin-top: 12px;
  border-top: 1px solid rgba(11, 11, 10, 0.35);
}

.brief-copy address .contact-links a {
  max-width: none;
  min-height: 62px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(11, 11, 10, 0.35);
  color: var(--ink);
  text-decoration: none;
  transition: padding 180ms ease, color 180ms ease, background 180ms ease;
}

.contact-links a strong {
  font-family: var(--display);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.contact-links a span {
  font-size: 0.96rem;
  font-weight: 750;
  letter-spacing: 0.035em;
}

.contact-links a i {
  font-size: 1.2rem;
  font-style: normal;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  padding-inline: 12px;
  color: var(--ink);
  background: var(--paper);
}

.brief-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 16px;
  padding: clamp(28px, 4vw, 46px);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
}

.contact-choice {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-choice legend {
  margin-bottom: 9px;
  padding: 0;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.contact-choice label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

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

.contact-choice label > span {
  min-height: 64px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 10px 12px;
  border: 1px solid #727069;
  background: var(--white);
  transition: color 150ms ease, background 150ms ease;
}

.contact-choice strong,
.contact-choice small {
  display: block;
}

.contact-choice strong {
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.contact-choice small {
  margin-top: 2px;
  font-size: 0.66rem;
  font-weight: 700;
}

.contact-choice input:checked + span {
  color: var(--white);
  background: var(--ink);
  box-shadow: inset 0 -5px 0 var(--yellow);
}

.contact-choice input:focus-visible + span {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.form-field {
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #727069;
  border-radius: 0;
  outline: 0;
  background: var(--white);
  font-size: 16px;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input[type="date"] {
  display: block;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--yellow);
}

.brief-form .button {
  width: 100%;
  margin-top: 2px;
}

.form-note {
  color: #68665f;
  font-size: 0.7rem;
  line-height: 1.5;
}

.site-footer {
  padding: 72px 0 28px;
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-wordmark {
  padding: 0;
  color: var(--white);
  background: transparent;
}

.footer-wordmark .brand-logo {
  width: clamp(18rem, 36vw, 29rem);
}

.footer-top > p {
  max-width: 330px;
  color: #aeadA7;
  font-size: 0.83rem;
  text-align: right;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #454541;
  color: #aeadA7;
  font-size: 0.72rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-bottom nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.social-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--yellow);
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.privacy-main {
  min-height: 68vh;
  padding: clamp(72px, 10vw, 130px) 0;
}

.privacy-copy {
  max-width: 760px;
}

.privacy-copy h1 {
  margin-bottom: 34px;
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.privacy-copy h2 {
  margin: 42px 0 12px;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.privacy-copy p,
.privacy-copy li {
  color: #474640;
}

.privacy-copy ul {
  padding-left: 1.2rem;
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 0.76rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
    gap: 48px;
  }

  .story-grid,
  .brief-grid {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }

  .timeline li {
    grid-template-columns: 105px 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-grid,
  .split-heading,
  .work-heading,
  .selected-work-head,
  .story-grid,
  .brief-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13.2vw, 5rem);
    line-height: 1.12;
  }

  .hero-line {
    white-space: normal;
  }

  .hero-line + .hero-line {
    margin-top: 0.18em;
  }

  .hero-promise {
    margin-top: 0.18em;
  }

  .hero-media {
    width: calc(100% - 14px);
    max-width: 660px;
    margin-inline: auto;
  }

  .hero-media img {
    aspect-ratio: 5 / 4;
  }

  .split-heading,
  .work-heading,
  .selected-work-head {
    gap: 28px;
  }

  .split-heading > p,
  .work-heading > p {
    max-width: 630px;
  }


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

  .work-card,
  .work-card-large,
  .work-card-tall,
  .work-card-square:nth-child(3),
  .work-card-square:nth-child(4),
  .work-card-wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .work-card-wide {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 8;
  }

  .selected-work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .selected-card,
  .selected-card-teamwear {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .selected-card-teamwear {
    aspect-ratio: 16 / 9;
  }

  .story-grid,
  .brief-grid {
    gap: 64px;
  }

  .story-intro {
    max-width: 660px;
  }

  .brief-copy {
    max-width: 700px;
  }

  .brief-form {
    max-width: 700px;
  }
}

@media (max-width: 620px) {
  .wordmark .brand-logo {
    width: 9.25rem;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.5rem);
  }

  .hero-lead {
    margin-top: 30px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-media img {
    aspect-ratio: 4 / 5;
  }

  .hero-media figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hero-media figcaption strong {
    max-width: none;
    text-align: left;
  }

  .hero-tag {
    display: none;
  }

  .section-heading h2,
  .selected-work-head h2,
  .story h2,
  .brief-copy h2 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

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

  .capability-grid article {
    min-height: 250px;
  }


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

  .work-card,
  .work-card-large,
  .work-card-tall,
  .work-card-square:nth-child(3),
  .work-card-square:nth-child(4),
  .work-card-wide {
    grid-column: 1;
    aspect-ratio: 4 / 3;
  }

  .work-card:nth-child(2) {
    aspect-ratio: 4 / 5;
  }

  .work-card figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
  }

  .selected-card figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
  }

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

  .contact-choice label > span {
    min-height: 58px;
  }

  .timeline li {
    grid-template-columns: 84px 1fr;
    gap: 18px;
  }

  .timeline time {
    font-size: 2.45rem;
  }

  .brief-form {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .form-field-wide {
    grid-column: 1;
  }

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

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

  .footer-top > p {
    text-align: left;
  }

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

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

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