@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dm-sans-400.ttf") format("truetype");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/dm-sans-500.ttf") format("truetype");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/dm-sans-600.ttf") format("truetype");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/instrument-serif-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/instrument-serif-italic.ttf") format("truetype");
}

:root {
  --paper: #f1eee5;
  --paper-deep: #e4dfd2;
  --ink: #17211f;
  --ink-soft: #53605b;
  --rust: #c4512d;
  --rust-dark: #93381f;
  --sage: #aab29d;
  --cream: #faf8f1;
  --line: rgba(23, 33, 31, 0.18);
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--rust) var(--paper);
}

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

body.dialog-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 4px;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px clamp(22px, 4.2vw, 72px);
}

.wordmark {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
}

.site-header nav a {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.site-header nav a:not(.contact-link)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.site-header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-link {
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 250ms ease, color 250ms ease;
}

.contact-link:hover {
  background: var(--ink);
  color: var(--cream);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, 100svh);
  grid-template-columns: minmax(320px, 0.82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(40px, 7vw, 130px);
  overflow: hidden;
  padding: 128px clamp(22px, 7vw, 118px) 76px;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 45%;
  width: 1px;
  background: var(--line);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.archive h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(76px, 8.5vw, 152px);
}

.hero h1 em,
.contact h2 em {
  color: var(--rust);
  font-weight: 400;
}

.hero-intro {
  max-width: 440px;
  margin: 42px 0 30px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.text-link span {
  font-size: 18px;
  transition: transform 250ms var(--ease);
}

.text-link:hover span {
  transform: translateY(5px);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 810px;
  justify-self: end;
}

.featured-work {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.featured-work::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  content: "";
  pointer-events: none;
}

.featured-work > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) sepia(0.08);
  transform: scale(1.002);
  transition: filter 700ms ease, transform 1.2s var(--ease);
}

.featured-work:hover > img {
  filter: saturate(0.95);
  transform: scale(1.045);
}

.featured-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 22, 21, 0.03) 25%, rgba(13, 22, 21, 0.88) 100%);
}

.featured-caption {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 4vw, 58px);
  bottom: clamp(30px, 4vw, 58px);
  left: clamp(28px, 4vw, 58px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 14px;
}

.featured-index,
.featured-meta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured-index {
  grid-column: 1 / -1;
  opacity: 0.75;
}

.featured-caption strong {
  font-family: var(--serif);
  font-size: clamp(44px, 4.8vw, 78px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.8;
}

.featured-meta {
  padding-bottom: 3px;
  text-align: right;
}

.play-disc {
  position: absolute;
  z-index: 3;
  top: clamp(24px, 8%, 50px);
  right: clamp(24px, 4vw, 58px);
  display: grid;
  width: clamp(64px, 6vw, 92px);
  height: clamp(64px, 6vw, 92px);
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: none;
  transition: background 250ms ease, transform 400ms var(--ease);
}

.featured-work:hover .play-disc {
  background: #fff;
  transform: scale(1.08);
}

.play-disc span,
.player-big-play span,
.control-play {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--rust);
}

.vertical-note {
  position: absolute;
  right: max(8px, 1.3vw);
  bottom: 74px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--rust);
  color: var(--cream);
}

.ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(22px, 3vw, 52px);
  padding: 14px 0 17px;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 58px);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.ticker i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

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

.archive {
  padding: clamp(90px, 12vw, 180px) clamp(22px, 7vw, 118px) clamp(100px, 12vw, 170px);
}

.archive-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 80px;
  margin-bottom: clamp(68px, 8vw, 120px);
}

.archive h2 {
  font-size: clamp(86px, 12vw, 184px);
}

.archive-heading > p {
  max-width: 420px;
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.7;
}

.filter-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.filters button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 13px;
}

.filters button:hover,
.filters button.is-active {
  color: var(--rust);
}

.filters button.is-active {
  font-weight: 600;
}

.filters sup {
  margin-left: 2px;
  font-size: 9px;
}

.result-status {
  min-width: max-content;
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(42px, 6vw, 92px) clamp(18px, 3vw, 48px);
}

.work-card {
  grid-column: span 4;
  min-width: 0;
}

.work-card.is-hidden {
  display: none;
}

.work-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #c9c4b7;
  cursor: pointer;
}

.work-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.98);
  transition: filter 600ms ease, transform 900ms var(--ease);
}

.work-poster:hover img,
.work-poster:focus-visible img {
  filter: saturate(1);
  transform: scale(1.04);
}

.work-poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 20, 18, 0.35));
  content: "";
  opacity: 0;
  transition: opacity 350ms ease;
}

.work-poster:hover::after,
.work-poster:focus-visible::after {
  opacity: 1;
}

.work-play {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--rust);
  font-size: 21px;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 400ms var(--ease);
}

.work-poster:hover .work-play,
.work-poster:focus-visible .work-play {
  opacity: 1;
  transform: translateY(0);
}

.work-poster.image-missing img {
  opacity: 0;
}

.work-poster.image-missing::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, transparent 48%, rgba(23, 33, 31, 0.16) 49%, rgba(23, 33, 31, 0.16) 51%, transparent 52%),
    var(--paper-deep);
  color: var(--ink-soft);
  content: "Sahne";
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 64px);
  font-style: italic;
}

.work-info {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding-top: 18px;
}

.work-number {
  padding-top: 3px;
  color: var(--rust);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.work-type {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.work-info h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 2.25vw, 37px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.work-description {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 13vw, 190px) clamp(22px, 9vw, 150px);
  background: var(--ink);
  color: var(--cream);
}

.contact::after {
  position: absolute;
  right: -7vw;
  bottom: -25vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(250, 248, 241, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 9vw rgba(250, 248, 241, 0.025), 0 0 0 18vw rgba(250, 248, 241, 0.018);
  content: "";
}

.eyebrow.light {
  color: var(--sage);
}

.contact h2 {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  font-size: clamp(92px, 14.5vw, 218px);
}

.contact a {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 720px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(55px, 8vw, 100px);
  padding: 18px 0;
  border-top: 1px solid rgba(250, 248, 241, 0.6);
  border-bottom: 1px solid rgba(250, 248, 241, 0.6);
  color: var(--cream);
  font-size: clamp(14px, 1.5vw, 21px);
  text-decoration: none;
}

.contact a span {
  color: var(--rust);
  font-size: 28px;
  transition: transform 250ms var(--ease);
}

.contact a:hover span {
  transform: translate(5px, -5px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px clamp(22px, 4.2vw, 72px);
  background: var(--ink);
  color: var(--sage);
  font-size: 11px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a span {
  margin-left: 8px;
}

.video-dialog {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(12, 18, 17, 0.98);
  color: var(--cream);
}

.video-dialog::backdrop {
  background: rgba(12, 18, 17, 0.9);
}

.video-dialog[open] {
  animation: dialog-in 420ms var(--ease);
}

@keyframes dialog-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.dialog-inner {
  display: grid;
  min-height: 100%;
  grid-template-rows: auto auto 1fr;
  align-content: center;
  padding: clamp(70px, 8vw, 120px) clamp(18px, 7vw, 110px) 50px;
}

.dialog-close {
  position: fixed;
  z-index: 20;
  top: 24px;
  right: clamp(20px, 3vw, 48px);
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-close span {
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.player {
  position: relative;
  width: min(100%, 1280px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 auto;
  background: #030504;
  box-shadow: 0 20px 90px rgba(0, 0, 0, 0.35);
}

.player video,
.player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.player iframe {
  display: none;
}

.player-error {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  width: calc(100% - 48px);
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 44px);
  text-align: center;
  transform: translate(-50%, -50%);
}

.player-error[hidden] {
  display: none;
}

.player.has-error .player-big-play,
.player.has-error .player-controls {
  display: none;
}

.player.is-youtube video,
.player.is-youtube .player-controls,
.player.is-youtube .player-big-play {
  display: none;
}

.player.is-youtube iframe {
  display: block;
}

.player-big-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(68px, 7vw, 100px);
  height: clamp(68px, 7vw, 100px);
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 250ms ease, transform 350ms var(--ease);
}

.player-big-play:hover {
  transform: translate(-50%, -50%) scale(1.07);
}

.player.is-playing .player-big-play {
  opacity: 0;
  pointer-events: none;
}

.player-controls {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 42px 20px 18px;
  background: linear-gradient(transparent, rgba(3, 5, 4, 0.86));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.player:hover .player-controls,
.player:focus-within .player-controls,
.player:not(.is-playing) .player-controls {
  opacity: 1;
  transform: translateY(0);
}

.player-controls button {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.player-controls .control-play {
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-width: 8px;
  border-left-color: #fff;
}

.player.is-playing .control-play {
  width: 9px;
  height: 12px;
  margin: 0;
  border: 0;
  border-right: 3px solid #fff;
  border-left: 3px solid #fff;
}

.time {
  display: flex;
  min-width: 82px;
  gap: 5px;
  color: #fff;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.progress-wrap {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  height: 18px;
  align-items: center;
}

.progress-wrap::before,
.progress-wrap > span {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  content: "";
  pointer-events: none;
}

.progress-wrap > span {
  right: auto;
  width: 0;
  background: var(--rust);
}

.progress-wrap input,
.volume-wrap input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 18px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.progress-wrap input::-webkit-slider-thumb,
.volume-wrap input::-webkit-slider-thumb {
  width: 10px;
  height: 10px;
  appearance: none;
  border: 0;
  border-radius: 50%;
  background: #fff;
}

.progress-wrap input::-moz-range-thumb,
.volume-wrap input::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #fff;
}

.control-volume {
  position: relative;
  width: 10px;
  height: 9px;
  border: 2px solid #fff;
  border-right: 0;
}

.control-volume::before {
  position: absolute;
  top: -5px;
  left: 6px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 8px solid #fff;
  content: "";
}

.player.is-muted .control-volume::after {
  position: absolute;
  top: -6px;
  left: 9px;
  width: 2px;
  height: 17px;
  background: var(--rust);
  content: "";
  transform: rotate(-45deg);
}

.volume-wrap {
  display: block;
  width: 58px;
}

.volume-wrap input {
  height: 16px;
  background: linear-gradient(to right, #fff 0 100%, rgba(255,255,255,.3) 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 2px;
}

.control-fullscreen {
  position: relative;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
}

.control-fullscreen::after {
  position: absolute;
  inset: 2px;
  border: 2px solid #030504;
  content: "";
}

.dialog-copy {
  display: grid;
  width: min(100%, 1280px);
  grid-template-columns: 0.35fr 1fr 0.8fr;
  gap: 28px;
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(250, 248, 241, 0.23);
}

.dialog-copy p {
  margin: 0;
  color: var(--sage);
  font-size: 12px;
  line-height: 1.6;
}

.dialog-copy > p:first-child {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dialog-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.noscript {
  position: fixed;
  z-index: 9999;
  right: 20px;
  bottom: 20px;
  left: 20px;
  margin: 0;
  padding: 15px;
  background: var(--rust);
  color: #fff;
  text-align: center;
}

@media (max-width: 1100px) {
  .hero {
    min-height: 780px;
    grid-template-columns: minmax(280px, 0.75fr) minmax(390px, 1fr);
    gap: 50px;
    padding-right: 7vw;
    padding-left: 5vw;
  }

  .work-card {
    grid-column: span 6;
  }

}

@media (max-width: 760px) {
  .site-header {
    padding-top: 23px;
  }

  .site-header nav a:not(.contact-link) {
    display: none;
  }

  .contact-link {
    padding: 8px 14px;
  }

  .hero {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 120px 22px 70px;
  }

  .hero-copy,
  .hero-visual,
  .hero-intro {
    width: 100%;
    max-width: 100%;
  }

  .hero::before,
  .vertical-note {
    display: none;
  }

  .hero h1 {
    font-size: clamp(68px, 21vw, 104px);
  }

  .hero-intro {
    margin-top: 28px;
  }

  .hero-visual {
    margin-top: 70px;
  }

  .featured-work {
    aspect-ratio: 16 / 9;
  }

  .featured-work > img {
    object-position: 52% center;
  }

  .featured-caption {
    grid-template-columns: 1fr;
    gap: 6px;
    right: 22px;
    bottom: 18px;
    left: 22px;
  }

  .featured-caption strong {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .play-disc {
    top: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .featured-meta {
    text-align: left;
  }

  .archive {
    padding-right: 22px;
    padding-left: 22px;
  }

  .archive-heading {
    display: block;
  }

  .archive-heading > p {
    margin-top: 40px;
  }

  .archive h2 {
    font-size: clamp(84px, 27vw, 132px);
  }

  .filter-bar {
    display: block;
  }

  .filters {
    gap: 13px 22px;
  }

  .result-status {
    margin-top: 18px;
  }

  .work-grid {
    display: block;
  }

  .work-card {
    width: 100%;
    margin-bottom: 64px;
    margin-right: auto;
    margin-left: 0;
  }

  .work-poster,
  .work-card:nth-child(7n + 2) .work-poster,
  .work-card:nth-child(7n + 6) .work-poster {
    aspect-ratio: 16 / 9;
  }

  .work-play {
    width: 44px;
    height: 44px;
    opacity: 1;
    transform: none;
  }

  .contact h2 {
    font-size: clamp(82px, 27vw, 140px);
  }

  .dialog-inner {
    align-content: start;
    padding-top: 74px;
  }

  .player {
    aspect-ratio: 16 / 9;
  }

  .dialog-copy {
    display: block;
    margin-top: 22px;
  }

  .dialog-copy h2 {
    margin: 12px 0 16px;
  }

  .time,
  .volume-wrap {
    display: none;
  }

  .player-controls {
    gap: 8px;
    padding-right: 12px;
    padding-left: 12px;
  }
}

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

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