:root {
  color-scheme: light;
  --ink: #060606;
  --paper: #f4f0e6;
  --white: #fff;
  --yellow: #ffe500;
  --red: #dd203d;
  --pink: #efcfd2;
  --blue: #c7dce2;
  --line: 2px solid var(--ink);
  --header-height: 4.75rem;
  --shell: 90rem;
  --gutter: clamp(1rem, 3vw, 3rem);
  --section-top-space: clamp(2.5rem, 4vw, 4.5rem);
  --display: "Space Grotesk", Arial, sans-serif;
  --brand: "Syne", "Space Grotesk", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

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

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button {
  margin: 0;
}

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

img,
svg,
iframe {
  display: block;
}

img {
  max-width: 100%;
}

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

ul,
ol {
  padding: 0;
  list-style: none;
}

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

:focus-visible {
  outline: 3px solid #245bff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border: var(--line);
  background: var(--yellow);
  color: var(--ink);
  font: 700 0.75rem/1 var(--mono);
  text-transform: uppercase;
  transform: translate(-50%, -150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translate(-50%, 0.5rem);
}

.section-shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  scroll-margin-top: var(--header-height);
  padding-block: var(--section-top-space) clamp(5rem, 9vw, 9rem);
  border-top: var(--line);
}

.cat-decor {
  position: absolute;
  z-index: 0;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font: 700 clamp(0.65rem, 0.8vw, 0.78rem)/1.3 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.75rem;
  height: 0.7rem;
  flex: none;
  border: 1px solid currentColor;
  background:
    linear-gradient(135deg, transparent 42%, currentColor 43% 57%, transparent 58%);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 2.25fr) minmax(15rem, 0.75fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-heading h2,
.process__intro h2,
.about__headline h2,
.contact h2 {
  max-width: 16ch;
  margin-top: 1.5rem;
  font-family: var(--display);
  font-size: clamp(3.25rem, 6.3vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading h2:first-child,
.contact h2:first-child {
  margin-top: 0;
}

.section-heading h2 em,
.contact h2 em {
  display: inline;
  padding-inline: 0.08em;
  background: var(--yellow);
  color: var(--ink);
  font-style: normal;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section-heading > p,
.section-heading--compact > p {
  max-width: 30rem;
  padding-top: 1rem;
  border-top: var(--line);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
}

.section-heading--compact {
  grid-template-columns: minmax(0, 2fr) minmax(15rem, 1fr);
}

/* Header ---------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.88);
  color: #fff;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-bottom-color: #fff;
  background: #000;
}

.site-header__inner {
  position: relative;
  width: min(100%, var(--shell));
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
}

.brand__mark {
  width: 2.65rem;
  height: 2.65rem;
  flex: none;
  display: block;
  border-radius: 50%;
  object-fit: contain;
}

.brand__name {
  min-width: 0;
  display: grid;
  line-height: 1;
}

.brand__name strong {
  position: relative;
  width: max-content;
  display: block;
  color: var(--white);
  font-family: var(--brand);
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-transform: lowercase;
  transform: skewX(-3.5deg) rotate(-0.35deg);
  transform-origin: left center;
}

.brand__name strong::after {
  position: absolute;
  right: -0.12em;
  bottom: -0.24em;
  width: 40%;
  height: 0.12em;
  background: var(--yellow);
  content: "";
  transform: skewX(3.5deg) rotate(-2deg);
}

.brand__name small {
  margin-top: 0.36rem;
  color: #bcbcbc;
  font: 600 0.55rem/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  height: 100%;
  display: flex;
  align-items: center;
}

.site-nav > a {
  height: 100%;
  padding-inline: clamp(0.7rem, 1.4vw, 1.25rem);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font: 700 0.72rem/1 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background-color 130ms ease,
    color 130ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a[aria-current="true"] {
  background: #fff;
  color: #000;
}

.site-nav__cta,
.site-nav > .site-nav__cta {
  height: calc(100% - 1rem);
  margin-left: 0.55rem;
  border: 0;
  background: var(--yellow);
  color: #000;
}

.site-nav > .site-nav__cta:hover,
.site-nav > .site-nav__cta:focus-visible,
.site-nav > .site-nav__cta[aria-current="true"] {
  background: var(--red);
  color: #fff;
}

.site-nav__cta b {
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
}

/* Hero ------------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: max(52rem, 100svh);
  padding-top: calc(var(--header-height) + var(--section-top-space));
  overflow: hidden;
  border-bottom: var(--line);
  background: #000;
  color: #fff;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: var(--header-height) 0 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 3rem 3rem;
  content: "";
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 72%);
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero::after {
  position: absolute;
  top: 11%;
  right: -6rem;
  z-index: -1;
  width: 35rem;
  height: 35rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 6rem rgba(255, 255, 255, 0.025),
    0 0 0 12rem rgba(255, 255, 255, 0.018);
  content: "";
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(30rem, 0.92fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 5;
  padding-bottom: 3rem;
}

.hero__copy h1 {
  max-width: 10ch;
  margin-top: clamp(1.5rem, 3vw, 3rem);
  font-family: var(--display);
  font-size: clamp(3.9rem, 5.9vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero__copy h1 > span {
  display: block;
}

.hero__headline-block {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-top: 0.12em;
  padding: 0.08em 0.12em 0.12em;
  background: var(--yellow);
  color: var(--ink);
  transform: rotate(-1deg);
}

.hero__headline-block::after {
  position: absolute;
  inset: 0.09em -0.12em -0.11em 0.1em;
  z-index: -1;
  border: 2px solid #fff;
  content: "";
}

.hero__lede {
  max-width: 43rem;
  margin-top: clamp(2rem, 3vw, 3rem);
  padding-left: 1.25rem;
  border-left: 0.45rem solid var(--red);
  color: #dedede;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.6;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  min-height: 3.5rem;
  padding: 0.9rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 2px solid #fff;
  font: 700 0.8rem/1 var(--mono);
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition:
    transform 130ms ease,
    box-shadow 130ms ease,
    background-color 130ms ease,
    color 130ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 #fff;
}

.button--yellow {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.button--ghost {
  background: #000;
  color: #fff;
}

.hero-collage {
  position: relative;
  height: clamp(37rem, 48vw, 46rem);
  min-width: 0;
}

.reel-card {
  position: absolute;
  padding: 0;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 0;
  background: #111;
  color: #fff;
  cursor: pointer;
  box-shadow: 8px 8px 0 var(--yellow);
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms ease,
    z-index 0s linear 220ms;
}

.reel-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
  pointer-events: none;
}

.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reel-card__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0.82) 100%);
}

.reel-card__play,
.project-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(3.25rem, 5vw, 4.5rem);
  height: clamp(3.25rem, 5vw, 4.5rem);
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.9rem;
  transform: translate(-50%, -50%);
  transition:
    background-color 160ms ease,
    color 160ms ease,
    scale 160ms ease;
}

.reel-card__meta {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.reel-card__meta b {
  font-family: var(--display);
  font-size: 1rem;
}

.reel-card__meta small {
  font: 600 0.55rem/1.25 var(--mono);
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}

.reel-card--primary {
  inset: 6% auto 3% 8%;
  z-index: 3;
  width: 55%;
  transform: rotate(-3.5deg);
}

.reel-card--secondary {
  top: 0;
  right: 2%;
  z-index: 2;
  width: 37%;
  height: 55%;
  box-shadow: 7px 7px 0 var(--red);
  transform: rotate(3deg);
}

.reel-card--tertiary {
  right: 0;
  bottom: 2%;
  z-index: 4;
  width: 39%;
  height: 48%;
  box-shadow: 7px 7px 0 var(--blue);
  transform: rotate(2deg);
}

.reel-card:hover,
.reel-card:focus-visible {
  z-index: 10;
  box-shadow: 12px 12px 0 var(--red);
  transform: rotate(0deg) translateY(-0.5rem);
  transition-delay: 0s;
}

.reel-card:hover img,
.reel-card:focus-visible img {
  transform: scale(1.035);
}

.reel-card:hover .reel-card__play,
.reel-card:focus-visible .reel-card__play {
  background: var(--red);
  color: #fff;
  scale: 1.12;
}

/* Client logo rail ------------------------------------------------------- */

.client-strip {
  overflow: hidden;
  border-bottom: var(--line);
  background: var(--yellow);
}

.client-strip__label {
  padding-block: 1.15rem;
  border-bottom: var(--line);
}

.client-strip__viewport {
  overflow: hidden;
}

.client-strip__track {
  width: max-content;
  display: flex;
  animation: logoMarquee 38s linear infinite;
}

.client-strip__group {
  display: flex;
}

.client-logo {
  width: clamp(10.5rem, 14vw, 13rem);
  height: 6.5rem;
  flex: none;
  padding: 1rem 1.25rem;
  display: grid;
  place-items: center;
  border-right: var(--line);
  background: var(--paper);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.client-logo img {
  width: auto;
  max-width: 100%;
  max-height: 3.25rem;
  object-fit: contain;
}

.client-logo--himalaya {
  gap: 0.35rem;
  grid-auto-flow: column;
  font-size: 0.9rem;
}

.client-logo--himalaya img {
  max-width: 2.8rem;
  max-height: 3.4rem;
}

.client-logo--card {
  font: 700 0.82rem/1.05 var(--mono);
  letter-spacing: 0.12em;
}

.client-logo--noww {
  gap: 0.5rem;
  grid-auto-flow: column;
  font-size: 0.9rem;
  font-weight: 700;
}

.client-logo--noww img {
  max-width: 3rem;
  max-height: 3rem;
}

@keyframes logoMarquee {
  to {
    transform: translateX(-50%);
  }
}

/* Selected work --------------------------------------------------------- */

.work {
  padding-bottom: 0;
  overflow: hidden;
  background: var(--paper);
}

.work > .section-shell,
.short-form > .section-shell,
.services > .section-shell,
.about > .section-shell {
  position: relative;
  z-index: 1;
}

.cat-decor--work {
  top: clamp(8rem, 12vw, 11rem);
  right: -4.5rem;
  width: clamp(7.5rem, 10vw, 9.5rem);
  transform: rotate(-4deg);
}

.work .section-heading h2 {
  max-width: 18ch;
  font-size: clamp(3.25rem, 5vw, 5.8rem);
}

.work .section-heading h2 > span {
  display: block;
}

.work .section-heading h2 em {
  display: inline-block;
  white-space: nowrap;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}

.project-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: var(--line);
  background: #fff;
  box-shadow: 7px 7px 0 var(--ink);
  transition:
    transform 170ms ease,
    box-shadow 170ms ease;
}

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

.project-card--wide {
  grid-column: span 6;
}

.project-card--tall {
  grid-column: span 3;
}

.project-card--half {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(11rem, 0.7fr) minmax(0, 1.3fr);
}

.project-card--yellow {
  background: var(--yellow);
}

.project-card--pink {
  background: var(--pink);
}

.project-card--blue {
  background: var(--blue);
}

.project-card--cream {
  background: #fff;
}

.project-card--black {
  background: var(--ink);
  color: #fff;
}

.project-card--red {
  background: var(--red);
  color: #fff;
}

.project-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: var(--line);
  background: #111;
}

.project-card__media--landscape {
  aspect-ratio: 16 / 8.4;
}

.project-card__media--square {
  height: 100%;
  aspect-ratio: auto;
  border-right: var(--line);
  border-bottom: 0;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 250ms ease,
    transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card--wide .project-card__media img {
  object-fit: cover;
  object-position: top;
}

.project-card:hover .project-card__media img {
  transform: scale(1.03);
}

.project-card__play {
  width: 3.75rem;
  height: 3.75rem;
}

.project-card__body {
  min-height: 14rem;
  padding: clamp(1.25rem, 2.25vw, 2rem);
  display: flex;
  flex-direction: column;
}

.project-card--tall .project-card__body {
  min-height: 16rem;
}

.project-card--half .project-card__body {
  min-height: 20rem;
}

.project-card__type {
  font: 700 0.61rem/1.35 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.project-card--tall h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
}

.project-card p {
  max-width: 39rem;
  margin-top: 1rem;
  font-size: 0.94rem;
  line-height: 1.55;
}

.project-card__link {
  margin-top: auto;
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid currentColor;
  font: 700 0.67rem/1 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-card__link b {
  font-size: 1.1rem;
}

.project-card__poster {
  min-height: 20rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    #000;
  background-size: 2rem 2rem;
  color: #fff;
}

.project-card__poster span,
.project-card__poster i {
  font: 700 0.65rem/1.3 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__poster strong {
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.025em;
  line-height: 0.8;
  transform: rotate(-90deg);
}

.project-card__poster i {
  color: #bdbdbd;
  font-style: normal;
}

.work__footer {
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  border-top: var(--line);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font: 700 0.75rem/1 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link::after {
  width: 0;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: width 160ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 2rem;
}

/* Shorts and content evolution ----------------------------------------- */

.short-form {
  position: relative;
  margin-top: var(--section-top-space);
  padding-block: var(--section-top-space) clamp(5rem, 9vw, 9rem);
  overflow: hidden;
  border-top: var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--ink);
  background-size: 2rem 2rem;
  color: #fff;
}

.cat-decor--shorts {
  top: clamp(4.25rem, 7vw, 6.5rem);
  right: clamp(1.5rem, 5vw, 5rem);
  width: clamp(6.5rem, 9vw, 8.5rem);
}

.short-form .section-heading--solo {
  grid-template-columns: minmax(0, 1fr);
}

.short-form .section-heading--solo h2 {
  max-width: 14ch;
}

.short-form .section-heading h2 {
  color: #fff;
}

.short-form .section-heading > p {
  border-top-color: #777;
  color: #c9c9c9;
}

.shorts-rail__header {
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.shorts-rail__controls {
  display: flex;
  gap: 0.5rem;
}

.shorts-rail__controls button {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 0;
  background: #000;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition:
    background-color 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}

.shorts-rail__controls button:hover,
.shorts-rail__controls button:focus-visible {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-2px);
}

.shorts-rail {
  max-width: 100%;
  padding: 0.35rem 0.35rem 1.25rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(13rem, 17vw, 17.5rem);
  gap: clamp(0.9rem, 1.6vw, 1.35rem);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0.35rem;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--yellow) #292929;
  scrollbar-width: thin;
}

.shorts-rail::-webkit-scrollbar {
  height: 0.55rem;
}

.shorts-rail::-webkit-scrollbar-track {
  background: #292929;
}

.shorts-rail::-webkit-scrollbar-thumb {
  background: var(--yellow);
}

.short-card {
  min-width: 0;
  overflow: hidden;
  border: 2px solid #fff;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--yellow);
  scroll-snap-align: start;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease;
}

.short-card:nth-child(5n + 2) {
  box-shadow: 6px 6px 0 var(--red);
}

.short-card:nth-child(5n + 3) {
  box-shadow: 6px 6px 0 var(--blue);
}

.short-card:nth-child(5n + 4) {
  box-shadow: 6px 6px 0 var(--pink);
}

.short-card:hover,
.short-card:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--yellow);
}

.short-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-bottom: var(--line);
  background: #111;
}

.short-card__media::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.54));
  content: "";
  pointer-events: none;
}

.short-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.short-card:hover .short-card__media img,
.short-card:focus-visible .short-card__media img {
  transform: scale(1.035);
}

.short-card__number {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  min-width: 2rem;
  padding: 0.42rem;
  border: 1px solid #fff;
  background: #000;
  color: #fff;
  font: 700 0.61rem/1 var(--mono);
  text-align: center;
}

.short-card__play {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 2;
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.72rem;
  transition:
    background-color 140ms ease,
    color 140ms ease,
    scale 140ms ease;
}

.short-card:hover .short-card__play,
.short-card:focus-visible .short-card__play {
  background: var(--red);
  color: #fff;
  scale: 1.1;
}

.short-card__body {
  min-height: 9.25rem;
  padding: 1rem;
}

.short-card__body span {
  color: #5c5c5c;
  font: 700 0.57rem/1.3 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.short-card__body h3 {
  margin-top: 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.evolution-shot {
  min-width: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 5px 0 var(--ink);
}

.evolution-shot:first-child {
  transform: rotate(-0.35deg);
}

.evolution-shot:last-of-type {
  transform: rotate(0.35deg);
}

.evolution-shot figcaption {
  order: 2;
  min-height: 0;
  padding: 0.8rem 0.9rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  border: var(--line);
  border-top: 0;
  background: #fff;
}

.evolution-shot figcaption b {
  padding: 0.42rem 0.55rem;
  background: var(--ink);
  color: #fff;
  font: 700 0.63rem/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.evolution-shot figcaption span {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.evolution-shot__frame {
  order: 1;
  overflow: hidden;
  border: var(--line);
  background: #fff;
}

.evolution-shot__frame img {
  width: 100%;
  height: auto;
}

.evolution-shot__image-link {
  position: relative;
  display: block;
  cursor: zoom-in;
}

.evolution-shot__image-link::after {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  background: var(--ink);
  color: #fff;
  content: "↗";
  font-weight: 700;
  opacity: 0;
  transform: translateY(0.25rem);
  transition: opacity 140ms ease, transform 140ms ease;
}

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

.evolution-shot__frame--stack {
  aspect-ratio: 1.91 / 1;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.evolution-shot__frame--stack .evolution-shot__image-link {
  min-height: 0;
  overflow: hidden;
}

.evolution-shot__frame--stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.evolution-shot__frame--feed {
  aspect-ratio: 16 / 10;
}

.evolution-shot__frame--feed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.evolution-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 700;
  box-shadow: 0 0 0 6px var(--paper);
  transform: translate(-50%, -50%);
}

/* Services -------------------------------------------------------------- */

.services {
  overflow: hidden;
  background: var(--yellow);
}

.cat-decor--services {
  right: clamp(1rem, 4vw, 4rem);
  bottom: 0.65rem;
  width: clamp(16rem, 28vw, 25rem);
}

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

.service-card {
  min-height: 26rem;
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
  display: flex;
  flex-direction: column;
  border: var(--line);
  border-right: 0;
  background: #fff;
}

.service-card:last-child {
  border-right: var(--line);
}

.service-card:nth-child(2) {
  background: var(--ink);
  color: #fff;
}

.service-card:nth-child(3) {
  background: var(--pink);
}

.service-card:nth-child(4) {
  background: var(--red);
  color: #fff;
}

.service-card h3 {
  margin-top: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-card > p {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-card ul {
  margin-top: auto;
  padding-top: 2rem;
}

.service-card li {
  padding-block: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-top: 1px solid currentColor;
  font: 600 0.68rem/1.35 var(--mono);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.service-card li::before {
  content: "↳";
}

.services__aside {
  margin-top: 2rem;
  font-size: 1rem;
}

.services__aside a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}

/* Process --------------------------------------------------------------- */

.process {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.process::after {
  position: absolute;
  right: -12rem;
  bottom: -18rem;
  width: 38rem;
  height: 38rem;
  border: 8rem solid rgba(255, 229, 0, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.process__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(32rem, 1.2fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.process__intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.process__intro h2 {
  max-width: 10ch;
  font-size: clamp(3.25rem, 5vw, 5.75rem);
}

.process__intro > p:last-child {
  max-width: 29rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #555;
  color: #c7c7c7;
  font-size: 1.05rem;
}

.process-list {
  counter-reset: process;
}

.process-list li {
  min-height: 11rem;
  padding: clamp(1.25rem, 2.2vw, 2rem);
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  border: 2px solid #fff;
  background: #000;
}

.process-list li + li {
  margin-top: -2px;
}

.process-list li:nth-child(2) {
  margin-left: 4%;
  background: var(--yellow);
  color: var(--ink);
}

.process-list li:nth-child(3) {
  margin-left: 8%;
  background: var(--red);
}

.process-list li:nth-child(4) {
  margin-left: 12%;
  background: var(--blue);
  color: var(--ink);
}

.process-list > li > span {
  padding-top: 0.25rem;
  font: 700 0.72rem/1 var(--mono);
}

.process-list h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.process-list p {
  max-width: 36rem;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Case studies ---------------------------------------------------------- */

.case-studies {
  background: #e6e8e7;
}

.case-card {
  display: block;
  overflow: clip;
  border: var(--line);
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--ink);
}

.case-card + .case-card {
  margin-top: 2rem;
}

.case-card--pink {
  background: var(--pink);
}

.case-card--blue {
  background: var(--blue);
}

.case-card--linkedin {
  background: #fff;
}

.case-card__summary {
  position: relative;
  min-height: 11rem;
  padding: clamp(2.7rem, 3.5vw, 3.5rem) clamp(1.25rem, 2.4vw, 2.25rem) clamp(1.4rem, 2vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 17rem) auto;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: center;
  list-style: none;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.case-card__summary::-webkit-details-marker {
  display: none;
}

.case-card__summary::marker {
  content: "";
}

.case-card__summary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.case-card[open] > .case-card__summary {
  border-bottom: var(--line);
}

.case-card:not([open]) > :not(summary) {
  display: none;
}

.case-card__summary-copy {
  min-width: 0;
}

.case-card__summary-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.15rem, 3.6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.94;
}

.case-card__summary-copy h3 a {
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.28);
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.12em;
  transition: color 140ms ease, text-decoration-color 140ms ease;
}

.case-card__summary-copy h3 a:hover,
.case-card__summary-copy h3 a:focus-visible {
  color: #9e1630;
  text-decoration-color: currentColor;
}

.case-card__summary-copy p {
  max-width: 46ch;
  margin-top: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.case-card__summary-stat {
  width: 100%;
  margin: 0;
  justify-self: end;
}

.case-card__toggle {
  min-width: 8.75rem;
  min-height: 3.25rem;
  padding: 0.7rem 0.75rem 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  border: var(--line);
  background: var(--ink);
  color: #fff;
  font: 700 0.62rem/1 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-card__toggle b {
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font: 700 1.1rem/1 var(--body);
  transition: transform 180ms ease;
}

.case-card[open] .case-card__toggle b {
  transform: rotate(45deg);
}

.case-card__index,
.case-card__story span {
  font: 700 0.64rem/1.25 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.case-card__index {
  position: absolute;
  top: 1rem;
  left: clamp(1.25rem, 2.4vw, 2.25rem);
}

.case-card__proof {
  margin: 0;
  display: block;
  overflow: hidden;
  border: var(--line);
  background: #fff;
  transition: transform 150ms ease;
}

.case-card__proof:hover,
.case-card__proof:focus-visible {
  transform: rotate(-1deg);
}

.case-card__proof img {
  width: 100%;
  height: auto;
  max-height: 36rem;
  object-fit: contain;
}

.case-card__proof > span {
  padding: 0.7rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: var(--line);
  font: 700 0.58rem/1.3 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-card__story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card__story > div {
  min-height: 11rem;
  padding: clamp(1.35rem, 2vw, 2rem);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.case-card__story > div + div {
  border-left: var(--line);
}

.case-card__story p {
  max-width: 25ch;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.case-card__story span {
  padding: 0.42rem 0.6rem;
  display: inline-flex;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.3);
}

.case-card__story .case-stat {
  display: none;
}

.case-stat {
  width: min(100%, 17rem);
  margin-block: 0.15rem 0.35rem;
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
  border: 2px solid var(--ink);
  background: var(--red);
  color: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.case-stat b {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.case-stat i {
  color: var(--yellow);
  font-style: normal;
}

.case-stat small {
  padding-top: 0.55rem;
  border-top: 1px solid currentColor;
  color: inherit;
  font: 700 0.52rem/1.3 var(--mono);
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.case-card--pink .case-stat {
  background: var(--yellow);
  color: var(--ink);
}

.case-card--pink .case-stat i,
.case-card--linkedin .case-stat i,
.case-card--blue .case-stat i {
  color: var(--red);
}

.case-card--linkedin .case-stat {
  background: var(--blue);
  color: var(--ink);
}

.case-card--linkedin .case-stat b {
  font-size: clamp(1.15rem, 1.55vw, 1.6rem);
}

.case-card--blue .case-stat {
  background: var(--pink);
  color: var(--ink);
}

.case-evolution {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: var(--line);
  background: var(--ink);
  color: #fff;
}

.case-evolution > header {
  padding: clamp(1.35rem, 2.2vw, 2rem);
  display: grid;
  grid-template-columns: minmax(17rem, 0.85fr) minmax(20rem, 1.15fr);
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: center;
  border-bottom: 2px solid #fff;
}

.case-evolution > header h4 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.35vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.96;
}

.case-evolution > header p {
  max-width: 46rem;
  margin: 0;
  padding-left: clamp(1rem, 2vw, 2rem);
  border-left: 1px solid #666;
  color: #c7c7c7;
  font-size: 0.9rem;
  line-height: 1.55;
}

.case-evolution__comparison {
  position: relative;
  padding: clamp(1.25rem, 2.4vw, 2.25rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.6rem);
  align-items: start;
  background: var(--paper);
  color: var(--ink);
}

.case-evolution--podcast .evolution-shot__frame--feed {
  height: auto;
  aspect-ratio: 9 / 20;
}

.case-evolution--podcast .evolution-shot__frame--feed img {
  object-fit: contain;
}

.linkedin-evidence {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(25rem, 0.7fr);
  border-top: var(--line);
  background: var(--paper);
}

.linkedin-evidence .case-card__proof {
  border: 0;
  border-right: var(--line);
  background: #fff;
}

.linkedin-evidence .case-card__proof:hover,
.linkedin-evidence .case-card__proof:focus-visible {
  transform: none;
}

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

.linkedin-evidence__metrics > div {
  min-width: 0;
  padding: clamp(1.25rem, 2.3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.linkedin-evidence__metrics > div:nth-child(even) {
  border-left: var(--line);
}

.linkedin-evidence__metrics > div:nth-child(n + 3) {
  border-top: var(--line);
}

.linkedin-evidence__metrics dt,
.linkedin-evidence__metrics dd {
  margin: 0;
}

.linkedin-evidence__metrics dt {
  font: 700 0.61rem/1.35 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.linkedin-evidence__metrics dd {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.35rem;
  font-family: var(--display);
  line-height: 1;
}

.linkedin-evidence__metrics dd span {
  color: #6d6d6d;
  font-size: 1rem;
}

.linkedin-evidence__metrics dd b {
  color: var(--red);
  font-size: 1rem;
}

.linkedin-evidence__metrics dd strong {
  font-size: clamp(1.65rem, 2.7vw, 2.8rem);
  letter-spacing: -0.02em;
}

.case-card__samples {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto repeat(4, minmax(0, 1fr));
  border-top: var(--line);
  background: var(--ink);
  color: #fff;
}

.case-card__samples > span,
.case-card__samples a {
  min-height: 4.5rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  font: 700 0.59rem/1.35 var(--mono);
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.case-card__samples > span {
  color: var(--yellow);
}

.case-card__samples a {
  border-left: 1px solid #555;
  transition:
    background-color 140ms ease,
    color 140ms ease;
}

.case-card__samples a:hover,
.case-card__samples a:focus-visible {
  background: var(--yellow);
  color: var(--ink);
}

.noww-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.65fr);
  border-top: var(--line);
  background: var(--paper);
}

.noww-proof__screen {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: var(--line);
  background: #f7f6f2;
}

.noww-proof__screen img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  object-position: top;
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.noww-proof__screen > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.75rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: var(--line);
  background: var(--yellow);
  font: 700 0.65rem/1 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
}

.noww-proof__screen:hover img,
.noww-proof__screen:focus-visible img {
  transform: scale(1.02);
}

.noww-proof__build {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: #fff;
}

.noww-proof__kicker {
  display: block;
  color: var(--yellow);
  font: 700 0.6rem/1.35 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.noww-proof__build h4 {
  max-width: 13ch;
  margin-top: 1.5rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.7vw, 2.65rem);
  letter-spacing: -0.02em;
  line-height: 0.96;
}

.noww-proof__build ul {
  margin-top: 1.5rem;
  border-top: 1px solid #666;
}

.noww-proof__build li {
  padding-block: 0.7rem;
  display: flex;
  gap: 0.65rem;
  border-bottom: 1px solid #666;
  color: #d2d2d2;
  font-size: 0.82rem;
}

.noww-proof__build li::before {
  color: var(--yellow);
  content: "↳";
}

.noww-proof__site {
  margin-top: 1.25rem;
  padding-block: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--yellow);
  color: var(--yellow);
  font: 700 0.68rem/1 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* About ----------------------------------------------------------------- */

.about {
  overflow: hidden;
  background: var(--red);
  color: #fff;
}

.about::before {
  position: absolute;
  top: 20%;
  left: -10rem;
  width: 12rem;
  height: 12rem;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(26rem, 0.85fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.about__headline h2 {
  max-width: 11ch;
}

.about__content {
  align-self: end;
}

.about__reasons {
  border-top: 2px solid #fff;
}

.about__reasons li {
  position: relative;
  padding: 1.1rem 1rem 1.1rem 2.2rem;
  border-bottom: 2px solid #fff;
  font-size: 0.95rem;
}

.about__reasons li::before {
  position: absolute;
  left: 0.25rem;
  content: "→";
}

.about__content > p {
  max-width: 37rem;
  margin-top: 2rem;
  padding: 1.5rem;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  font-weight: 600;
  box-shadow: 6px 6px 0 var(--ink);
}

/* Contact --------------------------------------------------------------- */

.contact {
  padding-bottom: 2rem;
  background: var(--ink);
  color: #fff;
}

.contact h2 {
  max-width: none;
  font-size: clamp(3.25rem, 6vw, 6rem);
  display: grid;
  justify-items: start;
  row-gap: clamp(0.65rem, 0.8vw, 0.9rem);
}

.contact h2 > span,
.contact h2 em {
  letter-spacing: -0.02em;
}

.contact h2 > span {
  display: block;
  line-height: 0.94;
}

.contact h2 em {
  display: block;
  margin-top: clamp(0.45rem, 0.6vw, 0.75rem);
  padding: 0.16em 0.16em 0.11em;
  font-size: 0.76em;
  line-height: 0.95;
}

@media (min-width: 981px) {
  .contact h2 em {
    white-space: nowrap;
  }
}

.contact__lede {
  max-width: 47rem;
  margin-top: 2.5rem;
  color: #cfcfcf;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}

.contact__actions {
  margin-top: clamp(3rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 1rem;
}

.contact-card {
  position: relative;
  min-height: 12rem;
  padding: clamp(1.25rem, 2.2vw, 2rem);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  border: 2px solid #fff;
  background: #000;
  color: #fff;
  box-shadow: 6px 6px 0 #fff;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.contact-card--yellow {
  overflow: hidden;
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--red);
}

.cat-decor--contact {
  right: clamp(3rem, 7vw, 6.5rem);
  bottom: -3.25rem;
  width: clamp(9rem, 12vw, 11rem);
}

.contact-card > span,
.contact-card > b,
.contact-card > small {
  position: relative;
  z-index: 1;
}

.contact-card:hover,
.contact-card:focus-visible {
  background: #fff;
  color: var(--ink);
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 #fff;
}

.contact-card > span {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.contact-card > b {
  font-size: 1.4rem;
}

.contact-card > small {
  grid-column: 1 / -1;
  font: 600 0.65rem/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer {
  margin-top: clamp(5rem, 9vw, 9rem);
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: end;
  border-top: 1px solid #505050;
  color: #999;
  font: 600 0.61rem/1.3 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand--footer {
  color: #fff;
}

.brand--footer .brand__mark {
  width: 2.2rem;
  height: 2.2rem;
}

/* Reel dialog ----------------------------------------------------------- */

.reel-dialog {
  width: min(95vw, 36rem);
  max-width: none;
  max-height: 95svh;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: #fff;
}

.reel-dialog::backdrop {
  background: rgba(0, 0, 0, 0.93);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.reel-dialog__panel {
  border: 2px solid #fff;
  background: #000;
  box-shadow: 10px 10px 0 var(--yellow);
}

.reel-dialog__header,
.reel-dialog__footer {
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #fff;
}

.reel-dialog__header span,
.reel-dialog__footer p {
  color: #aaa;
  font: 600 0.58rem/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reel-dialog__header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.1;
}

.reel-dialog__close {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 0;
  background: #000;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

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

.reel-dialog__stage {
  position: relative;
  height: min(72svh, 49rem);
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    #111;
  background-size: 2rem 2rem;
}

.reel-dialog__stage iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.reel-dialog__loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #aaa;
  font: 600 0.7rem/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reel-dialog__footer {
  border-top: 1px solid #fff;
  border-bottom: 0;
}

.reel-dialog__footer a {
  color: var(--yellow);
  font: 700 0.62rem/1 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Image viewer ---------------------------------------------------------- */

.image-dialog {
  width: min(94vw, 90rem);
  max-width: none;
  max-height: 94svh;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: #fff;
}

.image-dialog::backdrop {
  background: rgba(0, 0, 0, 0.94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.image-dialog__panel {
  overflow: hidden;
  border: 2px solid #fff;
  background: #111;
  box-shadow: 10px 10px 0 var(--yellow);
}

.image-dialog__header {
  min-height: 4.5rem;
  padding: 0.75rem 0.9rem 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #fff;
  background: #000;
}

.image-dialog__header h2 {
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.image-dialog__close {
  width: 2.75rem;
  height: 2.75rem;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 0;
  background: #000;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

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

.image-dialog__stage {
  min-height: 12rem;
  max-height: calc(94svh - 4.5rem);
  padding: clamp(0.5rem, 1.4vw, 1.25rem);
  display: grid;
  place-items: center;
  overflow: auto;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #111;
  background-size: 2rem 2rem;
}

.image-dialog__stage img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(94svh - 7rem);
  object-fit: contain;
}

/* Progressive reveal --------------------------------------------------- */

.js .reveal-item {
  opacity: 0;
  transform: translateY(1.75rem);
  transition:
    opacity 550ms ease,
    transform 550ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Responsive ------------------------------------------------------------ */

@media (max-width: 1180px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(26rem, 0.85fr);
  }

  .hero__copy h1 {
    font-size: clamp(3.5rem, 5.8vw, 5.1rem);
  }

  .hero-collage {
    height: 38rem;
  }

  .reel-card--secondary .reel-card__meta {
    display: grid;
  }

  .reel-card--secondary .reel-card__meta small {
    text-align: left;
  }

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

  .service-card {
    min-height: 26rem;
  }

  .service-card:nth-child(2) {
    border-right: var(--line);
  }

  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    border-top: 0;
  }

  .process__layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(28rem, 1.25fr);
    gap: 4rem;
  }

}

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

  .nav-toggle {
    position: relative;
    z-index: 3;
    min-height: 2.75rem;
    padding: 0.6rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #fff;
    cursor: pointer;
  }

  .nav-toggle__label {
    font: 700 0.65rem/1 var(--mono);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .nav-toggle__icon {
    width: 1.15rem;
    display: grid;
    gap: 0.35rem;
  }

  .nav-toggle__icon i {
    width: 100%;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:first-child {
    transform: translateY(0.18rem) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:last-child {
    transform: translateY(-0.18rem) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    z-index: 2;
    inset: 100% 0 auto;
    width: 100%;
    height: calc(100svh - var(--header-height));
    max-height: none;
    padding: 1rem var(--gutter) 1.5rem;
    display: grid;
    align-content: start;
    overflow-y: auto;
    border-bottom: 2px solid #fff;
    background: #000;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

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

  .site-nav > a {
    min-height: 4rem;
    padding-inline: 0;
    border-top: 1px solid #555;
    border-left: 0;
    font-size: 0.8rem;
  }

  .site-nav > a:hover,
  .site-nav > a:focus-visible,
  .site-nav > a[aria-current="true"] {
    padding-inline: 0.75rem;
  }

  .site-nav > .site-nav__cta {
    height: auto;
    margin: 0.75rem 0 0;
    padding-inline: 1rem;
    border-top: 0;
  }

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

  .hero__copy {
    max-width: 55rem;
    padding-bottom: 0;
  }

  .hero__copy h1 {
    font-size: clamp(3.9rem, 9.8vw, 6.4rem);
  }

  .hero-collage {
    width: min(100%, 46rem);
    height: 43rem;
    margin: 1rem auto 0;
  }

  .hero::after {
    top: 54%;
  }

  .section-heading,
  .section-heading--compact {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .section-heading > p,
  .section-heading--compact > p {
    max-width: 40rem;
  }

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

  .project-card--wide,
  .project-card--half {
    grid-column: span 2;
  }

  .project-card--tall {
    grid-column: span 1;
  }

  .process__layout,
  .about__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .process__intro {
    position: static;
  }

  .process-list {
    max-width: 48rem;
    margin-left: auto;
  }

  .case-card__summary {
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 14rem);
    gap: 1.25rem;
  }

  .case-card__summary-copy {
    grid-row: 1 / span 2;
  }

  .case-card__toggle {
    width: 100%;
    grid-column: 2;
  }

  .case-evolution > header {
    grid-template-columns: minmax(15rem, 0.9fr) minmax(0, 1.1fr);
  }

  .linkedin-evidence,
  .noww-proof {
    grid-template-columns: minmax(0, 1fr);
  }

  .linkedin-evidence .case-card__proof,
  .noww-proof__screen {
    border-right: 0;
    border-bottom: var(--line);
  }

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

  .case-card__samples > span {
    grid-column: 1 / -1;
    border-bottom: 1px solid #555;
  }

  .case-card__samples a:nth-of-type(odd) {
    border-left: 0;
  }

  .case-card__samples a:nth-of-type(n + 3) {
    border-top: 1px solid #555;
  }

  .about__content {
    width: min(100%, 42rem);
    margin-left: auto;
  }

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

}

@media (max-width: 700px) {
  .brand__name small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__copy h1 {
    font-size: clamp(3.25rem, 13.5vw, 4.7rem);
    line-height: 0.8;
  }

  .hero__lede {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-collage {
    height: 34rem;
    margin-top: 2rem;
  }

  .reel-card--primary {
    left: 1%;
    width: 57%;
  }

  .reel-card--secondary {
    right: 0;
    width: 39%;
    height: 52%;
  }

  .reel-card--tertiary {
    width: 42%;
    height: 46%;
  }

  .reel-card__meta {
    padding: 0.7rem;
    display: grid;
  }

  .reel-card__meta small {
    text-align: left;
  }

  .section-heading h2,
  .process__intro h2,
  .about__headline h2,
  .contact h2 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

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

  .cat-decor--work,
  .cat-decor--shorts {
    display: none;
  }

  .project-card--wide,
  .project-card--tall,
  .project-card--half {
    grid-column: auto;
  }

  .project-card--half {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-card__media--square,
  .project-card__poster {
    height: auto;
    min-height: 22rem;
    border-right: 0;
    border-bottom: var(--line);
  }

  .project-card__media--square {
    aspect-ratio: 4 / 4.5;
  }

  .project-card__poster strong {
    transform: none;
  }

  .project-card--half .project-card__body {
    min-height: 15rem;
  }

  .shorts-rail {
    grid-auto-columns: min(72vw, 16.5rem);
  }

  .case-card__samples {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-card__samples > span {
    grid-column: auto;
  }

  .case-card__samples a,
  .case-card__samples a:nth-of-type(odd),
  .case-card__samples a:nth-of-type(n + 3) {
    border-top: 1px solid #555;
    border-left: 0;
  }

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

  .service-card,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    min-height: 24rem;
    border-top: 0;
    border-right: var(--line);
  }

  .service-card:first-child {
    border-top: var(--line);
  }

  .cat-decor--services {
    right: 0.8rem;
    bottom: 0.55rem;
    width: 10rem;
  }

  .process-list li,
  .process-list li:nth-child(2),
  .process-list li:nth-child(3),
  .process-list li:nth-child(4) {
    margin-left: 0;
    grid-template-columns: 2.5rem 1fr;
  }

  .case-evolution > header {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-evolution > header p {
    padding: 1rem 0 0;
    border-top: 1px solid #666;
    border-left: 0;
  }

  .case-card__story,
  .case-evolution__comparison {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-card__summary {
    min-height: 0;
    padding-top: 3.2rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .case-card__summary-copy h3 {
    font-size: clamp(2rem, 10.5vw, 3.35rem);
  }

  .case-card__summary-copy {
    grid-row: auto;
  }

  .case-card__summary-stat {
    width: min(100%, 17rem);
    justify-self: start;
  }

  .case-card__toggle {
    width: 100%;
    grid-column: auto;
  }

  .case-card__story > div {
    min-height: 0;
    padding-block: 1.6rem;
  }

  .case-card__story > div + div {
    border-top: var(--line);
    border-left: 0;
  }

  .evolution-arrow {
    position: static;
    justify-self: center;
    margin-block: -0.2rem;
    box-shadow: 0 0 0 5px var(--paper);
    transform: rotate(90deg);
  }

  .case-evolution--podcast .evolution-shot__frame--feed {
    height: auto;
    aspect-ratio: 9 / 20;
  }

  .noww-proof__screen img {
    min-height: 18rem;
  }

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

  .cat-decor--contact {
    right: 3.25rem;
    bottom: -2rem;
    width: 7rem;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .reel-dialog {
    width: calc(100vw - 1.5rem);
  }

  .reel-dialog__stage {
    height: min(70svh, 43rem);
  }
}

@media (max-width: 430px) {
  :root {
    --gutter: 0.9rem;
  }

  .brand__mark {
    width: 2.3rem;
    height: 2.3rem;
  }

  .hero__copy h1 {
    font-size: clamp(2.9rem, 12.8vw, 3.4rem);
  }

  .hero__headline-block {
    width: auto;
  }

  .hero-collage {
    height: 30rem;
  }

  .reel-card__meta small {
    display: none;
  }

  .reel-card--secondary .reel-card__meta {
    padding: 0.5rem;
  }

  .reel-card--secondary .reel-card__meta b {
    font-size: 0.78rem;
  }

  .reel-card__play {
    width: 2.8rem;
    height: 2.8rem;
  }

  .client-logo {
    width: 9rem;
    height: 5.6rem;
    padding: 0.8rem 1rem;
  }

  .project-card__body {
    min-height: 14rem;
  }

  .contact-card {
    min-height: 10rem;
  }
}

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

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

  .client-strip__track {
    width: 100%;
    overflow-x: auto;
    animation: none;
  }

  .client-strip__group[aria-hidden="true"] {
    display: none;
  }

  .js .reveal-item {
    opacity: 1;
    transform: none;
  }
}
