:root {
  --ink: #101010;
  --paper: #f7f7f4;
  --white: #ffffff;
  --red: #d5261f;
  --green: #116149;
  --line: rgba(16, 16, 16, 0.18);
  --soft: rgba(255, 255, 255, 0.78);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 28px;
  color: var(--white);
  mix-blend-mode: difference;
}

.brand {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 20px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 36% center;
  filter: grayscale(1) contrast(1.58) brightness(0.78);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.32) 42%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.48) 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.44), transparent 18%),
    radial-gradient(circle at 82% 62%, rgba(0, 0, 0, 0.62), transparent 34%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  width: min(1180px, 100%);
  min-height: 86vh;
  padding: 112px 28px 54px;
}

.hero h1,
.intro h2,
.about h2,
.site-footer h2 {
  margin: 0;
  max-width: 1040px;
  font-size: 88px;
  line-height: 0.93;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero p:not(.eyebrow) {
  width: min(650px, 100%);
  margin: 24px 0 0;
  font-size: 22px;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--red);
  color: var(--white);
}

.ticker span {
  padding-right: 18px;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.intro,
.about,
.site-footer {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  padding: 90px 28px;
  border-bottom: 1px solid var(--line);
}

.intro {
  grid-template-columns: 0.38fr 1.62fr;
  gap: 28px;
}

.intro h2 {
  max-width: none;
  font-size: 76px;
  line-height: 0.9;
}

.intro p:not(.eyebrow),
.about p,
.site-footer a {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.works {
  display: grid;
}

.archive-hero {
  min-height: 72vh;
  display: grid;
  align-content: end;
  padding: 120px 28px 70px;
  background: var(--ink);
  color: var(--white);
}

.archive-hero h1 {
  width: min(1120px, 100%);
  margin: 0;
  font-size: 92px;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.archive-hero p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 24px 0 0;
  font-size: 22px;
  font-weight: 800;
}

.work {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  min-height: 560px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.work:nth-child(3n) {
  background: var(--green);
  color: var(--white);
}

.work__image {
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.work__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.work__image:hover img {
  transform: scale(1.03);
}

.work__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 18px;
}

.work h3 {
  margin: 0;
  font-size: 62px;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.work__title-link {
  display: inline-block;
}

.work__copy p:not(.eyebrow) {
  margin: 22px 0;
  font-size: 20px;
  font-weight: 700;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.tags span,
.text-link {
  width: fit-content;
  border: 1px solid currentColor;
  border-radius: 8px;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link {
  color: var(--white);
  background: var(--red);
}

.more-works {
  display: flex;
  justify-content: center;
  padding: 46px 28px 72px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.work-detail-hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.work-detail-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.92) brightness(0.78);
}

.work-detail-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.38) 100%);
}

.work-detail-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  width: min(1260px, 100%);
  min-height: 88vh;
  padding: 120px 28px 58px;
}

.work-detail-hero h1 {
  width: min(1120px, 100%);
  margin: 0;
  font-size: 118px;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.work-detail-body {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  padding: 92px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.work-detail-meta {
  position: sticky;
  top: 82px;
  align-self: start;
}

.work-detail-copy p {
  margin: 0 0 28px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
}

.work-detail-copy p:first-child {
  font-size: 46px;
  line-height: 1;
  text-transform: uppercase;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.source-links a {
  width: fit-content;
  border: 1px solid currentColor;
  border-radius: 8px;
  padding: 8px 11px;
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.interviews-hero {
  background: var(--green);
}

.interviews-list {
  display: grid;
  gap: 12px;
  padding: 12px;
  background: var(--ink);
}

.interview-card {
  display: grid;
  grid-template-columns: 0.75fr 1.35fr;
  gap: 28px;
  min-height: 420px;
  padding: 28px;
  background: var(--white);
  color: var(--ink);
}

.interview-card h2 {
  grid-column: 2;
  margin: 0;
  font-size: 70px;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.interview-card > p:not(.eyebrow) {
  grid-column: 2;
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

.interview-card .tags,
.interview-card .text-link {
  grid-column: 2;
}

.interview-detail-hero {
  min-height: 78vh;
  display: grid;
  align-content: end;
  padding: 120px 28px 70px;
  background: var(--ink);
  color: var(--white);
}

.interview-detail-hero h1 {
  width: min(1180px, 100%);
  margin: 0;
  font-size: 104px;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.interview-detail-hero p:not(.eyebrow) {
  width: min(820px, 100%);
  margin: 24px 0 0;
  font-size: 24px;
  font-weight: 800;
}

.interview-detail-body {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  padding: 92px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.interview-detail-meta {
  position: sticky;
  top: 82px;
  align-self: start;
}

.interview-meta-list {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.interview-meta-list span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.interview-meta-list strong {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.interview-detail-copy p {
  margin: 0 0 28px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.14;
}

.work-detail-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line);
}

.work-detail-nav a,
.work-detail-nav > span {
  min-height: 210px;
  padding: 28px;
  background: var(--ink);
  color: var(--white);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.work-detail-nav a:last-child {
  text-align: right;
  background: var(--red);
}

.work-detail-nav a span {
  display: block;
  margin-bottom: 16px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.2;
}

.press-hero {
  min-height: 78vh;
  display: grid;
  align-content: end;
  padding: 120px 28px 70px;
  background: var(--red);
  color: var(--white);
}

.press-hero h1 {
  width: min(1120px, 100%);
  margin: 0;
  font-size: 116px;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.press-hero p:not(.eyebrow) {
  width: min(760px, 100%);
  margin: 24px 0 28px;
  font-size: 24px;
  font-weight: 900;
}

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

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  background: var(--ink);
}

.press-card {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.press-card--feature {
  border: 10px solid var(--green);
}

.press-card img {
  width: 100%;
  height: clamp(220px, 22vw, 340px);
  object-fit: cover;
  transition: filter 300ms ease, transform 500ms ease;
}

.press-card:hover img {
  filter: contrast(1.05) saturate(0.92);
  transform: scale(1.02);
}

.press-card figcaption {
  display: grid;
  gap: 6px;
  padding: 12px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.press-card figcaption span {
  color: var(--red);
}

.press-card figcaption a {
  overflow-wrap: anywhere;
}

.credits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.credits div {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.credits div:last-child {
  border-right: 0;
}

.credits span {
  display: block;
  color: var(--red);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.credits p {
  margin: 20px 0 0;
  font-size: 18px;
  font-weight: 800;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: end;
}

.footer-links a {
  width: fit-content;
  border-bottom: 2px solid var(--red);
}

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

.dido-page .site-header {
  mix-blend-mode: difference;
}

.dido-hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
}

.dido-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 82%;
  filter: saturate(1.18) contrast(1.18) brightness(0.78);
}

.dido-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.34) 54%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.1) 54%, rgba(213, 38, 31, 0.34) 100%);
}

.dido-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  width: min(1220px, 100%);
  min-height: 96vh;
  padding: 120px 28px 64px;
}

.dido-hero h1 {
  margin: 0;
  font-size: 168px;
  line-height: 0.78;
  letter-spacing: 0;
}

.dido-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  margin: 24px 0 28px;
  font-size: 24px;
  font-weight: 800;
}

.dido-statement,
.dido-reviews,
.dido-production,
.dido-tour,
.dido-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 92px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.dido-statement h2,
.dido-reviews h2,
.dido-production h2,
.dido-tour h2,
.dido-contact h2 {
  margin: 0;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dido-statement p,
.dido-contact p {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 700;
}

.dido-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.dido-specs div {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.dido-specs div:last-child {
  border-right: 0;
}

.dido-specs span,
.dido-production li span,
.dido-tour li span,
.dido-tour li em {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.dido-specs strong {
  display: block;
  margin-top: 42px;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.dido-media {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
  padding: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.dido-video {
  aspect-ratio: 16 / 9;
  background: #000000;
}

.dido-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.dido-quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 28px;
  background: var(--white);
  color: var(--ink);
}

.dido-quote p {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.dido-quote span {
  color: var(--red);
  font-weight: 900;
}

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

.dido-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dido-review-grid article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.dido-review-grid p {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.dido-review-grid span {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.dido-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.dido-links a {
  width: fit-content;
  border: 1px solid currentColor;
  border-radius: 8px;
  padding: 7px 10px;
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dido-production ul,
.dido-tour ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dido-production li,
.dido-tour li {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.dido-production li:first-child,
.dido-tour li:first-child {
  border-top: 0;
}

.dido-production li strong,
.dido-tour li strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  line-height: 1.05;
}

.dido-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 12px;
  padding: 12px;
  background: var(--white);
}

.dido-gallery figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.dido-gallery img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.22);
}

.dido-gallery figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 7px 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dido-contact {
  background: var(--green);
}

.dido-socials {
  margin-top: 28px;
}

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

.broken-hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  background: var(--ink);
}

.broken-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.18) saturate(0.92) brightness(0.74);
}

.broken-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.32) 48%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.08) 58%, rgba(17, 97, 73, 0.28) 100%);
}

.broken-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  width: min(1240px, 100%);
  min-height: 96vh;
  padding: 120px 28px 64px;
}

.broken-hero h1 {
  width: min(1060px, 100%);
  margin: 0;
  font-size: 132px;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.broken-hero p:not(.eyebrow) {
  width: min(760px, 100%);
  margin: 24px 0 28px;
  font-size: 24px;
  font-weight: 800;
}

.broken-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.broken-specs div {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.broken-specs div:last-child {
  border-right: 0;
}

.broken-specs span,
.broken-production li span,
.broken-timeline li span,
.broken-timeline li em {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.broken-specs strong {
  display: block;
  margin-top: 42px;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.broken-statement,
.broken-timeline,
.broken-production,
.broken-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 92px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.broken-statement h2,
.broken-timeline h2,
.broken-production h2,
.broken-contact h2 {
  margin: 0;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.broken-statement p,
.broken-contact p,
.broken-timeline p {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 700;
}

.broken-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  gap: 12px;
  padding: 12px;
  background: var(--white);
}

.broken-gallery figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.broken-gallery__lead {
  grid-row: span 2;
}

.broken-gallery img {
  height: 100%;
  object-fit: cover;
  filter: contrast(1.12) saturate(0.92);
}

.broken-gallery figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 7px 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.broken-production ul,
.broken-timeline ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.broken-production li,
.broken-timeline li {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.broken-production li:first-child,
.broken-timeline li:first-child {
  border-top: 0;
}

.broken-production li strong,
.broken-timeline li strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  line-height: 1.05;
}

.broken-contact {
  background: var(--green);
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  nav {
    gap: 12px;
  }

  .hero__content {
    padding: 100px 18px 40px;
  }

  .hero h1,
  .archive-hero h1,
  .press-hero h1,
  .work-detail-hero h1,
  .intro h2,
  .about h2,
  .site-footer h2 {
    font-size: 54px;
  }

  .hero p:not(.eyebrow),
  .archive-hero p:not(.eyebrow),
  .press-hero p:not(.eyebrow),
  .intro p:not(.eyebrow),
  .about p,
  .site-footer a {
    font-size: 19px;
  }

  .intro,
  .archive-hero,
  .press-hero,
  .about,
  .site-footer,
  .work,
  .work-detail-body,
  .interview-card,
  .interview-detail-body,
  .work-detail-nav {
    grid-template-columns: 1fr;
    padding: 64px 18px;
  }

  .work-detail-hero__content {
    padding: 108px 18px 48px;
  }

  .work-detail-meta {
    position: static;
  }

  .work-detail-copy p,
  .work-detail-copy p:first-child,
  .interview-detail-copy p {
    font-size: 24px;
    line-height: 1.18;
    text-transform: none;
  }

  .interview-card h2,
  .interview-detail-hero h1 {
    grid-column: auto;
    font-size: 52px;
  }

  .interview-card > p:not(.eyebrow),
  .interview-card .tags,
  .interview-card .text-link {
    grid-column: auto;
  }

  .work-detail-nav {
    gap: 0;
    padding: 0;
  }

  .work-detail-nav a,
  .work-detail-nav > span {
    min-height: 160px;
    font-size: 26px;
  }

  .work {
    gap: 22px;
    min-height: auto;
  }

  .work__image {
    min-height: 280px;
  }

  .work h3 {
    font-size: 44px;
  }

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

  .credits div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dido-hero h1 {
    font-size: 96px;
  }

  .dido-statement,
  .dido-reviews,
  .dido-production,
  .dido-tour,
  .dido-contact,
  .broken-statement,
  .broken-timeline,
  .broken-production,
  .broken-contact,
  .dido-media {
    grid-template-columns: 1fr;
    padding: 64px 18px;
  }

  .dido-statement h2,
  .dido-reviews h2,
  .dido-production h2,
  .dido-tour h2,
  .dido-contact h2,
  .broken-statement h2,
  .broken-timeline h2,
  .broken-production h2,
  .broken-contact h2 {
    font-size: 48px;
  }

  .dido-specs,
  .dido-gallery,
  .dido-review-grid,
  .broken-specs,
  .broken-gallery {
    grid-template-columns: 1fr;
  }

  .dido-specs div,
  .broken-specs div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .dido-gallery figure,
  .broken-gallery figure {
    min-height: 420px;
  }

  .broken-hero h1 {
    font-size: 72px;
  }

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

}

@media (max-width: 520px) {
  .site-header {
    position: absolute;
    display: grid;
    gap: 10px;
    mix-blend-mode: normal;
  }

  .brand,
  nav {
    font-size: 12px;
  }

  .hero h1,
  .archive-hero h1,
  .press-hero h1,
  .work-detail-hero h1,
  .intro h2,
  .about h2,
  .site-footer h2 {
    font-size: 38px;
  }

  .ticker span {
    font-size: 17px;
  }

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

  .work__image {
    min-height: 240px;
  }

  .work h3 {
    font-size: 34px;
  }

  .work__copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .work-detail-copy p,
  .work-detail-copy p:first-child,
  .interview-detail-copy p {
    font-size: 19px;
  }

  .work-detail-nav a,
  .work-detail-nav > span {
    min-height: 130px;
    font-size: 22px;
  }

  .dido-hero__content {
    padding: 112px 18px 48px;
  }

  .dido-hero h1 {
    font-size: 68px;
  }

  .dido-hero p:not(.eyebrow),
  .dido-statement p,
  .dido-contact p {
    font-size: 18px;
  }

  .dido-statement h2,
  .dido-reviews h2,
  .dido-production h2,
  .dido-tour h2,
  .dido-contact h2 {
    font-size: 34px;
  }

  .dido-specs strong,
  .dido-production li strong,
  .dido-tour li strong {
    font-size: 22px;
  }

  .dido-quote p {
    font-size: 26px;
  }
}
