:root {
  --ink: #080808;
  --ink-soft: #151515;
  --paper: #efede6;
  --paper-bright: #f8f6ef;
  --red: #ff1427;
  --red-dark: #bd0014;
  --blue: #1545ff;
  --line: rgba(8, 8, 8, .18);
  --gutter: clamp(1rem, 4vw, 4.5rem);
  --header-h: 86px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--red) var(--ink);
}

section[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

::selection { background: var(--red); color: #fff; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 20000;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  background: #fff;
  color: #000;
  transform: translateY(-180%);
}

.skip-link:focus { transform: none; }

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

@keyframes noise-shift {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(3%, -2%, 0); }
  50% { transform: translate3d(-2%, 3%, 0); }
  75% { transform: translate3d(1%, 4%, 0); }
  100% { transform: translate3d(-4%, -1%, 0); }
}

.loader {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--red);
  color: var(--ink);
  transition: transform .8s cubic-bezier(.77, 0, .18, 1), visibility .8s;
  animation: loader-fallback .8s 3.5s both;
}

body.is-loaded .loader {
  transform: translateY(-105%);
  visibility: hidden;
  animation: none;
}

@keyframes loader-fallback { to { transform: translateY(-105%); visibility: hidden; } }

.loader__mark {
  position: relative;
  width: min(42vw, 280px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.loader__mark img { width: 100%; height: 100%; object-fit: cover; }

.loader__scan {
  position: absolute;
  inset: -20% 0 auto;
  height: 15%;
  background: #fff;
  mix-blend-mode: difference;
  animation: scan 1.1s linear infinite;
}

@keyframes scan { to { transform: translateY(760%); } }

.loader__bottom {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  left: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 2px solid var(--ink);
  padding-top: .7rem;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.loader__bottom strong {
  font-family: var(--display);
  font-size: clamp(4rem, 13vw, 9rem);
  line-height: .8;
  letter-spacing: -.04em;
}

.cursor {
  position: fixed;
  z-index: 9995;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  pointer-events: none;
  transform: translate3d(-40px, -40px, 0);
  transition: width .25s, height .25s, background .25s;
  mix-blend-mode: difference;
}

.cursor span {
  opacity: 0;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.cursor.is-active { width: 72px; height: 72px; mix-blend-mode: normal; }
.cursor.is-active span { opacity: 1; }

.custom-cursor-active,
.custom-cursor-active * { cursor: none !important; }

.scroll-progress {
  position: fixed;
  z-index: 9980;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: transparent;
}

.scroll-progress span { display: block; width: 0; height: 100%; background: var(--red); }

.site-header {
  position: fixed;
  z-index: 9000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  color: #fff;
  transition: height .35s, background .35s, backdrop-filter .35s, transform .35s;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(8, 8, 8, .87);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: .8;
  letter-spacing: .02em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
}

.brand small {
  display: block;
  margin-top: .22rem;
  font-family: var(--body);
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.main-nav { display: flex; align-items: center; gap: clamp(1.3rem, 3vw, 3.4rem); }

.main-nav > a:not(.nav-cta) {
  position: relative;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.5rem;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}

.main-nav > a:hover::after, .main-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  border: 1px solid rgba(255,255,255,.65);
  padding: .75rem 1rem;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .25s, background .25s;
}

.nav-cta:hover { background: #fff; color: var(--ink); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: max(790px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(255,20,39,.14), transparent 30%),
    linear-gradient(115deg, #090909 0 65%, #111 65% 100%);
}

.hero__grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 6.25vw 6.25vw;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero__meta {
  position: absolute;
  z-index: 4;
  top: 110px;
  right: var(--gutter);
  left: var(--gutter);
  display: flex;
  justify-content: space-between;
  padding-top: .8rem;
  border-top: 1px solid rgba(255,255,255,.35);
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.hero__visual {
  position: absolute;
  z-index: 1;
  right: 1vw;
  bottom: 54px;
  width: min(53vw, 820px);
  height: calc(100% - 115px);
  pointer-events: none;
}

.hero__person {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(48vw, 720px);
  height: 89%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.9) contrast(1.08) brightness(.72);
  clip-path: polygon(14% 0, 100% 5%, 94% 100%, 0 93%);
}

.hero__visual::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 0 0 5%;
  height: 35%;
  background: linear-gradient(transparent, rgba(8,8,8,.98));
}

.hero__halo {
  position: absolute;
  z-index: 1;
  top: 15%;
  right: 6%;
  width: 78%;
  aspect-ratio: 1;
  border: clamp(12px, 2vw, 30px) solid var(--red);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(255,20,39,.36), inset 0 0 60px rgba(255,20,39,.24);
  transform: rotate(-16deg);
}

.hero__halo::before, .hero__halo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -14%;
  width: 128%;
  height: 5px;
  background: var(--red);
  box-shadow: 0 -40px 0 rgba(255,20,39,.4), 0 40px 0 rgba(255,20,39,.4);
}

.hero__halo::after { transform: rotate(90deg); }

.hero__stamp {
  position: absolute;
  z-index: 5;
  top: 19%;
  right: 1%;
  width: 112px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  animation: rotate 14s linear infinite;
}

.hero__stamp::before {
  content: "S";
  position: absolute;
  inset: 22%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 2.3rem;
}

.hero__stamp span { opacity: 0; }
@keyframes rotate { to { transform: rotate(360deg); } }

.hero__tag {
  position: absolute;
  z-index: 5;
  right: 10%;
  bottom: 10%;
  border: 1px solid rgba(255,255,255,.75);
  padding: .4rem .5rem;
  font-family: monospace;
  font-size: .65rem;
  line-height: 1.15;
}

.hero__copy {
  position: relative;
  z-index: 3;
  width: min(74vw, 1120px);
  padding: clamp(220px, 25vh, 280px) 0 145px var(--gutter);
}

.eyebrow {
  margin: 0 0 1.2rem;
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.hero__title {
  position: relative;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(6rem, 12.5vw, 12.5rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: .005em;
  text-transform: uppercase;
  text-wrap: nowrap;
}

.title-line { display: block; transform: translateY(115%); }
.title-line:first-child { transition: transform .9s .42s cubic-bezier(.16,1,.3,1); }
.title-line:nth-child(2) { transition: transform .9s .53s cubic-bezier(.16,1,.3,1); }
body.is-loaded .title-line { transform: none; }
.hero__title { overflow: visible; padding: .08em 0 .2em; }
.title-line--red { margin-top: .13em; padding-left: .04em; color: var(--red); font-size: .52em; line-height: 1; letter-spacing: .035em; }

.hero__intro {
  width: min(540px, 58vw);
  margin: 1.6rem 0 0;
  font-size: clamp(.95rem, 1.15vw, 1.15rem);
  color: rgba(255,255,255,.76);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0 0;
}

.button {
  position: relative;
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  border: 1px solid currentColor;
  padding: 1rem 1.15rem;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: color .35s, border-color .35s, background .35s;
}

.button span, .button b { position: relative; z-index: 1; }
.button b { font-size: 1rem; }
.button::before { content: ""; position: absolute; inset: 0; background: #fff; transform: translateY(103%); transition: transform .35s cubic-bezier(.16,1,.3,1); }
.button:hover::before, .button:focus-visible::before { transform: none; }
.button:hover { color: var(--ink); }
.button--red { border-color: var(--red); background: var(--red); }
.button--outline { color: #fff; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  border-bottom: 1px solid rgba(255,255,255,.65);
  padding-bottom: .25rem;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.text-link span { font-size: 1.1rem; transition: transform .25s; }
.text-link:hover span { transform: translate(.22rem, .22rem); }

.hero__rail {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  background: var(--red);
  color: var(--ink);
  transform: rotate(-.35deg) scale(1.01);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  padding: .65rem 0;
  animation: ticker 31s linear infinite;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: .04em;
  will-change: transform;
}

.ticker-group { display: flex; flex: none; align-items: center; gap: 1.4rem; padding-right: 1.4rem; }
.ticker-group i { flex: none; font-family: serif; font-style: normal; }
@keyframes ticker { to { transform: translate3d(-50%, 0, 0); } }

.hero__scribble {
  position: absolute;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.16);
  font-family: var(--display);
  font-size: clamp(12rem, 30vw, 36rem);
  line-height: .7;
  transform: rotate(-8deg);
  user-select: none;
}

.hero__scribble--one { top: 20%; left: -3%; }
.hero__scribble--two { right: -8%; bottom: 8%; font-size: clamp(9rem, 20vw, 26rem); transform: rotate(7deg); }

.section { position: relative; padding: clamp(6rem, 10vw, 11rem) var(--gutter); }
.section--black { background: var(--ink); color: #fff; }

.section-index {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
  font-size: .62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.section-index::after { content: ""; width: min(12vw, 140px); height: 1px; margin-left: .6rem; background: currentColor; opacity: .45; }
.section-index span { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid currentColor; border-radius: 50%; }
.section-index--light { color: rgba(255,255,255,.75); }

.manifesto { overflow: hidden; background: var(--paper); }
.manifesto::after { content: "SPIDER"; position: absolute; top: 1rem; right: -2rem; color: transparent; -webkit-text-stroke: 1px rgba(8,8,8,.09); font-family: var(--display); font-size: 18vw; line-height: 1; pointer-events: none; }

.manifesto__headline { position: relative; z-index: 1; max-width: 1320px; }

.display {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8.5vw, 9.5rem);
  font-weight: 900;
  line-height: .97;
  letter-spacing: .002em;
  word-spacing: .045em;
  text-transform: uppercase;
}

.display em { color: var(--red); font-style: normal; }
.display--wide { font-size: clamp(4rem, 10vw, 11rem); }

.manifesto__body {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) 1.18fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  margin-top: clamp(4rem, 8vw, 8rem);
}

.manifesto__portrait {
  position: relative;
  min-height: 660px;
  background: var(--red);
  transform: rotate(-2.5deg);
}

.manifesto__portrait::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 1rem;
  border: 1px solid rgba(255,255,255,.8);
  pointer-events: none;
}

.manifesto__portrait img { width: 100%; height: 100%; min-height: 660px; object-fit: cover; object-position: 52% center; filter: saturate(.84) contrast(1.08); }

.photo-label {
  position: absolute;
  z-index: 3;
  right: -1.4rem;
  bottom: 3rem;
  padding: .8rem 1rem;
  background: var(--red);
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: .85;
  transform: rotate(5deg);
}

.photo-code { position: absolute; z-index: 3; top: 2rem; left: 2rem; padding: .25rem .4rem; background: var(--ink); color: #fff; font-family: monospace; font-size: .65rem; }

.manifesto__copy { max-width: 680px; padding-right: 4vw; }
.manifesto__copy p { margin: 0 0 1.5rem; max-width: 60ch; color: rgba(8,8,8,.68); }
.manifesto__copy .lead { color: var(--ink); font-size: clamp(1.45rem, 2.2vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -.025em; }

.facts { margin: 3.5rem 0 0; border-top: 2px solid var(--ink); }
.facts div { display: grid; grid-template-columns: 35% 65%; border-bottom: 1px solid var(--line); padding: 1rem 0; }
.facts dt { font-size: .6rem; font-weight: 900; letter-spacing: .14em; }
.facts dd { margin: 0; font-weight: 800; }

.works { overflow: hidden; }
.works::before { content: ""; position: absolute; inset: 0; opacity: .18; background: radial-gradient(circle at 80% 5%, var(--red), transparent 25%); pointer-events: none; }

.works__head { display: grid; grid-template-columns: 1fr minmax(250px, 390px); gap: 3rem; align-items: end; margin-bottom: clamp(4rem, 7vw, 7rem); }
.works__head p { margin: 0 0 .8rem; color: rgba(255,255,255,.62); }

.work-wall {
  columns: 5 220px;
  column-gap: clamp(.7rem, 1.15vw, 1.15rem);
}

.work-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(.7rem, 1.15vw, 1.15rem);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #222;
  break-inside: avoid;
  isolation: isolate;
}

.work-card__image { width: 100%; height: auto; }
.work-card::before { content: ""; position: absolute; z-index: 1; inset: 35% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.9)); pointer-events: none; }
.work-card::after { content: "AMPLIAR +"; position: absolute; top: 50%; left: 50%; padding: .7rem .9rem; background: var(--red); color: #fff; font-size: .6rem; font-weight: 900; letter-spacing: .1em; transform: translate(-50%, -20%) scale(.7); opacity: 0; transition: opacity .3s, transform .4s cubic-bezier(.16,1,.3,1); }
.work-card:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(-2deg); }

.work-card__meta { position: absolute; z-index: 2; right: .85rem; bottom: .85rem; left: .85rem; display: flex; align-items: flex-end; justify-content: space-between; gap: .7rem; color: #fff; }
.work-card__meta b { max-width: 72%; font-family: var(--display); font-size: clamp(1.1rem, 1.55vw, 1.8rem); line-height: .96; letter-spacing: .02em; }
.work-card__meta small { max-width: 40%; font-size: .47rem; font-weight: 900; text-align: right; letter-spacing: .1em; }
.work-card__number { position: absolute; z-index: 2; top: .65rem; left: .65rem; display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; color: #fff; background: rgba(0,0,0,.18); backdrop-filter: blur(5px); font-family: monospace; font-size: .56rem; }
.works-more {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.2rem, 3vw, 3.5rem);
  align-items: center;
  margin-top: clamp(3rem, 6vw, 6rem);
  padding: clamp(1.4rem, 3vw, 2.6rem);
  border: 1px solid rgba(255,255,255,.28);
  background: linear-gradient(110deg, rgba(255,23,28,.18), rgba(255,255,255,.03) 48%), #111;
  overflow: hidden;
}
.works-more::before { content: ""; position: absolute; right: 16%; bottom: -65px; width: 210px; aspect-ratio: 1; border: 1px solid rgba(255,23,28,.45); border-radius: 50%; box-shadow: 0 0 0 28px rgba(255,23,28,.08), 0 0 0 56px rgba(255,23,28,.04); pointer-events: none; }
.works-more__stamp { position: relative; z-index: 1; display: grid; place-items: center; width: clamp(92px, 10vw, 132px); aspect-ratio: 1; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--display); font-size: clamp(.85rem, 1.1vw, 1.15rem); line-height: .9; text-align: center; rotate: -8deg; }
.works-more__copy { position: relative; z-index: 1; }
.works-more__copy p { margin: 0 0 .55rem; color: rgba(255,255,255,.58); font-size: .58rem; font-weight: 900; letter-spacing: .16em; }
.works-more__copy h3 { margin: 0; color: #fff; font-family: var(--display); font-size: clamp(2rem, 4vw, 4.5rem); line-height: 1; letter-spacing: .015em; }
.works-more__copy em { color: var(--red); font-style: normal; }
.works-more__link { position: relative; z-index: 1; min-width: min(100%, 250px); color: #fff; }

.lightbox-open { overflow: hidden; }
.portfolio-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: clamp(3.6rem, 6vw, 5.5rem) clamp(1rem, 5vw, 5rem) clamp(1rem, 3vw, 2.2rem);
  border: 0;
  background: rgba(5,5,5,.96);
  color: #fff;
  overflow: hidden;
}
.portfolio-lightbox[open] { display: grid; grid-template-columns: minmax(48px, 1fr) minmax(0, auto) minmax(48px, 1fr); align-items: center; }
.portfolio-lightbox::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(8px); }
.portfolio-lightbox__figure { display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: .8rem; max-width: min(76vw, 980px); height: 100%; min-height: 0; margin: 0 auto; }
.portfolio-lightbox__figure img { width: auto; max-width: 100%; height: 100%; min-height: 0; margin: auto; object-fit: contain; box-shadow: 0 0 0 1px rgba(255,255,255,.14), 18px 18px 0 rgba(255,23,28,.2); }
.portfolio-lightbox__figure figcaption { display: grid; grid-template-columns: 1fr auto auto; gap: 1rem; align-items: baseline; text-transform: uppercase; }
.portfolio-lightbox__figure b { font-family: var(--display); font-size: clamp(1.45rem, 2.4vw, 2.5rem); line-height: .9; }
.portfolio-lightbox__figure span, .portfolio-lightbox__figure small { color: rgba(255,255,255,.62); font-size: .56rem; font-weight: 900; letter-spacing: .12em; }
.portfolio-lightbox__close, .portfolio-lightbox__nav { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.42); background: #0b0b0b; color: #fff; cursor: pointer; }
.portfolio-lightbox__close { top: 1rem; right: 1rem; padding: .72rem .9rem; font-size: .58rem; font-weight: 900; letter-spacing: .12em; }
.portfolio-lightbox__nav { position: relative; justify-self: start; display: grid; place-items: center; width: clamp(44px, 5vw, 66px); aspect-ratio: 1; border-radius: 50%; font-size: 1.2rem; }
.portfolio-lightbox__nav--next { justify-self: end; }
.portfolio-lightbox__close:hover, .portfolio-lightbox__nav:hover { border-color: var(--red); background: var(--red); }

.cbv-case {
  position: relative;
  overflow: hidden;
  background: #f8f3e9;
  color: #082f1a;
  isolation: isolate;
}

.cbv-case::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: -7vw;
  width: 54vw;
  height: 18px;
  background: linear-gradient(90deg, #008c4d 0 50%, #ffda00 50%);
  transform: skewX(-38deg);
}

.cbv-case__court {
  position: absolute;
  z-index: 0;
  right: -12%;
  bottom: -19%;
  left: -12%;
  height: 60%;
  opacity: .2;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), #008c4d calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    repeating-linear-gradient(90deg, transparent 0 10.8%, #008c4d 10.8% 11%),
    repeating-linear-gradient(0deg, transparent 0 24.7%, #ffcc00 24.7% 25%);
  transform: perspective(700px) rotateX(58deg);
  transform-origin: bottom;
  pointer-events: none;
}

.cbv-case__inner { position: relative; z-index: 2; }
.cbv-case .section-index { border-color: rgba(8,47,26,.25); }
.cbv-case .section-index span,
.cbv-case .display em { color: #008c4d; }

.cbv-case__ball-stage {
  position: absolute;
  z-index: 1;
  top: clamp(7rem, 10vw, 11rem);
  right: clamp(-15rem, -15vw, -9rem);
  width: clamp(300px, 36vw, 610px);
  pointer-events: none;
}

.cbv-case__ball {
  width: 100%;
  opacity: .96;
  animation: volley-float 5.4s ease-in-out infinite;
}

@keyframes volley-float {
  0%, 100% { translate: 0 0; rotate: -1deg; }
  50% { translate: -1.1rem -1.3rem; rotate: 2deg; }
}

.cbv-case__head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
}

.cbv-case__head > div:first-child { max-width: 900px; }
.cbv-case__copy { padding-bottom: .85rem; }
.cbv-case__copy > p { margin: 0 0 2rem; max-width: 48ch; color: rgba(8,47,26,.74); font-size: clamp(1rem, 1.35vw, 1.24rem); font-weight: 700; line-height: 1.45; }

.cbv-facts { margin: 0; border-top: 2px solid #082f1a; }
.cbv-facts div { display: grid; grid-template-columns: 34% 66%; gap: 1rem; padding: .72rem 0; border-bottom: 1px solid rgba(8,47,26,.22); }
.cbv-facts dt { font-size: .52rem; font-weight: 900; letter-spacing: .13em; }
.cbv-facts dd { margin: 0; font-size: .72rem; font-weight: 900; text-align: right; text-transform: uppercase; }

.cbv-podium {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1.16fr 1fr;
  gap: clamp(.8rem, 2vw, 2.2rem);
  align-items: end;
  margin-top: clamp(6rem, 10vw, 10rem);
  padding: 0 clamp(.4rem, 2vw, 2rem) 3rem;
}

.cbv-podium::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8vw;
  bottom: 0;
  left: -8vw;
  height: 32%;
  border-top: 3px solid #008c4d;
  background: linear-gradient(135deg, rgba(0,140,77,.1), rgba(255,218,0,.17));
  transform: skewY(-1.4deg);
}

.cbv-card {
  position: relative;
  margin: 0;
  border: 3px solid #082f1a;
  background: #fff;
  box-shadow: 12px 16px 0 #ffda00;
  rotate: -1deg;
  transition: translate .45s cubic-bezier(.16,1,.3,1), rotate .45s cubic-bezier(.16,1,.3,1), box-shadow .45s;
}

.cbv-card--center { margin-bottom: clamp(2.5rem, 5vw, 5.5rem); box-shadow: 16px 22px 0 #008c4d; rotate: .8deg; }
.cbv-card--right { margin-bottom: clamp(1rem, 2vw, 2rem); rotate: 1.4deg; }
.cbv-card:hover { translate: 0 -.8rem; rotate: 0deg; box-shadow: 18px 24px 0 #ffda00; }
.cbv-card--center:hover { box-shadow: 20px 28px 0 #008c4d; }

.cbv-card img { width: 100%; height: auto; }
.cbv-card figcaption { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 1rem 1rem; color: #082f1a; text-transform: uppercase; }
.cbv-card figcaption span { font-size: .5rem; font-weight: 900; letter-spacing: .13em; }
.cbv-card figcaption b { font-family: var(--display); font-size: clamp(1.05rem, 1.55vw, 1.65rem); line-height: .95; text-align: right; letter-spacing: .02em; }
.cbv-card::after { content: attr(data-rank); position: absolute; right: -.45rem; bottom: 2.9rem; color: #f8f3e9; -webkit-text-stroke: 1px #082f1a; font-family: var(--display); font-size: clamp(4rem, 7vw, 7.5rem); line-height: .75; pointer-events: none; }

.cbv-case__baseline { position: relative; z-index: 3; display: flex; align-items: center; gap: 1rem; border-top: 2px solid #082f1a; padding-top: .85rem; font-size: .58rem; font-weight: 900; letter-spacing: .14em; }
.cbv-case__baseline i { height: 4px; flex: 1; background: linear-gradient(90deg, #008c4d 0 49%, #ffda00 49% 51%, #008c4d 51%); }

.bda-case { position: relative; overflow: hidden; background: var(--red); color: var(--ink); }
.bda-case::before { content: ""; position: absolute; inset: 0; opacity: .18; background: repeating-linear-gradient(-24deg, transparent 0 30px, rgba(0,0,0,.14) 30px 31px); }
.bda-case__outline { position: absolute; top: 50%; right: -2vw; color: transparent; -webkit-text-stroke: 2px rgba(8,8,8,.22); font-family: var(--display); font-size: 40vw; line-height: .65; transform: translateY(-44%); }
.bda-case__content { min-height: 760px; display: flex; flex-direction: column; justify-content: space-between; }
.bda-case__main { position: relative; z-index: 1; display: grid; grid-template-columns: 1.45fr .55fr; gap: 5vw; align-items: end; }
.bda-case__copy { padding-bottom: .7rem; }
.bda-case__copy p { margin: 0 0 2rem; font-size: clamp(1.05rem, 1.5vw, 1.35rem); font-weight: 700; line-height: 1.35; }
.text-link--dark { border-color: var(--ink); }

.bda-case__film { position: relative; z-index: 2; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: .7rem 0; font-family: monospace; font-size: .62rem; font-weight: 900; }
.bda-case__film > div { display: flex; justify-content: space-between; }
.bda-case__film > div:nth-child(2) { gap: .9vw; margin: .6rem 0; overflow: hidden; }
.bda-case__film i { flex: 0 0 7%; aspect-ratio: 1.65; border: 1px solid var(--ink); background: rgba(255,255,255,.12); }

.services { overflow: hidden; background: var(--paper); }
.services__head { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }

.slider-controls { display: flex; gap: .5rem; padding-bottom: .5rem; }
.slider-controls button { width: 54px; height: 54px; border: 1px solid var(--ink); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.2rem; transition: background .25s, color .25s, transform .25s; }
.slider-controls button:hover { background: var(--ink); color: #fff; transform: rotate(-8deg); }

.service-slider {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: flex-start;
  margin: clamp(4rem, 7vw, 7rem) calc(var(--gutter) * -1) 0;
  padding: 0 var(--gutter) 2rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.service-slider:active { cursor: grabbing; }
.service-slider::-webkit-scrollbar { display: none; }

.service-card { position: relative; flex: 0 0 clamp(285px, 30vw, 470px); aspect-ratio: 3 / 4.25; overflow: hidden; background: var(--red-dark); color: #fff; scroll-snap-align: start; transition: transform .45s cubic-bezier(.16,1,.3,1); }
.service-card:nth-child(even) { margin-top: 2.5rem; }
.service-card:hover { transform: translateY(-.7rem) rotate(.6deg); }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1), filter .4s; }
.service-card:hover img { transform: scale(1.045); filter: brightness(.6); }
.service-card::after { content: ""; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.94)); }
.service-card > div { position: absolute; z-index: 2; right: 1.35rem; bottom: 1.35rem; left: 1.35rem; }
.service-card span { display: block; margin-bottom: .8rem; font-family: monospace; font-size: .65rem; }
.service-card h3 { margin: 0; font-family: var(--display); font-size: clamp(2.5rem, 4vw, 4.2rem); font-weight: 900; line-height: .94; letter-spacing: .008em; text-transform: uppercase; }
.service-card p { max-height: 0; margin: .75rem 0 0; overflow: hidden; color: rgba(255,255,255,.72); opacity: 0; transition: max-height .45s, opacity .4s; }
.service-card:hover p, .service-card:focus-within p { max-height: 90px; opacity: 1; }

.drag-note { display: flex; align-items: center; gap: .7rem; margin: 1.6rem 0 0; font-size: .6rem; font-weight: 900; letter-spacing: .13em; }
.drag-note span { font-size: 1.1rem; }

.process { overflow: hidden; }
.process::after { content: "HOW"; position: absolute; right: -2vw; bottom: -8vw; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.08); font-family: var(--display); font-size: 33vw; line-height: .6; pointer-events: none; }

.process-list { position: relative; z-index: 1; margin: clamp(4rem, 8vw, 8rem) 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.28); }
.process-list li { display: grid; grid-template-columns: 8% 27% 1fr auto; gap: 1rem; align-items: center; border-bottom: 1px solid rgba(255,255,255,.24); padding: clamp(1.6rem, 3vw, 3rem) 0; transition: padding .3s, background .3s; }
.process-list li:hover { padding-right: 1rem; padding-left: 1rem; background: var(--red); }
.process-list span { font-family: monospace; font-size: .7rem; }
.process-list h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 4vw, 4.2rem); line-height: .95; letter-spacing: .008em; text-transform: uppercase; }
.process-list p { max-width: 52ch; margin: 0; color: rgba(255,255,255,.58); }
.process-list li:hover p { color: rgba(255,255,255,.9); }
.process-list b { font-size: 1.6rem; }

.contact {
  position: relative;
  min-height: max(720px, 100svh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 8rem var(--gutter) 6rem;
  background: var(--red);
  color: var(--ink);
}

.contact::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(8,8,8,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(8,8,8,.17) 1px, transparent 1px); background-size: 8vw 8vw; }
.contact__mark { position: absolute; top: 50%; right: -8vw; width: min(58vw, 840px); transform: translateY(-50%) rotate(8deg); opacity: .14; mix-blend-mode: multiply; }
.contact__title { position: relative; margin: 0; font-family: var(--display); font-size: clamp(5rem, 14vw, 15rem); font-weight: 900; line-height: .88; letter-spacing: .002em; word-spacing: .035em; text-transform: uppercase; }
.contact__title em { color: #fff; font-style: normal; }

.contact__link {
  position: relative;
  width: min(760px, 68vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.2rem;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 1.2rem 0;
  font-size: clamp(1.15rem, 2vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  transition: padding .3s, color .3s, background .3s;
}

.contact__link:hover { padding-right: 1rem; padding-left: 1rem; background: var(--ink); color: #fff; }
.contact__link > span { display: flex; flex-direction: column; gap: .18rem; }
.contact__link small { font-family: var(--body); font-size: .42em; letter-spacing: .08em; }
.contact__link b { font-size: 1.6em; }

.contact__footer { position: absolute; right: var(--gutter); bottom: 1.4rem; left: var(--gutter); display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--ink); padding-top: .85rem; font-size: .58rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.contact__footer div { display: flex; gap: 1.3rem; }
.contact__footer a { border-bottom: 1px solid currentColor; }
.contact__footer .contact__credit { border-bottom: 0; color: rgba(8,8,8,.64); font-size: .52rem; letter-spacing: .08em; }
.contact__credit b { color: var(--ink); }

.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

.reveal-words { text-wrap: balance; }
.reveal-words .word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding: .16em .035em .2em;
  margin: -.16em -.035em -.2em;
}
.js .reveal-words .word { display: inline-block; transform: translateY(115%); transition: transform .75s cubic-bezier(.16,1,.3,1); }
.js .reveal-words.is-visible .word { transform: none; }
.js .reveal-words .word-wrap:nth-child(2n) .word { transition-delay: .05s; }
.js .reveal-words .word-wrap:nth-child(3n) .word { transition-delay: .1s; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

@media (max-width: 1100px) {
  :root { --header-h: 76px; }
  .hero__meta { top: 92px; }
  .hero__copy { width: 82vw; padding-top: 240px; }
  .hero__visual { right: -8vw; width: 66vw; opacity: .88; }
  .hero__person { width: 63vw; }
  .manifesto__body { grid-template-columns: .9fr 1.1fr; gap: 4rem; }
  .manifesto__portrait, .manifesto__portrait img { min-height: 560px; }
  .work-wall { columns: 4 200px; }
  .cbv-case__head { grid-template-columns: minmax(0, 1.15fr) minmax(270px, .85fr); gap: 3rem; }
  .bda-case__main { grid-template-columns: 1.25fr .75fr; }
}

@media (max-width: 820px) {
  .site-header { height: 72px; }
  .site-header.is-scrolled { height: 64px; }
  .menu-toggle { position: relative; z-index: 3; width: 44px; height: 44px; display: grid; place-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.55); background: var(--ink); color: #fff; }
  .menu-toggle span { width: 19px; height: 2px; display: block; background: currentColor; transition: transform .3s; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

  .main-nav { position: fixed; inset: 0; height: 100dvh; min-height: 100vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.2rem; padding: 6rem var(--gutter); background: var(--red); color: var(--ink); transform: translate3d(0,-110vh,0); transition: transform .55s cubic-bezier(.77,0,.18,1); }
  .menu-open .main-nav { transform: translate3d(0,0,0); }
  .main-nav > a:not(.nav-cta) { font-family: var(--display); font-size: clamp(3rem, 13vw, 6rem); line-height: .9; }
  .nav-cta { margin-top: 1rem; border-color: var(--ink); font-size: .75rem; }

  .hero { min-height: 860px; }
  .hero__meta { top: 90px; }
  .hero__meta span:nth-child(2) { display: none; }
  .hero__copy { width: 100%; padding-top: 200px; padding-right: var(--gutter); }
  .hero__title { font-size: clamp(4.6rem, 15vw, 8rem); }
  .hero__visual { right: -18vw; bottom: 46px; width: 87vw; height: 70%; opacity: .64; }
  .hero__person { width: 85vw; height: 85%; }
  .hero__intro { width: min(500px, 72vw); }

  .manifesto__body { grid-template-columns: 1fr; }
  .manifesto__portrait { width: min(88%, 520px); }
  .manifesto__copy { padding: 0; }
  .works__head { grid-template-columns: 1fr; }
  .works__head p { max-width: 60ch; }

  .work-wall { columns: 3 190px; }

  .cbv-case__head { grid-template-columns: 1fr; }
  .cbv-case__copy { max-width: 580px; }
  .cbv-case__ball-stage {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    height: clamp(250px, 48vw, 370px);
    margin: 2.8rem calc(var(--gutter) * -1) 0;
    overflow: hidden;
    border-top: 1px solid rgba(8,47,26,.18);
    border-bottom: 1px solid rgba(8,47,26,.18);
    background: linear-gradient(110deg, rgba(0,140,77,.08), transparent 48%, rgba(255,218,0,.14));
  }
  .cbv-case__ball-stage::before { content: "CBV / DESIGN EM MOVIMENTO"; position: absolute; z-index: 2; top: 1.4rem; left: var(--gutter); max-width: 12rem; color: #082f1a; font-size: .58rem; font-weight: 900; letter-spacing: .14em; }
  .cbv-case__ball-stage::after { content: ""; position: absolute; right: var(--gutter); bottom: 1.5rem; left: var(--gutter); height: 2px; background: linear-gradient(90deg, #008c4d 0 72%, #ffda00 72%); }
  .cbv-case__ball { position: absolute; top: 50%; right: -8vw; width: min(620px, 74vw); opacity: .94; transform: translateY(-50%); }
  .cbv-podium { margin-top: 3.5rem; gap: .65rem; padding-inline: 0; }
  .cbv-card { border-width: 2px; box-shadow: 7px 10px 0 #ffda00; }
  .cbv-card--center { margin-bottom: 2.5rem; box-shadow: 9px 13px 0 #008c4d; }
  .cbv-card figcaption { display: block; padding: .7rem; }
  .cbv-card figcaption span { display: block; margin-bottom: .35rem; }
  .cbv-card figcaption b { display: block; text-align: left; }

  .bda-case__content { min-height: 700px; }
  .bda-case__main { grid-template-columns: 1fr; }
  .bda-case__copy { max-width: 560px; }
  .bda-case__outline { font-size: 58vw; }

  .process-list li { grid-template-columns: 10% 34% 1fr auto; }
  .contact__footer > span:nth-child(2) { display: none; }
}

@media (max-width: 560px) {
  :root { --gutter: 1rem; }
  .noise { opacity: .035; }
  .brand span { font-size: 1rem; }
  .brand img { width: 34px; height: 34px; }

  .hero { min-height: 790px; }
  .hero__meta { right: 1rem; left: 1rem; font-size: .52rem; }
  .hero__visual { right: -33vw; bottom: 44px; width: 125vw; height: 69%; opacity: .52; }
  .hero__person { width: 115vw; height: 85%; }
  .hero__halo { right: 20%; width: 62%; }
  .hero__stamp { display: none; }
  .hero__copy { padding-top: 185px; padding-bottom: 108px; }
  .hero__title { font-size: clamp(4.7rem, 21vw, 6.6rem); line-height: .92; }
  .title-line--red { margin-top: .18em; padding-left: .02em; font-size: .47em; letter-spacing: .025em; }
  .hero__intro { width: 82vw; margin-top: 1.2rem; font-size: .9rem; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
  .button { min-width: 185px; }
  .ticker-track { font-size: .95rem; }

  .section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .section-index { margin-bottom: 3.2rem; }
  .display, .display--wide { font-size: clamp(3.3rem, 16vw, 5.5rem); line-height: .98; }
  .manifesto__headline .eyebrow { max-width: 80%; }
  .manifesto__body { margin-top: 3.5rem; gap: 3.3rem; }
  .manifesto__portrait, .manifesto__portrait img { min-height: 465px; }
  .manifesto__portrait { width: 92%; }
  .photo-label { right: -1rem; font-size: 1.3rem; }
  .manifesto__copy .lead { font-size: 1.35rem; }
  .facts div { grid-template-columns: 30% 70%; }

  .work-wall { columns: 2; column-gap: .65rem; }
  .work-card { margin-bottom: .65rem; }
  .work-card__meta { flex-direction: column; align-items: flex-start; }
  .work-card__meta b { max-width: 100%; font-size: 1.15rem; }
  .work-card__meta small { text-align: left; }
  .work-card::after { display: none; }
  .works-more { grid-template-columns: 1fr; padding: 1.2rem; }
  .works-more__stamp { width: 88px; }
  .works-more__copy h3 { font-size: clamp(2.25rem, 12vw, 3.8rem); }
  .works-more__link { width: 100%; }
  .portfolio-lightbox { padding: 4.5rem .8rem 1rem; overflow: auto; }
  .portfolio-lightbox[open] { grid-template-columns: 42px minmax(0, 1fr) 42px; }
  .portfolio-lightbox__figure { align-self: center; max-width: calc(100vw - 6.6rem); height: auto; max-height: none; }
  .portfolio-lightbox__figure img { width: 100%; height: auto; max-height: calc(100dvh - 11rem); }
  .portfolio-lightbox__figure figcaption { grid-template-columns: 1fr auto; }
  .portfolio-lightbox__figure span { grid-column: 1 / -1; grid-row: 2; }
  .portfolio-lightbox__nav { width: 38px; }

  .cbv-case .display { font-size: clamp(3.45rem, 15.7vw, 4.2rem); line-height: .92; }
  .cbv-case__head { gap: 2.6rem; }
  .cbv-case__copy > p { font-size: 1rem; line-height: 1.52; }
  .cbv-facts { margin-top: 2rem; }
  .cbv-facts div { grid-template-columns: 29% 71%; gap: .5rem; padding-block: .85rem; }
  .cbv-facts dd { font-size: .66rem; }
  .cbv-case__ball-stage { display: none; }
  .cbv-podium {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    gap: 1.2rem .8rem;
    margin: 2.8rem 0 0;
    padding: 1rem 0 2.3rem;
    overflow: visible;
  }
  .cbv-card { width: 100%; min-width: 0; margin: 0; rotate: 0deg; box-shadow: 5px 7px 0 #ffda00; }
  .cbv-card:hover { translate: 0; rotate: 0deg; box-shadow: 5px 7px 0 #ffda00; }
  .cbv-card--center { grid-column: 1 / -1; order: 1; justify-self: center; width: 84%; box-shadow: 8px 11px 0 #008c4d; }
  .cbv-card--center:hover { box-shadow: 8px 11px 0 #008c4d; }
  .cbv-card--left { order: 2; }
  .cbv-card--right { order: 3; }
  .cbv-card figcaption { display: block; min-height: 70px; padding: .62rem .55rem .7rem; }
  .cbv-card figcaption span { min-height: 1.8em; margin-bottom: .35rem; font-size: .36rem; line-height: 1.35; }
  .cbv-card figcaption b { font-size: .94rem; line-height: 1; }
  .cbv-card--center figcaption { display: flex; min-height: 76px; padding: .72rem .8rem .8rem; }
  .cbv-card--center figcaption span { min-height: 0; margin-bottom: 0; font-size: .44rem; }
  .cbv-card--center figcaption b { font-size: 1.35rem; }
  .cbv-card::after { right: -.28rem; bottom: 2.75rem; font-size: 3.8rem; }
  .cbv-card--center::after { bottom: 3.15rem; font-size: 5.2rem; }
  .cbv-case__baseline { gap: .6rem; margin-top: 1rem; font-size: .42rem; }

  .bda-case__content { min-height: 760px; }
  .bda-case__main { gap: 2.5rem; }
  .bda-case__film > div:nth-child(2) { gap: .35rem; }
  .bda-case__film i { flex-basis: 12%; }

  .services__head { grid-template-columns: 1fr; }
  .slider-controls { display: none; }
  .service-slider { margin-top: 3.5rem; }
  .service-card { flex-basis: 82vw; }
  .service-card:nth-child(even) { margin-top: 1.3rem; }
  .service-card p { max-height: 100px; opacity: 1; font-size: .88rem; }

  .process-list { margin-top: 3.5rem; }
  .process-list li { grid-template-columns: 34px 1fr auto; gap: .8rem; }
  .process-list li h3 { font-size: 2.4rem; }
  .process-list li p { grid-column: 2 / 4; font-size: .85rem; }
  .process-list li b { grid-column: 3; grid-row: 1; }

  .contact { min-height: 720px; padding-bottom: 8rem; }
  .contact__title { font-size: clamp(4rem, 20vw, 7rem); line-height: .9; }
  .contact__link { width: 100%; font-size: 1rem; }
  .contact__footer { align-items: flex-start; flex-direction: column; gap: .75rem; }
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
  .work-card::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .noise, .cursor { display: none; }
  .js .reveal { opacity: 1; transform: none; }
  .js .reveal-words .word, .title-line { transform: none; }
}
