@font-face {
  font-family: Jakarta;
  src: url("assets/fonts/plus-jakarta-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Jakarta;
  src: url("assets/fonts/plus-jakarta-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Jakarta;
  src: url("assets/fonts/plus-jakarta-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Jakarta;
  src: url("assets/fonts/plus-jakarta-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Playfair;
  src: url("assets/fonts/playfair-display-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --navy: #090b1c;
  --ink: #05060f;
  --surface: #121527;
  --text: #e8e4de;
  --white: #fefdfd;
  --muted: #b0afbf;
  --line: #ffffff24;
  --pink: #fd86dc;
  --cyan: #7fd5fa;
  --lilac: #d896fa;
  --gutter: clamp(24px, 5vw, 88px);
  --radius: 16px;
  --header: 78px;
  --footer: 70px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --section-gap: clamp(80px, 10vw, 160px);
  --display: clamp(46px, 5.7vw, 90px);
  --gradient: linear-gradient(110deg, #a64593, #e8354a 50%, #fdd517);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
  scrollbar-color: #756288 var(--navy);
}
body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: Jakarta, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(#ffffff04 1px, transparent 1px),
    linear-gradient(90deg, #ffffff04 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 90%);
}
a {
  color: inherit;
  text-underline-offset: 0.25em;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:disabled {
  opacity: 0.28;
  cursor: default;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button svg,
a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p,
figure,
dl {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  color: var(--white);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
h1,
h2 {
  font-size: var(--display);
}
h3 {
  font-size: clamp(27px, 3vw, 42px);
}
h4 {
  font-size: 20px;
}
p {
  max-width: 67ch;
}
p + p {
  margin-top: 1.15em;
}
em {
  font-family: Playfair, Georgia, serif;
  font-weight: 400;
  color: var(--pink);
}
::selection {
  background: #fd86dc55;
  color: var(--white);
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
}
button[hidden],
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-170%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 40px;
}
.skip-link:focus {
  transform: none;
}
.header {
  height: var(--header);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 30px;
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid var(--line);
  background: #090b1cf5;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.brand img {
  object-fit: contain;
  border-radius: 7px;
}
.brand__dot {
  color: var(--pink);
}
.header__nav {
  margin-left: auto;
  display: flex;
  gap: 32px;
  align-items: center;
}
.header__nav a {
  font-size: 13px;
  text-decoration: none;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
}
.header__nav a:hover,
.header__nav a[aria-current] {
  color: var(--white);
}
.view-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 40px;
  font-size: 11px;
  text-decoration: none;
  white-space: nowrap;
}
.view-switch svg {
  width: 15px;
  height: 15px;
}
.view-switch:hover {
  border-color: var(--pink);
}
.header__overview {
  margin-left: auto;
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}
.section {
  position: relative;
  padding: var(--section-gap) var(--gutter);
  border-bottom: 1px solid var(--line);
}
.section__inner {
  max-width: 1450px;
  margin: auto;
}
.section--cover {
  padding-top: clamp(48px, 6vh, 88px);
  padding-bottom: 24px;
  overflow: clip;
}
.eyebrow {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.lead {
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.6;
  color: var(--text);
}
.section-intro {
  margin-bottom: 56px;
}
.section-intro h2 + p {
  margin-top: 28px;
  color: var(--muted);
  max-width: 45ch;
}
.section-intro--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.section-intro--row > p {
  max-width: 38ch;
  color: var(--muted);
  font-size: 15px;
  padding-bottom: 5px;
}
.heading-dot {
  color: var(--pink);
}
.source-note,
.image-caption {
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 12px;
}
.image-caption {
  padding: 0 4px;
}
.button {
  border: 1px solid var(--line);
  padding: 14px 22px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff0c, #ffffff04);
  font-size: 13px;
  font-weight: 500;
  transition:
    border-color 0.25s,
    color 0.25s,
    transform 0.25s;
}
.button:hover {
  border-color: var(--lilac);
  transform: translateY(-2px);
}
.button--light {
  background: var(--text);
  color: var(--ink);
  border-color: var(--text);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  text-decoration: none;
}
.text-link:hover {
  color: var(--pink);
}
.cover {
  min-height: min(730px, calc(100svh - 140px));
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 42px;
  position: relative;
}
.cover::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 60%;
  height: 100%;
  left: -25%;
  bottom: -30%;
  background: radial-gradient(ellipse, #a6459320, transparent 65%);
  pointer-events: none;
}
.cover h1 {
  font-size: clamp(50px, 6.1vw, 98px);
  line-height: 1.08;
}
.cover h1 em {
  white-space: nowrap;
  font-size: 0.94em;
}
.cover__lead {
  font-size: 17px;
  color: var(--muted);
  margin-top: 30px;
}
.cover__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
}
.cover__art {
  position: relative;
  min-height: 510px;
  height: 100%;
  max-height: 660px;
}
.cover__image {
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 24px 50px -24px #0009;
  border: 1px solid #ffffff18;
}
.cover__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cover__image--1 {
  width: 63%;
  height: 50%;
  left: 0;
  top: 5%;
  transform: rotate(-6deg);
  z-index: 2;
}
.cover__image--2 {
  width: 54%;
  height: 64%;
  right: -2%;
  top: 24%;
  transform: rotate(6deg);
  z-index: 1;
}
.cover__image--3 {
  width: 50%;
  height: 35%;
  left: 3%;
  bottom: 4%;
  transform: rotate(-3deg);
  z-index: 3;
}
.cover__caption {
  position: absolute;
  left: 5%;
  bottom: -30px;
  font-size: 10px;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.cover__foot {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  margin-top: 35px;
}
.split {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: clamp(50px, 9vw, 145px);
  align-items: center;
}
.split h2 {
  margin-bottom: 32px;
}
.split .lead + p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 24px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 27px 0;
  gap: 28px 20px;
  margin-top: 30px;
}
.stats__item {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
}
.stats dt {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 22ch;
}
.stats dd {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.about-proof .stats {
  padding: 34px 0;
  margin: 0;
}
.about-proof .stats dd {
  font-size: clamp(70px, 8vw, 120px);
}
.about-proof__statement {
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.5;
  margin-top: 40px;
}
.discipline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}
.discipline-list span {
  font-size: 10px;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 5px 12px;
  color: var(--muted);
}
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 70px;
}
.services__item {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 28px 32px 28px 0;
}
.services__item h3 {
  font-size: 25px;
}
.services__item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}
.services__item > svg {
  position: absolute;
  top: 32px;
  right: 0;
  color: var(--pink);
  width: 18px;
  height: 18px;
}
.filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.filters button {
  padding: 10px 19px;
  border-radius: 40px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 12px;
}
.filters button:hover {
  border-color: var(--pink);
}
.filters button[aria-pressed="true"] {
  background: var(--text);
  color: var(--ink);
  border-color: var(--text);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 22px;
  align-items: start;
}
.work-grid__item {
  min-width: 0;
}
.artwork {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  isolation: isolate;
}
.artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.artwork:hover img {
  transform: scale(1.025);
}
.artwork__zoom {
  width: 34px;
  height: 34px;
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 50%;
  background: #090b1ce8;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff40;
  color: #fff;
}
.artwork__zoom svg {
  width: 17px;
  height: 17px;
}
.work-grid .artwork {
  aspect-ratio: 1.12;
}
.work-grid__item:nth-child(3n + 2) .artwork {
  aspect-ratio: 0.93;
}
.work-grid__item figcaption {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  font-size: 10px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 12px;
}
.work-grid__item figcaption span:first-child {
  max-width: 65%;
  color: var(--text);
}
.gallery-toggle {
  margin: 40px auto 0;
  display: flex;
  min-width: 190px;
}
.gallery {
  columns: 3;
  column-gap: 20px;
}
.gallery .artwork {
  break-inside: avoid;
  margin-bottom: 20px;
}
.gallery .artwork img {
  height: auto;
}
.case {
  padding: 65px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.case:last-child {
  padding-bottom: 0;
}
.case__main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(35px, 6vw, 100px);
  align-items: center;
}
.case__copy h3 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
}
.case__copy > p:not(.eyebrow):not(.source-note) {
  color: var(--muted);
  font-size: 15px;
  margin-top: 25px;
}
.case__copy .eyebrow {
  margin-bottom: 18px;
}
.case__visual .artwork {
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  min-height: 220px;
  display: flex;
  align-items: center;
}
.case__visual .artwork img {
  object-fit: contain;
  max-height: 430px;
}
.case__visual .artwork__zoom {
  z-index: 2;
}
.case__details {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.case__details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 0;
  font-size: 13px;
  cursor: pointer;
  list-style: none;
  color: var(--text);
}
.case__details summary::-webkit-details-marker {
  display: none;
}
.case__details summary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}
.case__details[open] summary svg {
  transform: rotate(45deg);
}
.case__narrative {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 24px 0 30px;
}
.case__narrative h3,
.case__narrative h4 {
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.case__narrative p {
  font-size: 13px;
  color: var(--muted);
}
.case__evidence {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 25px;
}
.case__evidence .artwork {
  padding: 12px;
  background: #fff;
  display: flex;
  align-items: center;
}
.case__evidence img {
  object-fit: contain;
  max-height: 380px;
}
.ads {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.ads__item {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.ads__item > .artwork {
  height: 170px;
  background: white;
  padding: 10px;
}
.ads__item > .artwork img {
  object-fit: contain;
}
.ads__body {
  padding-top: 24px;
}
.ads__body h3 {
  font-size: 21px;
}
.ads__roas {
  font-size: clamp(30px, 3.6vw, 52px);
  color: var(--pink);
  letter-spacing: -0.04em;
  line-height: 1.25;
  margin-top: 22px;
}
.ads__roas span {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--muted);
  display: block;
  margin-top: 5px;
}
.ads__body > p:not(.ads__roas) {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 14px;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.reviews__item {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.reviews__mark {
  font-family: Playfair, Georgia, serif;
  color: var(--pink);
  font-size: 80px;
  line-height: 1;
  display: block;
  height: 65px;
}
.reviews blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}
.reviews figcaption {
  font-size: 11px;
  color: var(--muted);
  margin-top: 25px;
}
.section--contact {
  padding-bottom: 24px;
  overflow: clip;
  background: radial-gradient(ellipse at 40% 75%, #a6459310, transparent 60%);
}
.contact h2 {
  font-size: clamp(52px, 7.5vw, 118px);
}
.contact__email {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  text-decoration: none;
  font-size: clamp(18px, 2.8vw, 34px);
  margin-top: 42px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.contact__email svg {
  width: 28px;
  height: 28px;
  color: var(--pink);
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}
.contact__grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 12px;
}
.contact__grid a,
.contact__grid p {
  font-size: 14px;
  text-decoration: none;
}
.contact__grid a {
  display: flex;
  gap: 10px;
  align-items: center;
}
.contact__wordmark {
  font-size: clamp(75px, 19.5vw, 310px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 600;
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  margin-top: 65px;
}
.contact__foot {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
}
dialog {
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--navy);
  padding: 30px;
  border-radius: 18px;
  max-width: calc(100% - 32px);
}
dialog::backdrop {
  background: #05060fec;
  backdrop-filter: blur(8px);
}
.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #ffffff06;
  flex-shrink: 0;
}
.icon-button:hover:not(:disabled) {
  border-color: var(--pink);
  color: var(--pink);
}
.icon-button svg {
  width: 19px;
  height: 19px;
}
.lightbox {
  width: min(1200px, 94vw);
  max-height: 94svh;
  padding: 55px 25px 20px;
}
.lightbox figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox img {
  max-height: 75svh;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox figcaption {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.lightbox__close {
  position: absolute;
  top: 8px;
  right: 10px;
}
.lightbox__close svg,
[data-close] svg {
  transform: rotate(45deg);
}
.overview {
  width: 620px;
  max-height: 85svh;
}
.overview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 25px;
}
.overview h2 {
  font-size: 29px;
}
.overview nav {
  display: grid;
}
.overview nav a {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 12px 0;
  text-decoration: none;
  font-size: 14px;
}
.overview nav a span {
  font-size: 10px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.overview nav a svg {
  margin-left: auto;
  width: 16px;
  height: 16px;
}
.overview nav a[aria-current="true"] {
  color: var(--pink);
}
body[data-mode="presentation"].is-enhanced {
  height: 100svh;
  overflow: hidden;
}
.is-enhanced .deck {
  position: fixed;
  inset: var(--header) 0 var(--footer);
  overflow: hidden;
}
.is-enhanced .deck .section {
  position: absolute;
  inset: 0;
  overflow: auto;
  padding: clamp(30px, 5vh, 60px) var(--gutter);
  border: 0;
  scrollbar-width: thin;
  scrollbar-color: #756288 transparent;
}
.is-enhanced .deck .section__inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.is-enhanced .deck .section--gallery .section__inner,
.is-enhanced .deck .section--contact .section__inner {
  justify-content: flex-start;
}
.is-enhanced .deck .cover {
  min-height: 100%;
  gap: 30px;
}
.is-enhanced .deck .cover__art {
  min-height: 420px;
  max-height: 500px;
}
.is-enhanced .deck .cover__foot {
  margin-top: 20px;
}
.is-enhanced .deck h1 {
  font-size: clamp(45px, 5.8vw, 90px);
}
.is-enhanced .deck h2 {
  font-size: clamp(42px, 4.7vw, 72px);
}
.is-enhanced .deck .section-intro {
  margin-bottom: 35px;
}
.is-enhanced .deck .case__copy h2 {
  font-size: clamp(36px, 4vw, 60px);
}
.is-enhanced .deck .case__visual .artwork {
  min-height: 160px;
}
.is-enhanced .deck .case__visual img {
  max-height: 310px;
}
.is-enhanced .deck .case__narrative {
  margin-bottom: 0;
}
.is-enhanced .deck .case__narrative p {
  font-size: 12px;
}
.is-enhanced .deck .stats {
  padding: 20px 0;
  gap: 16px;
}
.is-enhanced .deck .stats dd {
  font-size: 40px;
}
.is-enhanced .deck .about-proof .stats dd {
  font-size: 95px;
}
.is-enhanced .deck .services__item {
  padding: 22px 30px 22px 0;
}
.is-enhanced .deck .gallery {
  columns: 4;
}
.is-enhanced .deck .contact__wordmark {
  margin-top: 35px;
  font-size: 17vw;
}
.is-enhanced .deck .contact__grid {
  margin-top: 45px;
}
.deck-nav {
  position: fixed;
  inset: auto 0 0;
  height: var(--footer);
  border-top: 1px solid var(--line);
  background: var(--navy);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 var(--gutter);
}
[data-prev] svg {
  transform: rotate(180deg);
}
.deck-nav__info {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 240px;
  font-size: 12px;
}
.deck-nav__info [data-slide-count] {
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.deck-nav__track {
  flex: 1;
  height: 2px;
  background: var(--line);
  margin: 0 30px;
}
.deck-nav__track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .cover__copy {
    animation: cover-open 0.8s var(--ease) both;
  }
  .cover__art {
    animation: art-open 1.1s var(--ease) both;
  }
  @keyframes cover-open {
    from {
      clip-path: inset(0 0 8% 0);
      transform: translateY(12px);
    }
    to {
      clip-path: inset(0);
      transform: none;
    }
  }
  @keyframes art-open {
    from {
      clip-path: inset(0 0 12% 0);
    }
    to {
      clip-path: inset(0);
    }
  }
}
@media (min-width: 1600px) {
  .cover {
    min-height: 750px;
  }
  .cover__art {
    max-height: 650px;
  }
  .is-enhanced .deck .cover__art {
    max-height: 600px;
  }
  .is-enhanced .deck .section__inner {
    max-width: 1530px;
  }
}
@media (max-width: 1100px) {
  .cover {
    gap: 20px;
  }
  .cover__art {
    min-height: 440px;
  }
  .cover__actions {
    gap: 18px;
  }
  .header__nav {
    gap: 20px;
  }
  .split {
    gap: 55px;
  }
  .ads {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .ads__item > .artwork {
    height: 180px;
  }
  .reviews {
    gap: 25px;
  }
  .reviews blockquote {
    font-size: 15px;
  }
  .is-enhanced .deck .gallery {
    columns: 3;
  }
  .is-enhanced .deck .ads {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .is-enhanced .deck .ads__item > .artwork {
    height: 130px;
  }
}
@media (max-width: 800px) {
  :root {
    --header: 68px;
    --display: clamp(43px, 8vw, 66px);
    --section-gap: 76px;
  }
  .header {
    gap: 14px;
    flex-wrap: wrap;
  }
  .brand {
    font-size: 22px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .header__nav {
    gap: 20px;
  }
  .header__nav a {
    font-size: 12px;
  }
  .header__nav a:nth-child(1),
  .header__nav a:nth-child(3) {
    display: none;
  }
  .view-switch {
    font-size: 10px;
    margin-left: auto;
    padding: 7px 10px;
  }
  .cover {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 30px;
  }
  .cover h1 {
    font-size: clamp(48px, 9vw, 78px);
  }
  .cover__art {
    height: 500px;
    min-height: 0;
    max-width: 620px;
    width: 90%;
    margin: 10px auto 20px;
  }
  .cover__caption {
    bottom: -18px;
  }
  .cover__foot {
    margin-top: 20px;
  }
  .cover__lead {
    font-size: 15px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-proof__statement {
    font-size: 25px;
  }
  .about-proof .stats dd {
    font-size: 85px;
  }
  .about-proof {
    max-width: 600px;
    width: 100%;
  }
  .eyebrow {
    margin-bottom: 22px;
  }
  .section-intro--row {
    display: block;
  }
  .section-intro--row > p {
    margin-top: 25px;
  }
  .section-intro {
    margin-bottom: 36px;
  }
  .services {
    gap: 0 30px;
  }
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 15px;
  }
  .work-grid__item:nth-child(3n + 2) .artwork {
    aspect-ratio: 1.12;
  }
  .gallery {
    columns: 2;
    column-gap: 15px;
  }
  .case__main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .case__copy h3 {
    font-size: 42px;
    max-width: 16ch;
  }
  .case__copy .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .case__narrative {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .case__evidence {
    grid-template-columns: 1fr;
  }
  .case {
    padding: 42px 0;
  }
  .stats dd {
    font-size: 40px;
  }
  .case__visual .artwork {
    min-height: 0;
  }
  .reviews {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reviews blockquote {
    font-size: 18px;
    max-width: 55ch;
  }
  .contact__grid {
    gap: 24px;
    grid-template-columns: 1fr 1fr;
  }
  .contact__grid > div:last-child {
    grid-column: 1/-1;
  }
  .contact__foot {
    flex-wrap: wrap;
  }
  .contact__wordmark {
    font-size: 19vw;
  }
  .is-enhanced .deck .cover__art {
    min-height: 0;
    height: 380px;
    max-width: 500px;
  }
  .is-enhanced .deck .cover {
    gap: 25px;
  }
  .is-enhanced .deck .section__inner {
    justify-content: flex-start;
  }
  .is-enhanced .deck .gallery {
    columns: 2;
  }
  .is-enhanced .deck .ads {
    grid-template-columns: repeat(2, 1fr);
  }
  .is-enhanced .deck .about-proof .stats dd {
    font-size: 75px;
  }
  .is-enhanced .deck .cover h1 {
    font-size: clamp(44px, 8.5vw, 68px);
  }
  .deck-nav {
    gap: 12px;
  }
  .deck-nav__track {
    margin: 0 8px;
  }
  .deck-nav__info {
    min-width: 0;
    flex: 1;
    gap: 10px;
  }
  .deck-nav__info [data-slide-title] {
    font-size: 11px;
  }
  .deck-nav [data-fullscreen] {
    display: none;
  }
  .header__overview {
    font-size: 11px;
    gap: 6px;
  }
  .header__overview svg {
    width: 16px;
  }
}
@media (max-width: 480px) {
  :root {
    --gutter: 22px;
    --footer: 64px;
  }
  .header {
    gap: 9px;
  }
  .header__nav {
    gap: 0;
    margin-left: auto;
  }
  .header__nav a:not(:last-child) {
    display: none;
  }
  .header__nav a svg {
    display: none;
  }
  .brand {
    font-size: 20px;
    gap: 6px;
  }
  .brand img {
    width: 26px;
    height: 26px;
  }
  .view-switch {
    gap: 5px;
  }
  .cover h1 {
    font-size: 46px;
  }
  .cover h1 em {
    font-size: 0.89em;
  }
  .cover__art {
    height: 340px;
    width: 94%;
    margin-top: 10px;
  }
  .cover__actions {
    gap: 20px;
    flex-wrap: wrap;
  }
  .button {
    padding: 13px 18px;
    gap: 18px;
  }
  .cover__foot {
    font-size: 9px;
    gap: 20px;
  }
  .services {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .services__item h3 {
    font-size: 24px;
  }
  .work-grid {
    gap: 22px 12px;
  }
  .work-grid__item figcaption {
    display: block;
    font-size: 9px;
  }
  .work-grid__item figcaption span {
    display: block;
  }
  .work-grid__item figcaption span:first-child {
    max-width: 100%;
  }
  .work-grid__item figcaption span + span {
    margin-top: 3px;
    color: var(--muted);
  }
  .filters {
    gap: 7px;
  }
  .filters button {
    font-size: 11px;
    padding: 8px 13px;
  }
  .case__copy h3 {
    font-size: 36px;
  }
  .case__copy > p:not(.eyebrow):not(.source-note) {
    font-size: 14px;
  }
  .ads {
    gap: 28px 18px;
  }
  .ads__body h3 {
    font-size: 18px;
  }
  .ads__roas {
    font-size: 33px;
  }
  .ads__item > .artwork {
    height: 130px;
  }
  .ads__body {
    padding-top: 18px;
  }
  .contact__email {
    gap: 15px;
    font-size: 20px;
  }
  .contact h2 {
    font-size: 49px;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .contact__grid > div:last-child {
    grid-column: auto;
  }
  .contact__wordmark {
    margin-top: 45px;
    font-size: 19vw;
  }
  .header__overview {
    max-width: 95px;
    line-height: 1.3;
    text-align: left;
  }
  .header__overview svg {
    display: none;
  }
  .deck-nav__track {
    display: none;
  }
  .deck-nav__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .is-enhanced .deck .section {
    padding: 30px var(--gutter);
  }
  .is-enhanced .deck .cover h1 {
    font-size: 44px;
  }
  .is-enhanced .deck .cover__art {
    height: 310px;
  }
  .is-enhanced .deck .gallery {
    columns: 2;
  }
  .is-enhanced .deck .stats dd {
    font-size: 35px;
  }
  .is-enhanced .deck .ads__item > .artwork {
    height: 110px;
  }
  .is-enhanced .deck .contact h2 {
    font-size: 46px;
  }
  .lightbox {
    padding: 55px 12px 18px;
  }
  .lightbox img {
    max-height: 72svh;
  }
  .overview {
    padding: 22px;
  }
  .overview h2 {
    font-size: 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  html,
  body,
  body[data-mode="presentation"].is-enhanced {
    height: auto;
    overflow: visible;
    background: white;
    color: #222;
  }
  .header,
  .deck-nav,
  .filters,
  .gallery-toggle,
  .artwork__zoom,
  .skip-link,
  dialog,
  .view-switch {
    display: none !important;
  }
  .is-enhanced .deck {
    position: static;
    overflow: visible;
  }
  .section,
  .is-enhanced .deck .section {
    display: block !important;
    position: static;
    overflow: visible;
    padding: 30px 0;
    break-after: page;
    background: white;
  }
  .section[hidden] {
    display: block !important;
  }
  .section__inner {
    min-height: 0 !important;
  }
  h1,
  h2,
  h3,
  h4,
  .stats dd {
    color: #111;
  }
  p,
  .source-note,
  .stats dt,
  .eyebrow {
    color: #444 !important;
  }
  em {
    color: #7f326d;
  }
  .cover {
    min-height: 0;
  }
  .cover__art {
    height: 360px;
  }
  .case__main {
    break-inside: avoid;
  }
  .work-grid__item[hidden] {
    display: block !important;
  }
  .contact__wordmark {
    color: #222;
  }
  .case__narrative {
    display: block;
  }
  details::details-content {
    display: block;
  }
  .artwork {
    border: 1px solid #ccc;
  }
  .contact__foot {
    margin-top: 20px;
  }
}

body:not(.is-enhanced) .filters,
body:not(.is-enhanced) .header__overview {
  display: none;
}
@media (max-width: 360px) {
  .header {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .header .brand {
    font-size: 17px;
    gap: 5px;
  }
  .header .brand img {
    width: 22px;
    height: 22px;
  }
  .header__overview {
    font-size: 10px;
    max-width: 62px;
    flex: 0 1 62px;
  }
  .header__nav a {
    font-size: 10px;
  }
  .view-switch {
    font-size: 9px;
    padding: 6px 8px;
    gap: 4px;
  }
  .view-switch svg {
    width: 12px;
    height: 12px;
  }
}
