:root {
  --black: #050505;
  --soft-black: #111;
  --white: #fff;
  --off-white: #f5f4f0;
  --gray: #737373;

  --page-width: 1440px;
  --side-space: clamp(24px,6vw,110px);

  --heading-font: "DM Sans", Arial, sans-serif;
  --body-font: "Inter", Arial, sans-serif;
}


/* RESET */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--off-white);
  color: var(--black);

  font-family: var(--body-font);

  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}


/* HEADER */

.site-header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  padding: 18px var(--side-space);

  pointer-events: none;
}

.nav-shell {
  max-width: var(--page-width);
  min-height: 72px;

  margin: auto;

  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 10px 13px 10px 20px;

  color: #fff;

  background: rgba(5,5,5,.94);

  border: 1px solid rgba(255,255,255,.16);

  backdrop-filter: blur(16px);

  pointer-events: auto;
}


/* BRAND */

.brand {
  display: inline-flex;

  flex-direction: column;

  gap: 3px;

  line-height: 1;
}

.brand-name {
  display: flex;

  gap: 6px;

  font-family: var(--heading-font);

  font-size: 25.7px;

  letter-spacing: -1.4px;
}

.brand-name strong {
  font-weight: 700;
}

.brand-name > span {
  font-weight: 300;
}

.brand-tagline {
  color: #737373;

  font-size: 7.2px;

  letter-spacing: 2px;
}


/* NAV */

.main-nav {
  display: flex;

  align-items: center;

  gap: clamp(15px,1.7vw,30px);

  font-size: 12px;
}

.main-nav > a:not(.nav-cta) {
  color: #d7d7d7;
}

.nav-cta {
  min-width: 140px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;

  padding: 12px 16px;

  color: #000;

  background: #fff;
}

.nav-toggle,
.nav-button {
  display: none;
}


/* LABELS */

.section-label {
  color: #737373;

  font-size: clamp(12px,.95vw,15px);

  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: 2.2px;
}

.light-label {
  color: rgba(255,255,255,.58);
}


/* HERO */

.hero {
  min-height: 100vh;

  padding-top: 108px;

  color: #fff;

  background: #050505;
}

.hero-grid {
  min-height: calc(100vh - 108px);

  display: grid;

  grid-template-columns: 55% 45%;
}

.hero-copy {
  min-height: 780px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding:
    clamp(80px,9vw,150px)
    var(--side-space)
    clamp(50px,7vw,100px);
}

.hero h1 {
  max-width: 920px;

  margin: 0;

  font-family: var(--heading-font);

  font-size: clamp(58px,7vw,125px);

  line-height: .88;

  letter-spacing: clamp(-5px,-.4vw,-1px);

  font-weight: 500;
}

.hero h1 span {
  display: block;
}

.outline-word {
  color: transparent;

  -webkit-text-stroke:
    1px rgba(255,255,255,.72);
}

.hero-bottom {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;

  margin-top: clamp(65px,8vw,120px);
}

.hero-bottom p {
  max-width: 530px;

  margin: 0;

  color: #adadad;

  font-size: 15px;

  line-height: 1.7;
}

.text-link {
  padding-bottom: 6px;

  border-bottom: 1px solid rgba(255,255,255,.45);

  font-size: 12px;
}


/* HERO VISUAL */

.hero-visual {
  position: relative;

  min-height: 780px;

  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: grayscale(100%);
}

.image-label {
  position: absolute;

  z-index: 2;

  left: 30px;
  bottom: 28px;

  display: flex;

  flex-wrap: wrap;

  gap: 6px;
}

.image-label span {
  padding: 7px 11px;

  border: 1px solid rgba(255,255,255,.5);

  border-radius: 100px;

  font-size: 9px;
}


/* HERO MARQUEE */

.hero-marquee {
  overflow: hidden;

  padding: 17px 0;

  color: #000;

  background: #fff;
}

.marquee-track {
  width: max-content;

  font-size: 12px;

  letter-spacing: 2px;

  animation: marquee 26s linear infinite;
}

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


/* =========================================================
   WORK THAT MOVES
   NOW DIRECTLY AFTER HERO
========================================================= */

.youtube-showcase {
  overflow: hidden;

  padding:
    clamp(75px,8vw,120px)
    0
    clamp(95px,10vw,150px);

  background: var(--off-white);
}

.youtube-showcase-heading {
  max-width: var(--page-width);

  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 70px;

  margin: 0 auto 55px;

  padding: 0 var(--side-space);
}

.youtube-showcase-heading h2 {
  margin: 0;

  font-family: var(--heading-font);

  font-size: clamp(52px,7vw,105px);

  line-height: .91;

  letter-spacing: -4px;

  font-weight: 500;
}

.youtube-showcase-heading h2 span {
  display: block;

  color: #999;

  font-weight: 300;
}

.youtube-showcase-heading p {
  max-width: 460px;

  margin: 0;

  color: #666;

  font-size: 13px;

  line-height: 1.7;
}

.youtube-carousel {
  overflow: hidden;
}

.youtube-track {
  width: max-content;

  display: flex;

  gap: 18px;

  animation: youtubeScroll 65s linear infinite;
}

.youtube-track:hover {
  animation-play-state: paused;
}

.youtube-card {
  position: relative;

  flex: 0 0 clamp(300px,35vw,560px);

  aspect-ratio: 16 / 9;

  overflow: hidden;

  background: #111;
}

.youtube-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform .5s ease;
}

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

.youtube-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.42),
      transparent 48%
    );

  pointer-events: none;
}

.youtube-play-hint {
  position: absolute;

  z-index: 2;

  left: 18px;
  bottom: 16px;

  color: #fff;

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: 1.2px;
}

@keyframes youtubeScroll {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.carousel-note {
  max-width: var(--page-width);

  display: flex;

  justify-content: space-between;

  gap: 30px;

  margin: 22px auto 0;

  padding: 0 var(--side-space);

  color: #888;

  font-size: 8px;

  text-transform: uppercase;

  letter-spacing: 1.2px;
}


/* GLOBAL SECTION */

.section {
  max-width: var(--page-width);

  margin: auto;

  padding:
    clamp(110px,12vw,190px)
    var(--side-space);
}

.section-intro {
  display: grid;

  grid-template-columns:
    minmax(180px,26%)
    1fr;

  gap: 40px;

  margin-bottom: clamp(70px,9vw,130px);
}

.section-intro h2 {
  margin: 0;

  font-family: var(--heading-font);

  font-size: clamp(44px,6vw,91px);

  line-height: .98;

  letter-spacing: -4px;

  font-weight: 500;
}

.section-intro h2 span {
  display: block;

  color: #999;

  font-weight: 300;
}


/* ABOUT */

.about-layout {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: clamp(50px,11vw,170px);
}

.about-statement p {
  margin: 0;

  font-family: var(--heading-font);

  font-size: clamp(30px,3vw,49px);

  line-height: 1.08;
}

.about-copy p {
  margin: 0 0 24px;

  color: #454545;

  font-size: 15px;

  line-height: 1.75;
}


/* APPROACH */

.approach {
  padding:
    clamp(120px,14vw,210px)
    max(
      var(--side-space),
      calc((100vw - var(--page-width))/2 + var(--side-space))
    );

  color: #fff;

  background: #050505;
}

.approach-header {
  display: grid;

  grid-template-columns:
    minmax(180px,26%)
    1fr;

  gap: 40px;

  margin-bottom: clamp(85px,10vw,150px);
}

.approach-header h2 {
  margin: 0;

  font-family: var(--heading-font);

  font-size: clamp(48px,6.4vw,98px);

  line-height: .95;

  letter-spacing: -4px;

  font-weight: 500;
}

.approach-header h2 span {
  display: block;

  color: #6f6f6f;

  font-weight: 300;
}

.approach-layout {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: clamp(50px,11vw,170px);

  padding-bottom: clamp(90px,10vw,150px);
}

.approach-lead p {
  margin: 0;

  font-family: var(--heading-font);

  font-size: clamp(28px,3vw,48px);

  line-height: 1.1;
}

.approach-copy p {
  margin: 0 0 24px;

  color: #a0a0a0;

  font-size: 15px;

  line-height: 1.75;
}

.approach-process {
  border-top: 1px solid #343434;
}

.approach-process article {
  display: grid;

  grid-template-columns: .85fr 1fr 50px;

  gap: 50px;

  align-items: center;

  min-height: 145px;

  border-bottom: 1px solid #343434;
}

.approach-process h3 {
  font-family: var(--heading-font);

  font-size: clamp(30px,3vw,48px);

  font-weight: 400;
}

.approach-process p {
  color: #8a8a8a;

  font-size: 13px;

  line-height: 1.7;
}


/* MISSION / VISION */

.brand-statement {
  padding:
    clamp(120px,15vw,240px)
    max(
      var(--side-space),
      calc((100vw - var(--page-width))/2 + var(--side-space))
    );

  background: #fff;
}

.brand-statement > h2 {
  margin: 55px 0 130px;

  font-family: var(--heading-font);

  font-size: clamp(54px,8vw,125px);

  line-height: .89;

  letter-spacing: -5px;

  font-weight: 500;
}

.brand-statement > h2 span {
  display: block;

  color: #999;

  font-weight: 300;
}

.mission-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: clamp(40px,11vw,180px);

  margin-left: 25%;
}

.mission-grid article {
  padding-top: 22px;

  border-top: 1px solid #aaa;
}

.statement-label {
  display: block;

  margin-bottom: 40px;

  color: #555;

  font-size: clamp(13px,1vw,16px);

  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: 2px;
}

.mission-grid p {
  font-size: clamp(18px,1.6vw,25px);

  line-height: 1.4;
}


/* SERVICES */

.services-heading {
  margin-bottom: 120px;
}

.service-row {
  min-height: 560px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  margin-bottom: 40px;

  color: #fff;

  background: #111;
}

.service-row.reverse .service-image {
  order: 2;
}

.service-row.reverse .service-content {
  order: 1;
}

.service-image {
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: grayscale(100%);
}

.service-content {
  display: flex;

  flex-direction: column;

  padding: clamp(35px,5vw,70px);
}

.service-top {
  display: flex;

  justify-content: space-between;

  color: #777;

  font-size: 9px;

  text-transform: uppercase;
}

.service-content h3 {
  margin: auto 0 25px;

  padding-top: 90px;

  font-family: var(--heading-font);

  font-size: clamp(38px,4vw,64px);

  line-height: .95;

  font-weight: 500;
}

.service-content h3 span {
  display: block;

  color: #777;

  font-weight: 300;
}

.service-content p {
  color: #aaa;

  font-size: 14px;

  line-height: 1.7;
}

.tags {
  display: flex;

  flex-wrap: wrap;

  gap: 6px;

  margin-top: 25px;
}

.tags span {
  padding: 7px 10px;

  border: 1px solid #464646;

  border-radius: 100px;

  color: #aaa;

  font-size: 8px;
}


/* WORK IN MOTION */

.work-in-motion {
  position: relative;

  height: clamp(620px,82vh,900px);

  overflow: hidden;

  color: #fff;

  background: #000;
}

.work-video-wrap {
  position: absolute;

  inset: 0;

  overflow: hidden;

  pointer-events: none;
}

.work-video-wrap iframe {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 177.7778vh;

  min-width: 100%;

  height: 56.25vw;

  min-height: 100%;

  transform: translate(-50%,-50%);

  border: 0;
}

.work-video-overlay {
  position: absolute;

  z-index: 2;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.72),
      rgba(0,0,0,.3),
      rgba(0,0,0,.12)
    );
}

.work-video-content {
  position: relative;

  z-index: 3;

  height: 100%;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding:
    100px
    max(
      var(--side-space),
      calc((100vw - var(--page-width))/2 + var(--side-space))
    );
}

.work-video-content h2 {
  margin: 0;

  font-family: var(--heading-font);

  font-size: clamp(65px,9vw,150px);

  line-height: .84;
}

.work-video-content h2 strong,
.work-video-content h2 span {
  display: block;
}

.work-video-content h2 span {
  font-weight: 300;
}

.work-video-content p {
  max-width: 430px;

  color: rgba(255,255,255,.72);

  line-height: 1.7;
}

.work-video-bottom {
  position: absolute;

  z-index: 3;

  left: var(--side-space);
  right: var(--side-space);
  bottom: 30px;

  display: flex;

  justify-content: space-between;

  padding-top: 15px;

  border-top: 1px solid rgba(255,255,255,.3);

  color: rgba(255,255,255,.6);

  font-size: 8px;
}


/* CLIENTS */

.clients {
  overflow: hidden;

  padding:
    clamp(110px,13vw,190px)
    0
    clamp(90px,10vw,140px);
}

.clients-header {
  max-width: var(--page-width);

  display: grid;

  grid-template-columns:
    minmax(180px,22%)
    1fr
    minmax(260px,.55fr);

  gap: 45px;

  align-items: end;

  margin: 0 auto clamp(70px,8vw,110px);

  padding: 0 var(--side-space);
}

.clients-header h2 {
  margin: 0;

  font-family: var(--heading-font);

  font-size: clamp(55px,7vw,105px);

  line-height: .9;

  font-weight: 500;
}

.clients-header p {
  color: #686868;

  font-size: 13px;

  line-height: 1.7;
}

.client-marquee {
  overflow: hidden;

  background: #fff;

  border-top: 1px solid rgba(0,0,0,.12);
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.client-track {
  width: max-content;

  display: flex;

  animation: clientMarquee 85s linear infinite;
}

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

.client-item {
  width: clamp(220px,19vw,320px);

  height: clamp(170px,15vw,230px);

  flex: none;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: clamp(30px,4vw,55px);

  background: #fff;

  border-right: 1px solid rgba(0,0,0,.1);
}

.client-item.client-wide {
  width: clamp(300px,27vw,450px);
}

.client-item img {
  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 100%;

  object-fit: contain;
}

.client-item.client-dark {
  background: #111;
}

.client-marquee-footer {
  max-width: var(--page-width);

  display: flex;

  justify-content: space-between;

  margin: 24px auto 0;

  padding: 0 var(--side-space);

  color: #888;

  font-size: 8px;

  text-transform: uppercase;
}


/* CONTACT */

.contact {
  padding:
    clamp(100px,10vw,150px)
    max(
      var(--side-space),
      calc((100vw - var(--page-width))/2 + var(--side-space))
    )
    clamp(65px,7vw,95px);

  color: #fff;

  background: #050505;
}

.contact-main {
  display: grid;

  grid-template-columns: .85fr 1.15fr;

  align-items: start;

  column-gap: clamp(60px,9vw,150px);
}

.contact-heading h2 {
  margin: 30px 0;

  font-family: var(--heading-font);

  font-size: clamp(58px,6.6vw,108px);

  line-height: .88;

  letter-spacing: -5px;

  font-weight: 500;
}

.contact-heading h2 span {
  display: block;

  color: #707070;

  font-weight: 300;
}

.contact-heading > p {
  max-width: 430px;

  margin: 0;

  color: #888;

  font-size: 14px;

  line-height: 1.7;
}

.contact-form {
  padding-top: 4px;
}

.field-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 32px;
}

.contact-form label {
  display: block;

  margin-bottom: 27px;
}

.contact-form label > span {
  display: block;

  margin-bottom: 8px;

  color: #777;

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: 1.3px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 12px 0;

  color: #fff;

  background: transparent;

  border: 0;
  border-bottom: 1px solid #424242;

  outline: 0;
}

.contact-form textarea {
  min-height: 95px;

  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #606060;
}

.submit-button {
  width: 100%;

  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 18px 22px;

  border: 0;

  color: #000;

  background: #fff;

  cursor: pointer;
}

.contact-details {
  display: grid;

  grid-template-columns: repeat(3,1fr);

  margin-top: clamp(50px,5vw,75px);

  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.contact-detail {
  min-height: 125px;

  display: flex;

  align-items: center;

  gap: 20px;

  padding: 25px 28px;

  border-right: 1px solid #333;
}

.contact-detail:last-child {
  border-right: 0;
}

.contact-icon {
  width: 45px;
  height: 45px;

  display: grid;

  place-items: center;

  flex: none;

  border: 1px solid #444;

  border-radius: 50%;
}

.contact-detail small {
  display: block;

  margin-bottom: 6px;

  color: #666;

  font-size: 9px;

  letter-spacing: 1.5px;
}

.contact-detail strong {
  font-family: var(--heading-font);

  font-size: clamp(14px,1.1vw,18px);

  font-weight: 400;
}


/* FOOTER */

.footer {
  padding:
    65px
    max(
      var(--side-space),
      calc((100vw - var(--page-width))/2 + var(--side-space))
    )
    30px;

  color: #fff;

  background: #050505;

  border-top: 1px solid #292929;
}

.footer-primary {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding-bottom: 45px;
}

.footer-top-link {
  color: #818181;

  font-size: 10px;

  text-transform: uppercase;
}

.footer-social-row {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 22px 0;

  border-top: 1px solid #2d2d2d;
  border-bottom: 1px solid #2d2d2d;
}

.footer-social-row > span {
  color: #686868;

  font-size: 9px;

  text-transform: uppercase;
}

.social-icons {
  display: flex;

  gap: 9px;
}

.social-icons a {
  width: 38px;
  height: 38px;

  display: grid;

  place-items: center;

  border: 1px solid #393939;

  border-radius: 50%;
}

.social-icons a:hover {
  color: #000;

  background: #fff;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  padding-top: 25px;

  color: #5f5f5f;

  font-size: 8px;

  text-transform: uppercase;
}


/* TABLET */

@media (max-width:1050px) {

  .hero-grid,
  .about-layout,
  .approach-layout,
  .contact-main {
    grid-template-columns: 1fr;
  }

  .section-intro,
  .approach-header {
    grid-template-columns: 1fr;
  }

  .mission-grid {
    margin-left: 0;
  }

  .clients-header {
    grid-template-columns: 1fr 1fr;
  }

  .clients-header .section-label {
    grid-column: 1/-1;
  }

  .contact-main {
    row-gap: 55px;
  }

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

  .contact-detail {
    border-right: 0;
    border-bottom: 1px solid #333;
  }

  .contact-detail:last-child {
    border-bottom: 0;
  }
}


/* MOBILE */

@media (max-width:820px) {

  :root {
    --side-space: 22px;
  }

  .site-header {
    padding: 10px 12px;
  }

  .nav-button {
    width: 34px;
    height: 34px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 6px;
  }

  .nav-button span {
    width: 20px;
    height: 1px;

    background: #fff;
  }

  .main-nav {
    position: fixed;

    inset: 0;

    flex-direction: column;

    align-items: flex-start;
    justify-content: center;

    padding: 100px 35px;

    background: #050505;

    transform: translateX(100%);
  }

  .nav-toggle:checked ~ .main-nav {
    transform: translateX(0);
  }

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

  .hero-copy {
    min-height: 650px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .youtube-showcase {
    padding-top: 70px;
  }

  .youtube-showcase-heading {
    display: block;
  }

  .youtube-showcase-heading p {
    margin-top: 30px;
  }

  .youtube-card {
    flex-basis: 82vw;
  }

  .youtube-track {
    animation-duration: 48s;
  }

  .youtube-track:hover {
    animation-play-state: running;
  }

  .approach-process article {
    grid-template-columns: 1fr 38px;

    gap: 15px;
  }

  .approach-process article p {
    grid-column: 1/-1;
  }

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

  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
  }

  .service-row.reverse .service-image,
  .service-row.reverse .service-content {
    order: initial;
  }

  .work-in-motion {
    min-height: 600px;
  }

  .clients-header {
    grid-template-columns: 1fr;
  }

  .client-item {
    width: 210px;
    height: 160px;
  }

  .client-item.client-wide {
    width: 300px;
  }

  .contact {
    padding:
      95px
      var(--side-space)
      60px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-details {
    margin-top: 55px;
  }

  .footer-primary {
    flex-direction: column;

    align-items: flex-start;

    gap: 30px;
  }

}


/* SMALL MOBILE */

@media (max-width:520px) {

  .hero h1 {
    font-size: 52px;
  }

  .youtube-card {
    flex-basis: 86vw;
  }

  .carousel-note {
    flex-direction: column;
    gap: 7px;
  }

  .client-item {
    width: 180px;
    height: 140px;
  }

  .client-item.client-wide {
    width: 270px;
  }

  .client-marquee-footer,
  .footer-social-row,
  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
  }

}

/* FINAL RESPONSIVE AND FUNCTIONAL REFINEMENTS */
section[id] { scroll-margin-top: 110px; }
.mobile-swipe-note { display: none; }
.form-honeypot { display: none !important; }
.form-status { margin: 16px 0 0; font-size: 13px; line-height: 1.7; }
.form-status:empty { display: none; }
.form-status.is-success { color: #d3e8d5; }
.form-status.is-error { color: #f0b8b8; }
.submit-button:disabled { opacity: .65; cursor: wait; }
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: #fff; }
a:focus-visible, .nav-button:focus-visible, button:focus-visible { outline: 2px solid #999; outline-offset: 5px; }
.youtube-track:focus-within { animation-play-state: paused; }

/* The API replaces the div with an iframe; target both directly. */
.work-video-wrap > .work-video-player,
.work-video-wrap > iframe {
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  width: var(--video-width, 177.7778vh);
  height: var(--video-height, 56.25vw);
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

@media (min-width: 821px) and (max-width: 1050px) {
  .main-nav { gap: 12px; font-size: 11px; }
  .nav-cta { min-width: 115px; padding: 12px; }
  .hero-copy { min-height: 560px; }
  .hero-visual { min-height: 460px; height: 55vw; }
}

@media (max-width: 820px) {
  :root { --side-space: clamp(20px, 5vw, 36px); }
  .nav-shell { min-height: 64px; backdrop-filter: none; }
  .nav-button { position: relative; z-index: 2; flex: none; cursor: pointer; width: 44px; height: 44px; align-items: center; }
  .main-nav { visibility: hidden; pointer-events: none; gap: 24px; font-size: 18px; overflow-y: auto; }
  .nav-toggle:checked ~ .main-nav { visibility: visible; pointer-events: auto; }
  .hero { padding-top: 88px; min-height: 0; }
  .hero-grid { min-height: 0; }
  .hero-copy { min-height: 0; padding: 64px var(--side-space) 56px; }
  .hero h1 { font-size: clamp(46px, 8.8vw, 72px); letter-spacing: -2px; line-height: .98; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 28px; margin-top: 36px; }
  .hero-bottom p { font-size: 14px; }
  .hero-visual { min-height: 0; height: clamp(300px, 75vw, 520px); }
  .hero-visual img { object-position: center; }
  .image-label { left: var(--side-space); bottom: 24px; }
  .youtube-showcase { padding: 64px 0 72px; }
  .youtube-showcase-heading { margin-bottom: 32px; }
  .youtube-showcase-heading h2, .section-intro h2, .approach-header h2,
  .brand-statement > h2, .clients-header h2, .contact-heading h2 {
    font-size: clamp(40px, 8vw, 64px); letter-spacing: -2px; line-height: 1;
  }
  .youtube-showcase-heading p { margin-top: 24px; }
  .youtube-carousel { overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-padding-inline: var(--side-space); }
  .youtube-track { width: max-content; padding: 0 var(--side-space); gap: 14px; animation: none; transform: none; }
  .youtube-card { flex: 0 0 80vw; width: 80vw; scroll-snap-align: start; }
  .youtube-card[aria-hidden="true"] { display: none; }
  .desktop-project-note { display: none; }
  .mobile-swipe-note { display: inline; }
  .carousel-note { gap: 10px; }
  .section, .approach, .brand-statement { padding: 72px var(--side-space); }
  .section-intro, .approach-header { gap: 24px; margin-bottom: 40px; }
  .about-layout, .approach-layout { gap: 30px; }
  .about-statement p, .approach-lead p { font-size: clamp(27px, 5.5vw, 38px); line-height: 1.2; }
  .about-copy p, .approach-copy p { font-size: 14px; }
  .approach-layout { padding-bottom: 40px; }
  .approach-process article { padding: 24px 0; min-height: 0; }
  .approach-process h3 { margin: 0; font-size: 30px; }
  .approach-process article > span { grid-column: 2; grid-row: 1; }
  .approach-process article p { margin: 0; grid-row: 2; }
  .brand-statement > h2 { margin: 32px 0 48px; }
  .mission-grid { gap: 32px; }
  .statement-label { margin-bottom: 20px; }
  .mission-grid p { font-size: 19px; line-height: 1.5; }
  .services-heading { margin-bottom: 40px; }
  .service-row { min-height: 0; margin-bottom: 24px; }
  .service-image { height: clamp(240px, 65vw, 430px); }
  .service-content { padding: 30px 24px; }
  .work-in-motion { height: clamp(480px, 75svh, 660px); min-height: 480px; }
  .work-video-content { padding: 72px var(--side-space); }
  .work-video-content h2 { font-size: clamp(48px, 11vw, 84px); line-height: .92; }
  .work-video-content p { max-width: 340px; font-size: 13px; }
  .work-video-bottom { gap: 16px; font-size: 7px; bottom: 24px; }
  .clients { padding: 72px 0 60px; }
  .clients-header { gap: 24px; margin-bottom: 36px; }
  .clients-header p { margin: 0; }
  .contact { padding: 72px var(--side-space) 48px; }
  .contact-main { row-gap: 36px; }
  .contact-heading h2 { margin: 24px 0; }
  .contact-form input, .contact-form textarea { font-size: 16px; }
  .contact-details { margin-top: 36px; }
  .contact-detail { padding: 24px 0; gap: 14px; min-height: 100px; }
  .contact-detail > div { min-width: 0; overflow-wrap: anywhere; }
  .footer { padding: 44px var(--side-space) 28px; }
  .footer-primary { padding-bottom: 30px; }
}

@media (max-width: 380px) {
  .brand-name { font-size: 23px; }
  .brand-tagline { font-size: 6px; }
  .hero h1 { font-size: 43px; }
  .service-content { padding: 26px 20px; }
  .work-video-bottom { flex-direction: column; gap: 8px; }
}
