@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/bebas-neue-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/dm-serif-display-latin-400-normal.woff2")
    format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin-600-normal.woff2") format("woff2");
}

:root {
  font-family: "DM Sans", sans-serif;
  color: #161616;
  background: #fdfdfb;
  font-synthesis: none;
  font-weight: 400;
  --paper: #fdfdfb;
  --ink: #111212;
  --red: #d82c26;
  --line: #d9d9d5;
  --muted: #62625f;
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
  color-scheme: light;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
body {
  margin: 0;
  min-width: 0;
  -webkit-font-smoothing: antialiased;
}
button,
a,
input {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 5px;
}
button:disabled {
  cursor: default;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #2387e8;
  outline-offset: 6px;
}
button:focus-visible {
  position: relative;
  z-index: 2;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  flex-shrink: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h2,
h3 {
  font-weight: 400;
}
p {
  line-height: 1.65;
}
::selection {
  background: #e62e29;
  color: #fff;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: #777;
  border: 2px solid var(--paper);
}
body::-webkit-scrollbar-track {
  background: var(--paper);
}
.wrap {
  width: calc(100% - 112px);
  max-width: 1440px;
  margin-inline: auto;
}
.small-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.5;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: 16px;
  z-index: 20;
  background: white;
  color: black;
  padding: 14px 20px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.hero {
  position: relative;
  height: min(820px, 56vw, calc(100svh - 170px));
  min-height: 560px;
  color: white;
  background: #171011;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.32);
  pointer-events: none;
}
.site-header {
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 4;
}
.wordmark {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  line-height: 1;
  white-space: nowrap;
}
.wordmark-dot {
  color: #f4423b;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: 45px;
  font-size: 14px;
}
.desktop-nav a {
  padding-block: 12px;
}
.desktop-nav a:hover {
  text-decoration: underline;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 46px;
  padding: 13px 21px;
  border: 1px solid transparent;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s;
}
.button:hover {
  background: var(--red);
  color: white;
}
.menu-button {
  display: none !important;
}
.hero-note {
  font-size: 11px;
  line-height: 1.75;
  text-transform: uppercase;
  margin-top: 68px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-note::after {
  content: "";
  height: 1px;
  width: 38px;
  background: #ff453e;
  margin-top: 20px;
}
.hero-content {
  margin-top: auto;
  padding-bottom: 47px;
}
.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 140px;
  font-weight: 400;
  line-height: 0.98;
  white-space: nowrap;
  margin-left: -3px;
}
.hero-content > p {
  font-size: 18px;
  line-height: 1.5;
  max-width: 820px;
  margin-top: 10px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 29px;
}
.watch-button {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 17px;
  background: none;
  border: 0;
  padding: 0;
}
.play-disc {
  height: 64px;
  width: 64px;
  display: grid;
  place-items: center;
  background: white;
  color: #121212;
  border-radius: 50%;
  transition:
    background 0.2s,
    transform 0.2s;
}
.play-disc svg {
  margin-left: 3px;
}
.watch-button:hover .play-disc {
  background: #f33d35;
  color: white;
  transform: scale(1.06);
}
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
}
.hero-scroll:hover {
  text-decoration: underline;
}
.section-light {
  background: var(--paper);
}
.work-section {
  padding: 44px 0 82px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 25px;
}
.section-heading h2,
.studio-section h2 {
  font-family: "DM Serif Display", serif;
  font-size: 72px;
  line-height: 1.12;
  margin-top: 8px;
}
.section-heading > p {
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 5px;
}
.filters {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.filters button {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 14px 0;
  margin-bottom: -1px;
  min-height: 45px;
  color: var(--muted);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.filters button span {
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  opacity: 0.8;
}
.filters button.active {
  color: var(--ink);
  border-bottom-color: var(--red);
}
.filters button:hover {
  color: #ba221e;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 42px 24px;
}
.project {
  grid-column: span 2;
  min-width: 0;
}
.project.featured {
  grid-column: span 3;
}
.project-grid.filtered .project {
  grid-column: span 3;
}
.project-media {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #1a1a1a;
  text-align: left;
  color: white;
}
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-media:hover img {
  transform: scale(1.035);
}
.project-format {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #111d;
  padding: 5px 8px;
  font-size: 10px;
  text-transform: uppercase;
}
.project-play {
  position: absolute;
  bottom: 17px;
  left: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.project-play > svg {
  box-sizing: content-box;
  background: #111b;
  padding: 10px;
  border: 1px solid white;
  border-radius: 50%;
}
.project-play > span {
  font-size: 12px;
  background: #111d;
  padding: 5px 8px;
  opacity: 0;
  transform: translateX(-5px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.project-media:hover .project-play > span,
.project-media:focus-visible .project-play > span {
  opacity: 1;
  transform: translateX(0);
}
.project-arrow {
  position: absolute;
  right: 16px;
  bottom: 20px;
  filter: drop-shadow(0 1px 3px #000);
}
.project-details {
  padding-top: 17px;
}
.project-details > .small-label {
  color: var(--muted);
  font-size: 10px;
}
.project h3 {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  line-height: 1.25;
  margin-top: 3px;
}
.project.featured h3 {
  font-size: 30px;
}
.project h3 button {
  border: 0;
  padding: 0;
  text-align: left;
  background: none;
  font: inherit;
}
.project h3 button:hover {
  color: #b32621;
}
.project-details p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 7px;
  line-height: 1.5;
  max-width: 440px;
}
.services-section {
  background: var(--ink);
  color: #f9f9f7;
  padding: 72px 0 80px;
}
.service-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  color: #c3c3bf;
}
.service-sequence {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  text-transform: uppercase;
}
.service-sequence svg {
  width: 12px;
  height: 12px;
}
.services-section h2 {
  font-family: "DM Serif Display", serif;
  font-size: 54px;
  line-height: 1.15;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 45px;
}
.service-grid article {
  padding: 0 35px;
  border-left: 1px solid #494949;
}
.service-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}
.service-grid article:last-child {
  padding-right: 0;
}
.service-number {
  font-size: 17px;
  color: #ff4c45;
  display: block;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.service-grid h3 {
  font-family: "DM Serif Display", serif;
  font-size: 36px;
  line-height: 1.2;
}
.service-grid p {
  font-size: 15px;
  color: #bdbebb;
  line-height: 1.65;
  margin-top: 19px;
  max-width: 380px;
}
.service-tags {
  display: block;
  font-size: 10px;
  color: #e0e0dc;
  margin-top: 25px;
}
.format-section {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 70px;
  padding-top: 72px;
  margin-top: 62px;
  border-top: 1px solid #373737;
}
.format-section > h3 {
  font-family: "DM Serif Display", serif;
  font-size: 40px;
  line-height: 1.2;
}
.format-list details {
  border-bottom: 1px solid #373737;
}
.format-list details:first-child {
  border-top: 1px solid #373737;
}
.format-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 17px;
  list-style: none;
}
.format-list summary::-webkit-details-marker {
  display: none;
}
.format-list summary .minus {
  display: none;
}
.format-list details[open] .minus {
  display: block;
  color: #fa4c46;
}
.format-list details[open] .plus {
  display: none;
}
.format-list summary:hover {
  color: #ff6f69;
}
.format-description {
  padding: 0 42px 25px 0;
}
.format-description p {
  color: #bdbebb;
  font-size: 14px;
  max-width: 580px;
}
.format-description a {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 17px;
  text-decoration: underline;
}
.studio-section {
  padding: 85px 0 76px;
}
.studio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px 90px;
}
.studio-section h2 {
  font-size: 64px;
}
.studio-copy {
  padding-top: 16px;
}
.studio-copy p {
  font-size: 15px;
  color: var(--muted);
  max-width: 550px;
}
.studio-copy p.studio-intro {
  font-size: 24px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 22px;
}
.studio-contact {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.studio-contact strong {
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.studio-contact span {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}
.studio-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-decoration: underline;
  white-space: nowrap;
}
.process-list {
  list-style: none;
  margin: 0;
  padding: 45px 0 0;
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px;
  border-top: 1px solid var(--line);
}
.process-list li > span {
  font-size: 11px;
  color: #ad2925;
  text-transform: uppercase;
}
.process-list h3 {
  font-size: 22px;
  margin-top: 12px;
  font-weight: 500;
}
.process-list p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 9px;
  max-width: 320px;
}
.contact-section {
  background: var(--red);
  color: #fff;
  padding: 64px 0;
}
.contact-heading,
.contact-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 1fr);
  gap: 72px;
}
.contact-heading {
  align-items: center;
}
.contact-heading h2 {
  font-family: "DM Serif Display", serif;
  font-size: 64px;
  line-height: 1.1;
}
.contact-intro p {
  font-size: 16px;
  margin-bottom: 16px;
}
.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 56px;
  padding: 14px 24px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.contact-action svg {
  height: 20px;
  width: 20px;
  transition: transform 0.25s;
}
.contact-action:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.contact-action:hover svg {
  transform: translate(2px, -2px);
}
.contact-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #ffffff55;
}
.contact-label {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.contact-primary {
  min-width: 0;
}
.email-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.email-row > a {
  min-width: 0;
  font-size: 26px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.email-row > a:hover {
  text-decoration: underline;
}
.contact-phone {
  margin-top: 24px;
}
.contact-phone .contact-label {
  margin-bottom: 0;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 16px;
}
.phone-link:hover {
  text-decoration: underline;
}
.icon-button {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  height: 40px;
  width: 40px;
  border: 0;
  background: none;
  color: inherit;
  padding: 8px;
  transition: background 0.2s;
}
.icon-button:hover {
  background: #ffffff26;
}
.copy-control {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.copy-status {
  position: absolute;
  top: 42px;
  left: 0;
  white-space: nowrap;
  font-size: 10px;
}
.contact-section .icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid #ffffff66;
  border-radius: 4px;
}
.contact-section .copy-status {
  top: auto;
  bottom: calc(100% + 8px);
  left: auto;
  right: 0;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font-size: 12px;
  line-height: 1.4;
  pointer-events: none;
}
.contact-section .copy-status:empty {
  display: none;
}
.contact-section a:focus-visible,
.contact-section button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.social-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
}
.social-links > a {
  min-height: 64px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #ffffff55;
  transition: background 0.2s;
}
.social-links > a svg {
  width: 20px;
  height: 20px;
  margin-inline: 12px;
}
.social-links > a:hover {
  background: #ffffff12;
  text-decoration: underline;
}
.discord-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  font-size: 16px;
  border-bottom: 1px solid #ffffff55;
  padding: 10px 0;
}
.discord-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 20px;
  min-width: 0;
}
.discord-handle {
  font-size: 14px;
  overflow-wrap: anywhere;
}
.site-footer {
  background: var(--ink);
  color: white;
  padding: 30px 0;
}
.site-footer > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-footer .wordmark {
  font-size: 21px;
}
.site-footer span,
.back-to-top {
  font-size: 11px;
  color: #bebeba;
}
.back-to-top {
  display: flex;
  align-items: center;
  gap: 13px;
}
.back-to-top:hover {
  color: white;
}
.mobile-menu {
  display: none;
}
.video-dialog {
  border: 1px solid #383838;
  padding: 0;
  color: white;
  background: #111;
  max-width: 1100px;
  width: calc(100% - 48px);
  max-height: 92dvh;
  overflow: auto;
  box-shadow: 0 20px 70px #0008;
}
.video-dialog::backdrop {
  background: #000d;
}
.video-panel {
  padding: 22px;
}
.video-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
}
.video-heading .small-label {
  color: #bdbebb;
}
.video-heading h2 {
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  margin-top: 4px;
  line-height: 1.2;
}
.video-embed {
  aspect-ratio: 16/9;
  background: #050505;
  margin-inline: auto;
  width: 100%;
  position: relative;
  min-height: 200px;
}
.video-embed.vertical {
  height: min(64dvh, 680px);
  aspect-ratio: 9/16;
  width: auto;
  max-width: 100%;
}
.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.youtube-mount {
  position: absolute;
  inset: 0;
}
.youtube-mount.not-ready {
  visibility: hidden;
}
.player-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.player-fallback > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.4;
}
.player-fallback > div {
  position: absolute;
  text-align: center;
  padding: 18px;
  max-width: 100%;
}
.player-fallback p {
  font-size: 12px;
  color: #fff;
  margin-bottom: 15px;
  background: #111;
  padding: 6px 10px;
}
.player-fallback .button {
  font-size: 12px;
  padding: 12px 15px;
  gap: 10px;
}
.video-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  font-size: 12px;
  color: #bdbebb;
}
.video-footer a {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  color: white;
  text-decoration: underline;
}
@media (min-width: 1600px) {
  .hero h1 {
    font-size: 152px;
  }
  .hero-content {
    padding-bottom: 60px;
  }
}
@media (max-width: 1279px) {
  .wrap {
    width: calc(100% - 80px);
  }
  .hero h1 {
    font-size: 116px;
  }
  .wordmark {
    font-size: 24px;
  }
  .desktop-nav {
    gap: 28px;
    margin-left: 0;
  }
  .section-heading h2 {
    font-size: 64px;
  }
  .service-grid article {
    padding-inline: 26px;
  }
  .service-grid h3 {
    font-size: 32px;
  }
  .studio-layout {
    gap: 50px;
  }
  .studio-section h2 {
    font-size: 57px;
  }
  .contact-heading h2 {
    font-size: 56px;
  }
}
@media (max-width: 1050px) {
  .hero h1 {
    font-size: 96px;
  }
  .hero-content > p {
    font-size: 16px;
    max-width: 680px;
  }
  .hero-note {
    margin-top: 40px;
  }
  .site-header {
    height: 90px;
  }
  .desktop-nav {
    gap: 23px;
    font-size: 13px;
  }
  .header-cta {
    padding: 12px 16px;
    gap: 12px;
  }
  .wordmark {
    font-size: 23px;
  }
  .project h3,
  .project.featured h3 {
    font-size: 25px;
  }
  .project-grid {
    gap: 32px 20px;
  }
  .service-grid h3 {
    font-size: 29px;
  }
  .service-grid p {
    font-size: 14px;
  }
  .service-grid article {
    padding-inline: 24px;
  }
  .service-tags {
    line-height: 1.6;
  }
  .studio-layout {
    gap: 45px;
  }
  .studio-section h2 {
    font-size: 50px;
  }
  .studio-copy p.studio-intro {
    font-size: 21px;
  }
  .studio-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .contact-heading h2 {
    font-size: 52px;
  }
  .contact-heading,
  .contact-bottom {
    gap: 40px;
  }
  .email-row > a {
    font-size: 24px;
  }
  .process-list {
    gap: 35px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .desktop-nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
  }
  .menu-button {
    display: inline-grid !important;
  }
  .site-header {
    gap: 20px;
  }
  .hero h1 {
    font-size: 78px;
  }
  .hero {
    min-height: 640px;
  }
  .hero-image {
    object-position: 58% 35%;
  }
  .hero-note {
    margin-top: 30px;
  }
  .hero-content > p {
    max-width: 600px;
  }
  .hero-scroll {
    font-size: 11px;
  }
  .section-heading h2 {
    font-size: 54px;
  }
  .section-heading > p {
    font-size: 12px;
  }
  .filters {
    gap: 21px;
  }
  .filters button {
    font-size: 12px;
  }
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .project,
  .project.featured,
  .project-grid.filtered .project {
    grid-column: auto;
  }
  .services-section h2 {
    font-size: 45px;
  }
  .service-grid {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .service-grid article,
  .service-grid article:first-child,
  .service-grid article:last-child {
    padding: 0 0 28px;
    border: 0;
    border-bottom: 1px solid #393939;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 15px;
  }
  .service-number {
    margin-top: 4px;
  }
  .service-grid h3 {
    font-size: 33px;
  }
  .service-grid p,
  .service-tags {
    grid-column: 2;
    max-width: 600px;
  }
  .service-grid p {
    margin-top: 12px;
  }
  .service-tags {
    margin-top: 15px;
  }
  .format-section {
    gap: 30px;
    padding-top: 40px;
    margin-top: 22px;
    grid-template-columns: 1fr 1.55fr;
  }
  .format-section > h3 {
    font-size: 32px;
  }
  .format-list summary {
    font-size: 15px;
    padding-block: 18px;
  }
  .studio-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .studio-section h2 {
    font-size: 55px;
  }
  .studio-copy {
    padding-top: 0;
  }
  .studio-copy p,
  .studio-copy p.studio-intro {
    max-width: 640px;
  }
  .studio-contact {
    flex-direction: row;
    align-items: center;
  }
  .process-list {
    gap: 30px;
    padding-top: 30px;
    margin-top: 20px;
  }
  .process-list h3 {
    font-size: 19px;
  }
  .process-list p {
    font-size: 13px;
  }
  .contact-heading,
  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .social-links {
    max-width: none;
  }
  .site-footer .wordmark {
    font-size: 19px;
  }
  .site-footer > .wrap {
    flex-wrap: wrap;
  }
  .mobile-menu {
    position: absolute;
    inset: 88px 24px auto;
    z-index: 5;
    background: var(--paper);
    color: #111;
    display: flex;
    flex-direction: column;
    padding: 10px 23px;
    box-shadow: 0 16px 32px #0004;
  }
  .mobile-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 0;
    border-bottom: 1px solid #ddd;
    font-size: 19px;
  }
  .mobile-menu a:last-child {
    border: 0;
  }
  .mobile-menu a:hover {
    color: #b32621;
  }
}
@media (min-width: 581px) and (max-width: 700px) {
  .hero h1 {
    font-size: 64px;
  }
}
@media (max-width: 580px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .hero {
    min-height: 710px;
    height: calc(100svh - 65px);
    max-height: 850px;
  }
  .hero-image {
    object-position: 62% top;
  }
  .hero::after {
    background: #0003;
  }
  .site-header {
    height: 82px;
    gap: 10px;
  }
  .wordmark {
    font-size: 22px;
  }
  .header-cta {
    display: none;
  }
  .menu-button {
    margin-left: auto;
  }
  .hero-note {
    margin-top: 23px;
    font-size: 9px;
    line-height: 1.8;
    max-width: none;
  }
  .hero-note::after {
    margin-top: 13px;
    width: 28px;
  }
  .hero-content {
    padding-bottom: 31px;
  }
  .hero h1 {
    font-size: 80px;
    line-height: 0.92;
    white-space: normal;
    margin: 0;
  }
  .hero h1 span {
    display: block;
  }
  .hero-content > p {
    font-size: 14px;
    max-width: 345px;
    margin-top: 16px;
    line-height: 1.6;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .watch-button {
    gap: 14px;
    font-size: 14px;
  }
  .play-disc {
    height: 49px;
    width: 49px;
  }
  .play-disc svg {
    width: 20px;
  }
  .hero-scroll {
    gap: 8px;
    max-width: 110px;
    font-size: 10px;
  }
  .hero-scroll svg {
    width: 15px;
  }
  .work-section {
    padding: 44px 0 49px;
  }
  .section-heading {
    align-items: start;
    gap: 18px;
    flex-direction: column;
  }
  .section-heading h2 {
    font-size: 46px;
    margin-top: 4px;
    line-height: 1.05;
  }
  .section-heading > p {
    font-size: 13px;
    padding: 0;
  }
  .section-heading > p br {
    display: none;
  }
  .filters {
    gap: 5px 19px;
    margin-top: 19px;
    margin-bottom: 26px;
  }
  .filters button {
    font-size: 12px;
    padding-block: 11px;
    gap: 5px;
    min-height: 42px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .project-media {
    aspect-ratio: 16/9;
  }
  .project-details {
    padding-top: 13px;
  }
  .project h3,
  .project.featured h3 {
    font-size: 27px;
  }
  .project-details p {
    font-size: 13px;
    margin-top: 5px;
  }
  .project-format {
    top: 11px;
    left: 11px;
    font-size: 9px;
  }
  .project-play {
    left: 13px;
    bottom: 13px;
  }
  .project-play > svg {
    padding: 8px;
  }
  .project-arrow {
    right: 14px;
    bottom: 18px;
  }
  .services-section {
    padding: 46px 0 47px;
  }
  .service-heading {
    margin-bottom: 17px;
  }
  .service-sequence {
    font-size: 8px;
    gap: 7px;
  }
  .service-sequence svg {
    width: 9px;
  }
  .services-section h2 {
    font-size: 39px;
    line-height: 1.1;
    max-width: 340px;
  }
  .service-grid {
    margin-top: 32px;
    gap: 25px;
  }
  .service-grid article,
  .service-grid article:first-child,
  .service-grid article:last-child {
    grid-template-columns: 25px 1fr;
    gap: 0 14px;
    padding-bottom: 25px;
  }
  .service-grid h3 {
    font-size: 31px;
  }
  .service-grid p {
    font-size: 14px;
  }
  .service-number {
    font-size: 13px;
  }
  .format-section {
    display: block;
    border-top: 0;
    padding-top: 20px;
    margin-top: 15px;
  }
  .format-section > h3 {
    font-size: 33px;
    margin-bottom: 28px;
  }
  .format-section > h3 br {
    display: none;
  }
  .format-description {
    padding-right: 15px;
  }
  .format-list summary {
    font-size: 15px;
    min-height: 65px;
  }
  .studio-section {
    padding: 49px 0;
  }
  .studio-section h2 {
    font-size: 47px;
  }
  .studio-layout {
    gap: 27px;
  }
  .studio-copy p.studio-intro {
    font-size: 22px;
  }
  .studio-copy p {
    font-size: 14px;
  }
  .studio-contact {
    gap: 12px;
  }
  .studio-contact strong {
    font-size: 13px;
  }
  .studio-contact a {
    font-size: 11px;
    gap: 6px;
  }
  .process-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .process-list h3 {
    font-size: 22px;
    margin-top: 8px;
  }
  .process-list p {
    font-size: 14px;
    max-width: 360px;
    margin-top: 7px;
  }
  .contact-section {
    padding: 48px 0;
  }
  .contact-heading {
    gap: 24px;
  }
  .contact-heading h2 {
    font-size: 42px;
  }
  .contact-bottom {
    margin-top: 32px;
    padding-top: 25px;
    gap: 30px;
  }
  .email-row {
    gap: 8px;
  }
  .email-row > a {
    font-size: 22px;
  }
  .site-footer {
    padding-block: 25px;
  }
  .site-footer > .wrap {
    gap: 23px 15px;
  }
  .site-footer .wordmark {
    width: 100%;
    font-size: 22px;
  }
  .back-to-top {
    margin-left: auto;
  }
  .video-dialog {
    width: calc(100% - 20px);
    max-height: 94dvh;
  }
  .video-panel {
    padding: 14px;
  }
  .video-heading {
    gap: 9px;
    padding-bottom: 15px;
  }
  .video-heading h2 {
    font-size: 23px;
  }
  .video-heading .small-label {
    font-size: 10px;
  }
  .video-footer {
    flex-direction: column;
    align-items: start;
    gap: 13px;
    font-size: 11px;
    padding-top: 14px;
  }
  .video-embed.vertical {
    height: min(60dvh, 600px);
  }
  .mobile-menu {
    inset: 80px 20px auto;
  }
}
@media (max-width: 359px) {
  .wordmark {
    font-size: 20px;
  }
  .hero h1 {
    font-size: 73px;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .email-row > a {
    font-size: 20px;
  }
  .contact-heading h2 {
    font-size: 36px;
  }
  .service-sequence {
    display: none;
  }
  .studio-contact {
    flex-direction: column;
    align-items: start;
  }
  .filters {
    gap: 4px 14px;
  }
}
@media (max-width: 580px) {
  .hero {
    height: calc(100svh - 120px);
    min-height: 590px;
  }
  .hero-note {
    margin-top: 16px;
  }
  .hero-content {
    padding-bottom: 27px;
  }
}
@media (max-height: 700px) {
  .hero {
    min-height: 480px;
    height: calc(100svh - 100px);
  }
  .hero-note {
    display: none;
  }
}
@media (max-width: 580px) and (max-height: 700px) {
  .hero {
    min-height: 0;
    height: calc(100svh - 85px);
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-content > p {
    font-size: 13px;
  }
  .hero-actions {
    margin-top: 19px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Hidden elements must stay hidden despite the original flex/grid rules. */
[hidden] {
  display: none !important;
}
.clipboard-helper {
  position: fixed;
  left: -9999px;
  top: 0;
}
