: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 span {
  background: color-mix(in oklch, var(--brand-lilac) 10%, var(--brand-paper));
  border: 1px solid color-mix(in oklch, var(--brand-violet) 18%, transparent);
  border-radius: 999px;
  color: var(--brand-violet);
  display: inline-flex;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.58rem 0.85rem;
}

.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: 160px minmax(230px, 0.72fr) minmax(440px, 1.5fr);
  min-height: 470px;
  padding: 0;
}

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

.home-services-art {
  align-self: center;
  border-radius: 18px;
  height: 280px;
  margin: 0;
  overflow: hidden;
}

.home-services-art img {
  height: 100%;
  object-fit: cover;
  object-position: 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(250px, 0.5fr) minmax(0, 1.5fr);
  min-height: 560px;
  padding: 64px 0;
}

.home-cases-intro h2 {
  font-size: clamp(2rem, 3vw, 3.45rem);
}

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

.home-case-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(210px, 1fr));
}

.home-case-card {
  background: var(--brand-ink);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgb(54 21 69 / 0.14);
  grid-column: span 5;
  isolation: isolate;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.home-case-card--lead {
  grid-column: span 7;
  grid-row: span 2;
}

.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-visual,
.home-case-art {
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.home-case-art {
  object-fit: cover;
  transition: filter 320ms ease-out, transform 480ms var(--ease-out);
}

.home-case-logo {
  background: rgb(255 255 255 / 0.9);
  border-radius: 10px;
  height: 44px;
  object-fit: contain;
  padding: 6px;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 44px;
  z-index: 3;
}

.home-case-copy {
  bottom: 18px;
  gap: 0.42rem;
  left: 18px;
  right: 18px;
}

.home-case-copy small {
  color: color-mix(in oklch, var(--brand-paper) 78%, transparent);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.home-case-copy strong {
  font-size: clamp(1.15rem, 2vw, 2rem);
}

.home-case-copy b {
  align-items: center;
  color: var(--brand-paper);
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 700;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.home-case-card:hover .home-case-art,
.home-case-card:focus-visible .home-case-art {
  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 {
  border-radius: 20px;
  box-shadow: 0 18px 50px rgb(63 25 78 / 0.12);
  margin-bottom: 0;
  overflow: hidden;
}

.home-about-art img {
  aspect-ratio: 1.18;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  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-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;
}

#careers {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

#inquiry-form {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.careers-section {
  background:
    radial-gradient(circle at 92% 2%, color-mix(in oklch, var(--brand-paper) 20%, transparent) 0 7%, transparent 7.2%),
    radial-gradient(circle at 84% 16%, transparent 0 18%, color-mix(in oklch, var(--brand-paper) 16%, transparent) 18.2% 18.6%, transparent 18.8%),
    linear-gradient(
      118deg,
      color-mix(in oklch, var(--brand-rose) 80%, var(--brand-ink)),
      color-mix(in oklch, var(--brand-violet) 84%, var(--brand-ink))
    );
  border-radius: clamp(24px, 3vw, 40px);
  color: var(--brand-paper);
  margin-bottom: clamp(48px, 7vw, 88px);
  overflow: hidden;
  padding: clamp(40px, 6vw, 76px);
  position: relative;
}

.career-layout {
  align-items: start;
  gap: clamp(32px, 6vw, 72px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  position: relative;
  z-index: 1;
}

.career-lead {
  max-width: 620px;
}

.career-lead .kicker {
  color: color-mix(in oklch, var(--brand-paper) 92%, transparent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.career-lead h2 {
  color: var(--brand-paper);
  font-size: clamp(2.35rem, 4.5vw, 4.4rem);
  line-height: 0.98;
  margin: 0.85rem 0 1.35rem;
  max-width: 12ch;
}

.career-lead p {
  color: color-mix(in oklch, var(--brand-paper) 96%, transparent);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 58ch;
}

.career-role {
  backdrop-filter: blur(12px);
  background: color-mix(in oklch, var(--brand-ink) 24%, transparent);
  border: 1px solid color-mix(in oklch, var(--brand-paper) 34%, transparent);
  border-radius: clamp(18px, 2vw, 26px);
  box-shadow: 0 24px 60px rgb(54 18 72 / 0.18);
  padding: clamp(24px, 3.4vw, 38px);
}

.career-role-meta {
  color: color-mix(in oklch, var(--brand-paper) 92%, transparent);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.7rem;
  font-weight: 700;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  text-transform: uppercase;
}

.career-role h3 {
  color: var(--brand-paper);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
  margin: 1.7rem 0 0.9rem;
}

.career-role-summary {
  color: color-mix(in oklch, var(--brand-paper) 96%, transparent);
  line-height: 1.65;
}

.career-facts {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.35rem 0 1rem;
}

.career-facts > div {
  border-top: 1px solid color-mix(in oklch, var(--brand-paper) 22%, transparent);
  padding: 0.9rem 0;
}

.career-facts > div:nth-child(odd) {
  padding-right: 1rem;
}

.career-facts > div:nth-child(even) {
  padding-left: 1rem;
}

.career-facts > div:nth-child(2) {
  grid-column: 1 / -1;
  padding-left: 0;
  padding-right: 0;
}

.career-facts dt,
.career-apply-label {
  color: color-mix(in oklch, var(--brand-paper) 82%, transparent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-facts dd {
  color: var(--brand-paper);
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0.3rem 0 0;
}

.career-details {
  border-block: 1px solid color-mix(in oklch, var(--brand-paper) 26%, transparent);
  margin-top: 0.35rem;
}

.career-details summary {
  align-items: center;
  color: var(--brand-paper);
  cursor: pointer;
  display: flex;
  font-size: 0.82rem;
  font-weight: 750;
  gap: 1rem;
  justify-content: space-between;
  list-style: none;
  min-height: 48px;
  padding-block: 0.75rem;
}

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

.career-details summary:focus-visible {
  outline: 3px solid var(--brand-paper);
  outline-offset: 4px;
}

.career-details-icon {
  flex: 0 0 18px;
  height: 18px;
  position: relative;
  transition: transform 180ms ease;
  width: 18px;
}

.career-details-icon::before,
.career-details-icon::after {
  background: currentColor;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.career-details-icon::before {
  height: 2px;
  width: 14px;
}

.career-details-icon::after {
  height: 14px;
  width: 2px;
}

.career-details[open] .career-details-icon {
  transform: rotate(45deg);
}

.career-details-content {
  padding: 0.3rem 0 1.25rem;
}

.career-detail-group + .career-detail-group {
  margin-top: 1.25rem;
}

.career-detail-group h4 {
  color: var(--brand-paper);
  font-size: 0.86rem;
  margin: 0 0 0.6rem;
}

.career-detail-group ul {
  color: color-mix(in oklch, var(--brand-paper) 94%, transparent);
  display: grid;
  font-size: 0.78rem;
  gap: 0.55rem;
  line-height: 1.55;
  margin: 0;
  padding-left: 1.15rem;
}

.career-apply {
  background: color-mix(in oklch, var(--brand-paper) 11%, transparent);
  border-radius: 14px;
  margin-top: 1.15rem;
  padding: 1rem 1.1rem;
}

.career-apply p:last-child {
  color: var(--brand-paper);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0.4rem 0 0;
}

.career-talent {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  margin-top: 1.1rem;
}

.career-talent p {
  color: color-mix(in oklch, var(--brand-paper) 90%, transparent);
  font-size: 0.76rem;
  line-height: 1.5;
  margin: 0;
}

.career-cta {
  background: var(--brand-paper);
  border-radius: 999px;
  color: var(--brand-rose);
  font-size: 0.76rem;
  min-height: 46px;
}

.career-cta:hover,
.career-cta:focus-visible {
  box-shadow: 0 16px 36px rgb(58 20 70 / 0.24);
  color: var(--brand-violet);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}

.contact-form label {
  display: grid;
  font-weight: 600;
  gap: 0.45rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--brand-paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--brand-ink);
  min-height: 48px;
  padding: 0.8rem;
  width: 100%;
}

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

.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;
  }

  .career-layout {
    grid-template-columns: 1fr;
  }

  .careers-section {
    border-radius: 24px;
    margin-inline: 20px;
    padding: 44px 28px;
  }

  .career-lead h2 {
    max-width: 14ch;
  }

  .career-facts {
    grid-template-columns: 1fr;
  }

  .career-facts > div,
  .career-facts > div:nth-child(odd),
  .career-facts > div:nth-child(even),
  .career-facts > div:nth-child(2) {
    grid-column: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .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;
    grid-template-rows: none;
  }

  .home-case-card {
    aspect-ratio: 1.2;
    grid-column: auto;
    grid-row: auto;
  }

  .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;
  }
}

/* Services reference redesign — 2026-07-16 */
body[data-page="/services/"] {
  background: #fff;
}

body[data-page="/services/"] .site-header {
  background: rgb(255 255 255 / 0.9);
}

.services-hero {
  background: #fff;
  border-bottom: 0;
  min-height: 500px;
}

.services-hero::after {
  background: linear-gradient(180deg, transparent, rgb(246 239 255 / 0.82));
  bottom: 0;
  content: "";
  height: 82px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
}

.services-hero-inner {
  grid-template-columns: minmax(390px, 0.78fr) minmax(600px, 1.22fr);
  max-width: 1600px;
  min-height: 500px;
}

.services-hero-copy {
  align-content: center;
  padding: 60px 20px 76px max(64px, calc((100vw - 1420px) / 2 + 56px));
}

.services-hero-copy .kicker,
.services-impact-copy .kicker,
.services-process-intro .kicker {
  color: var(--brand-rose);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  margin-bottom: 1.55rem;
}

.services-hero-copy h1 {
  color: var(--brand-ink);
  font-size: clamp(2.75rem, 3.7vw, 4rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin-bottom: 1.4rem;
  max-width: 14ch;
}

.services-hero-copy h1 span,
body[data-page="/services/"] .section-heading h2 span,
.services-process-intro h2 span {
  background: linear-gradient(90deg, #7439f0, #f2348a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-hero-copy > p:last-of-type {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 37ch;
}

.services-hero-button {
  box-shadow: 0 12px 28px rgb(127 55 221 / 0.2);
  min-height: 48px;
}

.services-hero-visual {
  min-height: 500px;
}

.services-hero-visual::before {
  background: linear-gradient(90deg, #fff 0%, rgb(255 255 255 / 0.72) 12%, transparent 35%);
}

.services-hero-visual::after {
  background: linear-gradient(180deg, transparent 73%, rgb(248 243 255 / 0.68));
}

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

.services-breakdown {
  max-width: 1420px;
  padding-bottom: 34px;
  padding-top: 48px;
}

body[data-page="/services/"] .section-heading {
  margin: 0 auto 2.2rem;
  max-width: 780px;
  text-align: center;
}

body[data-page="/services/"] .section-heading .kicker {
  color: var(--brand-rose);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.7rem;
}

body[data-page="/services/"] .section-heading h2 {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 auto 0.8rem;
  max-width: 18ch;
}

body[data-page="/services/"] .section-heading > p:last-child {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 72ch;
}

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

body[data-page="/services/"] .service-card {
  background: #fff;
  border: 1px solid #e9e1f4;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgb(95 56 139 / 0.045);
  min-height: 270px;
  padding: 18px 18px 16px;
}

body[data-page="/services/"] .service-card::before {
  display: none;
}

body[data-page="/services/"] .service-card:hover,
body[data-page="/services/"] .service-card:focus-within {
  border-color: #d9c4f0;
  box-shadow: 0 20px 42px rgb(119 72 137 / 0.12);
  transform: translateY(-6px);
}

.service-card-icon {
  background: #fbf8ff;
  border-color: #e7dbf6;
  box-shadow: none;
  height: 46px;
  margin-bottom: 10px;
  width: 46px;
}

.service-card:hover .service-card-icon,
.service-card:focus-within .service-card-icon {
  box-shadow: 0 10px 22px rgb(159 65 155 / 0.14);
}

.service-card-number {
  font-size: 0.66rem;
  margin-bottom: 0.3rem;
}

body[data-page="/services/"] .service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

body[data-page="/services/"] .service-card > p {
  font-size: 0.71rem;
  line-height: 1.5;
  margin-bottom: 78px;
  max-width: 30ch;
}

.service-card-art {
  bottom: -1px;
  height: 220px;
  left: 0;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.98;
  position: absolute;
  width: 100%;
  z-index: 0;
}

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

.service-card-details summary {
  background: rgb(255 255 255 / 0.9);
  bottom: 14px;
  height: 34px;
  right: 14px;
  width: 34px;
  z-index: 5;
}

.service-card-panel {
  border-radius: 0 0 15px 15px;
  z-index: 4;
}

.services-impact {
  background: #fff;
  border-color: #e7def2;
  border-radius: 16px;
  grid-template-columns: minmax(260px, 1.08fr) minmax(0, 2.92fr);
  margin-top: 24px;
}

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

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

.services-impact-copy h2 {
  font-size: 1.75rem;
  font-weight: 620;
}

.services-impact-copy > p:last-child {
  font-size: 0.69rem;
}

.services-stat {
  min-height: 166px;
  padding: 22px;
}

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

.services-stat img {
  margin-bottom: 14px;
}

.services-stat strong {
  font-size: 1.8rem;
  font-weight: 620;
}

.services-process {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(245px, 0.92fr) minmax(0, 3.08fr);
  padding: 38px 0 28px;
}

.services-process-intro h2 {
  font-size: 1.85rem;
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 0.6rem;
}

.services-process-intro .kicker {
  margin-bottom: 0.65rem;
}

.services-process-intro > p:not(.kicker) {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
  margin-bottom: 0.7rem;
  max-width: 31ch;
}

.services-process-intro a {
  color: var(--brand-violet);
  font-size: 0.69rem;
  font-weight: 700;
}

.services-process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.services-process-step {
  min-width: 0;
  padding: 0 14px;
  position: relative;
}

.services-process-step:not(:last-child)::after {
  border-top: 1px dashed #cdb8e8;
  content: "";
  left: 68px;
  position: absolute;
  right: -6px;
  top: 26px;
}

.services-process-icon {
  align-items: center;
  background: #fff;
  border: 1px solid #e6dcf3;
  border-radius: 50%;
  display: flex;
  height: 54px;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
  width: 54px;
  z-index: 1;
}

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

.services-process-number {
  color: var(--brand-rose);
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.services-process-step h3 {
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}

.services-process-step p {
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.45;
  margin-bottom: 0;
}

.services-cta {
  max-width: 1420px;
  padding: 0 clamp(24px, 4vw, 64px);
}

.services-cta-inner {
  background: linear-gradient(104deg, #7138ec, #a84ee7 42%, #ed3e92);
  border-radius: 14px;
  gap: 22px;
  grid-template-columns: 180px minmax(320px, 1.2fr) minmax(240px, 0.8fr) auto;
  min-height: 118px;
  padding: 12px 36px 12px 0;
}

.services-cta h2 {
  font-size: 2rem;
  font-weight: 620;
}

.services-cta img {
  height: 140px;
  justify-self: center;
  opacity: 0.5;
  transform: rotate(-10deg) scale(1.1);
  width: 140px;
}

.services-cta p {
  color: rgb(255 255 255 / 0.82);
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .services-hero-inner {
    grid-template-columns: minmax(330px, 0.8fr) minmax(480px, 1.2fr);
  }

  .services-hero-copy {
    padding-left: 48px;
  }

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

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

  .services-cta-inner {
    grid-template-columns: 130px 1fr auto;
  }

  .services-cta p {
    display: none;
  }
}

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

  .services-hero-inner {
    display: flex;
    flex-direction: column;
  }

  .services-hero-copy {
    padding: 48px 24px 18px;
  }

  .services-hero-copy h1 {
    font-size: clamp(2.85rem, 11vw, 4rem);
  }

  .services-hero-visual {
    flex: 1;
    min-height: 360px;
  }

  .services-hero-visual::before {
    background: linear-gradient(180deg, #fff 0%, transparent 24%);
  }

  .services-hero-visual img {
    height: 110%;
    object-position: 58% center;
    width: 145%;
  }

  .services-breakdown {
    padding-left: 18px;
    padding-right: 18px;
  }

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

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

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

  .services-stat:nth-child(n + 3) {
    border-top: 1px solid #e7def2;
  }

  .services-process-steps {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .services-process-step {
    min-height: 72px;
    padding-left: 76px;
  }

  .services-process-step:not(:last-child)::after {
    border-left: 1px dashed #cdb8e8;
    border-top: 0;
    bottom: -18px;
    left: 27px;
    right: auto;
    top: 54px;
  }

  .services-process-icon {
    left: 0;
    position: absolute;
    top: 0;
  }

  .services-cta-inner {
    grid-template-columns: 92px 1fr auto;
    padding-right: 18px;
  }

  .services-cta img {
    height: 104px;
    width: 104px;
  }

  .services-cta h2 {
    font-size: 1.45rem;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .services-hero-inner {
    grid-template-columns: minmax(350px, 0.8fr) minmax(520px, 1.2fr);
  }

  .services-hero-copy {
    padding-left: 48px;
  }

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

  body[data-page="/services/"] .service-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  .services-process {
    grid-template-columns: 220px 1fr;
  }

  .services-process-step {
    padding-left: 9px;
    padding-right: 9px;
  }
}

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

  .services-hero-copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .services-hero-copy > p:last-of-type {
    font-size: 0.88rem;
  }

  .services-hero-button {
    min-height: 46px;
  }

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

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

  .services-stat {
    min-height: 142px;
    padding: 18px;
  }

  .services-cta {
    margin-left: 18px;
    margin-right: 18px;
    padding: 0;
  }

  .services-cta-inner {
    gap: 10px;
    grid-template-columns: 72px 1fr;
    min-height: 150px;
    padding: 16px;
  }

  .services-cta img {
    height: 84px;
    width: 84px;
  }

  .services-cta h2 {
    font-size: 1.35rem;
  }

  .services-cta-button {
    grid-column: 1 / -1;
    min-height: 46px;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="/services/"] .service-card:hover,
  body[data-page="/services/"] .service-card:focus-within,
  .services-hero-visual img,
  .js .services-reveal {
    transform: none;
  }
}

@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 print {
  .careers-section,
  .career-role,
  .career-apply {
    background: #fff !important;
    box-shadow: none !important;
    color: #111 !important;
  }

  .career-lead *,
  .career-role *,
  .career-facts dt,
  .career-facts dd,
  .career-detail-group ul,
  .career-apply p {
    color: #111 !important;
  }

  .career-details > :not(summary) {
    display: block !important;
  }

  .career-details summary,
  .career-talent {
    display: none !important;
  }
}

@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;
  }
}

/* Case Studies reference-led gallery */
body[data-page="/case-studies/"] {
  background: oklch(0.995 0.006 325);
  overflow-x: clip;
}

.case-gallery-hero {
  min-height: 630px;
  overflow: clip;
  position: relative;
}

.case-gallery-hero-backdrop {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.case-gallery-hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  grid-template-columns: minmax(520px, 1fr) minmax(500px, 1fr);
  max-width: var(--page-max);
  min-height: 630px;
  padding: 0 clamp(24px, 5vw, 64px);
  position: relative;
  z-index: 1;
}

.case-gallery-hero-copy {
  max-width: 580px;
  padding: 68px 0 82px;
}

.case-gallery-hero-copy .kicker {
  color: var(--brand-rose);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.case-gallery-hero-copy h1 {
  color: var(--brand-ink);
  font-size: clamp(3rem, 3.7vw, 3.55rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin-bottom: 1.6rem;
  max-width: none;
  white-space: nowrap;
}

.case-gallery-hero-copy h1 span {
  color: var(--brand-violet);
  display: block;
  margin-top: 0.12em;
}

.case-gallery-hero-copy > p:not(.kicker) {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.7;
  max-width: 48ch;
}

.case-gallery-hero-cta {
  gap: 1.1rem;
  margin-top: 1.2rem;
  min-width: 190px;
}

.case-gallery-hero-cta span {
  font-size: 1.1rem;
}

.case-hero-stack {
  height: 555px;
  justify-self: end;
  max-width: 690px;
  position: relative;
  width: 100%;
}

.case-hero-card {
  --card-delay: 0s;
  --card-rotate: 0deg;
  background: white;
  border: 1px solid rgb(255 255 255 / 0.72);
  border-radius: 13px;
  box-shadow: 0 26px 52px rgb(78 43 94 / 0.24);
  height: 315px;
  margin: 0;
  overflow: hidden;
  position: absolute;
  transform: translate3d(0, 0, 0) rotate(var(--card-rotate));
  transform-origin: center;
  transition: box-shadow 220ms ease, transform 220ms ease;
  width: 208px;
}

.case-hero-card-art {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.case-hero-card-logo {
  background: white;
  border-radius: 9px;
  box-shadow: 0 6px 18px rgb(37 24 44 / 0.18);
  height: 46px;
  left: 12px;
  object-fit: contain;
  padding: 4px;
  position: absolute;
  top: 12px;
  width: 46px;
}

.case-hero-storefront-logo {
  border-radius: 50%;
  filter: drop-shadow(0 7px 9px rgb(61 39 10 / 0.2));
  height: auto;
  left: 31%;
  object-fit: contain;
  position: absolute;
  top: 19.5%;
  width: 38%;
}

.case-hero-card figcaption {
  background: rgb(255 255 255 / 0.9);
  border-radius: 999px;
  bottom: 10px;
  color: var(--brand-ink);
  font-size: 0.58rem;
  font-weight: 700;
  left: 10px;
  padding: 5px 9px;
  position: absolute;
}

.case-hero-card--xiaomi {
  --card-delay: -1.8s;
  --card-rotate: 6deg;
  height: 320px;
  left: 244px;
  top: 0;
  width: 214px;
  z-index: 1;
}

.case-hero-card--mia {
  --card-delay: -4.7s;
  --card-rotate: 7deg;
  height: 307px;
  left: 58px;
  top: 176px;
  width: 200px;
  z-index: 2;
}

.case-hero-card--sing {
  --card-delay: -3.2s;
  --card-rotate: 7deg;
  height: 345px;
  left: 244px;
  top: 194px;
  width: 230px;
  z-index: 4;
}

.case-hero-card--alta {
  --card-delay: -0.6s;
  --card-rotate: 8deg;
  height: 337px;
  left: 434px;
  top: 136px;
  width: 225px;
  z-index: 3;
}

.case-hero-card--sing .case-hero-card-art {
  object-fit: contain;
}

.case-hero-card--sing .case-hero-card-logo {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .case-hero-card {
    animation: case-hero-card-float 7.5s ease-in-out var(--card-delay) infinite;
  }

  .case-hero-card:hover {
    animation: none;
    box-shadow: 0 34px 64px rgb(72 35 91 / 0.3);
    transform: translate3d(0, -12px, 0) rotate(var(--card-rotate)) scale(1.025);
  }
}

@keyframes case-hero-card-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--card-rotate));
  }

  50% {
    transform: translate3d(0, -8px, 0) rotate(var(--card-rotate));
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-hero-card {
    animation: none;
    transition: none;
  }
}

.case-gallery {
  padding: 0 0 clamp(12px, 3vw, 42px);
  position: relative;
}

.case-portfolio-summary,
.case-projects {
  max-width: var(--page-max);
}

.case-portfolio-summary {
  background: rgb(255 255 255 / 0.93);
  border: 1px solid oklch(0.92 0.03 320);
  border-radius: 18px;
  box-shadow: 0 16px 44px rgb(98 58 112 / 0.08);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: -22px;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 3;
}

.case-summary-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 24px 18px 20px;
  text-align: center;
}

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

.case-summary-icon {
  align-items: center;
  background: oklch(0.97 0.025 315);
  border-radius: 50%;
  display: flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 10px;
  width: 48px;
}

.case-summary-icon img {
  height: 23px;
  width: 23px;
}

.case-summary-item strong {
  color: var(--brand-violet);
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  line-height: 1;
}

.case-summary-item > span:not(.case-summary-icon) {
  color: var(--brand-ink);
  font-size: 0.73rem;
  font-weight: 700;
  margin-top: 0.7rem;
}

.case-summary-item small {
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.45;
  margin-top: 0.45rem;
  max-width: 18ch;
}

.case-projects {
  padding-top: 34px;
}

.case-filter-bar {
  border: 1px solid oklch(0.87 0.025 320);
  border-radius: 999px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 auto 24px;
  max-width: 760px;
  padding: 3px;
}

.case-filter-bar button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.72rem;
  min-height: 38px;
  padding: 8px 14px;
  transition: background 180ms ease-out, color 180ms ease-out, box-shadow 180ms ease-out;
}

.case-filter-bar button:hover,
.case-filter-bar button:focus-visible {
  color: var(--brand-violet);
}

.case-filter-bar button.is-active {
  background: oklch(0.955 0.045 315);
  box-shadow: inset 0 0 0 1px oklch(0.77 0.14 330);
  color: var(--brand-violet);
  font-weight: 700;
}

.case-project-grid {
  align-items: stretch;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.case-project-card {
  background: white;
  border: 1px solid oklch(0.92 0.018 330);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgb(69 43 75 / 0.07);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.case-project-card[hidden] {
  display: none;
}

.case-project-visual {
  aspect-ratio: 1.02;
  background: oklch(0.97 0.02 315);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.case-project-art {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out);
  width: 100%;
}

.case-project-card:hover .case-project-art,
.case-project-card:focus-within .case-project-art {
  transform: scale(1.035);
}

.case-project-logo {
  background: white;
  border-radius: 9px;
  box-shadow: 0 6px 18px rgb(38 24 44 / 0.2);
  height: 48px;
  left: 12px;
  object-fit: contain;
  padding: 4px;
  position: absolute;
  top: 12px;
  width: 48px;
}

.case-project-card--sing .case-project-art {
  object-fit: contain;
}

.case-project-card--sing .case-project-logo {
  display: none;
}

.case-project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 14px 12px;
}

.case-project-body h3 {
  color: var(--brand-violet);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2px;
}

.case-project-category {
  color: var(--brand-rose) !important;
  font-size: 0.65rem !important;
  font-weight: 600;
  margin-bottom: 8px !important;
}

.case-project-body > p:not(.case-project-category) {
  color: var(--ink-soft);
  font-size: 0.69rem;
  line-height: 1.52;
  margin-bottom: 10px;
}

.case-project-services {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}

.case-project-services li {
  background: oklch(0.975 0.015 315);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.55rem;
  padding: 4px 7px;
}

.case-project-link {
  align-items: center;
  color: var(--brand-violet);
  display: inline-flex;
  font-size: 0.66rem;
  font-weight: 700;
  gap: 6px;
  margin: auto 0 12px;
  min-height: 32px;
}

.case-card-performance {
  background: oklch(0.975 0.012 330);
  border-radius: 10px;
  min-height: 108px;
  padding: 10px;
}

.case-card-performance > strong {
  color: var(--brand-ink);
  display: block;
  font-size: 0.58rem;
  margin-bottom: 6px;
}

.case-card-metrics {
  display: grid;
  gap: 3px;
  margin: 0;
}

.case-card-metrics > div {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.case-card-metrics dt,
.case-card-metrics dd {
  color: var(--ink-soft);
  font-size: 0.55rem;
  line-height: 1.35;
  margin: 0;
}

.case-card-metrics dd {
  color: var(--brand-ink);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  text-align: right;
}

.case-card-data-note {
  color: var(--muted) !important;
  font-size: 0.58rem !important;
  line-height: 1.45 !important;
  margin: 14px 0 0 !important;
}

.case-data-disclaimer {
  color: var(--muted);
  font-size: 0.65rem;
  margin: 16px 0 0;
  text-align: center;
}

body[data-page="/case-studies/"] .final-cta {
  align-items: center;
  background: oklch(0.975 0.025 320);
  border: 1px solid oklch(0.92 0.035 320);
  border-radius: 16px;
  display: grid;
  gap: 6px 28px;
  grid-template-columns: 1fr auto;
  margin-bottom: 30px;
  margin-top: 0;
  min-height: 126px;
  padding: 28px clamp(24px, 5vw, 64px);
}

body[data-page="/case-studies/"] .final-cta h2,
body[data-page="/case-studies/"] .final-cta p {
  margin-bottom: 0;
}

body[data-page="/case-studies/"] .final-cta h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
}

body[data-page="/case-studies/"] .final-cta p {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

body[data-page="/case-studies/"] .final-cta .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 160px;
}

@media (max-width: 1100px) {
  .case-gallery-hero-inner {
    grid-template-columns: minmax(320px, 0.8fr) minmax(440px, 1.2fr);
  }

  .case-hero-stack {
    transform: scale(0.86);
    transform-origin: center right;
    width: 610px;
  }

  .case-gallery-hero-copy h1 {
    white-space: normal;
  }

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

@media (max-width: 820px) {
  .case-gallery-hero {
    min-height: 860px;
  }

  .case-gallery-hero-inner {
    align-items: start;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 860px;
  }

  .case-gallery-hero-copy {
    max-width: 610px;
    padding: 54px 0 24px;
  }

  .case-gallery-hero-copy h1 {
    max-width: 12ch;
  }

  .case-hero-stack {
    align-self: center;
    height: 480px;
    justify-self: auto;
    margin-top: -8px;
    transform: scale(0.82);
    transform-origin: top center;
    width: 620px;
  }

  .case-portfolio-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -18px;
  }

  .case-summary-item + .case-summary-item {
    border-left: 0;
  }

  .case-summary-item:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .case-summary-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .case-summary-item:last-child {
    grid-column: 1 / -1;
  }

  .case-filter-bar {
    margin-inline: 0;
    max-width: none;
    overflow-x: auto;
  }

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

  body[data-page="/case-studies/"] .final-cta {
    grid-template-columns: 1fr;
  }

  body[data-page="/case-studies/"] .final-cta .button {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .case-gallery-hero {
    min-height: 720px;
  }

  .case-gallery-hero-inner {
    min-height: 720px;
  }

  .case-gallery-hero-copy {
    padding-top: 44px;
  }

  .case-gallery-hero-copy .kicker {
    margin-bottom: 1rem;
  }

  .case-gallery-hero-copy h1 {
    font-size: 2.75rem;
  }

  .case-gallery-hero-copy > p:not(.kicker) {
    font-size: 0.88rem;
  }

  .case-gallery-hero-cta {
    min-height: 46px;
  }

  .case-hero-stack {
    height: 360px;
    margin-top: 12px;
    transform: scale(0.58);
    width: 620px;
  }

  .case-portfolio-summary {
    border-radius: 14px;
    grid-template-columns: 1fr;
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
  }

  .case-summary-item {
    min-height: 142px;
    padding: 18px;
  }

  .case-summary-item:nth-child(even),
  .case-summary-item:last-child {
    border-left: 0;
    grid-column: auto;
  }

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

  .case-projects {
    padding-left: 16px;
    padding-right: 16px;
  }

  .case-filter-bar {
    display: flex;
    gap: 4px;
    padding: 3px;
  }

  .case-filter-bar button {
    flex: 0 0 auto;
    min-height: 44px;
  }

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

  .case-project-visual {
    aspect-ratio: 1.14;
  }

  .case-project-body {
    padding: 18px;
  }

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

/* Services cascade guard: keep later legacy breakpoints from overriding the redesign. */
@media (min-width: 901px) {
  body[data-page="/services/"] .site-header {
    min-height: 56px;
    padding-bottom: 8px;
    padding-top: 8px;
  }

  body[data-page="/services/"] .brand-logo {
    height: 42px;
    width: 42px;
  }

  body[data-page="/services/"] .site-nav a,
  body[data-page="/services/"] .header-cta {
    font-size: 0.7rem;
  }

  .services-hero-copy h1 {
    white-space: nowrap;
  }

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

  .services-hero-copy {
    padding-bottom: 26px;
    padding-top: 26px;
  }

  .services-breakdown {
    padding-bottom: 52px;
    padding-top: 48px;
  }

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

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

  body[data-page="/services/"] .section-heading > p:last-child {
    font-size: 0.78rem;
  }

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

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

  .service-card-icon {
    height: 42px;
    margin-bottom: 9px;
    width: 42px;
  }

  .service-card-icon img {
    height: 24px;
    width: 24px;
  }

  body[data-page="/services/"] .service-card h3 {
    font-size: 0.98rem;
    margin-bottom: 0.4rem;
  }

  body[data-page="/services/"] .service-card > p {
    font-size: 0.69rem;
    line-height: 1.5;
    margin-bottom: 172px;
  }

  .service-card-art {
    height: 220px;
    object-fit: contain;
  }

  .service-card-details summary {
    bottom: 10px;
    height: 30px;
    right: 10px;
    width: 30px;
  }

  .services-impact {
    grid-template-columns: minmax(260px, 1.08fr) minmax(0, 2.92fr);
    height: auto;
    margin-top: 34px;
    min-height: 166px;
  }

  .services-impact-copy h2 {
    font-size: 1.6rem;
    line-height: 1.05;
    margin-bottom: 0.55rem;
  }

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

  .services-stat,
  .services-stat + .services-stat {
    border-left: 1px solid #e7def2;
    min-height: 166px;
  }

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

  .services-process {
    height: auto;
    min-height: 210px;
    padding-bottom: 34px;
    padding-top: 40px;
  }

  .services-process-icon {
    height: 50px;
    margin-bottom: 13px;
    width: 50px;
  }

  .services-process-step:not(:last-child)::after {
    left: 62px;
    top: 24px;
  }

  .services-cta-inner {
    min-height: 106px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .services-cta {
    margin-bottom: 34px;
  }

  .services-cta img {
    height: 126px;
    width: 126px;
  }

  .services-cta h2 {
    font-size: 1.8rem;
  }

  body[data-page="/services/"] .site-footer {
    font-size: 0.58rem;
    gap: 8px 20px;
    padding: 12px 48px 8px;
  }

  body[data-page="/services/"] .footer-brand img {
    height: 44px;
    width: 44px;
  }

  body[data-page="/services/"] .footer-brand p,
  body[data-page="/services/"] .footer-column a,
  body[data-page="/services/"] .footer-contact a,
  body[data-page="/services/"] .footer-contact address,
  body[data-page="/services/"] .footer-legal {
    font-size: 0.58rem;
    line-height: 1.35;
  }

  body[data-page="/services/"] .footer-column a,
  body[data-page="/services/"] .footer-contact a {
    min-height: 14px;
  }

  body[data-page="/services/"] .footer-legal {
    margin-top: 0;
    padding-top: 6px;
  }
}

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

  .services-impact {
    height: auto;
  }
}

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

  .services-hero-inner {
    display: flex;
    flex-direction: column;
  }

  .services-hero-copy {
    min-height: 0;
    padding: 48px 24px 18px;
  }

  .services-hero-copy h1 {
    font-size: clamp(2.85rem, 11vw, 4rem);
  }

  .services-hero-visual {
    flex: 1;
    height: auto;
    min-height: 360px;
  }

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

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

  .services-cta-inner {
    grid-template-columns: 92px 1fr auto;
  }
}

@media (max-width: 480px) {
  body[data-page="/services/"] .service-grid {
    grid-template-columns: 1fr;
  }

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

  .services-cta-inner {
    grid-template-columns: 72px 1fr;
  }

  .services-cta-button {
    grid-column: 1 / -1;
  }
}
