:root {
  --forest: #314333;
  --forest-dark: #223126;
  --ivory: #e9e4d5;
  --paper: #f3efe4;
  --olive: #929274;
  --khaki: #d9cbb6;
  --charcoal: #30312f;
  --ink: #222622;
  --line: rgba(34, 38, 34, 0.17);
  --serif: "Italiana", "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4vw;
  border-bottom: 1px solid transparent;
  transition:
    height 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(243, 239, 228, 0.91);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  width: clamp(145px, 14vw, 210px);
}

.brand img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  gap: clamp(28px, 4vw, 58px);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav a,
.inline-link {
  position: relative;
  padding-bottom: 5px;
}

.desktop-nav a::after,
.inline-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after,
.inline-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}

.sound-control {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sound-control__bars {
  height: 13px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.sound-control__bars i {
  width: 1px;
  height: 4px;
  background: currentColor;
}

.sound-control.is-playing .sound-control__bars i {
  animation: equalize 0.9s ease-in-out infinite alternate;
}

.sound-control.is-playing .sound-control__bars i:nth-child(2) {
  animation-delay: -0.3s;
}

.sound-control.is-playing .sound-control__bars i:nth-child(3) {
  animation-delay: -0.6s;
}

.entry-gate {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 0;
  background: rgba(243, 239, 228, 0.94);
  backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.entry-gate[hidden] {
  display: none;
}

.entry-gate.is-visible {
  opacity: 1;
}

.entry-gate.is-leaving {
  opacity: 0;
  pointer-events: none;
}

.entry-gate__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--forest);
  text-align: center;
}

.entry-gate__label {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.04em;
}

.entry-gate__text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(49, 67, 51, 0.35);
  border-radius: 3px;
  transition: background 0.35s ease, color 0.35s ease;
}

.entry-gate:hover .entry-gate__text,
.entry-gate:focus-visible .entry-gate__text {
  background: var(--forest);
  color: var(--ivory);
}

.sound-control--waiting {
  animation: soundPulse 2.4s ease-in-out infinite;
}

@keyframes soundPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes equalize {
  to {
    height: 13px;
  }
}

.header-call {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 7vw;
  padding: 140px 7vw 90px;
  background: var(--ivory);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.problem h2,
.services__heading h2,
.featured h2,
.work__heading h2,
.process h2,
.site-footer h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 820px;
  margin: 26px 0 28px;
  font-size: clamp(4.2rem, 7.3vw, 8.2rem);
  line-height: 0.92;
}

.hero h1 em,
.problem h2 em,
.site-footer h2 em {
  color: var(--forest);
  font-weight: inherit;
}

.hero__intro {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 45px;
}

.button {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 17px 20px;
  border: 1px solid currentColor;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--dark {
  color: var(--ivory);
  background: var(--forest);
  border-color: var(--forest);
}

.button--dark:hover {
  background: var(--forest-dark);
}

.button--light {
  color: var(--forest-dark);
  background: var(--ivory);
  border-color: var(--ivory);
}

.inline-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero__frame {
  align-self: center;
}

.media-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--charcoal);
  cursor: pointer;
  text-decoration: none;
}

.media-button--hero {
  aspect-ratio: 16 / 9;
}

.media-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.media-button__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(34, 49, 38, 0.42), transparent 55%);
}

.media-button:hover img {
  transform: scale(1.025);
}

.play-button,
.featured-film__play,
.work-card__play {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--ivory);
  border: 1px solid rgba(233, 228, 213, 0.72);
  border-radius: 50%;
  background: rgba(34, 49, 38, 0.3);
  backdrop-filter: blur(8px);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.play-button {
  left: 50%;
  top: 50%;
  width: 100px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.media-button:hover .play-button {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(34, 49, 38, 0.62);
}

.hero__frame-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__footer {
  position: absolute;
  right: 7vw;
  bottom: 28px;
  left: 7vw;
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: rgba(34, 38, 34, 0.66);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(100px, 11vw, 170px) 7vw;
}

.problem {
  display: grid;
  grid-template-columns: 0.75fr 2.3fr 1fr;
  gap: 5vw;
  background: var(--paper);
}

.problem h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  line-height: 1.04;
}

.problem__copy {
  align-self: end;
}

.problem__copy p {
  margin: 0 0 38px;
  font-size: 0.95rem;
  line-height: 1.85;
}

.services {
  color: var(--ivory);
  background: var(--forest);
}

.services__heading {
  display: grid;
  grid-template-columns: 0.8fr 2.3fr;
  gap: 5vw;
  margin-bottom: 75px;
}

.services__heading h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3rem, 5.7vw, 6.5rem);
  line-height: 1.03;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(233, 228, 213, 0.25);
}

.service {
  min-height: 330px;
  padding: 26px;
  border-right: 1px solid rgba(233, 228, 213, 0.25);
}

.service:last-child {
  border-right: 0;
}

.service > span,
.featured__kicker,
.case-study span,
.work-group__title > span {
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service h3 {
  margin: 95px 0 22px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.7vw, 3.2rem);
  font-weight: 400;
}

.service p {
  margin: 0;
  color: rgba(233, 228, 213, 0.7);
  font-size: 0.84rem;
  line-height: 1.75;
}

.featured {
  color: var(--ivory);
  background: var(--charcoal);
}

.featured__top {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 65px;
}

.featured__kicker {
  margin: 23px 0 0;
  color: var(--olive);
}

.featured__intro h2 {
  margin: 0 0 18px;
  font-size: clamp(4rem, 7.5vw, 8.5rem);
  line-height: 0.91;
}

.featured__intro p {
  max-width: 580px;
  margin: 0;
  color: rgba(233, 228, 213, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.featured-film {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #111;
  cursor: pointer;
  text-decoration: none;
}

.featured-film img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-film:hover img {
  transform: scale(1.02);
}

.featured-film__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(17, 20, 17, 0.7), transparent 48%),
    linear-gradient(to right, rgba(17, 20, 17, 0.25), transparent 45%);
}

.featured-film__number {
  position: absolute;
  top: 26px;
  left: 28px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.featured-film__play {
  left: 50%;
  top: 50%;
  width: 135px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.featured-film:hover .featured-film__play {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(34, 49, 38, 0.65);
}

.case-study {
  display: grid;
  grid-template-columns: 0.65fr 1.5fr;
  gap: 8vw;
  padding: 55px 0 80px;
  border-bottom: 1px solid rgba(233, 228, 213, 0.2);
}

.case-study__overview {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  gap: 15px 26px;
}

.case-study span {
  color: rgba(233, 228, 213, 0.52);
}

.case-study strong {
  font-size: 0.8rem;
  font-weight: 400;
}

.case-study__narrative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.case-study__narrative p {
  margin: 15px 0 0;
  color: rgba(233, 228, 213, 0.72);
  font-size: 0.9rem;
  line-height: 1.8;
}

.campaign-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding-top: 80px;
}

.work {
  background: var(--ivory);
}

.work__heading {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 8vw;
  align-items: end;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}

.work__heading h2 {
  max-width: 850px;
  margin: 24px 0 0;
  font-size: clamp(3.8rem, 7vw, 8rem);
  line-height: 0.95;
}

.work__heading > p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

.work-group {
  display: grid;
  grid-template-columns: 0.72fr 2fr;
  gap: 6vw;
  padding: 95px 0;
  border-bottom: 1px solid var(--line);
}

.work-group__title {
  position: sticky;
  top: 110px;
  align-self: start;
}

.work-group__title h3 {
  margin: 20px 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.work-group__title p {
  max-width: 320px;
  margin: 0;
  color: rgba(34, 38, 34, 0.62);
  font-size: 0.84rem;
  line-height: 1.75;
}

.vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px 20px;
}

.landscape-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px 30px;
}

.work-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--charcoal);
  cursor: pointer;
  text-decoration: none;
}

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

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card__media:hover img {
  transform: scale(1.035);
}

.work-card__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 30, 24, 0.42), transparent 55%);
}

.work-card__play {
  left: 50%;
  top: 50%;
  width: 70px;
  aspect-ratio: 1;
  opacity: 0;
  transform: translate(-50%, -45%);
}

.work-card__media:hover .work-card__play {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.work-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
}

.work-card__meta span {
  color: rgba(34, 38, 34, 0.58);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-card__meta h4 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.65vw, 1.8rem);
  font-weight: 400;
  line-height: 1.12;
}

.featured .work-card__meta {
  border-color: rgba(233, 228, 213, 0.22);
}

.featured .work-card__meta span {
  color: rgba(233, 228, 213, 0.54);
}

.featured .work-card__meta h4 {
  color: var(--ivory);
}

.process {
  display: grid;
  grid-template-columns: 0.7fr 2.1fr;
  gap: 6vw;
  background: var(--khaki);
}

.process h2 {
  max-width: 760px;
  margin: 0 0 60px;
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  line-height: 0.95;
}

.process ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process li > span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.process h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.process li p {
  margin: 0;
  color: rgba(34, 38, 34, 0.64);
  font-size: 0.84rem;
}

.site-footer {
  color: var(--ivory);
  background: var(--forest-dark);
}

.footer__callout {
  position: relative;
  padding-bottom: 105px;
  border-bottom: 1px solid rgba(233, 228, 213, 0.18);
}

.site-footer h2 {
  max-width: 900px;
  margin: 30px 0 0;
  font-size: clamp(4.2rem, 8vw, 9rem);
  line-height: 0.92;
}

.site-footer h2 em {
  color: var(--olive);
}

.footer__callout .button {
  position: absolute;
  right: 0;
  bottom: 115px;
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 35px;
  padding-top: 55px;
}

.brand--footer {
  filter: invert(1);
}

.footer__bottom div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__bottom div span {
  color: rgba(233, 228, 213, 0.55);
}

.footer__bottom p {
  margin: 0;
  color: rgba(233, 228, 213, 0.55);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.video-modal[hidden] {
  display: none;
}

.video-modal.is-open {
  opacity: 1;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(17, 20, 17, 0.92);
  backdrop-filter: blur(18px);
  cursor: default;
}

.video-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  max-height: calc(100svh - 50px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-modal__header {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 15px;
  color: var(--ivory);
}

.video-modal__header span {
  color: rgba(233, 228, 213, 0.5);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-modal__header h2 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  font-weight: 400;
}

.video-modal__close {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--ivory);
  background: none;
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.video-modal__player {
  position: relative;
  overflow: hidden;
  background: #000;
}

.video-modal__player--horizontal {
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 16 / 9;
}

.video-modal__player--vertical {
  height: min(76svh, 820px);
  aspect-ratio: 9 / 16;
}

.video-modal iframe,
.video-modal video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}

@keyframes gentleIn {
  0% {
    opacity: 0;
    transform: translateY(52px);
    filter: blur(8px);
  }

  65% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes gentleInSoft {
  0% {
    opacity: 0;
    transform: translateY(36px) scale(0.96);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes introCurtain {
  0% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

body.is-loading::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--paper);
  pointer-events: none;
  animation: introCurtain 2.8s ease forwards;
}

.intro {
  opacity: 0;
  animation: gentleIn 2.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro--header {
  animation-name: gentleInSoft;
  animation-duration: 1.8s;
  animation-delay: 0.35s;
}

.intro--1 { animation-delay: 0.7s; }
.intro--2 { animation-delay: 1.3s; }
.intro--3 { animation-delay: 1.9s; }
.intro--4 { animation-delay: 2.5s; }
.intro--5 {
  animation-delay: 1.6s;
  animation-name: gentleInSoft;
  animation-duration: 2.4s;
}
.intro--6 { animation-delay: 2.9s; }
.intro--7 { animation-delay: 3.3s; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition:
    opacity 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.vertical-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.vertical-grid .reveal:nth-child(3) { transition-delay: 0.24s; }
.vertical-grid .reveal:nth-child(4) { transition-delay: 0.36s; }
.vertical-grid .reveal:nth-child(5) { transition-delay: 0.48s; }
.vertical-grid .reveal:nth-child(6) { transition-delay: 0.6s; }

.campaign-strip .reveal:nth-child(2) { transition-delay: 0.15s; }
.campaign-strip .reveal:nth-child(3) { transition-delay: 0.3s; }

.landscape-grid .reveal:nth-child(2) { transition-delay: 0.15s; }


.services__list .reveal:nth-child(2) { transition-delay: 0.15s; }
.services__list .reveal:nth-child(3) { transition-delay: 0.3s; }
.services__list .reveal:nth-child(4) { transition-delay: 0.45s; }

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr 0.75fr;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.7vw, 6.8rem);
  }

  .problem {
    grid-template-columns: 0.7fr 2.3fr;
  }

  .problem__copy {
    grid-column: 2;
    max-width: 550px;
  }

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

  .service:nth-child(2) {
    border-right: 0;
  }

  .service:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(233, 228, 213, 0.25);
  }

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

  .campaign-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding-top: 60px;
  }

  .footer__callout .button {
    position: static;
    margin-top: 45px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 70px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .brand {
    width: 145px;
  }

  .desktop-nav,
  .header-call,
  .sound-control span:last-child {
    display: none;
  }

  .header-actions {
    gap: 15px;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
    display: block;
    padding: 9px 5px;
    border: 0;
    background: none;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 6px 0;
    background: currentColor;
    transition: transform 0.3s ease;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100svh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 35px;
    color: var(--ivory);
    background: var(--forest-dark);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.45s;
  }

  .mobile-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .mobile-nav a {
    padding: 11px 0;
    border-bottom: 1px solid rgba(233, 228, 213, 0.16);
    font-family: var(--serif);
    font-size: 3.1rem;
  }

  .menu-open .site-header {
    color: var(--ivory);
    background: var(--forest-dark);
    backdrop-filter: none;
  }

  .menu-open .brand {
    filter: invert(1);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 65px;
    padding: 140px 24px 90px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 17vw, 5.8rem);
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .media-button--hero {
    aspect-ratio: 16 / 9;
  }

  .hero__footer {
    position: static;
    grid-column: 1;
    display: grid;
    gap: 8px;
    padding-top: 15px;
    margin-top: -30px;
  }

  .section-pad {
    padding: 95px 24px;
  }

  .problem,
  .services__heading,
  .featured__top,
  .case-study,
  .work__heading,
  .work-group,
  .process {
    grid-template-columns: 1fr;
  }

  .problem {
    gap: 45px;
  }

  .problem__copy {
    grid-column: auto;
  }

  .services__heading {
    gap: 35px;
  }

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

  .service {
    min-height: auto;
    padding: 27px 0 42px;
    border-right: 0;
    border-bottom: 1px solid rgba(233, 228, 213, 0.25);
  }

  .service h3 {
    margin-top: 55px;
  }

  .featured__top {
    gap: 45px;
  }

  .featured__intro h2 {
    font-size: 4.6rem;
  }

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

  .featured-film__play {
    width: 100px;
  }

  .case-study {
    gap: 55px;
  }

  .case-study__narrative {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .campaign-strip {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 50px;
  }

  .campaign-strip .work-card__meta {
    display: flex;
  }

  .work__heading {
    gap: 35px;
    padding-bottom: 60px;
  }

  .work__heading h2 {
    font-size: 4.5rem;
  }

  .work-group {
    gap: 50px;
    padding: 75px 0;
  }

  .work-group__title {
    position: static;
  }

  .vertical-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 12px;
  }

  .landscape-grid {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }

  .work-card__play {
    width: 58px;
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .work-card__meta {
    display: block;
  }

  .work-card__meta > span {
    display: none;
  }

  .work-card__meta h4 {
    font-size: 1.15rem;
  }

  .process {
    gap: 45px;
  }

  .process h2 {
    font-size: 4.5rem;
  }

  .footer__callout {
    padding-bottom: 75px;
  }

  .site-footer h2 {
    font-size: 4.6rem;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .video-modal {
    padding: 18px;
  }

  .video-modal__header {
    align-items: center;
  }

  .video-modal__player--vertical {
    width: min(100%, 390px);
    height: auto;
    aspect-ratio: 9 / 16;
  }
}

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

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

  .intro,
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
