:root {
  --brand-rose: oklch(0.58 0.22 352);
  --brand-pink: oklch(0.68 0.2 350);
  --brand-violet: oklch(0.57 0.2 304);
  --brand-lilac: oklch(0.82 0.1 310);
  --brand-blush: oklch(0.97 0.025 350);
  --brand-cream: oklch(0.992 0.008 50);
  --brand-paper: oklch(0.995 0.004 330);
  --brand-ink: oklch(0.2 0.018 330);
  --ink-soft: oklch(0.42 0.02 330);
  --muted: oklch(0.56 0.018 330);
  --line: oklch(0.9 0.018 325);
  --plum: oklch(0.19 0.04 315);
  --surface: oklch(0.985 0.01 340);
  --focus: oklch(0.66 0.22 346);
  --shadow-soft: 0 24px 70px rgb(96 50 104 / 0.12);
  --page-max: 1320px;
  --content-max: 1180px;
  --header-height: 72px;
  --radius: 6px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--brand-paper);
  color: var(--brand-ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.55;
  margin: 0;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: color-mix(in oklch, var(--brand-rose) 16%, transparent);
  touch-action: manipulation;
}

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

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

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

h1[id],
h2[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

main > section[id] {
  scroll-margin-top: var(--header-height);
}

p {
  max-width: 72ch;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--brand-ink);
  color: var(--brand-paper);
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  align-items: center;
  background: color-mix(in oklch, var(--brand-paper) 90%, transparent);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 112px minmax(0, 1fr) 112px;
  height: var(--header-height);
  padding: 0 clamp(24px, 5vw, 76px);
  position: sticky;
  top: 0;
  transition: background 220ms ease-out, box-shadow 220ms ease-out;
  z-index: 100;
}

@supports (backdrop-filter: blur(16px)) {
  .site-header {
    backdrop-filter: blur(16px);
  }
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 color-mix(in oklch, var(--line) 74%, transparent);
}

.brand {
  align-items: center;
  display: inline-flex;
  height: 54px;
  justify-self: start;
  width: 54px;
}

.brand-logo {
  height: 52px;
  object-fit: contain;
  width: 52px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.6vw, 42px);
  justify-content: center;
}

.site-nav a {
  color: var(--brand-ink);
  font-size: 0.78rem;
  font-weight: 500;
  min-height: 44px;
  padding: 14px 0 11px;
  position: relative;
  transition: color 180ms ease-out;
}

.site-nav a::after {
  background: var(--brand-violet);
  border-radius: 50%;
  bottom: 4px;
  content: "";
  height: 5px;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%) scale(0.5);
  transition: opacity 180ms ease-out, transform 180ms ease-out;
  width: 5px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--brand-violet);
}

.site-nav a.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.header-cta,
.button,
.contact-form button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-weight: 600;
  gap: 0.65rem;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1.35rem;
  transition: box-shadow 220ms var(--ease-out), color 220ms ease-out, transform 220ms var(--ease-out);
}

.header-cta {
  background: linear-gradient(100deg, var(--brand-violet), var(--brand-rose));
  border-radius: 999px;
  color: var(--brand-paper);
  font-size: 0.78rem;
  justify-self: end;
  min-width: 112px;
}

.button.primary,
.contact-form button {
  background: linear-gradient(100deg, var(--brand-violet), var(--brand-rose));
  border-radius: 999px;
  color: var(--brand-paper);
}

.button.secondary {
  background: color-mix(in oklch, var(--brand-paper) 94%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-ink);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible {
  box-shadow: 0 14px 34px rgb(176 58 146 / 0.22);
  transform: translateY(-2px);
}

.menu-button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-ink);
  cursor: pointer;
  display: none;
  min-height: 44px;
  min-width: 64px;
}

.home-shell {
  margin: 0 auto;
  max-width: var(--page-max);
  width: calc(100% - clamp(48px, 10vw, 152px));
}

.home-eyebrow {
  color: var(--brand-rose);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.home-section-intro h2,
.home-entertainment-intro h2 {
  font-size: clamp(1.75rem, 2.4vw, 2.3rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.home-section-intro > p:not(.home-eyebrow),
.home-entertainment-intro > p:not(.home-eyebrow) {
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.65;
}

.home-text-link {
  align-items: center;
  color: var(--brand-violet);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 0.55rem;
  min-height: 44px;
  transition: color 180ms ease-out, transform 180ms ease-out;
}

.home-text-link:hover,
.home-text-link:focus-visible {
  color: var(--brand-rose);
  transform: translateX(3px);
}

.home-hero {
  background:
    linear-gradient(90deg, transparent 0 61%, color-mix(in oklch, var(--brand-lilac) 8%, transparent) 61% 61.15%, transparent 61.15%),
    repeating-linear-gradient(90deg, transparent 0 96px, color-mix(in oklch, var(--brand-lilac) 9%, transparent) 96px 97px),
    linear-gradient(120deg, var(--brand-paper) 0 49%, var(--brand-blush) 100%);
  min-height: min(680px, calc(100svh - 104px));
  overflow: hidden;
  position: relative;
}

.home-hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(28px, 3.8vw, 58px);
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  min-height: min(680px, calc(100svh - 104px));
  padding: clamp(44px, 7vh, 70px) 0 clamp(38px, 5vh, 54px);
}

.home-hero-copy {
  max-width: 610px;
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  font-size: clamp(2.8rem, 4.05vw, 3.9rem);
  font-weight: 400;
  line-height: 1.04;
  margin-bottom: 1.25rem;
}

.home-hero h1 span {
  display: block;
}

.home-hero-accent {
  color: var(--brand-pink);
}

.home-hero-mission {
  color: var(--ink-soft);
  font-size: clamp(0.92rem, 1.1vw, 1.06rem);
  line-height: 1.65;
  margin-bottom: 1.65rem;
  max-width: 54ch;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.home-hero-actions .button {
  font-size: 0.84rem;
  min-width: 170px;
}

.home-proof {
  margin-top: clamp(32px, 5vh, 54px);
}

.home-proof p {
  color: var(--muted);
  font-size: 0.7rem;
  margin-bottom: 0.7rem;
}

.home-proof img {
  height: auto;
  max-width: 205px;
}

.home-hero-visual {
  align-items: center;
  display: flex;
  height: min(62vh, 570px);
  justify-content: center;
  min-height: 440px;
  position: relative;
}

.home-hero-visual::after {
  background: color-mix(in oklch, var(--brand-lilac) 12%, transparent);
  border-radius: 50%;
  bottom: 9%;
  box-shadow: 0 28px 50px rgb(105 63 132 / 0.1);
  content: "";
  height: 7%;
  position: absolute;
  width: 72%;
  z-index: 0;
}

.home-hero-visual img {
  filter: drop-shadow(0 34px 38px rgb(116 55 124 / 0.14));
  height: 112%;
  max-width: none;
  object-fit: contain;
  position: relative;
  width: 112%;
  z-index: 1;
}

.home-global {
  background: linear-gradient(104deg, var(--brand-paper), color-mix(in oklch, var(--brand-lilac) 10%, var(--brand-paper)));
  border-bottom: 1px solid color-mix(in oklch, var(--line) 72%, transparent);
  border-top: 1px solid color-mix(in oklch, var(--line) 72%, transparent);
}

.home-global-grid {
  align-items: center;
  display: grid;
  gap: clamp(24px, 3.2vw, 46px);
  grid-template-columns: minmax(260px, 0.58fr) minmax(560px, 1.42fr);
  min-height: 350px;
  padding: 8px 0;
}

.home-map-wrap img {
  height: auto;
  margin-left: auto;
  width: min(100%, 900px);
}

.home-services {
  background: var(--brand-paper);
  border-bottom: 1px solid var(--line);
}

.home-services-grid {
  align-items: center;
  display: grid;
  gap: clamp(20px, 2vw, 30px);
  grid-template-columns: 130px minmax(250px, 0.78fr) minmax(520px, 1.5fr);
  min-height: 470px;
  padding: 0;
}

.home-services-intro h2 {
  font-size: 2rem;
}

.home-services-art {
  align-self: stretch;
  margin-bottom: 0;
  margin-left: calc((100vw - min(var(--page-max), calc(100vw - clamp(48px, 10vw, 152px)))) / -2);
  overflow: hidden;
}

.home-services-art img {
  height: 100%;
  object-fit: cover;
  object-position: right center;
  width: 100%;
}

.home-services-list {
  display: grid;
  gap: 28px 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-service-item span {
  color: var(--ink-soft);
  display: block;
  font-size: 0.68rem;
  margin-bottom: 0.55rem;
}

.home-service-item h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.home-service-item p {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.home-entertainment {
  background: var(--plum);
  color: var(--brand-paper);
  display: grid;
  grid-template-columns: minmax(250px, 1.06fr) minmax(0, 4fr);
  height: 360px;
  min-height: 360px;
}

.home-entertainment-intro {
  align-content: center;
  display: grid;
  padding: 34px;
}

.home-entertainment-intro .home-eyebrow,
.home-entertainment-intro .home-text-link {
  color: var(--brand-pink);
}

.home-entertainment-intro > p:not(.home-eyebrow) {
  color: color-mix(in oklch, var(--brand-paper) 72%, transparent);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.home-entertainment-intro h2 {
  font-size: clamp(1.7rem, 2vw, 1.8rem);
}

.home-entertainment-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 0;
  min-width: 0;
}

.home-entertainment-card {
  height: 360px;
  isolation: isolate;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.home-entertainment-card::after {
  background: linear-gradient(180deg, transparent 44%, rgb(20 8 28 / 0.42) 56%, rgb(20 8 28) 73%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.home-entertainment-card img {
  height: 100%;
  object-fit: cover;
  transition: filter 360ms ease-out, transform 520ms var(--ease-out);
  width: 100%;
}

.home-entertainment-card:hover img,
.home-entertainment-card:focus-visible img {
  filter: saturate(1.08) brightness(1.03);
  transform: scale(1.035);
}

.home-entertainment-copy,
.home-case-copy {
  bottom: 16px;
  color: var(--brand-paper);
  display: grid;
  gap: 0.35rem;
  left: 16px;
  position: absolute;
  right: 16px;
  z-index: 2;
}

.home-entertainment-copy strong,
.home-case-copy strong {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}

.home-entertainment-copy span,
.home-case-copy span {
  color: color-mix(in oklch, var(--brand-paper) 76%, transparent);
  font-size: 0.68rem;
  line-height: 1.4;
}

.home-case-copy small {
  color: var(--brand-paper);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  margin-top: 0.2rem;
}

.home-cases {
  background: var(--brand-paper);
}

.home-cases-grid {
  align-items: center;
  display: grid;
  gap: clamp(36px, 5vw, 74px);
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1.65fr);
  min-height: 340px;
  padding: 30px 0;
}

.home-cases-intro h2 {
  font-size: 1.8rem;
  white-space: nowrap;
}

.home-cases-intro .home-text-link {
  margin-top: 1rem;
}

.home-case-cards {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-case-card {
  aspect-ratio: 1.18;
  background: var(--brand-blush);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.home-case-card::after {
  background: linear-gradient(180deg, transparent 33%, rgb(29 15 35 / 0.24) 51%, rgb(29 15 35 / 0.94) 76%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.home-case-index {
  color: color-mix(in oklch, var(--brand-paper) 88%, transparent);
  font-size: 0.68rem;
  left: 16px;
  position: absolute;
  top: 14px;
  z-index: 3;
}

.home-case-card img {
  height: 100%;
  object-fit: contain;
  padding: 10% 12% 28%;
  transition: filter 320ms ease-out, transform 480ms var(--ease-out);
  width: 100%;
}

.home-case-card--mia {
  background: oklch(0.86 0.17 88);
}

.home-case-card--mia img,
.home-case-card--sing img {
  mix-blend-mode: multiply;
}

.home-case-card--sing {
  background: oklch(0.78 0.09 25);
}

.home-case-card--gtc {
  background: oklch(0.24 0.025 68);
}

.home-case-card--gtc img {
  filter: drop-shadow(0 14px 20px rgb(0 0 0 / 0.18));
  padding-inline: 15%;
}

.home-case-card:hover img,
.home-case-card:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.home-about {
  background: linear-gradient(120deg, var(--brand-paper), color-mix(in oklch, var(--brand-lilac) 7%, var(--brand-paper)));
  border-top: 1px solid var(--line);
}

.home-about-grid {
  align-items: center;
  display: grid;
  gap: clamp(36px, 4vw, 68px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(250px, 0.68fr) minmax(390px, 1fr);
  min-height: 400px;
  padding: 34px 0;
}

.home-about-intro ul {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 1.1rem 0 0.85rem;
  padding: 0;
}

.home-about-intro li {
  color: var(--ink-soft);
  font-size: 0.76rem;
  padding-left: 1.1rem;
  position: relative;
}

.home-about-intro li::before {
  background: var(--brand-lilac);
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 5px;
}

.home-about-art {
  margin-bottom: 0;
}

.home-about-art img {
  height: auto;
  width: 100%;
}

.home-stats {
  border-left: 1px solid var(--brand-violet);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-stat {
  border-bottom: 1px solid var(--line);
  min-height: 132px;
  padding: 1rem 1.4rem;
}

.home-stat:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.home-stat span,
.home-stat small {
  color: var(--muted);
  display: block;
  font-size: 0.68rem;
}

.home-stat strong {
  display: block;
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  line-height: 1.05;
  margin: 0.45rem 0 0.25rem;
}

.home-cta {
  background: var(--brand-paper);
  padding: 0 0 36px;
}

.home-cta-inner {
  align-items: center;
  background: linear-gradient(100deg, var(--brand-violet), var(--brand-lilac) 37%, var(--brand-blush) 62%, var(--brand-pink));
  border-radius: var(--radius);
  color: var(--brand-paper);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(300px, 1.1fr) 120px minmax(260px, 0.75fr) auto;
  min-height: 140px;
  overflow: hidden;
  padding: 15px 34px;
  position: relative;
}

.home-cta-inner > * {
  min-width: 0;
}

.home-cta h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.3rem);
  font-weight: 400;
  line-height: 1.02;
  margin-bottom: 0;
  overflow-wrap: break-word;
  position: relative;
  z-index: 2;
}

.home-cta img {
  height: 140px;
  object-fit: contain;
  opacity: 0.42;
  transform: rotate(-12deg) scale(1.25);
  width: 140px;
}

.home-cta p {
  color: color-mix(in oklch, var(--brand-ink) 78%, var(--brand-violet));
  font-size: 0.76rem;
  margin-bottom: 0;
}

.home-cta .button {
  min-width: 142px;
}

.section-shell {
  margin: 0 auto;
  max-width: var(--content-max);
  padding: clamp(72px, 8vw, 108px) clamp(24px, 5vw, 64px);
}

.page-intro {
  min-height: 430px;
  padding-top: clamp(96px, 11vw, 150px);
}

.page-intro .kicker,
.section-heading .kicker,
.statement .kicker,
.status {
  color: var(--brand-rose);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-intro h1,
.legal-copy h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.page-intro > p,
.section-heading h2,
.statement h2,
.pulse-layout h2 {
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  font-weight: 450;
  line-height: 1.45;
}

.section-heading {
  margin-bottom: 2.4rem;
  max-width: 820px;
}

.service-grid,
.project-grid,
.pipeline-grid,
.team-grid,
.career-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card,
.project-card,
.pipeline-step,
.team-card,
.career-lead,
.career-list article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.service-card h3,
.project-card h3,
.pipeline-step h3,
.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.service-card p,
.project-card p,
.pipeline-step p,
.team-card p,
.case-row p,
.site-footer p,
.legal-copy p,
.split-section p,
.career-list p,
.career-lead p {
  color: var(--muted);
}

.service-card ul,
.legal-copy ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

body[data-page="/services/"] {
  background: var(--brand-paper);
}

.services-hero {
  background: var(--brand-paper);
  border-bottom: 1px solid color-mix(in oklch, var(--line) 70%, transparent);
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

.services-hero-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(540px, 1.18fr);
  margin: 0 auto;
  max-width: 1540px;
  min-height: 540px;
}

.services-hero-copy {
  align-content: center;
  display: grid;
  padding: 48px 40px 64px max(76px, calc((100vw - var(--content-max)) / 2 + 64px));
  position: relative;
  z-index: 2;
}

.services-hero-copy .kicker,
.services-impact-copy .kicker {
  color: var(--brand-rose);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
  text-transform: uppercase;
}

.services-hero-copy h1 {
  font-size: 5.15rem;
  font-weight: 470;
  line-height: 0.95;
  margin-bottom: 1.35rem;
}

.services-hero-copy > p:last-child {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 34ch;
}

.services-hero-visual {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.services-hero-visual::before {
  background: linear-gradient(90deg, var(--brand-paper), transparent 24%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.services-hero-visual::after {
  background: linear-gradient(180deg, transparent 68%, color-mix(in oklch, var(--brand-paper) 45%, transparent));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.services-hero-visual img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 63% center;
  transform: translate3d(var(--services-pointer-x, 0), calc(var(--services-shift, 0px) + var(--services-pointer-y, 0)), 0) scale(var(--services-scale, 1.04));
  transform-origin: 62% 52%;
  width: 108%;
  will-change: transform;
}

.services-scroll-cue {
  align-items: center;
  bottom: 22px;
  color: var(--brand-violet);
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 700;
  gap: 0.55rem;
  left: max(76px, calc((100vw - var(--content-max)) / 2 + 64px));
  min-height: 44px;
  position: absolute;
  z-index: 3;
}

.services-scroll-cue span {
  transition: transform 220ms var(--ease-out);
}

.services-scroll-cue:hover span,
.services-scroll-cue:focus-visible span {
  transform: translateY(4px);
}

.services-breakdown {
  padding-bottom: 44px;
  padding-top: 64px;
}

body[data-page="/services/"] .section-heading {
  margin-bottom: 2rem;
  max-width: 760px;
}

body[data-page="/services/"] .section-heading .kicker {
  margin-bottom: 0.85rem;
}

body[data-page="/services/"] .section-heading h2 {
  color: var(--brand-ink);
  font-size: 2.15rem;
  font-weight: 470;
  line-height: 1.18;
  margin-bottom: 0;
  max-width: 38ch;
}

body[data-page="/services/"] .service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="/services/"] .service-card {
  background:
    radial-gradient(circle at var(--service-spot-x, 50%) var(--service-spot-y, 0%), color-mix(in oklch, var(--brand-lilac) 22%, transparent), transparent 44%),
    color-mix(in oklch, var(--brand-paper) 98%, var(--brand-blush));
  border: 1px solid color-mix(in oklch, var(--line) 82%, var(--brand-lilac));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 286px;
  overflow: hidden;
  padding: 18px;
  position: relative;
  transition: border-color 260ms ease-out, box-shadow 360ms var(--ease-out), transform 360ms var(--ease-out);
}

body[data-page="/services/"] .service-card::before {
  background: linear-gradient(118deg, transparent 25%, rgb(255 255 255 / 0.78) 49%, transparent 72%);
  content: "";
  height: 170%;
  left: -115%;
  pointer-events: none;
  position: absolute;
  top: -34%;
  transform: rotate(10deg);
  transition: left 720ms var(--ease-out);
  width: 55%;
  z-index: 0;
}

body[data-page="/services/"] .service-card:hover,
body[data-page="/services/"] .service-card:focus-within {
  border-color: color-mix(in oklch, var(--brand-lilac) 70%, var(--line));
  box-shadow: 0 22px 48px rgb(119 72 137 / 0.13);
  transform: translateY(-7px);
}

body[data-page="/services/"] .service-card:hover::before,
body[data-page="/services/"] .service-card:focus-within::before {
  left: 145%;
}

.service-card-icon {
  align-items: center;
  background: radial-gradient(circle at 35% 24%, var(--brand-paper), color-mix(in oklch, var(--brand-lilac) 20%, var(--brand-paper)) 58%, color-mix(in oklch, var(--brand-lilac) 44%, var(--brand-paper)));
  border: 1px solid color-mix(in oklch, var(--brand-lilac) 38%, var(--line));
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.92), 0 8px 18px rgb(120 72 141 / 0.13);
  display: inline-flex;
  height: 52px;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  transition: box-shadow 300ms var(--ease-out), transform 360ms var(--ease-out);
  width: 52px;
  z-index: 1;
}

.service-card:hover .service-card-icon,
.service-card:focus-within .service-card-icon {
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.96), 0 12px 25px rgb(159 65 155 / 0.2);
  transform: translateY(-2px) rotate(-4deg) scale(1.06);
}

.service-card-icon img,
.services-stat img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(55%) saturate(2124%) hue-rotate(253deg) brightness(91%) contrast(91%);
}

.service-card-number {
  color: var(--brand-rose);
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}

body[data-page="/services/"] .service-card h3 {
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.2;
  margin-bottom: 0.65rem;
  position: relative;
  z-index: 1;
}

body[data-page="/services/"] .service-card > p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
}

.service-card-details summary {
  align-items: center;
  background: color-mix(in oklch, var(--brand-paper) 88%, transparent);
  border: 1px solid color-mix(in oklch, var(--brand-pink) 30%, var(--line));
  border-radius: 50%;
  bottom: 16px;
  color: var(--brand-rose);
  cursor: pointer;
  display: flex;
  height: 32px;
  justify-content: center;
  list-style: none;
  position: absolute;
  right: 16px;
  transition: background 220ms ease-out, color 220ms ease-out, transform 260ms var(--ease-out);
  width: 32px;
  z-index: 4;
}

.service-card-details summary::-webkit-details-marker {
  display: none;
}

.service-card-details summary:hover,
.service-card-details summary:focus-visible {
  background: var(--brand-rose);
  color: var(--brand-paper);
  transform: scale(1.06);
}

.service-card-arrow {
  font-size: 1rem;
  line-height: 1;
  transition: transform 260ms var(--ease-out);
}

.service-card-details[open] .service-card-arrow {
  transform: rotate(45deg);
}

.service-card-panel {
  background: color-mix(in oklch, var(--brand-paper) 96%, var(--brand-blush));
  border-top: 1px solid color-mix(in oklch, var(--brand-lilac) 38%, var(--line));
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: 20px 58px 18px 18px;
  pointer-events: none;
  position: absolute;
  right: 0;
  transform: translateY(18px);
  transition: opacity 240ms ease-out, transform 300ms var(--ease-out);
  z-index: 3;
}

.service-card-details[open] .service-card-panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.service-card-panel strong {
  color: var(--brand-violet);
  display: block;
  font-size: 0.66rem;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

body[data-page="/services/"] .service-card-panel ul {
  display: grid;
  gap: 0.22rem;
  margin: 0;
  padding-left: 0.95rem;
}

.service-card-panel li {
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.35;
}

.services-impact {
  align-items: stretch;
  background: linear-gradient(112deg, color-mix(in oklch, var(--brand-blush) 68%, var(--brand-paper)), color-mix(in oklch, var(--brand-lilac) 15%, var(--brand-paper)));
  border: 1px solid color-mix(in oklch, var(--line) 78%, var(--brand-lilac));
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(250px, 0.92fr) minmax(0, 2.08fr);
  margin-top: 20px;
  overflow: hidden;
}

.services-impact-copy {
  align-content: center;
  display: grid;
  padding: 30px;
}

.services-impact-copy .kicker {
  margin-bottom: 0.6rem;
}

.services-impact-copy h2 {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.services-impact-copy > p:last-child {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.services-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-stat {
  align-content: center;
  border-left: 1px solid color-mix(in oklch, var(--line) 88%, var(--brand-lilac));
  display: grid;
  min-height: 180px;
  padding: 24px;
}

.services-stat img {
  height: 24px;
  margin-bottom: 18px;
  width: 24px;
}

.services-stat strong {
  font-size: 2rem;
  font-variant-numeric: tabular-nums;
  font-weight: 450;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.services-stat span {
  color: var(--brand-ink);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
}

.services-stat small {
  color: var(--muted);
  font-size: 0.62rem;
  margin-top: 0.15rem;
}

.services-cta {
  margin: 0 auto 38px;
  max-width: var(--content-max);
  padding: 0 clamp(24px, 5vw, 64px);
}

.services-cta-inner {
  align-items: center;
  background: linear-gradient(104deg, var(--brand-violet), var(--brand-lilac) 34%, var(--brand-blush) 62%, var(--brand-pink));
  border-radius: var(--radius);
  color: var(--brand-paper);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(300px, 1.2fr) 130px minmax(230px, 0.8fr) auto;
  min-height: 154px;
  overflow: hidden;
  padding: 20px 34px;
  position: relative;
}

.services-cta h2 {
  font-size: 2.5rem;
  font-weight: 420;
  line-height: 1;
  margin-bottom: 0;
  max-width: 16ch;
  position: relative;
  z-index: 2;
}

.services-cta img {
  filter: drop-shadow(0 18px 30px rgb(96 48 116 / 0.2));
  height: 160px;
  object-fit: contain;
  opacity: 0.52;
  transform: rotate(-12deg) scale(1.3);
  width: 160px;
}

.services-cta p {
  color: color-mix(in oklch, var(--brand-ink) 74%, var(--brand-violet));
  font-size: 0.72rem;
  line-height: 1.45;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.services-cta-button {
  align-items: center;
  background: color-mix(in oklch, var(--brand-paper) 96%, transparent);
  border-radius: 999px;
  color: var(--brand-violet);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 0.65rem;
  justify-content: center;
  min-height: 46px;
  min-width: 132px;
  padding: 0.75rem 1.2rem;
  position: relative;
  transition: box-shadow 260ms var(--ease-out), transform 260ms var(--ease-out);
  z-index: 2;
}

.services-cta-button:hover,
.services-cta-button:focus-visible {
  box-shadow: 0 16px 32px rgb(91 47 113 / 0.2);
  transform: translateY(-3px);
}

.js .services-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms var(--ease-out), transform 720ms var(--ease-out);
}

.js .services-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .service-card:nth-child(2),
.js .service-card:nth-child(6),
.js .services-stat:nth-child(2) {
  transition-delay: 70ms;
}

.js .service-card:nth-child(3),
.js .service-card:nth-child(7),
.js .services-stat:nth-child(3) {
  transition-delay: 140ms;
}

.js .service-card:nth-child(4),
.js .service-card:nth-child(8),
.js .services-stat:nth-child(4) {
  transition-delay: 210ms;
}

@media (prefers-reduced-motion: no-preference) {
  .services-hero-copy {
    animation: services-copy-in 760ms var(--ease-out) both;
  }

  .services-hero-visual {
    animation: services-visual-in 980ms var(--ease-out) both;
  }
}

@keyframes services-copy-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes services-visual-in {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.entertainment-band,
.pulse-band {
  background: linear-gradient(110deg, var(--brand-rose), var(--brand-violet));
  color: var(--brand-paper);
}

.pulse-layout,
.entertainment-layout,
.split-section,
.contact-layout,
.career-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
}

.pulse-band .kicker,
.pulse-layout h2,
.entertainment-band .kicker {
  color: var(--brand-paper);
}

.pulse-grid,
.feature-grid,
.showcase-grid,
.case-list {
  display: grid;
  gap: 1rem;
}

.pulse-item,
.feature-tile {
  border: 1px solid color-mix(in oklch, var(--brand-paper) 34%, transparent);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.pulse-item span,
.feature-tile span,
.feature-tile strong,
.feature-tile em {
  display: block;
}

.pulse-item span,
.feature-tile span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-tile strong {
  font-size: 1.35rem;
  margin: 1rem 0;
}

.feature-tile em {
  font-style: normal;
  opacity: 0.74;
}

.showcase-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.showcase-toolbar button {
  background: var(--brand-paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-ink);
  cursor: pointer;
  min-height: 44px;
  padding: 0.6rem 1rem;
}

.showcase-toolbar button.is-active {
  background: var(--brand-rose);
  border-color: var(--brand-rose);
  color: var(--brand-paper);
}

.showcase-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.34fr);
  padding: 1.35rem;
}

.showcase-item.is-hidden {
  display: none;
}

.showcase-meta {
  align-content: space-between;
  border-left: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  padding-left: 1rem;
}

.showcase-meta a {
  color: var(--brand-violet);
  font-weight: 700;
}

.project-card dl {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0;
}

.project-card dt {
  color: var(--brand-rose);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-card dd {
  margin: 0.1rem 0 0;
}

.case-row {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  padding: 1.8rem 0;
}

.case-cinema-hero {
  display: grid;
  min-height: min(760px, calc(100svh - var(--header-height)));
  overflow: clip;
  position: relative;
}

.case-cinema-hero-copy,
.case-cinema-hero-visual {
  grid-column: 1;
  grid-row: 1;
}

.case-cinema-hero-copy {
  align-self: center;
  margin-left: max(clamp(24px, 7vw, 100px), calc((100vw - var(--page-max)) / 2));
  max-width: 520px;
  padding: 68px 0 108px;
  position: relative;
  z-index: 2;
}

.case-cinema-hero-copy h1 {
  font-size: clamp(3rem, 5.2vw, 4.8rem);
  font-weight: 430;
  line-height: 0.98;
  margin-bottom: 1.4rem;
  max-width: 9ch;
}

.case-cinema-hero-copy > p:last-child {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 48ch;
}

.case-cinema-hero-visual {
  height: 100%;
  margin: 0;
  min-height: inherit;
  overflow: hidden;
}

.case-cinema-hero-visual img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--case-hero-shift, 0), 0) scale(var(--case-hero-scale, 1));
  transform-origin: center right;
  width: 100%;
}

.case-scroll-cue {
  align-items: center;
  bottom: 26px;
  color: var(--brand-violet);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 0.7rem;
  left: max(clamp(24px, 7vw, 100px), calc((100vw - var(--page-max)) / 2));
  min-height: 44px;
  position: absolute;
  z-index: 3;
}

.case-scroll-cue span {
  font-size: 1rem;
  transition: transform 220ms var(--ease-out);
}

.case-scroll-cue:hover span,
.case-scroll-cue:focus-visible span {
  transform: translateY(3px);
}

.case-cinema {
  background: var(--brand-paper);
  position: relative;
}

.case-cinema-overview {
  align-items: end;
  display: grid;
  gap: clamp(42px, 6vw, 88px);
  grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
  min-height: 430px;
  padding-bottom: 76px;
  padding-top: 82px;
}

.case-section-heading {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  max-width: 520px;
}

.case-section-heading h2 {
  color: var(--brand-ink);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 450;
  line-height: 1.05;
  margin-bottom: 0;
}

.case-section-heading > p:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 0;
}

.case-proof {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-proof-item {
  min-height: 142px;
  overflow: hidden;
  padding: 26px clamp(16px, 2.3vw, 32px) 22px;
}

.case-proof-item + .case-proof-item {
  border-left: 1px solid var(--line);
}

.case-proof-item strong,
.case-proof-item > span {
  display: block;
}

.case-proof-item strong {
  font-size: clamp(2.25rem, 3.8vw, 3.9rem);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  line-height: 1;
}

.case-proof-item > span:not(.case-signal) {
  color: var(--muted);
  font-size: 0.68rem;
  margin-top: 0.7rem;
}

.case-signal {
  background: var(--line);
  height: 1px;
  margin-top: 16px;
  overflow: hidden;
  width: 100%;
}

.case-signal-line {
  background: var(--brand-rose);
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease-out) 120ms;
  width: 100%;
}

.case-proof-item.is-visible .case-signal-line {
  transform: scaleX(1);
}

.case-cinema-stage {
  border-top: 1px solid var(--line);
  position: relative;
}

.case-study-list {
  margin-top: 0;
}

.case-cinema-scene {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(46px, 7vw, 104px);
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  min-height: 112vh;
  padding: clamp(78px, 12vh, 132px) 0;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.case-cinema-scene:nth-child(even) .case-cinema-visual {
  order: 2;
}

.case-cinema-visual {
  align-items: center;
  align-self: start;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgb(80 42 84 / 0.12);
  display: flex;
  height: min(72vh, 720px);
  justify-content: center;
  margin: 0;
  overflow: hidden;
  padding: clamp(36px, 5vw, 72px);
  position: sticky;
  top: calc(var(--header-height) + 42px);
  transform: translate3d(0, calc((var(--case-scene-progress, 0.5) - 0.5) * -22px), 0);
}

.case-cinema-visual img {
  max-height: 62%;
  object-fit: contain;
  position: relative;
  transform: scale(calc(0.97 + var(--case-scene-progress, 0.5) * 0.05));
  transition: filter 600ms var(--ease-out), transform 120ms linear;
  width: min(76%, 420px);
  z-index: 1;
}

.case-cinema-visual figcaption {
  bottom: 20px;
  color: color-mix(in oklch, var(--brand-ink) 68%, transparent);
  font-size: 0.62rem;
  left: 22px;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.case-cinema-scene--mia .case-cinema-visual {
  background: oklch(0.88 0.16 88);
}

.case-cinema-scene--mia .case-cinema-visual img,
.case-cinema-scene--sing .case-cinema-visual img {
  mix-blend-mode: multiply;
}

.case-cinema-scene--sing .case-cinema-visual {
  background: oklch(0.84 0.075 24);
}

.case-cinema-scene--gtc .case-cinema-visual {
  background: oklch(0.23 0.025 68);
  box-shadow: 0 30px 76px rgb(37 28 23 / 0.18);
}

.case-cinema-scene--gtc .case-cinema-visual img {
  filter: drop-shadow(0 22px 34px rgb(0 0 0 / 0.24));
  max-height: 70%;
}

.case-cinema-scene--gtc .case-cinema-visual figcaption {
  color: oklch(0.82 0.045 75);
}

.case-cinema-scene.is-active .case-cinema-visual img {
  filter: drop-shadow(0 20px 28px rgb(77 42 78 / 0.12));
}

.case-cinema-scene--gtc.is-active .case-cinema-visual img {
  filter: drop-shadow(0 26px 40px rgb(0 0 0 / 0.3));
}

.case-cinema-content {
  align-content: center;
  align-self: stretch;
  display: grid;
  min-width: 0;
  padding: 8vh 0;
}

.case-cinema-index {
  color: var(--brand-violet);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  margin-bottom: 22px;
}

.case-study-header {
  max-width: 700px;
}

.case-study-header h3 {
  font-size: clamp(2rem, 3.1vw, 3rem);
  font-weight: 450;
  line-height: 1.06;
  margin-bottom: clamp(30px, 4vw, 48px);
  max-width: 18ch;
}

.case-study-narrative {
  display: grid;
  gap: 0 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-study-narrative > div {
  border-top: 1px solid var(--line);
  padding: 18px 0 22px;
}

.case-study-narrative > div:first-child {
  grid-column: 1 / -1;
}

.case-study-narrative span {
  color: var(--brand-rose);
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.case-study-narrative p {
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.68;
  margin-bottom: 0;
}

.case-study-metrics {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  margin: 12px 0 22px;
}

.case-study-metrics > div {
  min-width: 0;
  overflow: hidden;
  padding: 18px 12px 18px 0;
  position: relative;
}

.case-study-metrics > div + div {
  padding-left: 16px;
}

.case-study-metrics dt {
  color: var(--muted);
  font-size: 0.6rem;
  line-height: 1.35;
  min-height: 2.7em;
}

.case-study-metrics dd {
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin: 0.55rem 0 14px;
}

.case-metric-line {
  background: var(--brand-lilac);
  bottom: 0;
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 780ms var(--ease-out) 160ms;
  width: calc(100% - 12px);
}

.case-study-metrics.is-visible .case-metric-line {
  transform: scaleX(1);
}

.case-study-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.case-study-services li {
  color: var(--ink-soft);
  font-size: 0.68rem;
  position: relative;
}

.case-study-services li + li::before {
  color: var(--brand-lilac);
  content: "/";
  left: -0.85rem;
  position: absolute;
}

.case-progress {
  display: grid;
  gap: 5px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: clamp(18px, 2vw, 34px);
  top: 50%;
  transform: translateY(-50%) translateX(14px);
  transition: opacity 260ms ease-out, transform 360ms var(--ease-out);
  width: 126px;
  z-index: 40;
}

body.case-progress-visible .case-progress {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.case-progress a {
  align-items: center;
  color: var(--muted);
  display: grid;
  font-size: 0.56rem;
  gap: 8px;
  grid-template-columns: 22px minmax(0, 1fr);
  min-height: 44px;
  position: relative;
  transition: color 180ms ease-out;
}

.case-progress a::before {
  background: var(--line);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: scaleX(0.6);
  transform-origin: left;
  transition: background 180ms ease-out, transform 220ms var(--ease-out);
  width: 20px;
}

.case-progress a span:first-child {
  padding-left: 17px;
}

.case-progress a span:last-child {
  opacity: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 180ms ease-out;
  white-space: nowrap;
}

.case-progress a:hover,
.case-progress a:focus-visible,
.case-progress a[aria-current="true"] {
  color: var(--brand-rose);
}

.case-progress a:hover::before,
.case-progress a:focus-visible::before,
.case-progress a[aria-current="true"]::before {
  background: var(--brand-rose);
  transform: scaleX(1);
}

.case-progress a:hover span:last-child,
.case-progress a:focus-visible span:last-child,
.case-progress a[aria-current="true"] span:last-child {
  opacity: 1;
}

.case-progress-tail {
  background: var(--line);
  height: 38px;
  margin-left: 10px;
  overflow: hidden;
  position: relative;
  width: 1px;
}

.case-progress-tail::after {
  background: var(--brand-rose);
  content: "";
  height: 100%;
  inset: 0;
  position: absolute;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 700ms var(--ease-out);
}

.case-progress.is-ending .case-progress-tail::after {
  transform: scaleY(1);
}

.case-future {
  align-content: center;
  background: color-mix(in oklch, var(--brand-blush) 62%, var(--brand-paper));
  display: grid;
  min-height: min(680px, 76vh);
  overflow: hidden;
  padding-bottom: clamp(70px, 10vh, 112px);
  padding-top: clamp(70px, 10vh, 112px);
  position: relative;
}

.case-future h2 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 430;
  line-height: 1;
  margin-bottom: 1.4rem;
  max-width: 13ch;
}

.case-future .kicker {
  color: var(--brand-rose);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.case-future > p:not(.kicker) {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 58ch;
}

.case-future-line {
  background: var(--brand-rose);
  height: 2px;
  margin: clamp(42px, 7vw, 78px) 0 28px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1200ms var(--ease-out);
  width: 100%;
}

.case-future.is-visible .case-future-line {
  transform: scaleX(1);
}

.case-future-track {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.case-future-track li {
  color: var(--brand-violet);
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 480ms ease-out, transform 560ms var(--ease-out);
}

.case-future-track li + li::before {
  color: var(--brand-lilac);
  content: "/";
  margin-right: 30px;
}

.case-future.is-visible .case-future-track li {
  opacity: 1;
  transform: none;
}

.case-future.is-visible .case-future-track li:nth-child(2) {
  transition-delay: 80ms;
}

.case-future.is-visible .case-future-track li:nth-child(3) {
  transition-delay: 160ms;
}

.case-future.is-visible .case-future-track li:nth-child(4) {
  transition-delay: 240ms;
}

.case-future.is-visible .case-future-track li:nth-child(5) {
  transition-delay: 320ms;
}

body[data-page="/case-studies/"] .final-cta {
  margin-top: clamp(42px, 6vw, 78px);
}

.js .case-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 680ms var(--ease-out), transform 720ms var(--ease-out);
}

.js .case-reveal.is-visible,
.js .case-cinema-scene.is-active .case-reveal {
  opacity: 1;
  transform: none;
}

.js .case-cinema-scene.is-active .case-study-narrative .case-reveal:nth-child(2) {
  transition-delay: 90ms;
}

.js .case-cinema-scene.is-active .case-study-narrative .case-reveal:nth-child(3) {
  transition-delay: 170ms;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.proof-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1rem;
}

.about-section,
.careers-section {
  display: grid;
  gap: 2.2rem;
}

body[data-page="/contact/"] main {
  background: var(--brand-paper);
}

.contact-hero {
  background: linear-gradient(118deg, var(--brand-paper) 0%, var(--brand-paper) 48%, var(--brand-blush) 100%);
  border-bottom: 1px solid color-mix(in oklch, var(--brand-lilac) 24%, transparent);
  min-height: min(590px, calc(100svh - var(--header-height)));
  overflow: hidden;
}

.contact-hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(40px, 6vw, 92px);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  margin: 0 auto;
  max-width: var(--page-max);
  min-height: inherit;
  padding: clamp(64px, 8vw, 112px) clamp(24px, 7vw, 100px);
}

.contact-hero-copy {
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.contact-hero-copy .kicker,
.contact-intro .kicker {
  color: var(--brand-violet);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  margin-bottom: 1.35rem;
  text-transform: uppercase;
}

.contact-hero h1 {
  font-size: clamp(3.25rem, 5.35vw, 5.4rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin-bottom: 1.65rem;
  max-width: 12ch;
}

.contact-hero h1 span {
  background: linear-gradient(90deg, var(--brand-violet), var(--brand-rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.contact-hero-copy > p:not(.kicker) {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  max-width: 48ch;
}

.contact-hero-link {
  align-items: center;
  color: var(--brand-violet);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 0.8rem;
  min-height: 44px;
  position: relative;
}

.contact-hero-link::after {
  background: linear-gradient(90deg, var(--brand-violet), var(--brand-rose));
  content: "";
  height: 1px;
  width: 74px;
}

.contact-hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 390px;
  position: relative;
}

.contact-hero-visual img {
  border-radius: 34px;
  filter: drop-shadow(0 28px 42px rgb(113 47 151 / 0.12));
  height: auto;
  max-width: 700px;
  width: min(100%, 700px);
}

.contact-main {
  padding: clamp(72px, 8vw, 116px) clamp(24px, 7vw, 100px);
}

.contact-main-inner {
  align-items: start;
  display: grid;
  gap: clamp(48px, 7vw, 96px);
  grid-template-columns: minmax(260px, 0.72fr) minmax(480px, 1.28fr);
  margin: 0 auto;
  max-width: var(--content-max);
}

.contact-intro {
  padding-top: 0.45rem;
}

.contact-intro h2 {
  font-size: clamp(2.4rem, 3.7vw, 4rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 1.3rem;
  max-width: 11ch;
}

.contact-intro-copy {
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 39ch;
}

.contact-details {
  margin: 0 0 2rem;
}

.contact-details > div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 76px minmax(0, 1fr);
  padding: 1rem 0;
}

.contact-details > div:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-details dt {
  color: var(--brand-ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-details dd {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0;
  overflow-wrap: anywhere;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--brand-violet);
}

.contact-market-note {
  background: var(--brand-blush);
  border: 1px solid color-mix(in oklch, var(--brand-lilac) 40%, var(--line));
  border-radius: 14px;
  padding: 1.2rem;
}

.contact-market-note strong {
  color: var(--brand-violet);
  font-size: 1.05rem;
  line-height: 1.3;
}

.contact-market-note strong span {
  color: var(--brand-rose);
}

.contact-market-note p {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0.65rem 0 0;
}

.contact-form-shell {
  background: var(--brand-paper);
  border: 1px solid color-mix(in oklch, var(--brand-lilac) 20%, var(--line));
  border-radius: 24px;
  box-shadow: 0 24px 70px rgb(76 38 94 / 0.09);
  display: grid;
  gap: 1.05rem;
  padding: clamp(26px, 4vw, 44px);
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.contact-form-heading {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 54px minmax(0, 1fr);
  margin-bottom: 0.35rem;
}

.contact-form-heading img {
  background: var(--brand-blush);
  border-radius: 16px;
  height: 54px;
  object-fit: contain;
  padding: 9px;
  width: 54px;
}

.contact-form-heading h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  margin-bottom: 0.15rem;
}

.contact-form-heading p {
  color: var(--ink-soft);
  font-size: 0.84rem;
  margin-bottom: 0;
}

.contact-form label {
  display: grid;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 0.48rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--brand-paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--brand-ink);
  min-height: 52px;
  padding: 0.85rem 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.contact-form textarea {
  line-height: 1.55;
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--brand-violet);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--brand-lilac) 28%, transparent);
  outline: none;
}

.message-count {
  color: var(--muted);
  font-size: 0.72rem;
  margin: -0.6rem 0 0;
  text-align: right;
}

.contact-form button {
  background: linear-gradient(95deg, var(--brand-violet), var(--brand-rose));
  border: 0;
  border-radius: 999px;
  color: var(--brand-paper);
  cursor: pointer;
  font-weight: 700;
  min-height: 52px;
  padding: 0.8rem 1.25rem;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  box-shadow: 0 14px 32px rgb(151 55 152 / 0.22);
  transform: translateY(-1px);
}

.form-status {
  color: var(--ink-soft);
  font-size: 0.82rem;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .contact-hero-inner {
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  }

  .contact-hero-visual {
    min-height: 320px;
  }

  .contact-main-inner {
    gap: 44px;
    grid-template-columns: minmax(230px, 0.75fr) minmax(420px, 1.25fr);
  }
}

@media (max-width: 680px) {
  .contact-hero {
    min-height: auto;
  }

  .contact-hero-inner {
    gap: 10px;
    grid-template-columns: 1fr;
    padding-bottom: 36px;
    padding-top: 54px;
  }

  .contact-hero h1 {
    font-size: clamp(2.85rem, 14vw, 4rem);
    max-width: 10ch;
  }

  .contact-hero-visual {
    min-height: 250px;
  }

  .contact-hero-visual img {
    border-radius: 24px;
    max-width: 380px;
  }

  .contact-main {
    padding-bottom: 72px;
    padding-top: 64px;
  }

  .contact-main-inner {
    grid-template-columns: 1fr;
  }

  .contact-intro h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .contact-form-shell {
    border-radius: 18px;
    margin-inline: -8px;
    padding: 24px 20px;
  }

  .contact-form-heading {
    align-items: start;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .contact-form-heading img {
    border-radius: 14px;
    height: 48px;
    width: 48px;
  }
}

.final-cta {
  background: linear-gradient(100deg, var(--brand-violet), var(--brand-pink));
  border-radius: var(--radius);
  color: var(--brand-paper);
  margin-bottom: clamp(48px, 7vw, 90px);
  padding: clamp(36px, 5vw, 64px);
}

.site-footer {
  background: var(--brand-paper);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px clamp(24px, 4vw, 56px);
  grid-template-columns: minmax(200px, 1.2fr) repeat(5, minmax(105px, 0.7fr));
  padding: 24px clamp(24px, 7vw, 100px) 12px;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 0.45rem;
  object-fit: contain;
  object-position: left center;
  width: 44px;
}

.footer-brand p {
  font-size: 0.64rem;
  line-height: 1.35;
  margin-bottom: 0.2rem;
  max-width: 29ch;
}

.footer-column {
  align-content: start;
  display: grid;
  gap: 0.2rem;
}

.footer-column strong {
  font-size: 0.7rem;
  margin-bottom: 0.15rem;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.footer-column a {
  min-height: 18px;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--brand-rose);
}

.footer-legal {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 0.62rem;
  gap: 1rem;
  grid-column: 1 / -1;
  justify-content: flex-end;
  padding-top: 0.5rem;
}

.footer-legal span {
  margin-right: auto;
}

.js .home-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.js .home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .home-hero-copy {
    animation: home-copy-in 760ms var(--ease-out) both;
  }

  .home-hero-visual img {
    animation: home-logo-in 920ms var(--ease-out) both, home-logo-float 7s ease-in-out 1s infinite;
  }
}

@keyframes home-copy-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-logo-in {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes home-logo-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 1rem;
    grid-template-columns: 80px minmax(0, 1fr) 100px;
    padding-inline: 28px;
  }

  .site-nav {
    gap: 20px;
  }

  .home-services-grid {
    grid-template-columns: 110px minmax(230px, 0.72fr) minmax(480px, 1.45fr);
  }

  .home-services-list {
    gap: 24px 24px;
  }

  .home-about-grid {
    grid-template-columns: minmax(260px, 0.8fr) minmax(210px, 0.65fr) minmax(330px, 1fr);
  }

  .home-cta-inner {
    gap: 18px;
    grid-template-columns: minmax(240px, 1.1fr) 90px minmax(180px, 0.75fr) minmax(120px, auto);
    padding-inline: 28px;
  }

  .site-footer {
    grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(140px, 0.8fr));
  }
}

@media (max-width: 1100px) {
  .case-study-project {
    grid-template-columns: 1fr;
  }

  .case-study-project:nth-child(even) .case-study-visual {
    order: initial;
  }

  .case-study-visual {
    min-height: 440px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .js .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    align-items: stretch;
    background: var(--brand-paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 20px;
    padding: 0.55rem;
    position: absolute;
    right: 20px;
    top: calc(100% + 8px);
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav.is-open {
    display: flex;
  }

  html:not(.js) .site-header {
    grid-template-columns: 1fr;
    height: auto;
    min-height: var(--header-height);
    padding-block: 10px;
  }

  html:not(.js) .site-nav {
    border: 0;
    box-shadow: none;
    grid-column: 1 / -1;
    left: auto;
    padding: 0;
    position: static;
    right: auto;
    top: auto;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .site-nav a::after {
    bottom: auto;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
  }

  .site-nav a.is-active::after {
    transform: translateY(-50%);
  }

  .home-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  }

  .home-hero h1 {
    font-size: clamp(2.65rem, 6vw, 3.7rem);
  }

  .home-hero-visual {
    min-height: 400px;
  }

  .home-global-grid {
    gap: 24px;
    grid-template-columns: minmax(240px, 0.65fr) minmax(380px, 1.35fr);
  }

  .home-services-grid {
    grid-template-columns: 100px minmax(0, 0.7fr) minmax(0, 1.3fr);
  }

  .home-services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-entertainment {
    height: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-entertainment-intro {
    min-height: 280px;
  }

  .home-entertainment-card {
    height: 290px;
    min-height: 0;
  }

  .home-about-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(230px, 0.7fr);
  }

  .home-stats {
    grid-column: 1 / -1;
  }

  .home-cta-inner {
    grid-template-columns: minmax(280px, 1.2fr) 100px minmax(220px, 0.8fr);
  }

  .home-cta .button {
    grid-column: 3;
    justify-self: start;
  }

  .pulse-layout,
  .entertainment-layout,
  .split-section,
  .contact-layout,
  .career-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-inline: 18px;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .home-shell {
    width: calc(100% - 40px);
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-inner {
    gap: 24px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 62px 0 42px;
  }

  .home-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.2rem);
  }

  .home-hero-visual {
    height: min(92vw, 520px);
    min-height: 350px;
  }

  .home-proof {
    margin-top: 30px;
  }

  .home-global-grid,
  .home-services-grid,
  .home-cases-grid,
  .home-about-grid {
    grid-template-columns: 1fr;
  }

  .home-global-grid,
  .home-services-grid,
  .home-cases-grid,
  .home-about-grid {
    padding: 56px 0;
  }

  .home-map-wrap {
    margin-inline: -12px;
  }

  .home-services-art {
    height: 210px;
    margin-left: -20px;
    width: 150px;
  }

  .home-services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-entertainment-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-entertainment-card {
    height: 330px;
    min-height: 0;
  }

  .home-case-cards {
    grid-template-columns: 1fr;
  }

  .home-case-card {
    aspect-ratio: 1.2;
  }

  .home-about-art {
    margin-inline: auto;
    max-width: 330px;
  }

  .home-cta-inner {
    gap: 18px;
    grid-template-columns: 1fr;
    padding: 32px 26px;
  }

  .home-cta img {
    height: 130px;
    position: absolute;
    right: 0;
    top: 18px;
    width: 130px;
  }

  .home-cta p {
    max-width: 38ch;
    position: relative;
    z-index: 2;
  }

  .home-cta .button {
    grid-column: auto;
    justify-self: start;
    position: relative;
    z-index: 2;
  }

  .showcase-item,
  .case-row {
    grid-template-columns: 1fr;
  }

  .case-study-project {
    grid-template-columns: 1fr;
  }

  .case-study-project:nth-child(even) .case-study-visual {
    order: initial;
  }

  .case-study-visual {
    min-height: 380px;
  }

  .case-study-header h3 {
    max-width: 18ch;
  }

  .showcase-meta {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 1rem;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 48px 24px 20px;
  }

  .footer-column a,
  .footer-legal a {
    align-items: center;
    display: inline-flex;
    min-height: 44px;
  }

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

@media (max-width: 480px) {
  .home-hero-inner {
    gap: 14px;
    padding: 48px 0 20px;
  }

  .home-proof {
    display: none;
  }

  .home-hero-visual {
    height: 160px;
    min-height: 160px;
  }

  .home-hero-visual img {
    height: 125%;
    width: 125%;
  }

  .home-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero-actions .button {
    width: 100%;
  }

  .home-entertainment-cards,
  .home-services-list,
  .home-stats {
    grid-template-columns: 1fr;
  }

  .home-entertainment-card {
    height: 420px;
    min-height: 0;
  }

  .home-case-card {
    aspect-ratio: 1.16;
  }

  .home-cta img {
    right: 10px;
    transform: rotate(-10deg) scale(1.05);
  }

  .home-cta h2 {
    max-width: 12ch;
  }

  .home-stat:nth-child(odd) {
    border-right: 0;
  }

  .home-stats {
    border-left: 0;
    border-top: 1px solid var(--brand-violet);
  }

  .home-stat {
    min-height: 112px;
  }

  .case-proof,
  .case-study-narrative {
    grid-template-columns: 1fr;
  }

  .case-proof-item {
    min-height: 116px;
  }

  .case-proof-item + .case-proof-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .case-study-narrative > div:first-child {
    grid-column: auto;
  }

  .case-study-visual {
    min-height: 300px;
    padding: 34px 24px;
  }

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

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

  .footer-brand,
  .footer-legal {
    grid-column: auto;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal span {
    margin-right: 0;
  }
}

@media (max-width: 1100px) {
  .case-cinema-overview {
    align-items: start;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .case-section-heading {
    max-width: 650px;
  }

  .case-cinema-scene {
    gap: 42px;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 82px 0 96px;
  }

  .case-cinema-scene:nth-child(even) .case-cinema-visual {
    order: initial;
  }

  .case-cinema-visual {
    height: min(58vw, 560px);
    position: relative;
    top: auto;
    transform: none;
  }

  .case-cinema-content {
    padding: 0;
  }

  .case-progress {
    display: none;
  }
}

@media (max-width: 820px) {
  .case-cinema-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .case-cinema-hero-copy {
    margin-left: 0;
    max-width: none;
    order: 1;
    padding: 56px 24px 30px;
  }

  .case-cinema-hero-copy h1 {
    font-size: clamp(2.7rem, 9vw, 4rem);
    max-width: 10ch;
  }

  .case-cinema-hero-visual {
    height: clamp(290px, 50vw, 390px);
    min-height: 0;
    order: 2;
  }

  .case-cinema-hero-visual img {
    object-position: 60% center;
  }

  .case-scroll-cue {
    bottom: 12px;
    left: 24px;
  }

  .case-cinema-overview {
    gap: 38px;
    padding-bottom: 58px;
    padding-top: 64px;
  }

  .case-proof-item {
    min-height: 126px;
  }

  .case-cinema-scene {
    gap: 34px;
    padding: 64px 0 76px;
  }

  .case-cinema-visual {
    height: min(78vw, 520px);
    min-height: 340px;
    padding: 38px 28px;
  }

  .case-study-header h3 {
    font-size: clamp(2rem, 6vw, 2.65rem);
  }

  .case-future {
    min-height: 620px;
  }

  body[data-page="/case-studies/"] .final-cta {
    margin-left: 24px;
    margin-right: 24px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .case-cinema-hero-copy {
    padding-top: 48px;
  }

  .case-cinema-hero-copy h1 {
    font-size: 2.65rem;
  }

  .case-cinema-hero-visual {
    height: 248px;
  }

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

  .case-proof-item {
    min-height: 108px;
    padding: 20px 0 18px;
  }

  .case-proof-item + .case-proof-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .case-proof-item strong {
    font-size: 2.45rem;
  }

  .case-cinema-visual {
    height: 340px;
    min-height: 0;
  }

  .case-study-narrative {
    grid-template-columns: 1fr;
  }

  .case-study-narrative > div:first-child {
    grid-column: auto;
  }

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

  .case-study-metrics > div:nth-child(odd) {
    padding-left: 0;
  }

  .case-study-services {
    display: grid;
    gap: 10px 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-services li {
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }

  .case-study-services li + li::before {
    content: none;
  }

  .case-future {
    min-height: 560px;
  }

  .case-future h2 {
    font-size: 2.5rem;
  }

  .case-future-track {
    display: grid;
    gap: 12px;
  }

  .case-future-track li + li::before {
    content: none;
  }

  body[data-page="/case-studies/"] .final-cta {
    margin-left: 16px;
    margin-right: 16px;
  }
}

@media (max-width: 1180px) {
  .services-hero-copy {
    padding-left: 48px;
  }

  .services-scroll-cue {
    left: 48px;
  }

  .services-cta-inner {
    grid-template-columns: minmax(260px, 1.1fr) 110px minmax(210px, 0.8fr) auto;
  }
}

@media (max-width: 980px) {
  .services-hero-inner {
    grid-template-columns: minmax(310px, 0.82fr) minmax(400px, 1.18fr);
  }

  .services-hero-copy h1 {
    font-size: 4.4rem;
  }

  body[data-page="/services/"] .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="/services/"] .service-card {
    min-height: 266px;
  }

  .services-impact {
    grid-template-columns: 1fr;
  }

  .services-stats {
    border-top: 1px solid color-mix(in oklch, var(--line) 88%, var(--brand-lilac));
  }

  .services-stat {
    border-left: 0;
  }

  .services-stat + .services-stat {
    border-left: 1px solid color-mix(in oklch, var(--line) 88%, var(--brand-lilac));
  }

  .services-cta-inner {
    grid-template-columns: minmax(260px, 1fr) 120px minmax(230px, 0.9fr);
  }

  .services-cta-button {
    grid-column: 3;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .services-hero,
  .services-hero-inner {
    min-height: 0;
  }

  .services-hero-inner {
    grid-template-columns: 1fr;
  }

  .services-hero-copy {
    min-height: 330px;
    padding: 64px 24px 48px;
  }

  .services-hero-copy h1 {
    font-size: 3.9rem;
  }

  .services-hero-visual {
    height: 330px;
  }

  .services-hero-visual::before {
    background: linear-gradient(180deg, var(--brand-paper), transparent 22%);
  }

  .services-hero-visual img {
    object-position: 62% center;
    width: 112%;
  }

  .services-scroll-cue {
    bottom: 12px;
    left: 24px;
  }

  .services-breakdown {
    padding-bottom: 34px;
    padding-top: 54px;
  }

  body[data-page="/services/"] .section-heading h2 {
    font-size: 1.8rem;
  }

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

  .services-stat {
    min-height: 150px;
  }

  .services-stat:nth-child(3) {
    border-left: 0;
  }

  .services-stat:nth-child(n + 3) {
    border-top: 1px solid color-mix(in oklch, var(--line) 88%, var(--brand-lilac));
  }

  .services-cta {
    padding-inline: 24px;
  }

  .services-cta-inner {
    gap: 18px;
    grid-template-columns: 1fr;
    min-height: 300px;
    padding: 32px 26px;
  }

  .services-cta h2 {
    font-size: 2.35rem;
    max-width: 12ch;
  }

  .services-cta img {
    height: 190px;
    opacity: 0.34;
    position: absolute;
    right: -16px;
    top: -2px;
    width: 190px;
  }

  .services-cta p {
    max-width: 38ch;
  }

  .services-cta-button {
    grid-column: auto;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .services-hero-copy {
    min-height: 300px;
    padding-top: 52px;
  }

  .services-hero-copy h1 {
    font-size: 3.25rem;
  }

  .services-hero-copy > p:last-child {
    font-size: 0.96rem;
  }

  .services-hero-visual {
    height: 260px;
  }

  body[data-page="/services/"] .service-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="/services/"] .service-card {
    min-height: 252px;
  }

  .services-impact-copy {
    padding: 26px 22px;
  }

  .services-stat {
    padding: 20px;
  }

  .services-stat strong {
    font-size: 1.75rem;
  }

  .services-cta {
    padding-inline: 16px;
  }
}

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

  .js .home-reveal {
    opacity: 1;
    transform: none;
  }

  .js .services-reveal {
    opacity: 1;
    transform: none;
  }

  .case-cinema-hero-visual img,
  .case-cinema-visual,
  .case-cinema-visual img,
  .js .case-reveal,
  .case-future-track li {
    opacity: 1;
    transform: none;
  }

  .case-signal-line,
  .case-metric-line,
  .case-future-line,
  .case-progress-tail::after {
    transform: none;
  }
}
