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

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

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

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --noite: #0b0d10;
  --marfim: #f4f0e7;
  --grafite: #252932;
  --nevoa: #ccd1d8;
  --branco: #fff;
  --azul: #1546d2;
  --ciano: #008fb3;
  --magenta: #b31563;
  --violeta: #6740c7;
  --laranja: #d94f1a;
  --verde: #16835b;
  --header-height: 82px;
  --page-gutter: clamp(20px, 3.4vw, 64px);
  --container: 1680px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--noite);
  color: var(--noite);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body, button, input, textarea, select {
  font-family: "Montserrat", Arial, sans-serif;
}

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

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

button, input, textarea, select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #58c8ff;
  outline-offset: 4px;
}

::selection {
  background: var(--azul);
  color: var(--branco);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--branco);
  color: var(--noite);
  padding: 12px 18px;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.section {
  position: relative;
  padding-block: clamp(88px, 11vw, 168px);
}

.section-dark,
.section-ink {
  background: var(--noite);
  color: var(--branco);
}

.section-light {
  background: var(--branco);
  color: var(--noite);
}

.section-ivory {
  background: var(--marfim);
  color: var(--noite);
}

.eyebrow {
  margin: 0 0 22px;
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-blue {
  color: var(--azul);
}

.eyebrow-magenta {
  color: var(--magenta);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2, h3 {
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 1180px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 7.8vw, 8.3rem);
  font-weight: 600;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 5.6rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2.5rem);
  font-weight: 600;
}

.section-heading {
  margin-bottom: clamp(52px, 7vw, 96px);
}

.section-heading h2 {
  max-width: 1120px;
  margin-bottom: 0;
}

.max-heading h2 {
  max-width: 1240px;
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.split-heading > div {
  max-width: 1020px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  padding: 14px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--azul);
  color: var(--branco);
}

.button-primary:hover {
  background: #0f38ae;
}

.button-ghost,
.button-outline-light {
  border-color: rgba(255,255,255,.5);
  color: var(--branco);
}

.button-ghost:hover,
.button-outline-light:hover {
  border-color: var(--branco);
  background: var(--branco);
  color: var(--noite);
}

.button-light {
  background: var(--branco);
  color: var(--noite);
}

.button-light:hover {
  background: var(--marfim);
}

.button-outline-dark {
  border-color: rgba(17,20,24,.5);
  color: var(--noite);
}

.button-outline-dark:hover {
  border-color: var(--noite);
  background: var(--noite);
  color: var(--branco);
}

.button-magenta {
  background: var(--magenta);
  color: var(--branco);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.4;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--branco);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: rgba(11,13,16,.86);
  color: var(--branco);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: clamp(24px, 4vw, 68px);
}

.brand-link {
  display: block;
  width: clamp(145px, 13vw, 188px);
  flex: 0 0 auto;
}

.brand-link img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 36px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  font-size: .71rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

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

.header-cta {
  border: 1px solid rgba(255,255,255,.56);
  padding: 12px 17px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.header-cta:hover {
  background: var(--branco);
  color: var(--noite);
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  display: flex;
  min-height: min(920px, 100svh);
  padding-top: calc(var(--header-height) + 88px);
  padding-bottom: 110px;
  align-items: flex-end;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(.72) contrast(1.08) brightness(.75);
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11,13,16,.95) 0%, rgba(11,13,16,.78) 46%, rgba(11,13,16,.28) 78%, rgba(11,13,16,.5) 100%),
    linear-gradient(0deg, rgba(11,13,16,.88) 0%, transparent 45%);
}

.hero-content,
.hero-foot {
  position: relative;
  z-index: 2;
}

.hero-home h1 {
  max-width: 1250px;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255,255,255,.8);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  line-height: 1.55;
}

.hero-foot {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  gap: 30px;
  color: rgba(255,255,255,.55);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(28px, 4vw, 60px) clamp(18px, 2.5vw, 38px);
}

.project-grid-featured .project-card:nth-child(1),
.project-grid-featured .project-card:nth-child(2),
.project-grid-featured .project-card:nth-child(3),
.project-grid-featured .project-card:nth-child(4) {
  grid-column: span 6;
}

.project-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
}

.project-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--grafite);
}

.project-card-featured .project-image-link,
.project-grid-featured .project-card:nth-child(4) .project-image-link {
  aspect-ratio: 16 / 10;
}

.project-card-artwork .project-image-link {
  --artwork-pad-x: clamp(24px, 3vw, 48px);
  --artwork-pad-y: clamp(56px, 4vw, 72px);
  display: block;
  border: 1px solid #d8d4cb;
  background: #ece8df;
}

.project-card-artwork.project-card-ratio-story .project-image-link,
.project-card-artwork.project-card-ratio-portrait .project-image-link {
  aspect-ratio: 4 / 5;
}

.project-card-artwork.project-card-ratio-landscape .project-image-link {
  aspect-ratio: 16 / 10;
}

.project-grid-featured .project-card .project-image-link,
.project-grid-featured .project-card:nth-child(4) .project-image-link,
.projects-page-grid .project-card .project-image-link,
.case-strip .project-card .project-image-link {
  aspect-ratio: 4 / 3;
}

.project-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.16, 1, .3, 1), filter 320ms ease;
}

.project-card-artwork .project-image-link img {
  position: absolute;
  top: var(--artwork-pad-y);
  right: var(--artwork-pad-x);
  bottom: var(--artwork-pad-y);
  left: var(--artwork-pad-x);
  width: calc(100% - (var(--artwork-pad-x) * 2));
  height: calc(100% - (var(--artwork-pad-y) * 2));
  object-fit: contain;
}

.project-card:nth-child(2) .project-image-link img,
.project-card:nth-child(3) .project-image-link img {
  object-position: center 35%;
}

.project-image-link:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.project-card-artwork .project-image-link:hover img {
  filter: none;
  transform: none;
}

.project-division {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 11px;
  color: var(--branco);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.project-division-filmes {
  background: var(--azul);
}

.project-division-labs {
  background: var(--magenta);
}

.project-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--branco);
  color: var(--noite);
  font-size: 1.2rem;
  transform: translateY(64px);
  transition: transform 320ms cubic-bezier(.16, 1, .3, 1);
}

.project-image-link:hover .project-arrow {
  transform: translateY(0);
}

.project-card-copy {
  display: flex;
  min-height: 150px;
  flex: 1;
  flex-direction: column;
  padding-top: 20px;
}

.project-card-copy p {
  margin-bottom: 8px;
  color: #626975;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-card-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.4vw, 2.6rem);
  text-wrap: balance;
}

.project-card-copy span {
  display: block;
  margin-top: auto;
  color: #5c626b;
  font-size: .92rem;
}

.division-intro {
  overflow: hidden;
}

.division-intro::before {
  position: absolute;
  top: -120px;
  right: -140px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  content: "";
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255,255,255,.15);
}

.division-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 780px;
  overflow: hidden;
  grid-template-rows: minmax(300px, .8fr) minmax(430px, 1.2fr);
}

.division-card + .division-card {
  border-left: 1px solid rgba(255,255,255,.15);
}

.division-filmes {
  background: #10151e;
}

.division-labs {
  background: #171019;
}

.division-visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.division-visual-filmes::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, #10151e 100%);
  content: "";
}

.division-visual-filmes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(.78) contrast(1.08);
}

.division-visual-labs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.15);
}

.division-visual-labs::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 30%, rgba(103,64,199,.52), transparent 36%),
    linear-gradient(180deg, transparent 45%, #171019 100%);
  content: "";
  pointer-events: none;
}

.division-visual-labs span {
  display: flex;
  align-items: flex-end;
  background: rgba(179,21,99,.14);
  padding: 24px;
  color: rgba(255,255,255,.72);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.division-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(30px, 4vw, 58px);
}

.division-number {
  display: block;
  margin-bottom: 38px;
  color: rgba(255,255,255,.42);
  font-size: .75rem;
  font-weight: 700;
}

.division-logo-wrap {
  display: flex;
  height: 58px;
  align-items: center;
  margin-bottom: 28px;
}

.filmes-logo-wrap img {
  width: min(100%, 300px);
}

.labs-logo-wrap img {
  width: min(100%, 400px);
}

.division-card h3 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.7rem);
}

.division-card-body > p {
  max-width: 510px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.72);
  font-size: 1rem;
}

.division-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.division-services li {
  border: 1px solid rgba(255,255,255,.18);
  padding: 6px 10px;
  color: rgba(255,255,255,.58);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.division-card-body .text-link {
  margin-top: auto;
}

.division-integrated {
  margin: 24px 0 0;
  color: rgba(255,255,255,.58);
  font-size: .82rem;
  text-align: right;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
}

.service-overview {
  border-top: 4px solid;
  background: var(--branco);
  padding: clamp(28px, 4vw, 54px);
}

.service-overview-filmes {
  border-color: var(--azul);
}

.service-overview-labs {
  border-color: var(--magenta);
}

.service-overview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.service-overview-head .eyebrow {
  margin-bottom: 0;
}

.service-overview-head a {
  font-size: .7rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.service-list-large {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list-large li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 5px 16px;
  border-top: 1px solid var(--nevoa);
  padding-block: 20px;
}

.service-list-large li > span {
  grid-row: 1 / 3;
  color: var(--azul);
  font-size: .66rem;
  font-weight: 700;
}

.service-list-large strong {
  font-size: 1rem;
}

.service-list-large small {
  color: #626975;
  font-size: .78rem;
  line-height: 1.5;
}

.labs-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.labs-module-grid article {
  min-height: 170px;
  background: var(--marfim);
  padding: 20px;
}

.labs-module-grid article:nth-child(3) {
  grid-column: span 2;
  background: var(--noite);
  color: var(--branco);
}

.labs-module-grid span {
  display: block;
  margin-bottom: 40px;
  color: var(--magenta);
  font-size: .66rem;
  font-weight: 700;
}

.labs-module-grid h3 {
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.15;
}

.operation-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(70px, 8vw, 120px);
}

.client-proof {
  border-top: 1px solid #dedbd4;
}

.client-proof-heading {
  align-items: flex-end;
}

.client-proof-heading > div {
  max-width: 880px;
}

.client-proof-heading > p {
  max-width: 390px;
  margin-bottom: 0;
  color: #626975;
  font-size: .86rem;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #d7d3ca;
  background: #d7d3ca;
}

.client-logo-card {
  position: relative;
  display: grid;
  min-height: 290px;
  grid-column: span 4;
  place-items: center;
  overflow: hidden;
  background: var(--marfim);
  padding: clamp(38px, 5vw, 70px) clamp(24px, 4vw, 56px);
  transition: background 160ms ease;
}

.client-logo-card:hover {
  background: var(--branco);
}

.client-logo-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.client-logo-order,
.client-logo-name,
.client-logo-arrow {
  position: absolute;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.client-logo-order {
  top: 20px;
  left: 20px;
  color: #8b9098;
}

.client-logo-name {
  bottom: 20px;
  left: 20px;
  color: #656b74;
}

.client-logo-arrow {
  right: 20px;
  bottom: 18px;
  color: var(--noite);
  font-size: 1rem;
  transition: transform 160ms ease;
}

.client-logo-card:hover .client-logo-arrow {
  transform: translate(2px, -2px);
}

.operation-grid h2 {
  position: sticky;
  top: 130px;
  max-width: 790px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 22px;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-block: 28px;
}

.process-list li > span {
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  font-weight: 700;
}

.process-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.35rem;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) 1.1fr;
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.founder-image {
  position: relative;
  max-width: 620px;
}

.founder-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 32%;
}

.frame-corner::before,
.frame-corner::after {
  position: absolute;
  z-index: 2;
  width: 56px;
  height: 56px;
  content: "";
}

.frame-corner::before {
  top: -12px;
  left: -12px;
  border-top: 3px solid var(--azul);
  border-left: 3px solid var(--azul);
}

.frame-corner::after {
  right: -12px;
  bottom: -12px;
  border-right: 3px solid var(--azul);
  border-bottom: 3px solid var(--azul);
}

.founder-copy h2 {
  max-width: 800px;
}

.founder-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 34px;
  color: #525863;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.project-cta {
  overflow: hidden;
  background: var(--azul);
  color: var(--branco);
}

.project-cta::after {
  position: absolute;
  right: -8vw;
  bottom: -19vw;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  content: "";
}

.project-cta-inner {
  position: relative;
  z-index: 2;
}

.project-cta h2 {
  max-width: 1050px;
}

.site-footer {
  background: var(--noite);
  color: var(--branco);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: clamp(48px, 7vw, 110px);
  border-bottom: 1px solid rgba(255,255,255,.16);
  padding-top: 90px;
  padding-bottom: 70px;
}

.footer-brands {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.16);
}

.footer-brand {
  display: flex;
  min-width: 0;
  min-height: 260px;
  flex-direction: column;
  background: var(--noite);
  padding: clamp(28px, 3vw, 42px);
}

.footer-logo {
  width: min(100%, 285px);
  height: 62px;
  margin-bottom: auto;
  object-fit: contain;
  object-position: left center;
}

.footer-logo-labs {
  width: min(100%, 340px);
}

.footer-brand strong {
  margin-top: 46px;
  font-size: .9rem;
}

.footer-brand span {
  margin-top: 8px;
  color: rgba(255,255,255,.48);
  font-size: .72rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav strong {
  margin-bottom: 14px;
  color: rgba(255,255,255,.45);
  font-size: .65rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-nav a {
  width: fit-content;
  font-size: .86rem;
}

.footer-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  padding-bottom: 30px;
  color: rgba(255,255,255,.42);
  font-size: .65rem;
  letter-spacing: .04em;
}

/* Interior pages */
.page-hero {
  padding-top: calc(var(--header-height) + clamp(90px, 10vw, 150px));
  padding-bottom: clamp(80px, 10vw, 140px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr);
  align-items: end;
  gap: clamp(48px, 7vw, 110px);
}

.page-hero h1 {
  max-width: 1080px;
  font-size: clamp(3rem, 7vw, 7.7rem);
  text-wrap: balance;
}

.page-hero-copy {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

.page-hero-visual {
  position: relative;
  min-height: 520px;
  align-self: stretch;
}

.page-hero-visual img.page-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-logo {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: 7%;
  left: 7%;
  width: 86%;
  max-width: none;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.25));
}

.filmes-hero .page-hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,13,16,.72), transparent 60%);
  content: "";
}

.labs-hero .page-hero-visual {
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(103,64,199,.72), rgba(179,21,99,.72)),
    var(--noite);
}

.labs-hero .page-hero-visual::before,
.labs-hero .page-hero-visual::after {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255,255,255,.3);
  content: "";
}

.labs-hero .page-hero-visual::before {
  top: 52px;
  left: 52px;
}

.labs-hero .page-hero-visual::after {
  right: -70px;
  bottom: -70px;
  transform: rotate(45deg);
}

.labs-hero .page-hero-logo {
  top: 50%;
  bottom: auto;
  left: 6%;
  width: 88%;
  max-width: none;
  transform: translateY(-50%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 7vw, 120px);
}

.intro-grid h2 {
  font-size: clamp(2.5rem, 4.4vw, 5rem);
}

.intro-body {
  max-width: 900px;
  color: #4f5560;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.intro-body p:last-child {
  margin-bottom: 0;
}

.service-family-list {
  border-top: 1px solid rgba(255,255,255,.24);
}

.service-family {
  display: grid;
  grid-template-columns: 65px minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(24px, 4vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,.24);
  padding-block: clamp(38px, 5vw, 68px);
}

.service-family-number {
  color: rgba(255,255,255,.36);
  font-size: .72rem;
  font-weight: 700;
}

.service-family h3 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 3.6rem);
}

.service-family-copy p {
  color: rgba(255,255,255,.64);
  font-size: .92rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.service-tags li {
  border: 1px solid rgba(255,255,255,.26);
  padding: 7px 10px;
  color: rgba(255,255,255,.72);
  font-size: .67rem;
}

.service-family-link {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.labs-services .service-family {
  position: relative;
  grid-template-columns: 65px minmax(0, 1.15fr) minmax(320px, .85fr);
}

.labs-services .service-family::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--magenta);
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 320ms ease;
}

.labs-services .service-family:hover::before {
  transform: scaleY(1);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.proof-grid figure {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin: 0;
}

.proof-grid figure:nth-child(1) {
  grid-column: span 7;
}

.proof-grid figure:nth-child(2) {
  grid-column: span 5;
}

.proof-grid figure:nth-child(3) {
  grid-column: span 4;
}

.proof-grid figure:nth-child(4),
.proof-grid figure:nth-child(5) {
  grid-column: span 4;
}

.proof-grid figure:nth-child(6) {
  grid-column: span 12;
}

.proof-grid img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-grid figure:first-child img,
.proof-grid figure:last-child img {
  aspect-ratio: 16 / 9;
}

.proof-grid figcaption {
  position: relative;
  z-index: 1;
  min-height: 34px;
  margin: 0;
  padding-top: 10px;
  background: var(--branco);
  color: #626975;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.case-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-strip .project-card-copy h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.projects-page-grid .project-card {
  grid-column: span 6;
}

.projects-intro {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  column-gap: clamp(56px, 8vw, 140px);
  align-items: end;
}

.projects-intro .eyebrow {
  grid-column: 1 / -1;
}

.projects-intro h1 {
  grid-column: 1;
}

.projects-intro p {
  grid-column: 2;
  max-width: 820px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.66);
  font-size: 1.1rem;
}

.founder-about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}

.founder-about-images {
  max-width: 680px;
}

.founder-about-images img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 32%;
}

.founder-about-copy h2 {
  max-width: 790px;
}

.founder-about-copy > p:not(.eyebrow) {
  max-width: 780px;
  color: #555b65;
  font-size: 1.05rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.18);
}

.principles-grid article {
  min-height: 300px;
  background: var(--noite);
  padding: clamp(28px, 4vw, 50px);
}

.principles-grid span {
  display: block;
  margin-bottom: 80px;
  color: rgba(255,255,255,.35);
  font-size: .7rem;
  font-weight: 700;
}

.principles-grid h3 {
  margin-bottom: 16px;
  font-size: 1.55rem;
}

.principles-grid p {
  margin-bottom: 0;
  color: rgba(255,255,255,.58);
  font-size: .85rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(380px, .8fr) minmax(0, 1.2fr);
  gap: clamp(56px, 7vw, 120px);
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 130px;
}

.contact-aside h1 {
  font-size: clamp(3rem, 5.7vw, 6.4rem);
}

.contact-aside > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255,255,255,.64);
}

.channel-list {
  display: grid;
  gap: 10px;
  margin-top: 42px;
}

.channel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255,255,255,.22);
  padding: 20px;
  transition: border-color 160ms ease, background 160ms ease;
}

.channel-card:hover {
  border-color: rgba(255,255,255,.48);
  background: rgba(255,255,255,.05);
}

.channel-card strong {
  display: block;
  font-size: .83rem;
}

.channel-card span {
  color: rgba(255,255,255,.46);
  font-size: .68rem;
}

.channel-card small {
  color: rgba(255,255,255,.35);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact-form-wrap {
  background: var(--branco);
  color: var(--noite);
  padding: clamp(28px, 5vw, 70px);
}

.form-intro {
  margin-bottom: 38px;
}

.form-intro h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 4rem);
}

.form-intro p {
  max-width: 620px;
  margin-bottom: 0;
  color: #5b616c;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: span 2;
}

.field label,
.field > span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.field small {
  color: #777e88;
  font-size: .68rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #b9bec6;
  border-radius: 0;
  background: var(--branco);
  color: var(--noite);
  padding: 14px 14px;
  font-size: .9rem;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--azul);
  outline: 2px solid rgba(21,70,210,.18);
  outline-offset: 0;
}

.form-privacy {
  grid-column: span 2;
  margin: 0;
  color: #555b65;
  font-size: .72rem;
  line-height: 1.6;
}

.form-privacy a,
.form-error a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  grid-column: span 2;
  border-left: 3px solid #b72e38;
  background: #fff0f1;
  margin: 0;
  padding: 14px 16px;
  color: #7a1f27;
  font-size: .76rem;
  line-height: 1.55;
}

.form-actions {
  display: flex;
  grid-column: span 2;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.form-actions button {
  cursor: pointer;
}

.form-actions button:disabled {
  cursor: wait;
  opacity: .62;
}

.form-actions span {
  color: #6c737e;
  font-size: .68rem;
}

.form-success {
  border: 1px solid #8fc5ae;
  background: #edf8f2;
  padding: 36px;
}

.form-success h3 {
  color: var(--verde);
  font-size: 2rem;
}

.form-success p {
  margin-bottom: 24px;
  color: #3c5c4e;
}

.form-edit-button {
  border: 0;
  background: transparent;
  margin-top: 24px;
  padding: 0;
  cursor: pointer;
}

.project-detail-hero {
  position: relative;
  min-height: min(850px, 94svh);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-height) + 100px);
  padding-bottom: 72px;
  overflow: hidden;
}

.project-detail-media,
.project-detail-shade {
  position: absolute;
  inset: 0;
}

.project-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-shade {
  background: linear-gradient(0deg, rgba(11,13,16,.95), rgba(11,13,16,.08) 75%);
}

.project-detail-title {
  position: relative;
  z-index: 2;
  color: var(--branco);
}

.project-detail-title h1 {
  margin-bottom: 18px;
  text-wrap: balance;
}

.project-detail-hero-photo {
  min-height: min(960px, 100svh);
  background: var(--noite);
}

.project-detail-hero-photo .project-detail-media {
  top: calc(var(--header-height) + 42px);
  right: var(--page-gutter);
  bottom: 300px;
  left: var(--page-gutter);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
}

.project-detail-hero-photo .project-detail-shade {
  display: none;
}

.project-detail-hero-client {
  min-height: min(960px, 100svh);
  background: var(--noite);
}

.project-detail-hero-client .project-detail-media {
  --case-media-pad: clamp(20px, 4vw, 56px);
  top: calc(var(--header-height) + 42px);
  right: var(--page-gutter);
  bottom: 245px;
  left: var(--page-gutter);
  border: 1px solid rgba(255,255,255,.14);
  background: #ece8df;
}

.project-detail-hero-client .project-detail-media img {
  position: absolute;
  inset: var(--case-media-pad);
  width: calc(100% - (var(--case-media-pad) * 2));
  height: calc(100% - (var(--case-media-pad) * 2));
  object-fit: contain;
}

.project-detail-hero-client .project-detail-shade {
  display: none;
}

.project-detail-hero-landscape .project-detail-media {
  bottom: 300px;
}

.project-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  color: rgba(255,255,255,.68);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.project-detail-credit {
  display: grid;
  min-width: 150px;
  gap: 3px;
}

.project-detail-credit small {
  color: rgba(255,255,255,.42);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.project-detail-credit span {
  color: rgba(255,255,255,.82);
}

.project-story-grid {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  gap: clamp(56px, 7vw, 120px);
}

.project-story-grid h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
}

.project-story-body {
  max-width: 900px;
  color: #515761;
  font-size: 1.05rem;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 24px;
}

.project-gallery figure {
  grid-column: span 6;
  margin: 0;
  background: #e8e8e8;
}

.project-gallery:not(.project-gallery-client) figure {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.project-gallery figure:first-child {
  grid-column: span 12;
}

.project-gallery:not(.project-gallery-client) img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-gallery-client figure:first-child {
  grid-column: span 6;
}

.project-gallery-client figure {
  display: grid;
  min-width: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  background: #ece8df;
  padding: clamp(16px, 3vw, 42px);
}

.project-gallery-client figure:only-child {
  grid-column: span 12;
}

.project-gallery-client img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(82vh, 980px);
  object-fit: contain;
}

.project-detail-hero-story,
.project-detail-hero-portrait {
  min-height: min(920px, 100svh);
  align-items: center;
  padding-bottom: 40px;
}

.project-detail-hero-story .project-detail-media,
.project-detail-hero-portrait .project-detail-media {
  --case-media-pad: clamp(18px, 2.4vw, 36px);
  top: calc(var(--header-height) + 36px);
  right: auto;
  bottom: 36px;
  left: var(--page-gutter);
  width: calc(48% - var(--page-gutter));
}

.project-detail-hero-story .project-detail-title,
.project-detail-hero-portrait .project-detail-title {
  padding-left: 52%;
}

.case-scope-section {
  border-bottom: 1px solid #d8d4cb;
  background: var(--branco);
  padding-block: clamp(72px, 9vw, 132px);
}

.case-scope-grid {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 7vw, 110px);
}

.case-scope-grid h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 4.3vw, 4.8rem);
}

.case-scope-grid ul {
  display: grid;
  margin: 0;
  padding: 0;
  align-content: start;
  list-style: none;
}

.case-scope-grid li {
  border-top: 1px solid #d7d3ca;
  padding: 20px 0;
  color: #31363d;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 600;
}

.case-video-note {
  max-width: 420px;
  color: rgba(255,255,255,.58);
  line-height: 1.6;
}

.case-video-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 2.5vw, 36px);
  align-items: start;
}

.case-video-card {
  grid-column: span 6;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: #111419;
}

.case-video-card video {
  display: block;
  width: 100%;
  background: #050607;
  object-fit: contain;
}

.case-video-landscape video {
  aspect-ratio: 16 / 9;
}

.case-video-portrait video {
  aspect-ratio: 4 / 5;
}

.case-video-story video {
  max-height: 720px;
  aspect-ratio: 9 / 16;
}

.case-video-card > div {
  padding: clamp(24px, 3vw, 42px);
}

.case-video-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.5vw, 2.8rem);
}

.case-video-card > div > p:last-child {
  margin-bottom: 0;
  color: rgba(255,255,255,.6);
}

.case-video-grid .case-video-card:only-child,
.case-video-featured {
  grid-column: span 12;
}

.reels-video-grid .case-video-card {
  grid-column: span 4;
  min-width: 0;
}

.reels-video-grid .case-video-card video {
  width: 100%;
  max-height: 720px;
}

.case-video-featured {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: center;
}

.case-gallery-heading {
  display: grid;
  max-width: 1120px;
  margin-bottom: clamp(46px, 7vw, 90px);
  gap: 16px;
}

.case-gallery-heading h2 {
  font-size: clamp(2.5rem, 5vw, 5.4rem);
}

.case-gallery-heading > p:last-child {
  max-width: 760px;
  color: #5d646e;
  font-size: 1.05rem;
}

.project-gallery figcaption {
  width: 100%;
  padding-top: 16px;
  color: #5e6670;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.project-gallery-client figure {
  align-content: center;
}

.project-gallery-client .gallery-format-story {
  grid-column: span 6;
}

.project-gallery-client .gallery-format-portrait {
  grid-column: span 6;
}

.project-gallery-client .gallery-format-landscape {
  grid-column: span 6;
}

.project-gallery-client .gallery-format-landscape:first-child {
  grid-column: span 12;
}

.project-gallery-client figure:last-child:nth-child(odd) {
  grid-column: span 12;
}

.editorial-media-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.editorial-media-card {
  display: grid;
  overflow: hidden;
  grid-column: span 4;
  border: 1px solid rgba(255,255,255,.14);
  background: #111419;
  color: var(--branco);
}

.section-ivory .editorial-media-card {
  border-color: #d7d3ca;
  background: var(--branco);
  color: var(--noite);
}

.editorial-media-poster {
  position: relative;
  display: grid;
  min-height: 330px;
  overflow: hidden;
  background: #e9e5dc;
  place-items: center;
}

.editorial-media-poster img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.editorial-media-story .editorial-media-poster {
  aspect-ratio: 4 / 5;
}

.editorial-media-landscape .editorial-media-poster {
  aspect-ratio: 16 / 10;
}

.editorial-media-portrait .editorial-media-poster {
  aspect-ratio: 4 / 5;
}

.editorial-media-copy {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 38px);
}

.editorial-media-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 2.25rem);
}

.editorial-media-copy > p:last-of-type {
  color: rgba(255,255,255,.58);
}

.section-ivory .editorial-media-copy > p:last-of-type {
  color: #656c76;
}

.editorial-media-copy span {
  margin-top: auto;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.founder-thinking-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(58px, 7vw, 120px);
  align-items: center;
}

.founder-thinking-grid > div > p:last-child {
  max-width: 680px;
  color: rgba(255,255,255,.62);
  font-size: 1.05rem;
}

.founder-thinking-grid .case-video-card {
  width: min(100%, 720px);
  justify-self: end;
}

@media (min-width: 1800px) and (max-width: 2399px) {
  :root {
    --container: calc(100vw - 96px);
    --page-gutter: 64px;
  }

  .hero-home h1 {
    max-width: 1340px;
  }

  .page-hero h1 {
    max-width: 1160px;
  }
}

@media (min-width: 2400px) {
  :root {
    --container: 2200px;
    --page-gutter: 72px;
  }
}

.privacy-hero {
  min-height: auto;
  padding-bottom: clamp(70px, 9vw, 130px);
}

.privacy-heading {
  max-width: 1020px;
}

.privacy-heading h1 {
  max-width: 950px;
  font-size: clamp(3rem, 6.3vw, 7rem);
}

.privacy-heading > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,255,255,.67);
}

.privacy-heading small {
  color: rgba(255,255,255,.42);
  font-size: .68rem;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.35fr);
  gap: clamp(54px, 9vw, 150px);
  align-items: start;
}

.privacy-summary {
  position: sticky;
  top: 130px;
  border-top: 2px solid var(--azul);
  padding-top: 24px;
}

.privacy-summary h2 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
}

.privacy-summary > p:not(.eyebrow) {
  color: #5c636d;
}

.privacy-article {
  max-width: 850px;
}

.privacy-article section {
  border-top: 1px solid #d9dde2;
  padding: 36px 0 42px;
}

.privacy-article section:first-child {
  padding-top: 0;
  border-top: 0;
}

.privacy-article h2 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.15;
}

.privacy-article p,
.privacy-article li {
  color: #525a65;
  font-size: .91rem;
  line-height: 1.75;
}

.privacy-article ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.privacy-article a {
  color: var(--azul);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-pending {
  border-left: 3px solid #c98814;
  background: #fff7e6;
  margin-bottom: 22px;
  padding: 18px 20px;
}

.privacy-pending strong {
  display: block;
  margin-bottom: 6px;
  color: #72500d;
  font-size: .7rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.privacy-pending p {
  margin: 0;
  color: #6b551f;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 44px;
    height: 44px;
    cursor: pointer;
    list-style: none;
    place-content: center;
    gap: 7px;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--branco);
    transition: transform 160ms ease;
  }

  .mobile-menu[open] summary span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .mobile-menu[open] summary span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100svh - var(--header-height));
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid rgba(255,255,255,.14);
    background: var(--noite);
    padding: 28px var(--page-gutter) 42px;
  }

  .mobile-menu:not([open]) nav {
    display: none;
  }

  .mobile-menu nav > a:not(.button) {
    border-bottom: 1px solid rgba(255,255,255,.16);
    padding-block: 18px;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .mobile-menu nav .button {
    margin-top: 26px;
  }

  .operation-grid,
  .page-hero-grid,
  .contact-layout,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .contact-aside,
  .privacy-summary,
  .operation-grid h2 {
    position: static;
  }

  .page-hero-visual {
    min-height: 520px;
  }

  .service-family,
  .labs-services .service-family {
    grid-template-columns: 45px 1fr;
  }

  .service-family-copy {
    grid-column: 2;
  }

  .editorial-media-card {
    grid-column: span 6;
  }

  .editorial-media-card:last-child:nth-child(odd) {
    grid-column: span 12;
  }

  .reels-video-grid .case-video-card {
    grid-column: span 6;
  }

  .reels-video-grid .case-video-card:last-child {
    grid-column: span 12;
  }
}

@media (max-width: 900px) {
  .division-grid,
  .service-overview-grid,
  .founder-grid,
  .intro-grid,
  .founder-about-grid,
  .footer-top,
  .projects-intro {
    grid-template-columns: 1fr;
  }

  .projects-intro .eyebrow,
  .projects-intro h1,
  .projects-intro p {
    grid-column: 1;
  }

  .projects-intro p {
    margin-bottom: 0;
  }

  .case-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-strip .project-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .project-gallery-client .gallery-format-story,
  .project-gallery-client .gallery-format-portrait,
  .project-gallery-client .gallery-format-landscape {
    grid-column: span 12;
  }
}

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

  .section {
    padding-block: 82px;
  }

  .brand-link {
    width: 148px;
  }

  .hero-home {
    min-height: 830px;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 120px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(11,13,16,.94) 0%, rgba(11,13,16,.68) 62%, rgba(11,13,16,.32) 100%);
  }

  .hero-content {
    align-self: flex-end;
  }

  .hero-home h1 {
    font-size: clamp(3.25rem, 15vw, 5.5rem);
  }

  .hero-foot {
    overflow: hidden;
    gap: 16px;
    white-space: nowrap;
  }

  .button-row,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .channel-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .channel-card small {
    overflow-wrap: anywhere;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-grid-featured .project-card:nth-child(n),
  .projects-page-grid .project-card {
    grid-column: span 12;
  }

  .project-image-link,
  .project-card-featured .project-image-link,
  .project-grid-featured .project-card:nth-child(4) .project-image-link {
    aspect-ratio: 4 / 3;
  }

  .project-card-artwork.project-card-ratio-story .project-image-link,
  .project-card-artwork.project-card-ratio-portrait .project-image-link {
    aspect-ratio: 4 / 5;
  }

  .project-card-artwork.project-card-ratio-landscape .project-image-link {
    aspect-ratio: 16 / 10;
  }

  .division-grid,
  .service-overview-grid,
  .founder-grid,
  .intro-grid,
  .founder-about-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .client-logo-card {
    min-height: 220px;
    grid-column: span 12;
  }

  .client-logo-card img {
    height: 132px;
  }

  .division-card {
    min-height: 0;
    grid-template-rows: 260px auto;
  }

  .division-visual {
    min-height: 0;
  }

  .division-card + .division-card {
    border-top: 1px solid rgba(255,255,255,.15);
    border-left: 0;
  }

  .division-number {
    margin-bottom: 34px;
  }

  .labs-module-grid {
    grid-template-columns: 1fr;
  }

  .labs-module-grid article:nth-child(3) {
    grid-column: auto;
  }

  .operation-grid {
    gap: 48px;
  }

  .founder-grid {
    gap: 56px;
  }

  .founder-image {
    width: calc(100% - 12px);
  }

  .footer-top {
    gap: 40px;
  }

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

  .footer-brand {
    min-height: 220px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero-grid {
    gap: 50px;
  }

  .page-hero-visual {
    min-height: 390px;
  }

  .service-family,
  .labs-services .service-family {
    grid-template-columns: 34px 1fr;
    gap: 18px;
  }

  .service-family-copy {
    grid-column: 1 / -1;
    padding-left: 52px;
  }

  .proof-grid figure:nth-child(n) {
    grid-column: span 12;
    margin-top: 0;
  }

  .proof-grid img {
    min-height: 240px;
  }

  .editorial-media-card {
    grid-column: span 12;
  }

  .editorial-media-poster {
    min-height: 260px;
  }

  .case-scope-grid,
  .founder-thinking-grid {
    grid-template-columns: 1fr;
  }

  .case-video-card,
  .case-video-grid .case-video-card:only-child {
    grid-column: span 12;
  }

  .case-video-featured {
    grid-template-columns: 1fr;
  }

  .founder-thinking-grid .case-video-card {
    grid-column: 1;
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .case-strip,
  .principles-grid {
    grid-template-columns: 1fr;
  }

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

  .field-full,
  .form-privacy,
  .form-error,
  .form-actions {
    grid-column: auto;
  }

  .project-detail-hero {
    min-height: 720px;
  }

  .project-detail-hero-photo {
    min-height: 830px;
    padding-bottom: 62px;
  }

  .project-detail-hero-photo .project-detail-media {
    top: calc(var(--header-height) + 28px);
    right: 20px;
    bottom: 300px;
    left: 20px;
  }

  .project-detail-hero-client {
    min-height: 900px;
    align-items: flex-end;
    padding-bottom: 62px;
  }

  .project-detail-hero-client .project-detail-media {
    --case-media-pad: 18px;
    top: calc(var(--header-height) + 28px);
    right: 20px;
    bottom: 300px;
    left: 20px;
    width: auto;
  }

  .project-detail-hero-story .project-detail-title,
  .project-detail-hero-portrait .project-detail-title {
    padding-left: var(--page-gutter);
  }

  .project-detail-hero-client .project-detail-title h1 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .reels-video-grid .case-video-card,
  .reels-video-grid .case-video-card:last-child {
    grid-column: span 12;
  }

  .project-story-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .project-gallery figure,
  .project-gallery figure:first-child,
  .project-gallery-client figure:first-child,
  .project-gallery-client .gallery-format-story,
  .project-gallery-client .gallery-format-portrait,
  .project-gallery-client .gallery-format-landscape {
    grid-column: span 12;
  }

  .project-gallery-client img {
    max-height: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
