@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&display=swap");

:root {
  color-scheme: light;
  --opening-progress: 0;
  --opening-bg-opacity: 0.08;
  --opening-bg-scale: 1.08;
  --opening-clapper-opacity: 1;
  --opening-clapper-scale: 0.88;
  --opening-clapper-y: 0px;
  --opening-clapper-blur: 0px;
  --opening-copy-opacity: 1;
  --opening-shutter-opacity: 0.22;
  --opening-shutter-x: 0%;
  --ink: #012e3a;
  --black: #231f20;
  --paper: #eff4f4;
  --white: #ffffff;
  --teal: #028ca4;
  --cyan: #009db7;
  --aqua: #059cb7;
  --deep: #2a6073;
  --mint: #4ac2c0;
  --pale: #ceecf1;
  --line: rgba(1, 46, 58, 0.16);
  --shadow: 0 28px 70px rgba(1, 46, 58, 0.14);
  --font-display: "Futura PT", Futura, "Avenir Next", Avenir, Arial, sans-serif;
  --font-cinema: "Cinzel", "Times New Roman", Georgia, serif;
  --font-body: Gibson, "Avenir Next", Avenir, Arial, sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  transition:
    background 240ms ease,
    color 240ms ease;
}

body::before,
body::after {
  content: none;
}

body > header,
body > nav,
body > main,
body > footer {
  position: relative;
  z-index: 1;
}

.ambient-video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #031217;
}

.ambient-video-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 157, 183, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(3, 18, 23, 0.16), rgba(3, 18, 23, 0.34));
}

.ambient-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  filter: saturate(1.08) contrast(1.04);
}

:root[data-theme="light"] .ambient-video-bg {
  background: var(--paper);
}

:root[data-theme="light"] .ambient-video-bg::after {
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 157, 183, 0.08), transparent 48%),
    linear-gradient(180deg, rgba(239, 244, 244, 0.34), rgba(239, 244, 244, 0.58));
}

:root[data-theme="light"] .ambient-video-bg video {
  opacity: 0.72;
  filter: saturate(0.94) contrast(0.98) brightness(1.04);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(239, 244, 244, 0.88);
  border-bottom: 1px solid rgba(1, 46, 58, 0.1);
  backdrop-filter: blur(18px);
}

.site-header[data-theme="dark"] {
  color: var(--white);
  background: linear-gradient(180deg, rgba(1, 46, 58, 0.88), rgba(1, 46, 58, 0));
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.brand-mark {
  display: block;
  width: clamp(144px, 14vw, 220px);
}

.brand-mark img {
  width: 100%;
  height: auto;
}

.site-header[data-theme="dark"] .brand-mark {
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.28));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  font-family: var(--font-display);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.desktop-nav a {
  position: relative;
  padding-block: 6px;
}

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

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.theme-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
}

.theme-toggle:focus,
.menu-button:focus,
.button:focus {
  outline: none;
}

.theme-toggle:focus-visible,
.menu-button:focus-visible,
.button:focus-visible,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.social-card:focus-visible,
.footer-social a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.theme-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
  transition:
    border-radius 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.theme-toggle-icon::before,
.theme-toggle-icon::after {
  position: absolute;
  content: "";
}

.theme-toggle-icon::before {
  inset: -7px;
  background:
    linear-gradient(currentColor, currentColor) center top / 2px 5px no-repeat,
    linear-gradient(currentColor, currentColor) center bottom / 2px 5px no-repeat,
    linear-gradient(90deg, currentColor, currentColor) left center / 5px 2px no-repeat,
    linear-gradient(90deg, currentColor, currentColor) right center / 5px 2px no-repeat;
  opacity: 1;
  transition: opacity 180ms ease;
}

.theme-toggle-icon::after {
  inset: -3px -8px -3px 6px;
  background: currentColor;
  border-radius: 999px;
  opacity: 0;
  transform: translateX(10px);
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

:root[data-theme="dark"] .theme-toggle-icon {
  border-radius: 50%;
  transform: rotate(-16deg);
  box-shadow: inset 6px -3px 0 0 currentColor;
}

:root[data-theme="dark"] .theme-toggle-icon::before {
  opacity: 0;
}

:root[data-theme="dark"] .theme-toggle-icon::after {
  opacity: 0;
}

.menu-button {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-button span + span {
  margin-top: -11px;
  transform: translateY(8px);
}

.mobile-nav {
  position: fixed;
  z-index: 18;
  top: 78px;
  left: 0;
  right: 0;
  display: grid;
  gap: 1px;
  padding: 0 18px 18px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transform: translateY(-130%);
  transition: transform 220ms ease;
}

.mobile-nav a {
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

body.menu-open .mobile-nav {
  transform: translateY(0);
}

:root[data-theme="light"] .site-header[data-theme="dark"] {
  color: var(--ink);
  background: rgba(239, 244, 244, 0.9);
  border-bottom-color: rgba(1, 46, 58, 0.1);
}

:root[data-theme="light"] .site-header[data-theme="dark"] .brand-mark {
  filter: none;
}

:root[data-theme="dark"] body {
  color: var(--paper);
  background: #031217;
}

:root[data-theme="dark"] .site-header {
  color: var(--white);
  background: rgba(1, 18, 23, 0.86);
  border-bottom-color: rgba(206, 236, 241, 0.12);
}

:root[data-theme="dark"] .mobile-nav {
  color: var(--white);
  background: #031217;
  border-bottom-color: rgba(206, 236, 241, 0.14);
}

:root[data-theme="dark"] .mobile-nav a {
  border-bottom-color: rgba(206, 236, 241, 0.14);
}

:root[data-theme="dark"] .page-hero,
:root[data-theme="dark"] .reel-section,
:root[data-theme="dark"] .services-preview,
:root[data-theme="dark"] .labs-preview,
:root[data-theme="dark"] .social-section {
  background: rgba(7, 27, 34, 0.58);
}

:root[data-theme="dark"] .work-preview,
:root[data-theme="dark"] .portfolio-board,
:root[data-theme="dark"] .services-page,
:root[data-theme="dark"] .labs-featured,
:root[data-theme="dark"] .labs-layout {
  background: rgba(3, 18, 23, 0.52);
}

:root[data-theme="dark"] .project-card,
:root[data-theme="dark"] .case-card,
:root[data-theme="dark"] .post-card,
:root[data-theme="dark"] .service-card,
:root[data-theme="dark"] .social-card,
:root[data-theme="dark"] .contact-form {
  background: #0a252d;
  border-color: rgba(206, 236, 241, 0.12);
}

:root[data-theme="dark"] .featured-post {
  background: rgba(10, 37, 45, 0.86);
  border-color: rgba(206, 236, 241, 0.14);
}

:root[data-theme="dark"] .muted-card {
  background:
    linear-gradient(135deg, rgba(2, 140, 164, 0.2), rgba(3, 18, 23, 0.92)),
    #071b22;
}

:root[data-theme="dark"] .service-strip {
  background: transparent;
  border-color: transparent;
}

:root[data-theme="dark"] .service-strip a {
  background-color: #071b22;
}

:root[data-theme="dark"] .page-hero h1,
:root[data-theme="dark"] .contact-page h1 {
  color: var(--paper);
}

:root[data-theme="dark"] .page-hero > p,
:root[data-theme="dark"] .contact-copy > p:not(.eyebrow),
:root[data-theme="dark"] .case-text p,
:root[data-theme="dark"] .post-card p,
:root[data-theme="dark"] .featured-post p,
:root[data-theme="dark"] .featured-post small,
:root[data-theme="dark"] .lab-post-card small,
:root[data-theme="dark"] .labs-filter p,
:root[data-theme="dark"] .social-card p,
:root[data-theme="dark"] .service-card p,
:root[data-theme="dark"] .contact-form label {
  color: rgba(239, 244, 244, 0.76);
}

:root[data-theme="dark"] .article-list,
:root[data-theme="dark"] .article-list article,
:root[data-theme="dark"] .labs-filter a,
:root[data-theme="dark"] .section-intro {
  border-color: rgba(206, 236, 241, 0.16);
}

:root[data-theme="dark"] .labs-hero {
  background:
    linear-gradient(90deg, rgba(3, 18, 23, 0.98), rgba(3, 18, 23, 0.78) 48%, rgba(3, 18, 23, 0.56)),
    url("assets/water-horizontal.jpg") center / cover;
}

:root[data-theme="dark"] .contact-page {
  background:
    linear-gradient(90deg, rgba(3, 18, 23, 0.9), rgba(3, 18, 23, 0.72)),
    url("assets/icone-alpha.png") right -12vw bottom -12vw / min(70vw, 800px) auto no-repeat;
}

:root[data-theme="dark"] .contact-form input,
:root[data-theme="dark"] .contact-form select,
:root[data-theme="dark"] .contact-form textarea {
  color: var(--paper);
  background: #031217;
  border-color: rgba(206, 236, 241, 0.1);
}

.hero {
  position: relative;
  min-height: min(88svh, 820px);
  overflow: hidden;
  color: var(--white);
  background: rgba(1, 46, 58, 0.5);
}

:root[data-theme="light"] .hero {
  color: var(--ink);
  background: rgba(239, 244, 244, 0.54);
}

.hero-home {
  display: grid;
  align-items: end;
  padding: 118px clamp(20px, 5vw, 72px) clamp(42px, 5vw, 66px);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.opening-sequence {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 26%, rgba(255, 255, 255, 0.18), transparent 18%),
    var(--ink);
}

.opening-bg,
.opening-clapper {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.opening-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: var(--opening-bg-opacity);
  transform: scale(var(--opening-bg-scale));
  transform-origin: center;
  filter: saturate(1.08) contrast(1.04);
  transition:
    opacity 80ms linear,
    transform 80ms linear;
}

.opening-clapper {
  left: 67%;
  top: 52%;
  width: min(70vw, 900px);
  opacity: var(--opening-clapper-opacity);
  filter:
    blur(var(--opening-clapper-blur))
    drop-shadow(0 32px 70px rgba(0, 0, 0, 0.52));
  transform: translate(-50%, -50%) translateY(var(--opening-clapper-y)) scale(var(--opening-clapper-scale));
  transform-origin: 45% 44%;
  transition:
    opacity 80ms linear,
    transform 80ms linear,
    filter 80ms linear;
  animation: clapperEntrance 1500ms cubic-bezier(0.2, 0.85, 0.22, 1) both;
}

.opening-shutter {
  position: absolute;
  inset: 0;
  opacity: var(--opening-shutter-opacity);
  background:
    linear-gradient(100deg, transparent 0 42%, rgba(206, 236, 241, 0.28) 50%, transparent 58% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 26px);
  mix-blend-mode: screen;
  transform: translateX(var(--opening-shutter-x));
}

:root[data-theme="light"] .opening-sequence {
  background:
    radial-gradient(circle at 9% 26%, rgba(255, 255, 255, 0.48), transparent 18%),
    var(--paper);
}

:root[data-theme="light"] .opening-bg {
  filter: saturate(0.96) contrast(0.98) brightness(1.08);
}

:root[data-theme="light"] .opening-clapper {
  filter:
    blur(var(--opening-clapper-blur))
    drop-shadow(0 28px 54px rgba(1, 46, 58, 0.2));
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 46, 58, 0.98) 0%, rgba(1, 46, 58, 0.74) 42%, rgba(1, 46, 58, 0.2) 100%),
    linear-gradient(0deg, rgba(1, 46, 58, 0.92) 0%, rgba(1, 46, 58, 0.08) 54%);
  content: "";
}

:root[data-theme="light"] .hero-media::after {
  background:
    linear-gradient(90deg, rgba(239, 244, 244, 0.98) 0%, rgba(239, 244, 244, 0.78) 45%, rgba(239, 244, 244, 0.34) 100%),
    linear-gradient(0deg, rgba(239, 244, 244, 0.96) 0%, rgba(239, 244, 244, 0.12) 60%);
}

.hero-symbol {
  position: absolute;
  right: -12vw;
  bottom: -10vw;
  width: min(72vw, 850px);
  opacity: 0.26;
  transform: rotate(-9deg);
}

:root[data-theme="light"] .hero-symbol {
  opacity: 0.16;
}

.frame-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  opacity: 0.68;
}

.frame-grid span {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(0, 157, 183, 0.1), rgba(206, 236, 241, 0.02)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 24px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.frame-grid span:nth-child(2) {
  background-color: rgba(42, 96, 115, 0.28);
}

.frame-grid span:nth-child(3) {
  background-color: rgba(2, 140, 164, 0.2);
}

.frame-grid span:nth-child(4) {
  background-color: rgba(35, 31, 32, 0.3);
}

.cinema-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.film-ribbon {
  position: absolute;
  top: clamp(92px, 12vw, 142px);
  right: clamp(-120px, -6vw, -32px);
  width: clamp(280px, 38vw, 520px);
  height: 54px;
  opacity: 0.34;
  border-block: 1px solid rgba(206, 236, 241, 0.42);
  background:
    radial-gradient(circle at 18px 12px, rgba(206, 236, 241, 0.7) 0 4px, transparent 5px) 0 0 / 38px 100%,
    radial-gradient(circle at 18px 42px, rgba(206, 236, 241, 0.7) 0 4px, transparent 5px) 0 0 / 38px 100%,
    linear-gradient(90deg, rgba(2, 140, 164, 0.1), rgba(206, 236, 241, 0.24));
  transform: rotate(-8deg);
  animation: filmSlide 18s linear infinite;
}

.light-beam {
  position: absolute;
  width: clamp(260px, 38vw, 620px);
  height: clamp(120px, 22vw, 260px);
  opacity: 0.42;
  background: linear-gradient(90deg, rgba(206, 236, 241, 0.42), rgba(0, 157, 183, 0));
  clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 58%);
  filter: blur(2px);
  transform-origin: left center;
  animation: lightSweep 11s ease-in-out infinite;
}

.beam-one {
  top: 24%;
  left: 8%;
}

.beam-two {
  right: -12%;
  bottom: 22%;
  opacity: 0.28;
  transform: rotate(180deg);
  animation-delay: -5s;
}

.lens-orbit {
  position: absolute;
  right: clamp(32px, 14vw, 210px);
  bottom: clamp(60px, 11vw, 150px);
  display: grid;
  place-items: center;
  width: clamp(150px, 23vw, 310px);
  aspect-ratio: 1;
  opacity: 0.34;
  border: 1px solid rgba(206, 236, 241, 0.36);
  border-radius: 999px;
  animation: irisTurn 20s linear infinite;
}

.lens-orbit span {
  position: absolute;
  border: 1px solid rgba(0, 157, 183, 0.38);
  border-radius: 999px;
}

.lens-orbit span:nth-child(1) {
  inset: 14%;
}

.lens-orbit span:nth-child(2) {
  inset: 31%;
  border-style: dashed;
}

.lens-orbit span:nth-child(3) {
  inset: 47%;
  background: rgba(206, 236, 241, 0.16);
}

.cine-prop {
  position: absolute;
  color: rgba(206, 236, 241, 0.7);
  opacity: 0.45;
  animation: propFloat 9s ease-in-out infinite;
}

.cine-prop::before,
.cine-prop::after,
.cine-prop i {
  position: absolute;
  display: block;
  content: "";
}

.prop-camera {
  top: 23%;
  right: 30%;
  width: 86px;
  height: 50px;
  border: 2px solid currentColor;
  border-radius: 8px;
  animation-delay: -1.5s;
}

.prop-camera::before {
  top: 9px;
  left: 28px;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.prop-camera::after {
  top: -13px;
  left: 12px;
  width: 30px;
  height: 12px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.prop-camera i {
  top: 13px;
  right: 12px;
  width: 9px;
  height: 9px;
  background: currentColor;
  border-radius: 999px;
}

.prop-clapper {
  right: 42%;
  bottom: 22%;
  width: 84px;
  height: 54px;
  border: 2px solid currentColor;
  border-radius: 6px;
  animation-delay: -4s;
}

.prop-clapper::before {
  top: -18px;
  left: -2px;
  right: -2px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 6px 6px 0 0;
  background: repeating-linear-gradient(-45deg, currentColor 0 8px, transparent 8px 16px);
}

.prop-clapper::after {
  top: 18px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 13px 0 currentColor;
}

.prop-mic {
  top: 42%;
  right: 10%;
  width: 30px;
  height: 76px;
  border: 2px solid currentColor;
  border-radius: 18px;
  animation-delay: -2.8s;
}

.prop-mic::before {
  left: 50%;
  bottom: -34px;
  width: 2px;
  height: 34px;
  background: currentColor;
  transform: translateX(-50%);
}

.prop-mic::after {
  left: 50%;
  bottom: -38px;
  width: 44px;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
}

.prop-mic i {
  top: 14px;
  left: 6px;
  right: 6px;
  height: 2px;
  background: currentColor;
  box-shadow:
    0 12px 0 currentColor,
    0 24px 0 currentColor;
}

.prop-light {
  top: 28%;
  left: 11%;
  width: 58px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 10px;
  transform: rotate(-8deg);
  animation-delay: -6s;
}

.prop-light::before {
  top: 3px;
  left: 50px;
  width: 160px;
  height: 36px;
  background: linear-gradient(90deg, rgba(206, 236, 241, 0.34), rgba(0, 157, 183, 0));
  clip-path: polygon(0 34%, 100% 0, 100% 100%, 0 66%);
}

.prop-light::after {
  left: 18px;
  bottom: -46px;
  width: 2px;
  height: 46px;
  background: currentColor;
  transform: rotate(6deg);
}

:root[data-theme="light"] .film-ribbon,
:root[data-theme="light"] .lens-orbit,
:root[data-theme="light"] .cine-prop {
  color: rgba(1, 46, 58, 0.58);
  border-color: rgba(1, 46, 58, 0.3);
  opacity: 0.38;
}

:root[data-theme="light"] .light-beam,
:root[data-theme="light"] .prop-light::before {
  background: linear-gradient(90deg, rgba(0, 157, 183, 0.22), rgba(0, 157, 183, 0));
}

:root[data-theme="light"] .film-ribbon {
  border-block-color: rgba(1, 46, 58, 0.26);
  background:
    radial-gradient(circle at 18px 12px, rgba(1, 46, 58, 0.46) 0 4px, transparent 5px) 0 0 / 38px 100%,
    radial-gradient(circle at 18px 42px, rgba(1, 46, 58, 0.46) 0 4px, transparent 5px) 0 0 / 38px 100%,
    linear-gradient(90deg, rgba(2, 140, 164, 0.12), rgba(1, 46, 58, 0.08));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(840px, 100%);
  opacity: var(--opening-copy-opacity);
  animation: copyEntrance 1100ms ease 520ms both;
}

:root[data-theme="light"] .hero-copy > p:not(.eyebrow) {
  color: rgba(1, 46, 58, 0.78);
}

:root[data-theme="light"] .button.secondary {
  color: var(--ink);
  border-color: rgba(1, 46, 58, 0.28);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.contact-page h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 6.2vw, 5.4rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow),
.page-hero > p,
.contact-copy > p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.button.secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.54);
}

.reel-section,
.work-preview,
.services-preview,
.labs-preview,
.about-section,
.contact-band,
.portfolio-board,
.services-page,
.labs-layout,
.contact-page {
  padding: clamp(70px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(140px, 0.42fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 34px;
  border-top: 2px solid currentColor;
  padding-top: 22px;
}

.section-intro.compact-intro {
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}

.section-intro h2,
.about-section h2,
.contact-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 5.7rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reel-section,
.work-preview,
.services-preview,
.about-section,
.labs-preview,
.social-section,
.contact-band,
.portfolio-board,
.services-page,
.labs-layout {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.reel-section::before,
.work-preview::before,
.services-preview::before,
.about-section::before,
.labs-preview::before,
.social-section::before,
.contact-band::before,
.portfolio-board::before,
.services-page::before,
.labs-layout::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  background:
    radial-gradient(circle at 50% 0, rgba(0, 157, 183, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(3, 18, 23, 0.16), rgba(3, 18, 23, 0.28));
  content: "";
}

.reel-section::after,
.work-preview::after,
.services-preview::after,
.about-section::after,
.labs-preview::after,
.social-section::after,
.contact-band::after,
.portfolio-board::after,
.services-page::after,
.labs-layout::after {
  content: none;
}

:root[data-theme="light"] .reel-section::before,
:root[data-theme="light"] .work-preview::before,
:root[data-theme="light"] .services-preview::before,
:root[data-theme="light"] .about-section::before,
:root[data-theme="light"] .labs-preview::before,
:root[data-theme="light"] .social-section::before,
:root[data-theme="light"] .contact-band::before,
:root[data-theme="light"] .portfolio-board::before,
:root[data-theme="light"] .services-page::before,
:root[data-theme="light"] .labs-layout::before {
  opacity: 1;
  background:
    radial-gradient(circle at 50% 0, rgba(0, 157, 183, 0.07), transparent 40%),
    linear-gradient(180deg, rgba(239, 244, 244, 0.34), rgba(239, 244, 244, 0.52));
}

.reel-section > *,
.work-preview > *,
.services-preview > *,
.about-section > *,
.labs-preview > *,
.social-section > *,
.contact-band > *,
.portfolio-board > *,
.services-page > *,
.labs-layout > * {
  position: relative;
  z-index: 1;
}

.reel-player.video-embed {
  z-index: 2;
}

.reel-section {
  background: rgba(255, 255, 255, 0.86);
}

.reel-top {
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding-top: clamp(112px, 10vw, 152px);
  background: rgba(3, 18, 23, 0.46);
}

.reel-top .section-intro {
  max-width: min(1500px, 100%);
}

.reel-top .reel-player.video-embed {
  width: min(1500px, 100%);
  margin-inline: auto;
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.34);
}

.reel-player {
  position: relative;
  display: grid;
  min-height: clamp(260px, 52vw, 680px);
  align-items: end;
  padding: clamp(20px, 4vw, 48px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(1, 46, 58, 0.08), rgba(1, 46, 58, 0.9)),
    linear-gradient(45deg, var(--deep), var(--black));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reel-player.video-embed {
  aspect-ratio: 16 / 9;
  min-height: auto;
}

.reel-player.video-embed iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: calc(100% + clamp(140px, 12vw, 220px));
  height: 100%;
  max-width: none;
  border: 0;
  transform: translateX(-50%);
}

.reel-player.video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.reel-play-fallback {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  display: grid;
  width: clamp(58px, 9vw, 90px);
  aspect-ratio: 1;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(3, 18, 23, 0.76);
  border: 1px solid rgba(206, 236, 241, 0.56);
  border-radius: 999px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
}

.reel-play-fallback[hidden] {
  display: none;
}

.reel-play-fallback span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid currentColor;
}

.reel-player.video-embed::before {
  content: none;
}

.reel-player::before {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
}

.play-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(70px, 9vw, 118px);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.play-symbol::after {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--white);
  content: "";
  transform: translate(-50%, -50%);
}

.reel-player div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  pointer-events: none;
}

.work-preview {
  background: rgba(239, 244, 244, 0.56);
}

.services-preview {
  background: rgba(255, 255, 255, 0.58);
}

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

.project-card,
.case-card,
.post-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.project-card::after,
.case-card::after,
.post-card::after,
.service-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 42%, rgba(206, 236, 241, 0.2) 50%, transparent 58% 100%);
  content: "";
  opacity: 0;
  transform: translateX(-55%);
  transition:
    opacity 180ms ease,
    transform 560ms ease;
}

.project-card:hover,
.case-card:hover,
.post-card:hover,
.service-card:hover {
  border-color: rgba(0, 157, 183, 0.42);
  box-shadow: 0 18px 45px rgba(1, 46, 58, 0.12);
  transform: translateY(-3px);
}

.project-card:hover::after,
.case-card:hover::after,
.post-card:hover::after,
.service-card:hover::after {
  opacity: 1;
  transform: translateX(55%);
}

.project-card a,
.case-card a,
.post-card a {
  display: grid;
  height: 100%;
}

.project-image,
.case-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: var(--deep);
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.32)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 38px);
}

.has-play {
  display: grid;
  place-items: center;
}

.play-badge {
  position: relative;
  z-index: 1;
  width: clamp(58px, 7vw, 82px);
  aspect-ratio: 1;
  border: 1px solid rgba(206, 236, 241, 0.56);
  border-radius: 999px;
  background: rgba(3, 18, 23, 0.68);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.play-badge::after {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--white);
  content: "";
  transform: translate(-50%, -50%);
}

.project-b {
  background-color: var(--teal);
}

.project-c {
  background-color: var(--black);
}

.project-d {
  background-color: var(--mint);
}

.project-info,
.case-text,
.post-card a {
  padding: 22px;
}

.project-info span,
.case-text span,
.post-card span,
.article-list span {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-info h3,
.article-list h3,
.case-text h2,
.post-card h2,
.service-card h2 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding-block: clamp(32px, 4.5vw, 72px);
  border: 0;
  background: transparent;
  isolation: isolate;
}

.service-strip::after {
  position: absolute;
  inset: 19% -2% 16%;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0%, rgba(0, 157, 183, 0.18) 22%, rgba(206, 236, 241, 0.16) 52%, rgba(0, 157, 183, 0.16) 78%, transparent 100%);
  clip-path: polygon(0 53%, 9% 46%, 18% 37%, 28% 31%, 38% 38%, 50% 54%, 61% 68%, 72% 73%, 84% 63%, 93% 52%, 100% 48%, 100% 75%, 90% 84%, 78% 88%, 66% 81%, 55% 66%, 45% 53%, 34% 48%, 24% 54%, 13% 66%, 0 75%);
  content: "";
  filter: blur(16px);
  opacity: 0.82;
}

.service-strip a {
  --wave-y: 0px;
  --piece-z: 1;
  position: relative;
  z-index: var(--piece-z);
  display: flex;
  min-height: clamp(168px, 13vw, 228px);
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(16px, 1.7vw, 24px);
  color: var(--white);
  background-color: var(--deep);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(206, 236, 241, 0.28);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.45vw, 1.55rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(1, 18, 23, 0.18);
  clip-path: polygon(0 var(--edge-a, 0), 100% var(--edge-b, 0), 100% calc(100% - var(--edge-c, 0)), 0 calc(100% - var(--edge-d, 0)));
  transform: translateY(var(--wave-y));
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    clip-path 180ms ease,
    transform 180ms ease;
}

.service-strip a::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 18, 23, 0.02) 0%, rgba(3, 18, 23, 0.16) 46%, rgba(3, 18, 23, 0.76) 100%),
    radial-gradient(circle at 50% 8%, rgba(206, 236, 241, 0.16), transparent 42%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-strip a span {
  position: relative;
  z-index: 1;
  max-width: 15ch;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.service-strip a:hover::before,
.service-strip a:focus-visible::before {
  opacity: 1;
}

.service-strip a:hover span,
.service-strip a:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.service-strip a:nth-child(1) {
  --piece-z: 2;
  --wave-y: 32px;
  --edge-a: 10%;
  --edge-b: 0%;
  --edge-c: 13%;
  --edge-d: 0%;
  border-radius: 70px 0 0 8px;
}

.service-strip a:nth-child(2) {
  --piece-z: 2;
  --wave-y: 6px;
  --edge-a: 2%;
  --edge-b: 12%;
  --edge-c: 4%;
  --edge-d: 14%;
}

.service-strip a:nth-child(3) {
  --piece-z: 2;
  --wave-y: -30px;
  --edge-a: 14%;
  --edge-b: 2%;
  --edge-c: 16%;
  --edge-d: 4%;
}

.service-strip a:nth-child(4) {
  --piece-z: 2;
  --wave-y: -6px;
  --edge-a: 4%;
  --edge-b: 15%;
  --edge-c: 6%;
  --edge-d: 14%;
}

.service-strip a:nth-child(5) {
  --piece-z: 2;
  --wave-y: 30px;
  --edge-a: 12%;
  --edge-b: 0%;
  --edge-c: 0%;
  --edge-d: 14%;
  border-radius: 0 70px 8px 0;
}

.service-strip a:nth-child(6) {
  --wave-y: -28px;
  --edge-a: 0%;
  --edge-b: 14%;
  --edge-c: 10%;
  --edge-d: 0%;
  border-radius: 8px 0 0 70px;
}

.service-strip a:nth-child(7) {
  --wave-y: -2px;
  --edge-a: 14%;
  --edge-b: 4%;
  --edge-c: 2%;
  --edge-d: 14%;
}

.service-strip a:nth-child(8) {
  --wave-y: 30px;
  --edge-a: 4%;
  --edge-b: 15%;
  --edge-c: 13%;
  --edge-d: 2%;
}

.service-strip a:nth-child(9) {
  --wave-y: 6px;
  --edge-a: 15%;
  --edge-b: 3%;
  --edge-c: 4%;
  --edge-d: 15%;
}

.service-strip a:nth-child(10) {
  --wave-y: -34px;
  --edge-a: 0%;
  --edge-b: 12%;
  --edge-c: 0%;
  --edge-d: 12%;
  border-radius: 0 8px 70px 0;
}

:root .service-strip a.service-podcasts {
  background-image: url("assets/service-podcasts.jpg?v=no-c-mark");
}

:root .service-strip a.service-institucionais {
  background-image: url("assets/service-institucionais.jpg?v=no-c-mark");
}

:root .service-strip a.service-igreja {
  background-image: url("assets/service-igreja.jpg?v=no-c-mark");
}

:root .service-strip a.service-fashion-film {
  background-image: url("assets/service-fashion-film.jpg?v=no-c-mark");
}

:root .service-strip a.service-music {
  background-image: url("assets/service-music.jpg?v=no-c-mark");
}

:root .service-strip a.service-documentarios {
  background-image: url("assets/service-documentarios.jpg?v=no-c-mark");
}

:root .service-strip a.service-redes-sociais {
  background-image: url("assets/service-redes-sociais.jpg?v=no-c-mark");
}

:root .service-strip a.service-eventos {
  background-image: url("assets/service-eventos.jpg?v=no-c-mark");
}

:root .service-strip a.service-casamentos {
  background-image: url("assets/service-casamentos.jpg?v=no-c-mark");
}

:root .service-strip a.service-aulas {
  background-image: url("assets/service-aulas.jpg?v=no-c-mark");
}

.service-strip a:hover {
  z-index: 4;
  border-color: rgba(206, 236, 241, 0.5);
  box-shadow: 0 24px 50px rgba(1, 18, 23, 0.26);
  transform: translateY(calc(var(--wave-y) - 4px));
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 7vw, 96px);
  color: var(--white);
  background: rgba(35, 31, 32, 0.62);
}

.about-copy {
  display: grid;
  gap: 22px;
  align-content: center;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

.about-copy p {
  margin: 0;
}

.labs-preview {
  background: rgba(255, 255, 255, 0.58);
}

.social-section {
  background: rgba(239, 244, 244, 0.56);
}

.article-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.article-list article {
  border-bottom: 1px solid var(--line);
}

.article-list a {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 22px;
  padding: 26px 0;
}

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

.social-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.social-card::after {
  position: absolute;
  inset: auto -20% -40% 18%;
  height: 86px;
  opacity: 0.12;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  content: "";
  transform: rotate(-8deg);
}

.social-card:hover {
  border-color: rgba(0, 157, 183, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.social-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  background: currentColor;
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg.social-icon {
  display: block;
  background: none;
  fill: currentColor;
}

.icon-instagram {
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22black%22%20d%3D%22M7.8%202h8.4A5.8%205.8%200%200%201%2022%207.8v8.4a5.8%205.8%200%200%201-5.8%205.8H7.8A5.8%205.8%200%200%201%202%2016.2V7.8A5.8%205.8%200%200%201%207.8%202Zm0%202A3.8%203.8%200%200%200%204%207.8v8.4A3.8%203.8%200%200%200%207.8%2020h8.4a3.8%203.8%200%200%200%203.8-3.8V7.8A3.8%203.8%200%200%200%2016.2%204H7.8Zm4.2%203.2a4.8%204.8%200%201%201%200%209.6%204.8%204.8%200%200%201%200-9.6Zm0%202a2.8%202.8%200%201%200%200%205.6%202.8%202.8%200%200%200%200-5.6Zm5-2.5a1.2%201.2%200%201%201%200%202.4%201.2%201.2%200%200%201%200-2.4Z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22black%22%20d%3D%22M7.8%202h8.4A5.8%205.8%200%200%201%2022%207.8v8.4a5.8%205.8%200%200%201-5.8%205.8H7.8A5.8%205.8%200%200%201%202%2016.2V7.8A5.8%205.8%200%200%201%207.8%202Zm0%202A3.8%203.8%200%200%200%204%207.8v8.4A3.8%203.8%200%200%200%207.8%2020h8.4a3.8%203.8%200%200%200%203.8-3.8V7.8A3.8%203.8%200%200%200%2016.2%204H7.8Zm4.2%203.2a4.8%204.8%200%201%201%200%209.6%204.8%204.8%200%200%201%200-9.6Zm0%202a2.8%202.8%200%201%200%200%205.6%202.8%202.8%200%200%200%200-5.6Zm5-2.5a1.2%201.2%200%201%201%200%202.4%201.2%201.2%200%200%201%200-2.4Z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
}

.icon-linkedin {
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22black%22%20d%3D%22M6.94%208.98H3.16V21h3.78V8.98ZM5.05%203a2.18%202.18%200%201%200%200%204.36%202.18%202.18%200%200%200%200-4.36Zm5.1%205.98H6.53V21h3.78v-5.94c0-1.56.3-3.08%202.24-3.08%201.9%200%201.92%201.78%201.92%203.18V21h3.78v-6.58c0-3.23-.7-5.72-4.48-5.72-1.82%200-3.04%201-3.54%201.94h-.08V8.98Z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22black%22%20d%3D%22M6.94%208.98H3.16V21h3.78V8.98ZM5.05%203a2.18%202.18%200%201%200%200%204.36%202.18%202.18%200%200%200%200-4.36Zm5.1%205.98H6.53V21h3.78v-5.94c0-1.56.3-3.08%202.24-3.08%201.9%200%201.92%201.78%201.92%203.18V21h3.78v-6.58c0-3.23-.7-5.72-4.48-5.72-1.82%200-3.04%201-3.54%201.94h-.08V8.98Z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
}

.icon-whatsapp {
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22black%22%20d%3D%22M12.04%202A9.93%209.93%200%200%200%202.1%2011.92c0%201.75.46%203.45%201.32%204.94L2%2022l5.28-1.38a9.93%209.93%200%200%200%204.76%201.2h.01A9.92%209.92%200%200%200%2012.04%202Zm.01%2018.14h-.01a8.2%208.2%200%200%201-4.18-1.14l-.3-.18-3.13.82.84-3.05-.2-.31a8.18%208.18%200%201%201%206.98%203.86Zm4.48-6.13c-.25-.12-1.45-.72-1.68-.8-.22-.08-.38-.12-.54.12-.16.25-.62.8-.76.96-.14.16-.28.18-.52.06-.25-.12-1.03-.38-1.96-1.2-.72-.65-1.2-1.44-1.35-1.69-.14-.24-.01-.37.11-.49.11-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.16.04-.31-.02-.43-.06-.12-.54-1.3-.74-1.78-.2-.47-.4-.4-.54-.41h-.46c-.16%200-.43.06-.65.31-.22.24-.85.83-.85%202.03%200%201.19.87%202.35.99%202.51.12.16%201.71%202.61%204.14%203.66.58.25%201.03.4%201.38.51.58.18%201.11.16%201.53.1.47-.07%201.45-.59%201.65-1.16.2-.58.2-1.07.14-1.17-.06-.11-.22-.17-.47-.29Z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22black%22%20d%3D%22M12.04%202A9.93%209.93%200%200%200%202.1%2011.92c0%201.75.46%203.45%201.32%204.94L2%2022l5.28-1.38a9.93%209.93%200%200%200%204.76%201.2h.01A9.92%209.92%200%200%200%2012.04%202Zm.01%2018.14h-.01a8.2%208.2%200%200%201-4.18-1.14l-.3-.18-3.13.82.84-3.05-.2-.31a8.18%208.18%200%201%201%206.98%203.86Zm4.48-6.13c-.25-.12-1.45-.72-1.68-.8-.22-.08-.38-.12-.54.12-.16.25-.62.8-.76.96-.14.16-.28.18-.52.06-.25-.12-1.03-.38-1.96-1.2-.72-.65-1.2-1.44-1.35-1.69-.14-.24-.01-.37.11-.49.11-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.16.04-.31-.02-.43-.06-.12-.54-1.3-.74-1.78-.2-.47-.4-.4-.54-.41h-.46c-.16%200-.43.06-.65.31-.22.24-.85.83-.85%202.03%200%201.19.87%202.35.99%202.51.12.16%201.71%202.61%204.14%203.66.58.25%201.03.4%201.38.51.58.18%201.11.16%201.53.1.47-.07%201.45-.59%201.65-1.16.2-.58.2-1.07.14-1.17-.06-.11-.22-.17-.47-.29Z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
}

.icon-mail {
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22black%22%20d%3D%22M4.4%205h15.2A2.4%202.4%200%200%201%2022%207.4v9.2a2.4%202.4%200%200%201-2.4%202.4H4.4A2.4%202.4%200%200%201%202%2016.6V7.4A2.4%202.4%200%200%201%204.4%205Zm.1%202%207.5%205.1L19.5%207h-15Zm15.5%202.1-7.45%205.05a1%201%200%200%201-1.1%200L4%209.1v7.5c0%20.22.18.4.4.4h15.2c.22%200%20.4-.18.4-.4V9.1Z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22black%22%20d%3D%22M4.4%205h15.2A2.4%202.4%200%200%201%2022%207.4v9.2a2.4%202.4%200%200%201-2.4%202.4H4.4A2.4%202.4%200%200%201%202%2016.6V7.4A2.4%202.4%200%200%201%204.4%205Zm.1%202%207.5%205.1L19.5%207h-15Zm15.5%202.1-7.45%205.05a1%201%200%200%201-1.1%200L4%209.1v7.5c0%20.22.18.4.4.4h15.2c.22%200%20.4-.18.4-.4V9.1Z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
}

.icon-vimeo {
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22black%22%20d%3D%22M22%207.15c-.1%202.15-1.6%205.1-4.5%208.86C14.5%2019.92%2012%2021.88%2010%2021.88c-1.24%200-2.28-1.15-3.12-3.43L5.18%2012.2C4.55%209.93%203.88%208.79%203.16%208.79c-.16%200-.7.33-1.64.98L.54%208.5c1.02-.9%202.03-1.8%203.03-2.7%201.36-1.17%202.38-1.79%203.05-1.85%201.6-.15%202.58.94%202.95%203.27.4%202.52.68%204.09.84%204.7.47%202.1.99%203.15%201.56%203.15.44%200%201.1-.7%201.98-2.1.88-1.4%201.35-2.47%201.41-3.2.13-1.22-.34-1.83-1.41-1.83-.5%200-1.02.12-1.55.35%201.03-3.38%203-5.02%205.9-4.92%202.15.06%203.38%201.32%203.7%203.78Z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22black%22%20d%3D%22M22%207.15c-.1%202.15-1.6%205.1-4.5%208.86C14.5%2019.92%2012%2021.88%2010%2021.88c-1.24%200-2.28-1.15-3.12-3.43L5.18%2012.2C4.55%209.93%203.88%208.79%203.16%208.79c-.16%200-.7.33-1.64.98L.54%208.5c1.02-.9%202.03-1.8%203.03-2.7%201.36-1.17%202.38-1.79%203.05-1.85%201.6-.15%202.58.94%202.95%203.27.4%202.52.68%204.09.84%204.7.47%202.1.99%203.15%201.56%203.15.44%200%201.1-.7%201.98-2.1.88-1.4%201.35-2.47%201.41-3.2.13-1.22-.34-1.83-1.41-1.83-.5%200-1.02.12-1.55.35%201.03-3.38%203-5.02%205.9-4.92%202.15.06%203.38%201.32%203.7%203.78Z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
}

.social-card-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-card-label .social-icon {
  width: 24px;
  height: 24px;
}

.social-card strong {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.social-card p {
  margin: 14px 0 0;
  color: rgba(1, 46, 58, 0.72);
}

.muted-card {
  background:
    linear-gradient(135deg, rgba(2, 140, 164, 0.14), rgba(255, 255, 255, 0.9)),
    var(--white);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: rgba(1, 46, 58, 0.64);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.7);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer img {
  width: min(180px, 44vw);
}

.site-footer p {
  margin: 0;
  max-width: min(560px, 100%);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.footer-social a:hover {
  color: var(--white);
  background: rgba(0, 157, 183, 0.28);
  border-color: rgba(0, 157, 183, 0.72);
  transform: translateY(-2px);
}

.footer-social .social-icon {
  width: 18px;
  height: 18px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 158px clamp(20px, 5vw, 72px) clamp(70px, 9vw, 126px);
  background: rgba(255, 255, 255, 0.58);
}

.page-hero::before,
.contact-page::before {
  position: absolute;
  top: 118px;
  right: clamp(-120px, -7vw, -40px);
  width: clamp(260px, 34vw, 500px);
  height: 44px;
  opacity: 0.18;
  border-block: 1px solid currentColor;
  background:
    radial-gradient(circle at 14px 10px, currentColor 0 3px, transparent 4px) 0 0 / 32px 100%,
    radial-gradient(circle at 14px 34px, currentColor 0 3px, transparent 4px) 0 0 / 32px 100%,
    linear-gradient(90deg, transparent, rgba(0, 157, 183, 0.16));
  content: "";
  transform: rotate(-7deg);
  animation: filmSlide 18s linear infinite;
}

.page-hero::after,
.contact-page::after {
  position: absolute;
  right: clamp(18px, 8vw, 120px);
  bottom: clamp(34px, 6vw, 90px);
  width: clamp(120px, 18vw, 260px);
  aspect-ratio: 1;
  opacity: 0.14;
  border: 1px solid currentColor;
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 28px rgba(0, 157, 183, 0.08),
    inset 0 0 0 56px rgba(206, 236, 241, 0.06);
  content: "";
  animation: irisTurn 24s linear infinite;
}

.page-hero > *,
.contact-page > * {
  position: relative;
  z-index: 1;
}

.page-hero.compact {
  padding-bottom: clamp(46px, 7vw, 86px);
}

.page-hero h1,
.contact-page h1 {
  max-width: 1020px;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 7.8rem);
}

.page-hero > p,
.contact-copy > p:not(.eyebrow) {
  color: rgba(1, 46, 58, 0.74);
}

.inline-link {
  display: inline-flex;
  margin-top: 22px;
  padding-bottom: 3px;
  color: var(--teal);
  border-bottom: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.labs-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  min-height: 92svh;
  background:
    linear-gradient(90deg, rgba(239, 244, 244, 0.97), rgba(239, 244, 244, 0.78) 48%, rgba(239, 244, 244, 0.48)),
    url("assets/water-horizontal.jpg") center / cover;
}

.labs-hero-copy {
  display: grid;
  gap: 18px;
  max-width: 880px;
}

.labs-hero h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 5.6vw, 6.35rem);
  line-height: 0.94;
}

.labs-hero-copy > p:not(.eyebrow) {
  max-width: 740px;
  color: rgba(1, 46, 58, 0.74);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

:root[data-theme="dark"] .labs-hero-copy > p:not(.eyebrow) {
  color: rgba(239, 244, 244, 0.76);
}

.labs-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.labs-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--teal);
  background: rgba(239, 244, 244, 0.12);
  border: 1px solid rgba(0, 157, 183, 0.28);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.labs-hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: center;
}

.labs-hero-visual::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  opacity: 0.55;
  border: 1px solid rgba(206, 236, 241, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 157, 183, 0.12), rgba(3, 18, 23, 0.18)),
    rgba(3, 18, 23, 0.18);
  content: "";
}

.labs-hero-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 190px;
  padding: 20px;
  color: var(--paper);
  background-color: var(--deep);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(206, 236, 241, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(1, 18, 23, 0.24);
  isolation: isolate;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.labs-hero-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 18, 23, 0.03), rgba(3, 18, 23, 0.84)),
    repeating-linear-gradient(90deg, rgba(206, 236, 241, 0.16) 0 1px, transparent 1px 44px);
  content: "";
}

.labs-hero-card-main {
  grid-column: 1 / -1;
  min-height: clamp(290px, 31vw, 470px);
}

.labs-hero-card span,
.labs-hero-index span {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.labs-hero-card strong {
  display: block;
  max-width: 420px;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 2.45rem);
  line-height: 1;
  text-shadow: 0 14px 30px rgba(1, 18, 23, 0.58);
  text-transform: uppercase;
}

.labs-hero-card:not(.labs-hero-card-main) strong {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
}

.labs-hero-card:hover {
  border-color: rgba(0, 157, 183, 0.58);
  transform: translateY(-4px);
}

.labs-hero-index {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.labs-hero-index span {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 10px;
  color: rgba(239, 244, 244, 0.82);
  background: rgba(3, 18, 23, 0.62);
  border: 1px solid rgba(206, 236, 241, 0.13);
  border-radius: 8px;
  text-align: center;
}

.labs-featured {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(70px, 9vw, 132px) clamp(20px, 5vw, 72px);
  background: rgba(239, 244, 244, 0.6);
}

.labs-featured::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0, rgba(0, 157, 183, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(3, 18, 23, 0.12), rgba(3, 18, 23, 0.26));
  content: "";
}

.labs-featured > * {
  position: relative;
  z-index: 1;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  min-height: clamp(420px, 48vw, 620px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(1, 46, 58, 0.18);
}

.featured-post-media {
  min-height: 360px;
  background-color: var(--deep);
}

.featured-post-copy {
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(26px, 4vw, 56px);
}

.featured-post-copy span,
.featured-post-copy small,
.lab-post-card small {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-post-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 5.4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.featured-post-copy p {
  margin: 0;
  color: rgba(1, 46, 58, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.portfolio-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--paper);
}

.services-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: var(--paper);
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card span {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card p {
  margin: 16px 0 0;
  color: rgba(1, 46, 58, 0.72);
  font-size: 1.02rem;
}

.service-demo-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  padding-bottom: 4px;
  color: var(--teal);
  border-bottom: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.category-hero {
  background:
    linear-gradient(90deg, rgba(239, 244, 244, 0.95), rgba(239, 244, 244, 0.68)),
    radial-gradient(circle at 82% 20%, rgba(0, 157, 183, 0.22), transparent 32%);
}

.category-reel-section {
  position: relative;
  isolation: isolate;
  padding: clamp(44px, 7vw, 94px) clamp(20px, 5vw, 72px) clamp(76px, 10vw, 140px);
  background: rgba(239, 244, 244, 0.58);
}

.category-player {
  position: relative;
  width: min(1420px, 100%);
  aspect-ratio: 16 / 9;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(206, 236, 241, 0.2);
  border-radius: 8px;
  background-image:
    linear-gradient(135deg, rgba(3, 18, 23, 0.28), rgba(3, 18, 23, 0.72)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 42px);
  box-shadow: 0 34px 92px rgba(1, 46, 58, 0.24);
}

.category-player::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(206, 236, 241, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(3, 18, 23, 0.08), rgba(3, 18, 23, 0.34));
  content: "";
}

.category-player iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 240ms ease;
}

.category-player.is-playing iframe {
  opacity: 1;
}

.category-player.is-playing::before {
  opacity: 0;
}

.category-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: clamp(74px, 9vw, 116px);
  aspect-ratio: 1;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(3, 18, 23, 0.72);
  border: 1px solid rgba(206, 236, 241, 0.58);
  border-radius: 999px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    background 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(14px);
}

.category-play-button:hover {
  background: rgba(0, 157, 183, 0.92);
  transform: translate(-50%, -50%) scale(1.04);
}

.category-player.is-playing .category-play-button,
.category-play-button[hidden] {
  display: none;
}

.category-play-button span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid currentColor;
}

.project-image[class*="cover-"],
.case-media[class*="cover-"],
.category-player[class*="cover-"],
.featured-post-media[class*="cover-"],
.post-image[class*="cover-"] {
  background-position: center;
  background-size: cover;
}

.cover-institucionais {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.08), rgba(3, 18, 23, 0.28)),
    url("assets/thumb-institucionais.jpg");
}

.cover-podcasts {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.08), rgba(3, 18, 23, 0.28)),
    url("assets/thumb-podcasts.jpg");
}

.cover-igreja {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.08), rgba(3, 18, 23, 0.28)),
    url("assets/thumb-igreja.jpg");
}

.cover-fashion-film {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.08), rgba(3, 18, 23, 0.28)),
    url("assets/thumb-fashion-film.jpg");
}

.cover-music {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.08), rgba(3, 18, 23, 0.28)),
    url("assets/thumb-music.jpg");
}

.cover-documentarios {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.08), rgba(3, 18, 23, 0.28)),
    url("assets/thumb-documentarios.jpg");
}

.cover-redes-sociais {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.08), rgba(3, 18, 23, 0.28)),
    url("assets/thumb-redes-sociais.jpg");
}

.cover-eventos {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.08), rgba(3, 18, 23, 0.28)),
    url("assets/thumb-eventos.jpg");
}

.cover-casamentos {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.08), rgba(3, 18, 23, 0.28)),
    url("assets/thumb-casamentos.jpg");
}

.cover-aulas {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.08), rgba(3, 18, 23, 0.28)),
    url("assets/thumb-aulas.jpg");
}

.cover-lab-podcast {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.02), rgba(3, 18, 23, 0.36)),
    url("assets/labs-podcast-hero.jpg");
}

.cover-lab-streaming {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.02), rgba(3, 18, 23, 0.38)),
    url("assets/labs-streaming-hero.jpg");
}

.cover-lab-camera-lente {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.02), rgba(3, 18, 23, 0.38)),
    url("assets/labs-camera-lente-hero.jpg");
}

.cover-lab-briefing {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.02), rgba(3, 18, 23, 0.38)),
    url("assets/labs-briefing-hero.jpg");
}

.cover-lab-produtora-sp {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.02), rgba(3, 18, 23, 0.38)),
    url("assets/labs-produtora-sp-hero-v2.jpg");
}

.cover-lab-conteudo-marca {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.02), rgba(3, 18, 23, 0.38)),
    url("assets/labs-conteudo-marca-hero.jpg");
}

.cover-lab-documental {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.02), rgba(3, 18, 23, 0.38)),
    url("assets/labs-documental-humano-hero.jpg");
}

.cover-lab-aulas {
  background-image:
    linear-gradient(180deg, rgba(3, 18, 23, 0.02), rgba(3, 18, 23, 0.38)),
    url("assets/labs-aulas-clareza-hero.jpg");
}

.case-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.case-card.large .case-media {
  aspect-ratio: 16 / 11;
}

.case-text p,
.post-card p {
  margin: 12px 0 0;
  color: rgba(1, 46, 58, 0.72);
}

.labs-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: rgba(239, 244, 244, 0.56);
}

.labs-filter {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
  max-width: 320px;
}

.labs-filter h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
}

.labs-filter p {
  margin: 0 0 12px;
  color: rgba(1, 46, 58, 0.68);
  font-size: 0.95rem;
}

.labs-filter a {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  transition:
    color 180ms ease,
    padding-left 180ms ease;
}

.labs-filter a:hover {
  color: var(--teal);
  padding-left: 8px;
}

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

.labs-post-grid {
  align-items: stretch;
}

.post-card a {
  min-height: 280px;
  align-content: start;
}

.lab-post-card a {
  grid-template-rows: auto 1fr;
  padding: 0;
}

.post-image {
  position: relative;
  min-height: 210px;
  aspect-ratio: 16 / 9;
  background-color: var(--deep);
}

.post-image::after,
.featured-post-media::after {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(3, 18, 23, 0.04), rgba(3, 18, 23, 0.34)),
    repeating-linear-gradient(90deg, rgba(206, 236, 241, 0.14) 0 1px, transparent 1px 42px);
  content: "";
}

.post-card-copy {
  display: grid;
  align-content: start;
  padding: 22px;
}

.lab-post-card small {
  display: inline-flex;
  margin-top: 22px;
  color: rgba(2, 140, 164, 0.88);
}

.labs-contact {
  background:
    linear-gradient(135deg, rgba(1, 46, 58, 0.86), rgba(0, 157, 183, 0.28)),
    rgba(1, 46, 58, 0.72);
}

.article-page {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background: rgba(3, 18, 23, 0.66);
}

.article-page::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 12%, rgba(0, 157, 183, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(3, 18, 23, 0.16), rgba(3, 18, 23, 0.68));
  content: "";
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
  min-height: 92svh;
  padding: 150px clamp(20px, 5vw, 72px) clamp(54px, 7vw, 96px);
}

.article-hero-copy {
  display: grid;
  gap: 18px;
}

.article-back {
  width: fit-content;
  padding-bottom: 4px;
  color: var(--teal);
  border-bottom: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 6.4vw, 7.4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.article-hero p:not(.eyebrow),
.article-meta {
  max-width: 760px;
  color: rgba(239, 244, 244, 0.76);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-meta span {
  padding: 8px 10px;
  border: 1px solid rgba(206, 236, 241, 0.18);
  border-radius: 999px;
}

.article-hero-media {
  margin: 0;
}

.article-hero-media img,
.article-figure img {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.article-hero-media img {
  aspect-ratio: 16 / 10;
}

.article-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 920px);
  gap: clamp(28px, 5vw, 88px);
  align-items: start;
  justify-content: center;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: rgba(3, 18, 23, 0.36);
}

.article-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 10px;
  color: rgba(239, 244, 244, 0.72);
}

.article-sidebar h2 {
  margin: 0 0 10px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.article-sidebar a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(206, 236, 241, 0.14);
  font-weight: 700;
  transition:
    color 180ms ease,
    padding-left 180ms ease;
}

.article-sidebar a:hover {
  color: var(--teal);
  padding-left: 8px;
}

.article-body {
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  line-height: 1.82;
}

.article-body section {
  scroll-margin-top: 118px;
  margin-top: clamp(44px, 6vw, 76px);
}

.article-lede {
  margin-top: 0;
  color: var(--paper);
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.45;
}

.article-body p,
.article-body li {
  color: rgba(239, 244, 244, 0.78);
}

.article-body h2,
.article-body h3 {
  margin: 0 0 14px;
  color: var(--paper);
  font-family: var(--font-display);
  line-height: 1.04;
  text-transform: uppercase;
}

.article-body h2 {
  font-size: clamp(2rem, 3.8vw, 4.4rem);
}

.article-body h3 {
  margin-top: 32px;
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 22px;
}

.article-body blockquote {
  margin: 28px 0;
  padding: clamp(20px, 3vw, 30px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(0, 157, 183, 0.18), rgba(3, 18, 23, 0.72)),
    rgba(3, 18, 23, 0.58);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.8vw, 1.65rem);
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  border: 1px solid rgba(206, 236, 241, 0.16);
  border-radius: 8px;
}

.article-table-wrap table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: rgba(3, 18, 23, 0.66);
}

.article-table-wrap th,
.article-table-wrap td {
  padding: 16px;
  border-bottom: 1px solid rgba(206, 236, 241, 0.12);
  text-align: left;
  vertical-align: top;
}

.article-table-wrap th {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-table-wrap td {
  color: rgba(239, 244, 244, 0.78);
}

.article-table-wrap tr:last-child td {
  border-bottom: 0;
}

.article-body strong {
  color: var(--paper);
}

.article-figure {
  margin: clamp(48px, 7vw, 88px) 0;
}

.article-figure img {
  aspect-ratio: 16 / 9;
}

.article-figure figcaption {
  margin-top: 12px;
  color: rgba(239, 244, 244, 0.62);
  font-size: 0.94rem;
}

.article-checklist,
.article-cta {
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgba(2, 140, 164, 0.2), rgba(3, 18, 23, 0.88)),
    #071b22;
  border: 1px solid rgba(206, 236, 241, 0.14);
  border-radius: 8px;
}

.article-checklist ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-left: 18px;
}

.streaming-checklist {
  display: grid;
  gap: 28px;
}

.checklist-group {
  display: grid;
  gap: 12px;
}

.checklist-group h3 {
  margin: 0;
}

.streaming-checklist .checklist-group ul {
  margin: 0;
}

.article-cta {
  display: grid;
  gap: 16px;
}

.article-cta h2 {
  margin: 0;
}

.article-cta .button {
  width: fit-content;
}

.article-related {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 0;
}

.article-related h2 {
  grid-column: 1 / -1;
}

.article-related a {
  padding: 16px;
  color: var(--paper);
  border: 1px solid rgba(206, 236, 241, 0.16);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.article-related a:hover {
  background: rgba(0, 157, 183, 0.16);
  border-color: rgba(0, 157, 183, 0.46);
  transform: translateY(-2px);
}

.contact-page {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(36px, 6vw, 88px);
  min-height: 100svh;
  padding-top: 158px;
  background:
    linear-gradient(90deg, rgba(239, 244, 244, 0.9), rgba(239, 244, 244, 0.76)),
    url("assets/icone-alpha.png") right -12vw bottom -12vw / min(70vw, 800px) auto no-repeat;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.contact-lines .social-icon {
  width: 18px;
  height: 18px;
}

.contact-lines.icon-only {
  gap: 12px;
}

.contact-lines.icon-only a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding-bottom: 0;
  color: var(--teal);
  border: 1px solid currentColor;
  border-radius: 999px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.contact-lines.icon-only a:hover {
  color: var(--white);
  background: var(--teal);
  transform: translateY(-2px);
}

.contact-lines.icon-only .social-icon {
  width: 21px;
  height: 21px;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  top: 50%;
  right: clamp(18px, 2.5vw, 34px);
  bottom: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 15px;
  max-width: calc(100vw - 36px);
  color: var(--white);
  background: rgba(2, 140, 164, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(1, 18, 23, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.whatsapp-float:hover {
  background: rgba(0, 157, 183, 0.98);
  box-shadow: 0 20px 48px rgba(1, 18, 23, 0.36);
  transform: translateY(calc(-50% - 2px));
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.whatsapp-float .social-icon {
  width: 19px;
  height: 19px;
}

.contact-form {
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(1, 46, 58, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 6px;
}

.contact-form textarea {
  resize: vertical;
}

/* Centered clapper opening for the Canoa home hero. */
.hero-home {
  min-height: min(94svh, 880px);
  place-items: center;
  text-align: center;
}

.hero-home .opening-sequence {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 22%, rgba(0, 157, 183, 0.28), transparent 34%),
    radial-gradient(circle at 50% 46%, rgba(206, 236, 241, 0.08), transparent 36%),
    linear-gradient(180deg, #031217 0%, var(--ink) 58%, #031217 100%);
}

:root[data-theme="light"] .hero-home .opening-sequence {
  background:
    radial-gradient(circle at 50% 22%, rgba(0, 157, 183, 0.18), transparent 34%),
    radial-gradient(circle at 50% 46%, rgba(1, 46, 58, 0.08), transparent 36%),
    linear-gradient(180deg, #f8fbfb 0%, var(--paper) 58%, #e8f0f1 100%);
}

.clapper-stage {
  position: absolute;
  top: clamp(116px, 13vh, 132px);
  left: 50%;
  z-index: 1;
  width: min(36vw, 400px);
  aspect-ratio: 1045 / 819;
  opacity: 0.94;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.46));
  transform: translateX(-50%);
  animation: clapperStageEntrance 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.clapper-body,
.clapper-top {
  position: absolute;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.clapper-body {
  top: 16.85%;
  left: 0;
  width: 100%;
}

.clapper-top {
  top: 0;
  left: 0;
  width: 95.02%;
  transform-origin: 3% 72%;
  animation: clapperTopAction 3600ms cubic-bezier(0.2, 0.82, 0.2, 1) 650ms infinite;
}

.hero-home .hero-copy {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 3.5vh, 36px);
  z-index: 2;
  width: min(940px, calc(100% - 40px));
  opacity: 1;
  transform: translateX(-50%);
  animation: none;
}

.hero-home .eyebrow {
  margin-bottom: 10px;
}

.hero-home h1 {
  margin-inline: auto;
  max-width: 940px;
  font-family: var(--font-cinema);
  font-size: clamp(2.35rem, 4.7vw, 4.75rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hero-home h1 span {
  display: block;
  white-space: nowrap;
  text-wrap: balance;
}

.hero-home h1 span + span {
  margin-top: 0.08em;
  font-size: 0.82em;
  letter-spacing: 0.12em;
}

.hero-home .hero-copy > p:not(.eyebrow) {
  margin-inline: auto;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
}

:root[data-theme="light"] .hero-home .hero-copy > p:not(.eyebrow) {
  color: rgba(1, 46, 58, 0.72);
}

.hero-home .hero-actions {
  justify-content: center;
}

.hero-home .frame-grid {
  opacity: 0.34;
}

.hero-home .cinema-layer {
  opacity: 0.22;
}

.hero-home .hero-symbol {
  opacity: 0.12;
}

.hero-home .film-ribbon {
  opacity: 0.22;
}

.hero-home .cine-prop {
  opacity: 0.16;
}

@keyframes clapperStageEntrance {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(24px) scale(0.9);
  }
  to {
    opacity: 0.94;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes clapperTopAction {
  0%,
  12%,
  100% {
    transform: rotate(0deg);
  }
  24% {
    transform: rotate(6deg);
  }
  34% {
    transform: rotate(-8deg);
  }
  46% {
    transform: rotate(1deg);
  }
  56% {
    transform: rotate(-1deg);
  }
}

@keyframes filmSlide {
  0% {
    background-position:
      0 0,
      0 0,
      0 0;
  }
  100% {
    background-position:
      152px 0,
      152px 0,
      0 0;
  }
}

@keyframes clapperEntrance {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(38px) scale(0.72) rotate(-2deg);
  }
  52% {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(-8px) scale(0.92) rotate(1deg);
  }
  72% {
    transform: translate(-50%, -50%) translateY(0) scale(0.86) rotate(-0.4deg);
  }
  100% {
    opacity: var(--opening-clapper-opacity);
    transform: translate(-50%, -50%) translateY(var(--opening-clapper-y)) scale(var(--opening-clapper-scale));
  }
}

@keyframes copyEntrance {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: var(--opening-copy-opacity);
    transform: translateY(0);
  }
}

@keyframes lightSweep {
  0%,
  100% {
    opacity: 0.18;
    transform: translateX(-5%) rotate(-4deg);
  }
  48% {
    opacity: 0.48;
    transform: translateX(9%) rotate(5deg);
  }
}

@keyframes irisTurn {
  from {
    transform: rotate(0deg) scale(0.98);
  }
  to {
    transform: rotate(360deg) scale(0.98);
  }
}

@keyframes propFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@keyframes waterImageDrift {
  0% {
    transform: translate3d(-1.5%, 0, 0) scale(1.06);
  }
  50% {
    transform: translate3d(1.5%, -0.8%, 0) scale(1.095);
  }
  100% {
    transform: translate3d(-1.5%, 0, 0) scale(1.06);
  }
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .section-intro,
  .about-section,
  .article-list a,
  .labs-layout,
  .featured-post,
  .article-hero,
  .article-shell,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .portfolio-board,
  .services-page,
  .service-strip,
  .social-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .service-strip {
    gap: 10px;
    padding-block: 0;
  }

  .service-strip::after {
    display: none;
  }

  .service-strip a {
    min-height: 176px;
    border-radius: 8px;
    clip-path: none;
    transform: none;
  }

  .service-strip a::before {
    opacity: 1;
  }

  .service-strip a span {
    opacity: 1;
    transform: none;
  }

  .service-strip a:hover {
    transform: translateY(-3px);
  }

  .case-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .labs-filter {
    position: static;
    max-width: none;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(206, 236, 241, 0.16);
  }

  .labs-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 30px;
  }

  .featured-post-media {
    min-height: 300px;
  }

  .article-hero {
    min-height: auto;
    padding-top: 124px;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(206, 236, 241, 0.16);
  }

  .article-sidebar h2 {
    grid-column: 1 / -1;
  }

  .article-checklist ul,
  .article-related {
    grid-template-columns: 1fr;
  }

  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .reel-section::before,
  .work-preview::before,
  .services-preview::before,
  .about-section::before,
    .labs-preview::before,
    .social-section::before,
    .contact-band::before,
    .portfolio-board::before,
    .services-page::before,
    .labs-featured::before,
    .labs-layout::before {
    background:
      radial-gradient(circle at 50% 0, rgba(0, 157, 183, 0.08), transparent 40%),
      linear-gradient(180deg, rgba(3, 18, 23, 0.16), rgba(3, 18, 23, 0.28));
  }

  :root[data-theme="light"] .reel-section::before,
  :root[data-theme="light"] .work-preview::before,
  :root[data-theme="light"] .services-preview::before,
  :root[data-theme="light"] .about-section::before,
  :root[data-theme="light"] .labs-preview::before,
  :root[data-theme="light"] .social-section::before,
  :root[data-theme="light"] .contact-band::before,
  :root[data-theme="light"] .portfolio-board::before,
  :root[data-theme="light"] .services-page::before,
  :root[data-theme="light"] .labs-layout::before {
    background:
      radial-gradient(circle at 50% 0, rgba(0, 157, 183, 0.07), transparent 40%),
      linear-gradient(180deg, rgba(239, 244, 244, 0.34), rgba(239, 244, 244, 0.52));
  }

  .prop-camera,
  .prop-clapper,
  .prop-mic {
    opacity: 0.22;
    scale: 0.78;
  }

  .prop-light {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 14px 18px;
  }

  .brand-mark {
    width: 138px;
  }

  .mobile-nav {
    top: 68px;
  }

  .reel-top {
    min-height: 66svh;
    align-content: center;
    padding-top: 94px;
    padding-bottom: 38px;
  }

  .reel-top .section-intro.compact-intro {
    margin-bottom: 14px;
    padding-top: 16px;
  }

  .reel-top .reel-player.video-embed {
    border-radius: 8px;
  }

  .hero-home {
    min-height: 860px;
    padding-top: 110px;
  }

  .clapper-stage {
    top: 112px;
    width: min(86vw, 360px);
    opacity: 0.9;
  }

  .hero-home .hero-copy {
    bottom: 42px;
    width: min(350px, calc(100% - 40px));
  }

  .hero-home h1 {
    font-size: clamp(2.05rem, 8.8vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0.025em;
  }

  .hero-home h1 span {
    white-space: normal;
  }

  .hero-home h1 span + span {
    margin-top: 0.12em;
    font-size: 0.78em;
    letter-spacing: 0.08em;
  }

  .hero-home .hero-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .hero h1,
  .page-hero h1,
  .contact-page h1 {
    font-size: clamp(2.48rem, 12vw, 4.2rem);
  }

  .hero-home h1 {
    font-size: clamp(2.05rem, 8.8vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0.025em;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .page-hero,
  .labs-featured,
  .article-shell,
  .contact-page {
    padding-top: 124px;
  }

  .labs-hero {
    padding-bottom: 58px;
  }

  .labs-hero h1 {
    font-size: clamp(2.32rem, 10.6vw, 3.7rem);
  }

  .labs-hero-copy {
    gap: 15px;
  }

  .labs-hero-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .labs-hero-tags span {
    width: 100%;
    justify-content: center;
    min-height: 36px;
    text-align: center;
  }

  .labs-hero-visual {
    gap: 10px;
  }

  .labs-hero-visual::before {
    inset: -10px;
  }

  .labs-hero-card,
  .labs-hero-card-main {
    grid-column: 1 / -1;
    min-height: 188px;
    padding: 18px;
  }

  .labs-hero-card-main {
    min-height: 250px;
  }

  .labs-hero-card strong,
  .labs-hero-card:not(.labs-hero-card-main) strong {
    font-size: clamp(1.16rem, 6vw, 1.7rem);
  }

  .labs-hero-index {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .featured-post {
    min-height: 0;
  }

  .featured-post-media,
  .post-image {
    min-height: 220px;
  }

  .featured-post-copy,
  .post-card-copy {
    padding: 20px;
  }

  .featured-post-copy h2 {
    font-size: clamp(1.7rem, 8.6vw, 3rem);
  }

  .article-hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.85rem);
    line-height: 0.98;
  }

  .article-meta span {
    width: 100%;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-body {
    font-size: 1rem;
    line-height: 1.72;
  }

  .article-body h2 {
    font-size: clamp(1.8rem, 9vw, 3.2rem);
  }

  .article-cta .button {
    width: 100%;
  }

  .contact-form {
    padding: 18px;
  }

  .whatsapp-float {
    top: 50%;
    right: 14px;
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    gap: 0;
    transform: translateY(-50%);
  }

  .whatsapp-float:hover {
    transform: translateY(calc(-50% - 2px));
  }

  .whatsapp-float span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .film-ribbon {
    top: 92px;
    right: -220px;
  }

  .lens-orbit {
    right: -24px;
    bottom: 180px;
    width: 170px;
  }

  .prop-camera {
    top: 18%;
    right: -14px;
  }

  .prop-clapper {
    right: 4%;
    bottom: 16%;
  }

  .prop-mic {
    display: none;
  }
}

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

  body::before,
  body::after {
    animation: none !important;
  }

  .reel-section::before,
  .work-preview::before,
  .services-preview::before,
  .about-section::before,
  .labs-preview::before,
  .social-section::before,
  .contact-band::before,
  .portfolio-board::before,
  .services-page::before,
  .labs-layout::before {
    animation: none !important;
  }
}
