@media (max-width: 1080px) {
  :root {
    --container: min(100% - 40px, 980px);
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav .button {
    display: none;
  }

  .editorial-grid,
  .sticky-grid,
  .faq-grid,
  .contact-layout {
    gap: 54px;
  }

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

  .creative-grid .media-frame:nth-child(2) {
    grid-column: auto;
  }

  .creative-note {
    grid-column: 2;
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .editorial-grid,
  .sticky-grid,
  .faq-grid,
  .contact-layout,
  .expertise-card {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .service-stack {
    gap: 30px;
  }

  .service-panel {
    min-height: 540px;
  }

  .expertise-card:nth-child(even) .expertise-card__media {
    order: 0;
  }

  .expertise-card__media {
    min-height: 420px;
  }

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

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  :root {
    --container: calc(100% - 32px);
  }

  .section {
    padding-block: 78px;
  }

  .section--compact {
    padding-block: 52px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    font-size: 0.68rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero__content {
    min-height: 720px;
    gap: 21px;
    padding-top: 110px;
    padding-bottom: 105px;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(5, 7, 10, 0.87) 0%, rgba(5, 7, 10, 0.48) 72%, rgba(5, 7, 10, 0.58)),
      linear-gradient(90deg, rgba(5, 7, 10, 0.52), transparent);
  }

  .hero__video,
  .hero__poster {
    object-position: 62% center;
  }

  .hero__actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 390px);
  }

  .hero__actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .scroll-cue {
    bottom: 20px;
  }

  .expertise-strip__grid {
    grid-template-columns: 1fr;
  }

  .expertise-strip__item {
    padding: 21px 22px;
    text-align: left;
  }

  .expertise-strip__item + .expertise-strip__item {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .editorial-media {
    height: 470px;
  }

  .sticky-grid {
    gap: 44px;
  }

  .service-panel {
    min-height: 480px;
  }

  .service-panel__content {
    padding: 26px;
  }

  .creative-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-top: 42px;
  }

  .creative-grid .media-frame,
  .creative-grid .media-frame:first-child,
  .creative-note {
    grid-column: auto;
    grid-row: auto;
  }

  .creative-grid .media-frame {
    height: 310px;
  }

  .creative-grid .media-frame:first-child {
    height: 430px;
  }

  .process-list {
    display: grid;
    min-height: 0;
  }

  .process-drawer,
  .process-drawer.is-open {
    display: block;
    border-right: 0;
    border-bottom: 1px solid rgba(9, 11, 15, 0.14);
  }

  .process-drawer:last-child {
    border-bottom: 0;
  }

  .process-drawer button {
    display: grid;
    min-height: 92px;
    padding: 22px;
  }

  .process-drawer__heading {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
  }

  .process-drawer h3,
  .process-drawer.is-open h3 {
    font-size: 1.25rem;
    writing-mode: horizontal-tb;
  }

  .process-drawer__body,
  .process-drawer.is-open .process-drawer__body {
    width: 100%;
    max-width: none;
    max-height: 0;
    padding-top: 0;
    opacity: 0;
    transition:
      max-height 0.45s var(--ease),
      opacity 0.25s ease,
      padding 0.25s ease;
  }

  .process-drawer.is-open .process-drawer__body {
    max-height: 180px;
    padding-top: 18px;
    opacity: 1;
  }

  .final-cta {
    min-height: 700px;
  }

  .page-hero {
    min-height: 570px;
    padding-bottom: 65px;
  }

  .expertise-cards {
    gap: 36px;
  }

  .expertise-card__media {
    min-height: 370px;
  }

  .expertise-card__content {
    padding: 30px 24px 36px;
  }

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

  .field--full {
    grid-column: auto;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 58px 40px;
  }

  .footer-intro {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    gap: 7px;
  }

  .whatsapp-float {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, calc(env(safe-area-inset-bottom) + 12px));
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }

  .image-caption {
    right: 10px;
    bottom: 10px;
    font-size: 0.56rem;
  }
}

@media (max-width: 420px) {
  .brand-text small {
    display: none;
  }

  .display-title {
    font-size: clamp(2.4rem, 12vw, 3.45rem);
  }

  .section-title {
    font-size: clamp(2.1rem, 10.6vw, 3.05rem);
  }

  .hero__content .lede {
    font-size: 0.98rem;
  }

  .service-panel {
    min-height: 430px;
  }

  .creative-grid .media-frame:first-child {
    height: 380px;
  }

  .creative-grid .media-frame {
    height: 270px;
  }

  .expertise-card__media {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue span {
    animation: none;
  }

  .spray-svg path {
    stroke-dashoffset: 0;
  }

  .spray-svg circle {
    opacity: 0.45;
  }

  .whatsapp-float {
    animation: none;
  }
}
