@import url("https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&display=swap");

:root {
  --green: #00522d;
  --pink: #db3c8a;
  --pink-mid: #f29ebd;
  --pink-light: #fce5df;
  --gray: #d1cfe4;
  --purple: #e0b4f1;
  --white: #fff8f6;
  --black: #131313;
  --project-blue: #2885ba;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-inout: cubic-bezier(.86, 0, .07, 1);
  --ease-expo: cubic-bezier(.19, 1, .22, 1);
  --spring: cubic-bezier(.17, .67, .3, 1.33);
  --gutter: 3rem;
  --card-max: min(68rem, calc(100svh - 20rem));
  --shared-card-width: min(calc(33.333vw - 3rem), 45rem, calc(66.176svh - 13.235rem));
  --project-card-gap: 3rem;
  --display-leading: .88;
  --display: "Anton", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

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

html {
  min-height: 100%;
  font-size: 62.5%;
  font-family: var(--body);
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

html.is-wheel-smoothing {
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--white);
  color: var(--green);
  font-size: 1.6rem;
  line-height: 1.2;
}

body.is-menu-open,
body.is-dialog-open,
body.is-loading {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

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

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

figure,
h1,
h2,
h3,
p,
ol,
ul {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

::selection {
  background: var(--green);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 1rem;
  left: 50%;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  background: var(--black);
  color: var(--white);
  transform: translate(-50%, -180%);
  transition: transform .25s ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.site-background {
  position: fixed;
  z-index: -2;
  inset: 0;
  /* 100vw paints through the stable scrollbar gutter on desktop. */
  width: 100vw;
  height: 110svh;
  background: var(--white);
  transition: background-color .4s var(--ease-out);
}

.sticky-screen {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
}

.three-column-screen {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(28rem, 8fr) minmax(0, 8fr);
  width: min(100%, 1920px);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Loader — reference-inspired rhythm with Chup Media copy and geometry. */
.loader {
  --loader-color: var(--green);
  position: fixed;
  z-index: 250;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  /* Cover the reserved desktop scrollbar gutter as part of the loader. */
  width: 100vw;
  overflow: hidden;
  background: var(--green);
  color: var(--white);
  transform-origin: center;
  will-change: transform, opacity;
}


html[data-loader-theme="pink"] .loader {
  --loader-color: var(--pink);
  background: var(--pink);
}

html[data-loader-theme="pinklight"] .loader {
  --loader-color: var(--pink-mid);
  background: var(--pink-mid);
}

.loader-copy {
  position: relative;
  z-index: 4;
  width: min(100%, 172rem);
  padding: 3rem;
  font-family: var(--display);
  font-size: clamp(3.8rem, 5.8vw, 8.5rem);
  line-height: var(--display-leading);
  text-align: center;
  text-transform: uppercase;
}

.loader-copy>span {
  display: inline-flex;
  overflow: hidden;
}

.loader-copy b {
  display: inline-block;
  font-weight: 400;
  transition: transform .375s cubic-bezier(.7, 0, .3, 1);
}

.loader.is-exiting .loader-copy b {
  transform: translateY(-120%);
}

/* Measured off the reference at 60fps — every duration, easing and
   transform below comes from sampled runtime data, not eyeballing. */
/* The loader deliberately reuses B05's manifest lightning geometry. */
.loader-shape {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: visible;
  transform: rotate(-12deg) scale(1.4);
  transform-origin: center;
}

.loader-shape svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.loader-bolt-line {
  fill: none;
  stroke: var(--pink-light);
  stroke-width: 140px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2000px;
  stroke-dashoffset: 2000px;
  /* Same draw-and-swell behavior as the B05 manifest bolt. */
  transition: stroke-dashoffset 1.19s cubic-bezier(.645, .045, .355, 1), stroke-width 1.19s cubic-bezier(.645, .045, .355, 1);
}

.loader.is-opening .loader-bolt-line {
  stroke-dashoffset: 0;
  stroke-width: 225px;
}

/* Keep the outlined B05 lightning visible and let that shape perform the zoom. */
.loader.is-zooming .loader-shape {
  transform: rotate(108deg) scale(20);
  transition: transform 1.97s cubic-bezier(.87, 0, .13, 1);
}

/* the fade OVERLAPS the zoom tail — it starts ~.4s before the zoom ends,
   crossfading the flat bolt interior into the live page beneath */
.loader.is-fading {
  opacity: 0;
  transition: opacity .39s cubic-bezier(.25, .46, .45, .94);
}



/* Persistent interface */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  pointer-events: none;
}

.header-logo {
  position: absolute;
  top: 2.4rem;
  left: 50%;
  width: 6rem;
  height: 6rem;
  color: var(--green);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0) rotate(-12deg);
  transition: color .4s var(--ease-out), opacity .4s var(--ease-out), transform .4s var(--spring);
}

.header-logo svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero-hidden .header-logo {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1) rotate(0);
}

.hero-hidden .header-logo:hover {
  transform: translateX(-50%) rotate(7deg) scale(1.05);
}

.round-control {
  position: absolute;
  top: 3rem;
  display: grid;
  width: 6rem;
  height: 6rem;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-mid);
  color: var(--green);
  pointer-events: auto;
  transition: transform .4s var(--spring), background-color .25s ease;
}

.round-control:hover {
  transform: scale(1.08) rotate(3deg);
}

.round-control:active {
  transform: scale(.86);
}

.round-control svg {
  width: 1.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  left: 3rem;
}

.contact-toggle {
  right: 3rem;
}

.menu-toggle .close-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

.is-menu-open .contact-toggle {
  pointer-events: none;
  transform: scale(0) rotate(18deg);
}

.is-menu-open .header-logo {
  transform: translateX(-50%) scale(0) rotate(8deg);
}

.is-menu-open.hero-hidden .header-logo {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0) rotate(8deg);
}

.section-label {
  position: fixed;
  z-index: 40;
  left: 3rem;
  bottom: 3rem;
  display: block;
  width: 20rem;
  height: 2rem;
  overflow: hidden;
  color: var(--pink);
  font-size: 1.4rem;
  text-transform: uppercase;
  pointer-events: none;
  transition: color .4s var(--ease-out);
}

.section-label::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--label-width, 0px);
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: width .4s var(--ease-out);
}

.section-label>span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  white-space: nowrap;
}

.section-label .label-char {
  position: relative;
  display: inline-block;
}

.section-label [data-next-label] .label-char {
  transform: translateY(160%);
}

.section-label.is-changing [data-current-label] .label-char {
  animation: labelCurrent .8s cubic-bezier(.08, .82, .17, 1) forwards;
  animation-delay: calc(var(--char-index) * 18ms);
}

.section-label.is-changing [data-next-label] .label-char {
  animation: labelNext .8s cubic-bezier(.08, .82, .17, 1) forwards;
  animation-delay: calc(var(--char-index) * 18ms);
}

@keyframes labelCurrent {
  to {
    transform: translateY(-160%);
  }
}

@keyframes labelNext {
  from {
    transform: translateY(160%);
  }

  to {
    transform: translateY(0);
  }
}

.chrome-light .header-logo,
.chrome-light .section-label {
  color: var(--white);
}

/* Full menu */
.site-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  pointer-events: none;
}

.site-menu.is-open {
  display: flex;
  pointer-events: auto;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  background: rgba(242, 158, 189, .8);
  opacity: 0;
  transition: opacity .8s var(--ease-inout);
}

.menu-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 50%;
  height: 100%;
  padding: 12rem 6rem 4rem;
  transition: transform .8s var(--ease-inout);
}

.menu-panel--left {
  flex-direction: column;
  background: var(--green);
  color: var(--white);
  transform: translateX(-101%);
}

.menu-panel--right {
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  transform: translateX(151%);
}

.menu-seam {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 40%;
  width: 20%;
  height: 100%;
  background: var(--pink-mid);
  clip-path: polygon(0 0, 58% 0, 42% 15%, 62% 29%, 38% 47%, 61% 64%, 40% 82%, 55% 100%, 0 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .8s var(--ease-inout);
}

.site-menu.is-open .menu-backdrop {
  opacity: 1;
}

.site-menu.is-open .menu-panel {
  transform: translateX(0);
}

.site-menu.is-open .menu-seam {
  transform: scaleX(1);
}

.menu-panel nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.menu-panel nav a {
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(6.4rem, 7vw, 10rem);
  line-height: var(--display-leading);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(120%);
  transition: transform .8s var(--ease-inout) var(--delay), opacity .4s var(--ease-out);
}

.site-menu.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}

.menu-panel nav a:hover {
  color: var(--pink-mid);
}

.menu-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.menu-contact-card {
  display: flex;
  width: min(46rem, 100%);
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  text-align: center;
  transition: opacity .8s var(--ease-inout) .15s, transform .8s var(--ease-inout) .15s;
  transform: translateY(3rem);
}

.site-menu.is-open .menu-contact-card {
  opacity: 1;
  transform: translateY(0);
}

.menu-qr {
  display: grid;
  width: 14rem;
  height: 14rem;
  place-items: center;
  padding: 1.4rem;
  border-radius: 2.5rem;
  background: var(--white);
  color: var(--green);
}

.menu-qr svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.menu-contact-card p {
  font-family: var(--display);
  font-size: 4.6rem;
  font-weight: 400;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.menu-contact-card strong {
  max-width: 34rem;
  font-size: 1.8rem;
  line-height: 1.35;
}

.menu-contact-card button {
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  background: var(--pink-mid);
  color: var(--green);
  font-weight: 700;
}

/* Shared expressive type / bubbles */
.chat-bubble {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 5.2rem;
  padding: 1.2rem 1.6rem;
  border-radius: 2rem;
  background: var(--pink-light);
  color: var(--green);
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
  transform: scale(0);
  transition: transform .3s var(--ease-out) .1s;
}

.chat-bubble::before,
.chat-bubble::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: inherit;
  content: "";
  transform: scale(0);
  transition: transform .4s var(--ease-out);
}

.chat-bubble::before {
  bottom: -1.2rem;
  left: 50%;
  width: 2.4rem;
  height: 2.4rem;
  transition-delay: .2s;
}

.chat-bubble::after {
  bottom: -2.4rem;
  left: 54%;
  width: .8rem;
  height: .8rem;
  transition-delay: .4s;
}

.chat-bubble svg {
  width: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.is-inview .chat-bubble,
.site-ready .hero.is-active .chat-bubble {
  transform: scale(1) rotate(8deg);
}

.is-inview .chat-bubble::before,
.is-inview .chat-bubble::after,
.site-ready .hero.is-active .chat-bubble::before,
.site-ready .hero.is-active .chat-bubble::after {
  transform: scale(1);
}

.section-bubble {
  position: absolute;
  animation: floatBubble 8s ease-in-out infinite paused;
}

.is-inview .section-bubble {
  animation-play-state: running;
}

@keyframes floatBubble {

  0%,
  100% {
    translate: 0 0;
  }

  25% {
    translate: 0 -7%;
  }

  75% {
    translate: 0 7%;
  }
}

/* B01 Hero */
.hero {
  position: relative;
  display: grid;
  align-content: space-between;
  height: 100svh;
  padding: 3rem var(--gutter);
  overflow: clip;
}

.hero-wordmark {
  position: relative;
  z-index: 0;
  display: flex;
  width: min(100%, 1920px);
  height: min(44svh, 44rem);
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  color: var(--green);
  font-family: var(--display);
  font-size: min(50rem, 24vw);
  line-height: .7;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.hero-wordmark span {
  flex: 0 0 .88em;
  text-align: center;
  transform: translateY(110%);
  transition: transform 1s var(--ease-expo) var(--delay);
}

.site-ready .hero-wordmark span {
  transform: translateY(0);
}

.hero-deck {
  --hero-progress: 0;
  --hero-left-x: -80%;
  --hero-right-x: 80%;
  --hero-left-rotation: -3deg;
  --hero-right-rotation: 3deg;
  position: fixed;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: calc(33.333vw - 3rem);
  max-width: 45rem;
  max-height: calc(100svh - 20rem);
  aspect-ratio: 45 / 68;
  transform: translate(-50%, -50%);
  perspective: 800px;
  transition: opacity .4s var(--ease-out), visibility .4s;
}

.hero-hidden .hero-deck {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 2s var(--ease-out);
  transform: translateY(150%);
  transform-origin: center;
}

.hero-card figure {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 2.5rem;
  background: var(--gray);
  backface-visibility: hidden;
}

.hero-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--center {
  z-index: 3;
}

.hero-card--left,
.hero-card--right {
  z-index: 2;
}

.hero-card--left figure,
.hero-card--right figure {
  inset: 0;
  transform: scale(.75);
}

.site-ready .hero-card--center {
  transform: translateY(0);
}

.site-ready .hero-card--left {
  transform: translateX(var(--hero-left-x)) rotate(var(--hero-left-rotation));
}

.site-ready .hero-card--right {
  transform: translateX(var(--hero-right-x)) rotate(var(--hero-right-rotation));
}

.chat-bubble--hero-center {
  top: 13%;
  left: 21%;
  width: 7rem;
  padding-inline: 0;
}

.chat-bubble--hero-center svg {
  fill: var(--pink);
  stroke: none;
}

.chat-bubble--hero-left {
  top: 48%;
  left: 3%;
}

.chat-bubble--hero-right {
  top: 50%;
  left: 63%;
}

.site-ready .hero.is-active .chat-bubble--hero-left {
  transform: scale(1) rotate(-8deg);
  animation: floatBubble 8s ease-in-out 2s infinite;
}

.site-ready .hero.is-active .chat-bubble--hero-center,
.site-ready .hero.is-active .chat-bubble--hero-right {
  animation: floatBubble 8s ease-in-out 2.15s infinite;
}

.hero-content {
  position: relative;
  z-index: 5;
  align-self: end;
}

.hero-content h1 {
  margin-bottom: 1.2rem;
  color: var(--gray);
  font-size: 2rem;
}

.hero-content p {
  color: var(--pink-mid);
  font-family: var(--display);
  font-size: 13rem;
  line-height: .7;
  text-transform: uppercase;
}

.hero-content em {
  color: var(--pink);
  font-style: normal;
  transition: color .4s var(--ease-out);
}

.hero:not(.is-active) .hero-content em {
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  z-index: 5;
  right: 3rem;
  bottom: 3rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-scroll svg {
  width: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  animation: scrollCue 1.6s ease-in-out infinite;
}

@keyframes scrollCue {
  50% {
    transform: translateY(.6rem);
  }
}

/* B01-B03 + B04 lead: one persistent card; the remaining B04 cards stay in the carousel. */
.shared-morph-card {
  display: none;
}

html.shared-morph-enabled .shared-morph-card {
  position: fixed;
  z-index: 6;
  top: 50%;
  left: 50%;
  display: block;
  width: var(--shared-card-width);
  aspect-ratio: 45 / 68;
  pointer-events: none;
  perspective: 800px;
  transform: translate(-50%, -50%) translateY(150%);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: transform 2s var(--ease-out), visibility 0s linear;
  will-change: transform;
}

body.site-ready .shared-morph-card {
  transform: translate(-50%, -50%) translateY(0);
}

.post-manifest .shared-morph-card {
  visibility: hidden;
  pointer-events: none;
}

.shared-morph-card__surface {
  position: absolute;
  z-index: 10;
  inset: 0;
  overflow: hidden;
  border-radius: 2.5rem;
  background: var(--black);
  box-shadow: -1.4rem 1.8rem 3.8rem rgba(19, 19, 19, .16);
  isolation: isolate;
  perspective: 800px;
  transform: translateZ(0);
}

.shared-morph-card__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  transform-origin: right center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: clip-path, transform;
}

.shared-morph-card__scene--hero {
  z-index: 1;
  background: var(--gray);
}

.shared-morph-card__scene--agency {
  z-index: 2;
  background: var(--black);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.shared-morph-card__scene--team {
  z-index: 3;
  background: var(--gray);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.shared-morph-card__scene--projects {
  z-index: 4;
  background: var(--black);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.shared-morph-card__scene.is-current {
  pointer-events: auto;
}

html.shared-morph-enabled .shared-morph-card .hero-card--center,
html.shared-morph-enabled .shared-morph-card .agency-media,
html.shared-morph-enabled .shared-morph-card .team-deck,
html.shared-morph-enabled .shared-morph-card .project-story {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  translate: none;
  transform: none;
  transition: none;
}

html.shared-morph-enabled .shared-morph-card .hero-card--center {
  pointer-events: none;
}

html.shared-morph-enabled .shared-morph-card .hero-card--center figure,
html.shared-morph-enabled .shared-morph-card .team-deck-card {
  border-radius: 0;
}

body.site-ready .shared-morph-card .chat-bubble--hero-center {
  animation: floatBubble 8s ease-in-out 2.15s infinite;
}

html.shared-morph-enabled .shared-morph-card .agency-media,
html.shared-morph-enabled .shared-morph-card .team-deck {
  top: 0;
  left: 0;
  pointer-events: none;
}

html.shared-morph-enabled .shared-morph-card__scene.is-current .agency-media,
html.shared-morph-enabled .shared-morph-card__scene.is-current .team-deck {
  pointer-events: auto;
}

html.shared-morph-enabled .shared-morph-card .team-deck {
  perspective: none;
}

html.shared-morph-enabled .shared-morph-card .team-deck-card--left,
html.shared-morph-enabled .shared-morph-card .team-deck-card--right {
  display: none;
}

html.shared-morph-enabled .shared-morph-card__scene--team.is-current .team-pin {
  transform: translate(-50%, -50%) scale(1);
}

html.shared-morph-enabled .shared-morph-card .project-story {
  z-index: var(--card-layer, 1);
  overflow: hidden;
  color: var(--white);
  pointer-events: none;
  transform-origin: right center;
  backface-visibility: hidden;
  will-change: clip-path, transform;
}

html.shared-morph-enabled .shared-morph-card__scene--projects.is-current .project-story.is-active {
  pointer-events: auto;
}

/* B02 Agency */
.agency {
  position: relative;
  min-height: 0;
  padding: 24rem 0 18rem;
}

.agency-screen {
  position: relative;
  top: auto;
  display: grid;
  height: auto;
  min-height: 45rem;
  grid-template-columns: repeat(24, 1fr);
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  perspective: 800px;
}

.agency-line {
  position: relative;
  z-index: 3;
  color: var(--pink-light);
  font-family: var(--display);
  font-size: 9.4rem;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.agency-line--left {
  grid-column: 1 / span 8;
  align-self: start;
}

.agency-line--right {
  grid-column: 18 / span 7;
  align-self: end;
  color: var(--pink-mid);
}

.portrait-panel {
  overflow: hidden;
  width: 100%;
  max-width: 45rem;
  max-height: calc(100svh - 20rem);
  aspect-ratio: 45 / 68;
  border-radius: 2.5rem;
  background: var(--black);
  backface-visibility: hidden;
}

.agency-media {
  position: fixed;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: calc(33.333vw - 3rem);
  transform: translate(-50%, -50%) translateX(25%) translateZ(-60px) rotateY(90deg) scale(.5);
  transform-origin: right center;
  transition: transform .8s var(--ease-out), opacity .4s var(--ease-out);
  pointer-events: none;
}

.agency.is-inview .agency-media {
  pointer-events: auto;
  transform: translate(-50%, -50%) translateX(0) translateZ(0) rotateY(0) scale(1);
  transition-duration: 2s, .4s;
  transition-timing-function: var(--ease-expo), var(--ease-out);
}

.agency-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-time {
  position: absolute;
  top: 5rem;
  right: 3rem;
  padding: .6rem .8rem;
  border-radius: .5rem;
  background: rgba(255, 248, 246, .8);
  font-size: 1.1rem;
}

.video-play,
.video-sound {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 248, 246, .72);
  color: var(--green);
  backdrop-filter: blur(10px);
  transition: transform .4s var(--spring);
}

.video-play {
  bottom: 3rem;
  left: 3rem;
  width: 4.5rem;
  height: 4.5rem;
}

.video-sound {
  right: 3rem;
  bottom: 3rem;
  width: 4.5rem;
  height: 4.5rem;
}

.video-play:hover {
  transform: scale(1.08);
}

.video-sound:hover {
  transform: scale(1.08);
}

.video-play svg,
.video-sound svg {
  width: 1.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.video-play .pause-icon {
  display: none;
}

.video-play.is-playing .play-icon {
  display: none;
}

.video-play.is-playing .pause-icon {
  display: block;
}

/* B03 Team */
.team {
  position: relative;
  min-height: calc(100svh + 24rem);
  padding: 12rem 0;
}

.team-screen {
  align-items: center;
}

.team-heading,
.team-copy {
  position: relative;
  z-index: 2;
}

.team-heading {
  grid-column: 1;
}

.team-copy {
  grid-column: 3;
}

.team-heading {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-heading h2,
.expertise-heading h2,
.process-heading h2,
.faq-heading h2 {
  font-family: var(--display);
  font-size: 9.4rem;
  font-weight: 400;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.team-heading em,
.expertise-heading em,
.process-heading em,
.faq-heading em {
  color: var(--pink-mid);
  font-style: normal;
}

.team-heading .section-bubble {
  top: 40%;
  left: 10rem;
  transform: translateY(-170%) rotate(8deg) scale(0);
}

.team.is-inview .team-heading .section-bubble {
  transform: translateY(-170%) rotate(8deg) scale(1);
}

.team-deck {
  position: fixed;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: calc(33.333vw - 3rem);
  max-width: 45rem;
  max-height: calc(100svh - 20rem);
  aspect-ratio: 45 / 68;
  perspective: 800px;
  pointer-events: none;
  transform: translate(-50%, -50%) translateX(25%) translateZ(-60px) rotateY(90deg) scale(.5);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.165, .84, .44, 1), opacity .4s var(--ease-out);
}

.team.is-inview .team-deck {
  pointer-events: auto;
  transform: translate(-50%, -50%) translateX(0) translateZ(0) rotateY(0) scale(1);
  transition: transform 2s var(--ease-expo), opacity .4s var(--ease-out);
}

.post-manifest .agency-media,
.post-manifest .team-deck,
.post-manifest .projects-stage {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.team-deck-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 2.5rem;
  background: var(--gray);
  transition: transform 1.4s var(--ease-out) .8s;
}

.team-deck-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-deck-card--center {
  z-index: 3;
}

.team-deck-card--left,
.team-deck-card--right {
  z-index: 2;
  transform: scale(.99);
}

.team.is-inview .team-deck-card--left {
  transform: translateX(-20%) scale(.72) rotate(-3deg);
}

.team.is-inview .team-deck-card--right {
  transform: translateX(20%) scale(.72) rotate(3deg);
}

.team-pin {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  transform: translate(-50%, -50%) scale(0);
  transition: transform .4s var(--spring) var(--pin-delay, 1.4s);
}

.team-pin::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6rem;
  height: 6rem;
  content: "";
  transform: translate(-50%, -50%);
}

.team-pin::after {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  padding: .8rem 1rem;
  border-radius: .6rem;
  background: var(--pink);
  color: var(--white);
  content: attr(data-name);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateX(-20%) rotate(20deg) scale(0);
  transform-origin: 20% 80%;
  transition: transform .4s var(--ease-out);
}

.team-pin:hover::after {
  transform: translateX(-20%) rotate(-2deg) scale(1);
}

.team-pin--one {
  top: 31%;
  left: 31%;
  --pin-delay: 1.4s;
}

.team-pin--two {
  top: 38%;
  left: 88%;
  --pin-delay: 1.5s;
}

.team-pin--three {
  top: 40%;
  left: 9%;
  --pin-delay: 1.6s;
}

.team-pin--four {
  top: 39%;
  left: 52%;
  --pin-delay: 1.7s;
}

.team-pin--five {
  top: 26%;
  left: 61%;
  --pin-delay: 1.8s;
}

.team.is-inview .team-pin {
  transform: translate(-50%, -50%) scale(1);
}

.team-pin-bubble {
  position: absolute;
  z-index: 5;
  padding: 1rem 1.3rem;
  border-radius: 1.5rem;
  background: var(--pink-light);
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0;
  transition: transform .3s var(--spring), opacity .3s ease;
}

.team-pin-bubble--one {
  top: 43%;
  left: 45%;
  transform: translate(-100%, -100%) rotate(18deg) scale(0);
}

.team-pin-bubble--two {
  right: 42%;
  bottom: 42%;
  transform: translate(100%, 100%) rotate(-30deg) scale(0);
}

.team-deck:hover .team-pin-bubble--one,
.team-deck:focus .team-pin-bubble--one {
  opacity: 1;
  transform: translate(-100%, -100%) rotate(-8deg) scale(1);
}

.team-deck:hover .team-pin-bubble--two,
.team-deck:focus .team-pin-bubble--two {
  opacity: 1;
  transform: translate(100%, 100%) rotate(8deg) scale(1);
}

.team-copy {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
  max-width: 50rem;
  padding-left: 4rem;
  font-size: 2rem;
  line-height: 1.35;
}

.team-copy p:last-of-type {
  color: rgba(0, 82, 45, .72);
}

.team-name-ticker {
  display: flex;
  overflow: hidden;
  width: 100%;
  padding-block: 1.2rem;
  border-block: 1px solid currentColor;
  font-size: 1.2rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.team-name-ticker span {
  min-width: max-content;
  animation: nameTicker 12s linear infinite;
}

@keyframes nameTicker {
  to {
    transform: translateX(-100%);
  }
}

/* B04 Projects: 500vh scroll scene */
.projects {
  position: relative;
  height: 500svh;
  color: var(--white);
}

.projects-screen {
  display: block;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

.projects-intro {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--gutter);
  display: flex;
  width: calc(33.333% - var(--gutter));
  flex-direction: column;
  justify-content: center;
}

.projects-intro h2 {
  font-family: var(--display);
  font-size: 9.4rem;
  font-weight: 400;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.section-bubble--projects {
  top: 35%;
  right: 3%;
  transform: translateY(-130%) rotate(-28deg) scale(0);
}

.projects.is-inview .section-bubble--projects {
  transform: translateY(-70%) rotate(-8deg) scale(1);
}

.project-thumbnails {
  display: flex;
  gap: .8rem;
  margin-top: 3rem;
}

.project-thumbnails button {
  position: relative;
  display: grid;
  width: 6rem;
  height: 6rem;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--pink-mid);
  color: var(--green);
  transform: scale(0);
  transition: transform .4s cubic-bezier(.165, .84, .44, 1);
}

.projects.is-inview .project-thumbnails button {
  transform: scale(1);
}

.project-thumbnails button::after {
  position: absolute;
  inset: 0;
  border: 3px solid var(--white);
  border-radius: inherit;
  content: "";
  opacity: 0;
  transition: opacity .3s ease;
}

.project-thumbnails button.is-active::after {
  opacity: 1;
}

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

.project-thumbnails span {
  font-weight: 700;
}

.projects-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.projects.is-fixed-active .projects-screen {
  z-index: 7;
}

.projects.is-fixed-active .projects-stage {
  position: fixed;
  z-index: 7;
  inset: 0;
  pointer-events: none;
}

.projects.is-fixed-active .project-story {
  pointer-events: none;
}

.projects.is-fixed-active .project-story.is-active {
  pointer-events: auto;
}

.projects-track {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  isolation: isolate;
  gap: 1.5rem;
  height: var(--card-max);
  transform: translate3d(0, -50%, 0);
  perspective: 800px;
  will-change: transform;
}

.project-runway {
  flex: 0 0 auto;
  width: auto;
  height: var(--card-max);
  aspect-ratio: 45 / 68;
  visibility: hidden;
  pointer-events: none;
}

.project-story {
  --fan-delay: 0s;
  position: relative;
  z-index: var(--card-layer, 1);
  flex: 0 0 auto;
  width: auto;
  height: var(--card-max);
  aspect-ratio: 45 / 68;
  overflow: hidden;
  border-radius: 2.5rem;
  background: var(--black);
  box-shadow: -1.4rem 1.8rem 3.8rem rgba(19, 19, 19, .16);
  color: var(--white);
  opacity: 0;
  translate: var(--carousel-x, 0px) 0;
  transform: translateX(25%) translateZ(-60px) rotateY(90deg) scale(.5);
  transform-origin: right center;
  transition: transform 2s var(--ease-expo) var(--fan-delay), opacity .2s cubic-bezier(.165, .84, .44, 1) .2s;
  backface-visibility: hidden;
  will-change: translate, transform;
}

html.shared-morph-enabled .projects-track {
  top: 50%;
  left: 50%;
  display: block;
  width: var(--shared-card-width);
  height: auto;
  aspect-ratio: 45 / 68;
  gap: var(--project-card-gap);
  transform: translate3d(-50%, -50%, 0);
  transform-style: preserve-3d;
}

html.shared-morph-enabled .projects-track .project-runway {
  display: none;
}

html.shared-morph-enabled .projects-track .project-story {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-shadow: none;
}

.projects.fan-started .project-story {
  opacity: 1;
  transform: translateX(0) translateZ(0) rotateY(0) scale(1);
}

.projects .project-story:nth-child(2) {
  --fan-delay: .1s;
}

.projects .project-story:nth-child(3) {
  --fan-delay: .2s;
}

.projects .project-story:nth-child(4) {
  --fan-delay: .3s;
}

.projects .project-story:nth-child(5) {
  --fan-delay: .4s;
}

.projects .project-story:nth-child(6) {
  --fan-delay: .5s;
}

.projects.intro-complete .project-story {
  opacity: 1;
  transform-origin: center;
  transition: none;
}

.story-media,
.story-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-media {
  z-index: 0;
}

.story-media::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .72));
  content: "";
  pointer-events: none;
}

.story-media video {
  display: none;
  object-fit: cover;
  transform: scale(1.2);
  transition: transform .8s cubic-bezier(.645, .045, .355, 1);
}

.story-media video.is-visible {
  display: block;
}

.project-story.is-active .story-media video.is-visible {
  transform: scale(1);
}

.story-progress {
  position: absolute;
  z-index: 4;
  top: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  display: flex;
  gap: .5rem;
}

.story-progress>span {
  position: relative;
  flex: 1;
  height: .3rem;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .35);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease-inout);
}

.project-story.is-active .story-progress>span {
  transform: scaleX(1);
  transform-origin: left;
}

.story-progress i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--white);
  transform: scaleX(var(--story-progress, 0));
  transform-origin: left;
}

.story-zone {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 50%;
}

.story-zone--prev {
  left: 0;
}

.story-zone--next {
  right: 0;
}

.story-bottom {
  position: absolute;
  z-index: 3;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.story-bottom small {
  display: block;
  margin-bottom: .5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .4s var(--ease-out);
}

.story-bottom h3 {
  font-family: var(--display);
  font-size: 4.6rem;
  font-weight: 400;
  line-height: var(--display-leading);
  text-transform: uppercase;
  transform: translateY(var(--story-title-y, -20rem));
  transition: transform .8s var(--ease-inout);
}

.project-story.is-active .story-bottom small {
  opacity: 1;
}

.project-story.is-active .story-bottom h3 {
  transform: translateY(0);
}

.story-tag {
  padding: .8rem 1rem;
  border-radius: .6rem;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(50%) rotate(3deg) scale(0);
  transition: transform .8s var(--ease-inout) .1s, opacity .4s ease .1s;
}

.project-story.is-active .story-tag {
  opacity: 1;
  transform: none;
}

.story-actions {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.story-like {
  position: relative;
  display: grid;
  width: 4.6rem;
  height: 4.6rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--pink);
  transform: scale(0);
  transition: transform .4s var(--spring) .15s;
}

.project-story.is-active .story-like {
  transform: scale(1);
}

.story-like:active {
  transform: scale(.8) !important;
}

.story-like span {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform .4s var(--spring);
}

.story-like.is-liked span {
  transform: scale(1.25);
}

.story-heart {
  position: absolute;
  z-index: 9;
  right: 3.5rem;
  bottom: 4rem;
  color: var(--pink-mid);
  font-size: var(--heart-size, 1.8rem);
  pointer-events: none;
  animation: heartBurst .9s var(--ease-out) var(--heart-delay, 0ms) both;
}

@keyframes heartBurst {
  from {
    opacity: 0;
    transform: translate(0, 0) scale(.2) rotate(0);
  }

  20% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate(var(--heart-x), var(--heart-y)) scale(1.2) rotate(var(--heart-rotate));
  }
}

.project-story--more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: var(--pink);
}

.project-story--more p {
  font-family: var(--display);
  font-size: 8rem;
  line-height: var(--display-leading);
  text-align: center;
  text-transform: uppercase;
}

.project-story--more a {
  padding: 1.8rem 2.2rem;
  border-radius: 1rem;
  background: var(--pink-mid);
  font-weight: 700;
}

/* B05 Scroll-seeked bolt transition */
.manifest {
  position: relative;
  z-index: 50;
  height: 400svh;
}

.manifest-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.manifest-background {
  position: absolute;
  inset: 0;
  border-radius: 4rem;
  background: var(--pink);
  transform: scale(0);
  transform-origin: center;
}

.manifest-text {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 0 2rem;
  font-family: var(--display);
  font-size: 13rem;
  line-height: var(--display-leading);
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.manifest-text--one {
  max-width: 95rem;
  color: var(--pink-light);
}

.manifest-text--two {
  color: var(--pink);
}

.manifest-text span {
  display: inline-flex;
  overflow: hidden;
}

.manifest-text b {
  display: inline-block;
  font-weight: 400;
  transform: translateY(120%);
}

.manifest-shape {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transform: rotate(-12deg) scale(1.4);
  transform-origin: center;
  will-change: transform;
}

.manifest-shape svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.manifest-shape polyline {
  fill: none;
  stroke: var(--gray);
  stroke-width: 140px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2000px;
  stroke-dashoffset: 2000px;
}

/* B06 Expertise */
.expertise {
  position: relative;
  height: 400svh;
  color: var(--pink);
}

.expertise-screen {
  align-items: center;
}

.expertise-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.expertise-heading em {
  color: var(--pink-light);
}

.expertise-heading p {
  max-width: 28rem;
  margin-top: 2.5rem;
  font-size: 2rem;
  font-weight: 700;
}

.expertise-heading .section-bubble {
  right: -2rem;
  bottom: 30%;
  transform: rotate(-24deg) scale(0);
}

.expertise.is-inview .expertise-heading .section-bubble {
  transform: translateY(50%) rotate(-8deg) scale(1);
}

.expertise-deck {
  position: relative;
  width: min(100%, 45rem);
  max-height: calc(100svh - 20rem);
  aspect-ratio: 45 / 68;
  justify-self: center;
}

.expertise-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 2.5rem;
  background: var(--black);
  transition: transform .8s var(--ease-out);
}

.expertise-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-media--one {
  z-index: 3;
  transform: translateX(0) scale(1);
}

.expertise-media--two {
  z-index: 2;
  transform: translateX(-20%) scale(.72) rotate(-3deg);
}

.expertise-media--three {
  z-index: 1;
  transform: translateX(20%) scale(.72) rotate(3deg);
}

.expertise[data-index="1"] .expertise-media--one {
  z-index: 1;
  transform: translateX(20%) scale(.72) rotate(3deg);
}

.expertise[data-index="1"] .expertise-media--two {
  z-index: 3;
  transform: translateX(0) scale(1);
}

.expertise[data-index="1"] .expertise-media--three {
  z-index: 2;
  transform: translateX(-20%) scale(.72) rotate(-3deg);
}

.expertise[data-index="2"] .expertise-media--one {
  z-index: 1;
  transform: translateX(-20%) scale(.72) rotate(-3deg);
}

.expertise[data-index="2"] .expertise-media--two {
  z-index: 2;
  transform: translateX(20%) scale(.72) rotate(3deg);
}

.expertise[data-index="2"] .expertise-media--three {
  z-index: 3;
  transform: translateX(0) scale(1);
}

.expertise-details {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding-left: 4rem;
}

.expertise-detail {
  position: relative;
  width: 100%;
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  text-align: left;
  opacity: .55;
  transition: color .8s var(--ease-out), opacity .8s var(--ease-out);
}

.expertise-detail>span {
  font-size: 1.1rem;
}

.expertise-detail h3 {
  margin-top: .6rem;
  padding-right: 20%;
  font-family: var(--display);
  font-size: 4.6rem;
  font-weight: 400;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.expertise-detail>div {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  transition: max-height .8s var(--ease-out), margin-top .8s var(--ease-out);
}

.expertise-detail i {
  padding: .7rem .9rem;
  border-radius: .6rem;
  background: var(--pink);
  color: var(--white);
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 700;
  opacity: .5;
  transform: scale(.8);
  transition: transform .8s var(--ease-out), opacity .8s var(--ease-out);
}

.expertise-detail.is-active {
  color: var(--pink);
  opacity: 1;
}

.expertise-detail.is-active>div {
  max-height: 12rem;
  margin-top: 1.5rem;
}

.expertise-detail.is-active i {
  opacity: 1;
  transform: scale(1);
}

/* B07 Process card stack */
.process {
  position: relative;
  color: var(--pink);
}

.process-layout {
  align-items: start;
}

.sticky-column {
  position: sticky;
  top: 0;
  display: flex;
  height: 100svh;
  flex-direction: column;
  justify-content: center;
}

.process-heading {
  position: sticky;
  top: 0;
  grid-column: 1;
  height: 100svh;
}

.process-heading .section-bubble {
  bottom: 8%;
  left: 60%;
  transform: rotate(8deg) scale(1);
  background: var(--white);
}

.process-heading em {
  color: var(--pink-mid);
}

.process-stack {
  grid-column: 2;
  max-width: 45rem;
  width: 100%;
  justify-self: center;
}

.process-step {
  position: sticky;
  top: 0;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
}

.process-step article {
  display: flex;
  width: auto;
  height: var(--card-max);
  aspect-ratio: 45 / 68;
  padding: 3rem;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 2.5rem;
  color: var(--white);
  box-shadow: 0 1.5rem 4rem rgba(19, 19, 19, .12);
}

.process-step span {
  font-family: var(--display);
  font-size: 13rem;
  line-height: .7;
}

.process-step h3 {
  font-family: var(--display);
  font-size: 7rem;
  font-weight: 400;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.process-step p {
  max-width: 30ch;
  font-size: 1.6rem;
}

.process-step--one {
  transform: rotate(1deg);
}

.process-step--two {
  transform: rotate(-2deg);
}

.process-step--three {
  transform: rotate(-1deg);
}

.process-step--four {
  transform: rotate(3deg);
}

.process-step--five {
  transform: rotate(-1deg);
}

.process-step--one article,
.process-step--three article,
.process-step--five article {
  background: var(--pink);
}

.process-step--two article,
.process-step--four article {
  background: var(--green);
}

.process-copy {
  grid-column: 3;
  padding-left: 4rem;
  font-size: 2rem;
  line-height: 1.35;
}

.process-copy p {
  max-width: 34rem;
}

/* B08 Why — sticky diagonal cascade */
.why {
  position: relative;
  color: var(--pink-light);
}

.why-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-title h2 {
  font-family: var(--display);
  font-size: min(30rem, 16vw);
  font-weight: 400;
  line-height: var(--display-leading);
  text-align: center;
  text-transform: uppercase;
}

.why-title em {
  color: var(--white);
  font-style: normal;
}

.why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1900px;
  margin: 0 auto;
  padding: 0 3rem;
}

.why-card {
  position: sticky;
  top: 50%;
  display: flex;
  width: 100%;
  min-width: 0;
  max-width: 40rem;
  max-height: calc(100svh - 20rem);
  aspect-ratio: 32 / 45;
  margin: 50% auto 0;
  padding: 3rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border-radius: 2rem;
  color: var(--white);
  text-align: center;
}

.why-card>span {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.1rem;
}

.why-card svg {
  width: 8rem;
  height: 8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  font-family: var(--display);
  font-size: 4.6rem;
  font-weight: 400;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.why-card p {
  max-width: 28ch;
}

.why-card--one {
  grid-column: 1;
  grid-row: 1;
  background: var(--green);
  transform: translateY(-50%) rotate(-2deg);
}

.why-card--two {
  grid-column: 2;
  grid-row: 2;
  background: var(--green);
  color: var(--white);
  transform: translateY(-50%) rotate(3deg);
}

.why-card--three {
  grid-column: 3;
  grid-row: 3;
  background: var(--green);
  color: var(--white);
  transform: translateY(-50%) rotate(-2deg);
}

.why-card--four {
  grid-column: 4;
  grid-row: 4;
  background: var(--green);
  transform: translateY(-50%) rotate(3deg);
}

/* B09 FAQ */
.faq {
  position: relative;
  padding: 28rem 3rem;
  color: var(--white);
  transition: color .4s var(--ease-out);
}

.faq.is-current {
  color: var(--pink);
}

.faq-layout {
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  max-width: 1920px;
  margin: 0 auto;
}

.faq-heading {
  position: sticky;
  top: 0;
  grid-column: 1 / span 6;
  height: 100svh;
}

.faq-heading em {
  color: var(--white);
  transition: color .4s var(--ease-out);
}

.faq.is-current .faq-heading em {
  color: var(--pink-mid);
}

.faq-heading .section-bubble {
  top: 55%;
  left: 32rem;
  transform: rotate(-8deg) scale(1);
}

.faq-list {
  grid-column: 14 / span 10;
  display: flex;
  flex-direction: column;
}

.faq-list details {
  border-bottom: 1px solid currentColor;
  transition: border-color .4s var(--ease-out);
}

.faq-list summary {
  position: relative;
  padding: 2.4rem 7rem 2.4rem 0;
  cursor: pointer;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.05;
  list-style: none;
}

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

.faq-list summary>span {
  position: absolute;
  top: 50%;
  right: 0;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  background: var(--pink-light);
  transform: translateY(-50%);
}

.faq-list summary>span::before,
.faq-list summary>span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 1px;
  background: var(--pink);
  content: "";
  transition: transform .3s var(--ease-out);
  transform: translate(-50%, -50%);
}

.faq-list summary>span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary>span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 65ch;
  padding: 0 7rem 2.4rem 0;
  color: inherit;
  font-size: 1.6rem;
  line-height: 1.45;
  transition: color .4s var(--ease-out);
}

/* B10 Footer */
.footer {
  position: relative;
  padding: 12rem 3rem 3rem;
  color: var(--green);
  overflow: hidden;
}

.footer-contact {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: min(80rem, 70vw);
  margin: 0 auto 10rem;
}

.footer-contact figure,
.footer-contact-card {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 45 / 55;
  border-radius: 2.5rem;
  transition: transform 2s var(--ease-out);
}

.footer-contact figure {
  transform: translate(50%, 200%);
}

.footer-contact figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-contact-card {
  display: flex;
  padding: 5rem 3rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--pink);
  color: var(--white);
  text-align: center;
  transform: translate(-50%, 200%);
  transition-delay: .2s;
}

.footer.is-inview .footer-contact figure {
  transform: rotate(-3deg);
}

.footer.is-inview .footer-contact-card {
  transform: rotate(6deg);
}

.footer-contact-card h2 {
  font-family: var(--display);
  font-size: 8rem;
  font-weight: 400;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.footer-contact-card>p:last-of-type {
  max-width: 30rem;
  line-height: 1.4;
}

.footer-contact-card button {
  width: 100%;
  margin-top: 1rem;
  padding: 1.8rem;
  border-radius: 1rem;
  background: var(--pink-mid);
  color: var(--white);
  font-weight: 700;
}

.footer-contact-card>a,
.quiz-success a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: .25em;
}

.footer-wordmark {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  color: var(--green);
  font-family: var(--display);
  font-size: min(50rem, 24vw);
  line-height: .7;
  letter-spacing: -.045em;
}

.footer-wordmark span {
  flex: 0 0 .88em;
  text-align: center;
  transform: translateY(110%);
  transition: transform 1s var(--ease-expo) var(--delay);
}

.footer.is-inview .footer-wordmark span {
  transform: translateY(0);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
  padding-top: 3rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.footer-bottom nav {
  display: flex;
  gap: 2rem;
}

.footer-bottom>a {
  justify-self: end;
}

.footer-bottom a:hover {
  color: var(--pink);
}

.featured-project {
  position: fixed;
  z-index: 45;
  right: 3rem;
  bottom: 3rem;
  display: grid;
  width: min(calc(100% - 14.4rem), 39rem);
  padding: 0 1.5rem 1.5rem;
  grid-template-columns: minmax(10rem, 1fr) 1fr;
  gap: 1.5rem;
  border-radius: 2.5rem;
  background: var(--project-blue);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 5rem));
  transition: opacity .4s var(--ease-out), transform 1.2s cubic-bezier(.19, 1, .22, 1);
  will-change: transform;
}

.featured-project.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.featured-project.drawer-ready {
  transition: opacity .4s var(--ease-out), transform .8s var(--spring);
}

.featured-project.is-visible.is-collapsed {
  transform: translateY(calc(100% - 5.4rem));
}

.featured-project.is-dragging {
  transition: opacity .4s var(--ease-out), transform 0s;
  cursor: grabbing;
}

.featured-project img {
  grid-column: 1;
  width: 100%;
  height: 18rem;
  border-radius: 1.5rem;
  object-fit: cover;
}

.featured-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
}

.featured-copy small {
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.featured-copy strong {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 400;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.featured-copy em {
  font-size: 1.1rem;
  font-style: normal;
  opacity: .72;
}

.featured-copy b {
  margin-top: auto;
  padding: 1rem;
  border-radius: .8rem;
  background: var(--white);
  color: var(--project-blue);
  font-size: 1.1rem;
}

.featured-progress {
  grid-column: 1 / -1;
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: center;
  cursor: grab;
  touch-action: none;
}

.featured-progress i {
  display: block;
  width: 8rem;
  height: .2rem;
  border-radius: 99px;
  background: var(--white);
}

/* Team and contact dialogs */
dialog {
  border: 0;
}

dialog::backdrop {
  background: rgba(0, 50, 30, .72);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  z-index: 20;
  top: 2rem;
  right: 2rem;
  display: grid;
  width: 5rem;
  height: 5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-size: 3rem;
  line-height: 1;
}

.team-dialog {
  width: min(100%, 140rem);
  height: min(100%, 90rem);
  max-width: calc(100vw - 3rem);
  max-height: calc(100svh - 3rem);
  padding: 0;
  overflow: hidden;
  border-radius: 2.5rem;
  background: var(--pink-mid);
  color: var(--green);
}

.team-dialog-stage {
  position: relative;
  width: 100%;
  height: calc(100% - 9rem);
  overflow: hidden;
  perspective: 1000px;
}

.team-profile {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  padding: 8rem;
}

.profile-card {
  position: absolute;
  top: 50%;
  width: min(42rem, 33vw);
  aspect-ratio: 45 / 68;
  overflow: hidden;
  border-radius: 2.5rem;
  box-shadow: 0 2rem 5rem rgba(19, 19, 19, .12);
  transform: translateY(-50%) rotate(var(--profile-final-rotate, 0deg));
}

.profile-card--image {
  left: calc(50% - 40rem);
  background: var(--gray);
}

.profile-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card--image .chat-bubble {
  top: 10%;
  left: 20%;
  transform: scale(1) rotate(-6deg);
}

.profile-card--copy {
  left: calc(50% + 1rem);
  display: flex;
  padding: 4rem;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.profile-card--copy h3 {
  margin: 1rem 0 2rem;
  font-family: var(--display);
  font-size: 9rem;
  font-weight: 400;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.profile-card--copy p {
  font-size: 2rem;
  line-height: 1.4;
}

.team-profile.is-entering .profile-card {
  animation: profileEnter 1.2s var(--ease-expo) forwards;
}

.team-profile.is-leaving .profile-card {
  animation: profileLeave 1.2s var(--ease-expo) forwards;
}

@keyframes profileEnter {
  from {
    transform: translate(var(--profile-enter-x, -400%), calc(-50% + var(--profile-y, 0px))) rotateY(75deg) rotate(var(--profile-start-rotate, 0deg));
  }

  to {
    transform: translate(0, -50%) rotateY(0) rotate(var(--profile-final-rotate, 0deg));
  }
}

@keyframes profileLeave {
  from {
    transform: translate(0, -50%) rotateY(0) rotate(var(--profile-final-rotate, 0deg));
  }

  to {
    transform: translate(var(--profile-leave-x, 500%), calc(-50% - var(--profile-y, 0px))) rotateY(75deg) rotate(var(--profile-start-rotate, 0deg));
  }
}

.team-dialog-controls {
  position: absolute;
  right: 3rem;
  bottom: 2rem;
  left: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-dialog-controls>button {
  display: grid;
  width: 5rem;
  height: 5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  font-size: 2rem;
}

.team-dialog-controls>div {
  display: flex;
  gap: .7rem;
}

.team-dialog-controls>div button {
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  background: rgba(0, 82, 45, .3);
}

.team-dialog-controls>div button.is-active {
  background: var(--green);
}

.contact-dialog {
  width: min(94rem, calc(100vw - 3rem));
  max-height: calc(100svh - 3rem);
  padding: 0;
  overflow: auto;
  border-radius: 2.5rem;
  background: var(--pink-light);
  color: var(--pink);
}

.contact-dialog[open] {
  animation: quizPanelOpen .4s var(--ease-out) both;
}

.contact-dialog::before,
.contact-dialog::after {
  position: fixed;
  z-index: -1;
  top: 8%;
  bottom: 8%;
  width: 22vw;
  max-width: 34rem;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  animation: quizBoltOpen .4s var(--ease-out) both;
  clip-path: polygon(0 0, 80% 0, 55% 38%, 100% 38%, 24% 100%, 42% 58%, 0 58%);
}

.contact-dialog::before {
  right: calc(50% + 45rem);
  transform-origin: right;
}

.contact-dialog::after {
  left: calc(50% + 45rem);
  transform-origin: left;
  scale: -1 1;
}

@keyframes quizPanelOpen {
  from {
    opacity: 0;
    clip-path: inset(0 50% round 10rem);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 round 2.5rem);
  }
}

@keyframes quizBoltOpen {
  to {
    transform: scaleX(1);
  }
}

.contact-quiz {
  min-height: 72rem;
  padding: 7rem clamp(2rem, 8vw, 9rem) 4rem;
  text-align: center;
}

.quiz-step>p:first-child {
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: 4.6rem;
}

.quiz-step h2,
.quiz-success h2 {
  margin-bottom: 4rem;
  font-family: var(--display);
  font-size: 8rem;
  font-weight: 400;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.quiz-step h2 em {
  font-style: normal;
}

.quiz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.quiz-options input {
  position: absolute;
  opacity: 0;
}

.quiz-options span {
  display: block;
  padding: 1.4rem 1.8rem;
  border: 1px solid var(--pink);
  border-radius: 1rem;
  cursor: pointer;
}

.quiz-options input:checked+span {
  background: var(--pink);
  color: var(--white);
}

.quiz-options input:focus-visible+span {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.quiz-error {
  margin-top: 2rem;
  font-weight: 700;
}

.quiz-primary {
  margin-top: 3rem;
  padding: 1.8rem 2.2rem;
  border-radius: 1rem;
  background: var(--pink-mid);
  color: var(--white);
  font-weight: 700;
}

.quiz-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

.quiz-fields label,
.quiz-message {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.quiz-fields input,
.quiz-message textarea {
  padding: 1.3rem 0;
  border: 0;
  border-bottom: 1px solid var(--pink);
  outline: 0;
  background: transparent;
  color: var(--green);
}

.quiz-message textarea {
  padding: 1.5rem;
  border: 1px solid var(--pink);
  border-radius: 1rem;
  resize: vertical;
}

.quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
}

.quiz-actions .quiz-primary {
  margin-top: 0;
}

.quiz-success {
  padding-top: 5rem;
}

.quiz-success svg {
  width: 7rem;
  margin: 0 auto 2rem;
  fill: var(--pink);
}

.quiz-success>p:last-of-type {
  max-width: 50rem;
  margin: 0 auto 3rem;
  color: var(--green);
}

.quiz-success button {
  padding: 1.6rem 2rem;
  border-radius: 1rem;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
}

/* Responsive choreography */
@media (max-width: 1023px) {
  :root {
    --gutter: 1.5rem;
    --card-max: min(68rem, calc(100svh - 15rem));
  }

  .header-logo {
    top: 1.5rem;
    width: 4.2rem;
    height: 4.2rem;
  }

  .round-control {
    top: auto;
    bottom: 1.5rem;
    width: 4.6rem;
    height: 4.6rem;
  }

  .menu-toggle {
    left: 1.5rem;
  }

  .contact-toggle {
    right: 1.5rem;
  }

  .section-label {
    display: none;
  }

  .menu-panel--left {
    flex-basis: min(70rem, 100%);
    padding: 10rem 3rem 3rem;
  }

  .menu-panel--right,
  .menu-seam {
    display: none;
  }

  .menu-panel nav a {
    font-size: clamp(5.4rem, 12vw, 8rem);
  }

  .hero {
    display: flex;
    height: auto;
    min-height: 100svh;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    flex-direction: column;
    gap: 2.5rem;
  }

  .hero-wordmark {
    height: 30svh;
    font-size: min(11.5rem, 27vw);
  }

  .hero-deck {
    position: relative;
    top: auto;
    left: auto;
    width: min(75vw, 42rem);
    max-height: calc(100svh - 18rem);
    margin: 0 auto;
    flex: 0 0 auto;
    transform: none;
  }

  .hero-content h1 {
    font-size: 1.4rem;
  }

  .hero-content p {
    font-size: 7.2rem;
  }

  .hero-scroll {
    position: relative;
    right: auto;
    bottom: auto;
    margin-left: auto;
  }

  .agency {
    min-height: auto;
    padding: 14rem 1.5rem;
  }

  .agency-screen {
    position: relative;
    display: grid;
    height: auto;
    min-height: 100svh;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0;
  }

  .agency-line {
    font-size: 7.2rem;
    text-align: center;
  }

  .agency-line--left,
  .agency-line--right {
    grid-column: 1;
    padding: 0;
  }

  .agency-line--left {
    grid-row: 1;
  }

  .agency-media {
    position: relative;
    z-index: auto;
    top: auto;
    left: auto;
    grid-column: 1;
    grid-row: 2;
    width: min(78vw, 42rem);
    justify-self: center;
    transform: translateX(25%) translateZ(-60px) rotateY(90deg) scale(.5);
  }

  .agency.is-inview .agency-media {
    pointer-events: auto;
    transform: none;
  }

  .video-play {
    top: 50%;
    bottom: auto;
    left: 50%;
    width: 6rem;
    height: 6rem;
    transform: translate(-50%, -50%);
  }

  .video-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
  }

  .video-sound {
    display: none;
  }

  .agency-line--right {
    grid-row: 3;
  }

  .three-column-screen {
    grid-template-columns: 1fr;
    padding-inline: 1.5rem;
  }

  .team {
    min-height: auto;
    padding: 14rem 0;
  }

  .team-screen {
    position: relative;
    height: auto;
    gap: 7rem;
  }

  .team-heading,
  .team-copy {
    grid-column: 1;
  }

  .team-heading {
    align-items: center;
    text-align: center;
  }

  .team-heading h2,
  .expertise-heading h2,
  .process-heading h2,
  .faq-heading h2 {
    font-size: 7.2rem;
  }

  .team-heading .section-bubble {
    left: 50%;
    transform: translate(-50%, -160%) rotate(8deg) scale(0);
  }

  .team.is-inview .team-heading .section-bubble {
    transform: translate(-50%, -160%) rotate(8deg) scale(1);
  }

  .team-deck {
    position: relative;
    z-index: auto;
    top: auto;
    left: auto;
    grid-column: 1;
    width: min(70vw, 40rem);
    margin: 0 auto;
    pointer-events: auto;
    transform: translateX(25%) translateZ(-60px) rotateY(90deg) scale(.5);
  }

  .team.is-inview .team-deck {
    transform: none;
  }

  .team-copy {
    max-width: 70rem;
    padding: 0;
    margin-inline: auto;
    text-align: center;
  }

  .projects {
    height: auto;
    padding: 14rem 0;
  }

  .projects-screen {
    position: relative;
    display: block;
    height: auto;
    padding: 0;
    overflow: visible;
  }

  .projects-intro {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    padding-inline: 1.5rem;
    align-items: center;
    text-align: center;
  }

  .projects-intro h2 {
    font-size: 7.2rem;
  }

  .section-bubble--projects {
    top: -5rem;
    right: 15%;
  }

  .project-thumbnails {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 1.9rem;
    left: 0;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    translate: 0 160%;
    transition: opacity .4s var(--ease-out), translate .8s var(--ease-out);
  }

  .projects.mobile-active .project-thumbnails {
    opacity: 1;
    pointer-events: auto;
    translate: 0 0;
  }

  .project-thumbnails button {
    width: 4rem;
    height: 4rem;
  }

  .projects-stage {
    position: relative;
    inset: auto;
    height: auto;
    margin-top: 6rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .projects-track {
    position: relative;
    top: auto;
    left: auto;
    width: max-content;
    height: min(68rem, 78svh);
    padding: 1.5rem;
    transform: none !important;
  }

  .project-runway {
    display: none;
  }

  .project-story {
    width: min(78vw, 42rem);
    height: 100%;
    scroll-snap-align: center;
    opacity: 1;
    transform: none;
  }

  .manifest-text {
    font-size: 7.2rem;
  }

  .expertise {
    height: auto;
    padding: 14rem 0;
  }

  .expertise-screen {
    position: relative;
    height: auto;
    gap: 6rem;
  }

  .expertise-heading {
    align-items: center;
    text-align: center;
  }

  .expertise-heading .section-bubble {
    right: 12%;
    bottom: 10%;
  }

  .expertise-deck {
    display: flex;
    width: calc(100vw - 3rem);
    max-width: none;
    max-height: none;
    aspect-ratio: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .expertise-media,
  .expertise-media--one,
  .expertise-media--two,
  .expertise-media--three,
  .expertise[data-index="1"] .expertise-media,
  .expertise[data-index="2"] .expertise-media {
    position: relative;
    inset: auto;
    flex: 0 0 min(68vw, 40rem);
    height: min(65rem, 75svh);
    transform: rotate(-2deg);
    scroll-snap-align: center;
  }

  .expertise-media:nth-child(2) {
    transform: rotate(2deg);
  }

  .expertise-details {
    position: relative;
    width: 100%;
    height: 22rem;
    padding: 0;
  }

  .expertise-detail {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .8s var(--ease-out), color .8s var(--ease-out);
  }

  .expertise-detail.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  .expertise-detail h3 {
    font-size: 4rem;
  }

  .process-layout {
    display: block;
    padding: 14rem 0;
  }

  .process-heading,
  .process-copy {
    position: relative;
    height: auto;
    padding: 0 1.5rem;
    align-items: center;
    text-align: center;
  }

  .process-heading .section-bubble {
    position: relative;
    bottom: auto;
    left: auto;
    margin-bottom: 3rem;
  }

  .process-stack {
    display: flex;
    width: 100%;
    max-width: none;
    margin: 6rem 0;
    padding: 1.5rem;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .process-step {
    position: relative;
    flex: 0 0 min(66.667vw, 42rem);
    min-height: auto;
    transform: none;
    scroll-snap-align: center;
  }

  .process-step:first-child {
    flex-basis: min(83.333vw, 52rem);
    padding-left: min(16.667vw, 10rem);
  }

  .process-step:last-child {
    flex-basis: min(83.333vw, 52rem);
    padding-right: min(16.667vw, 10rem);
  }

  .process-step article {
    width: 100%;
    height: min(68rem, 78svh);
  }

  .process-copy {
    font-size: 1.8rem;
  }

  .why-title h2 {
    font-size: min(18rem, 28vw);
  }

  .why-grid {
    display: block;
    padding-inline: 1.5rem;
  }

  .why-card {
    max-width: 42rem;
    margin-top: 60svh;
  }

  .faq {
    padding: 14rem 1.5rem;
  }

  .faq-layout {
    display: block;
  }

  .faq-heading {
    position: relative;
    height: auto;
    margin-bottom: 8rem;
    align-items: center;
    text-align: center;
  }

  .faq-heading .section-bubble {
    top: -4rem;
    left: 60%;
  }

  .faq-list summary {
    font-size: 2rem;
  }

  .footer {
    padding-inline: 1.5rem;
  }

  .footer-contact {
    width: min(90vw, 70rem);
  }

  .footer-wordmark {
    font-size: 24vw;
  }

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

  .footer-bottom nav {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .footer-bottom>a {
    grid-column: 2;
    grid-row: 2;
  }

  .featured-project {
    right: 50%;
    bottom: 1.5rem;
    width: 80%;
    max-width: min(calc(100% - 14.4rem), 39rem);
    translate: 50% 0;
  }

  .team-profile {
    padding: 7rem 2rem;
  }

  .profile-card {
    width: min(42vw, 35rem);
  }

  .profile-card--image {
    left: calc(50% - 36vw);
  }

  .profile-card--copy {
    left: calc(50% + 1rem);
  }

  .profile-card--copy h3 {
    font-size: 7rem;
  }

  .profile-card--copy p {
    font-size: 1.6rem;
  }
}

@media (max-width: 620px) {
  .loader-copy {
    font-size: 5.4rem;
  }

  .hero-wordmark {
    font-size: 27vw;
  }

  .hero-deck {
    width: 72vw;
    max-height: calc(100svh - 24rem);
  }

  .chat-bubble--hero-left,
  .chat-bubble--hero-right {
    font-size: 1rem;
    min-height: 4rem;
    padding: .8rem 1rem;
  }

  .hero-content p {
    font-size: 5.4rem;
  }

  .hero-scroll {
    display: none;
  }

  .agency-line,
  .team-heading h2,
  .expertise-heading h2,
  .process-heading h2,
  .faq-heading h2,
  .projects-intro h2 {
    font-size: 5.4rem;
  }

  .manifest-text {
    font-size: 5.4rem;
  }

  .process-step span {
    font-size: 10rem;
  }

  .process-step h3 {
    font-size: 5.4rem;
  }

  .why-card {
    min-height: 55rem;
  }

  .footer-contact {
    display: block;
    width: 90vw;
  }

  .footer-contact figure,
  .footer-contact-card {
    aspect-ratio: 45 / 62;
  }

  .footer-contact-card {
    margin-top: -45%;
  }

  .footer.is-inview .footer-contact figure {
    transform: translateX(-8%) rotate(-3deg);
  }

  .footer.is-inview .footer-contact-card {
    transform: translateX(8%) rotate(6deg);
  }

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

  .footer-bottom>a {
    align-self: flex-end;
  }

  .team-dialog {
    width: calc(100vw - 1.5rem);
    height: calc(100svh - 1.5rem);
    max-width: none;
    max-height: none;
  }

  .team-profile {
    display: block;
    padding: 7rem 1.5rem;
    overflow-y: auto;
  }

  .profile-card {
    position: relative;
    top: auto;
    left: auto;
    width: 76vw;
    margin: 0 auto;
    transform: none;
  }

  .profile-card--copy {
    min-height: 45rem;
    margin-top: -20%;
  }

  .profile-card--copy h3 {
    font-size: 6rem;
  }

  .team-profile.is-entering .profile-card {
    animation-name: profileEnterMobile;
  }

  .team-profile.is-leaving .profile-card {
    animation-name: profileLeaveMobile;
  }

  @keyframes profileEnterMobile {
    from {
      opacity: 0;
      transform: translateX(var(--profile-enter-x, -100%)) rotateY(55deg);
    }

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

  @keyframes profileLeaveMobile {
    from {
      opacity: 1;
      transform: none;
    }

    to {
      opacity: 0;
      transform: translateX(var(--profile-leave-x, 100%)) rotateY(55deg);
    }
  }

  .contact-quiz {
    min-height: 68rem;
    padding: 7rem 2rem 3rem;
  }

  .quiz-step h2,
  .quiz-success h2 {
    font-size: 5.4rem;
  }

  .quiz-options {
    display: grid;
  }

  .quiz-fields {
    grid-template-columns: 1fr;
  }
}

/* Mobile composition pass
   The desktop site is built around fixed, viewport-sized choreography. Below
   the JavaScript's 1024px breakpoint these rules give every block its own
   native flow, with swipe rails only where horizontal movement adds value. */
@media (max-width: 1023px) {
  :root {
    --gutter: clamp(1.6rem, 4vw, 3rem);
    --mobile-inline: clamp(1.6rem, 4vw, 3rem);
    --mobile-section: clamp(9rem, 15vw, 14rem);
    --display-leading: .94;
    --card-max: none;
  }

  html {
    background: var(--white);
    scroll-padding-top: calc(env(safe-area-inset-top) + 8rem);
    scrollbar-gutter: auto;
  }

  body {
    background: transparent;
    line-height: 1.45;
    -webkit-tap-highlight-color: transparent;
  }

  .site-background {
    z-index: 0;
    inset: -2px;
    width: auto;
    height: auto;
    min-height: 0;
    pointer-events: none;
  }

  main {
    position: relative;
    z-index: 1;
  }

  .site-header {
    width: 100%;
    height: calc(env(safe-area-inset-top) + 8rem);
    isolation: isolate;
  }

  .sticky-screen,
  .sticky-column {
    position: relative;
    top: auto;
    height: auto;
  }

  .three-column-screen {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding-inline: var(--mobile-inline);
  }

  .header-logo {
    position: fixed;
    top: calc(env(safe-area-inset-top) + 1.4rem);
    width: 4.8rem;
    height: 4.8rem;
  }

  .round-control {
    position: fixed;
    top: calc(env(safe-area-inset-top) + 1.4rem);
    bottom: auto;
    width: 5.2rem;
    height: 5.2rem;
    box-shadow: 0 .8rem 2.4rem rgba(19, 19, 19, .08);
  }

  .round-control svg {
    width: 2rem;
  }

  .menu-toggle {
    left: max(var(--mobile-inline), env(safe-area-inset-left));
  }

  .contact-toggle {
    right: max(var(--mobile-inline), env(safe-area-inset-right));
  }

  .section-label,
  .featured-project {
    display: none !important;
  }

  .menu-panel--left {
    width: 100%;
    flex-basis: 100%;
    min-height: 0;
    padding: calc(env(safe-area-inset-top) + 8.5rem) var(--mobile-inline) calc(env(safe-area-inset-bottom) + 2.4rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .menu-panel nav {
    justify-content: center;
    gap: clamp(.5rem, 1.2vh, 1.2rem);
  }

  .menu-panel nav a {
    width: fit-content;
    min-height: 4.4rem;
    font-size: clamp(4rem, 10vw, 7rem);
    line-height: .94;
  }

  .menu-bottom {
    padding-top: 2rem;
    gap: 1rem;
    font-size: 1.1rem;
  }

  .loader-copy {
    justify-self: center;
    width: min(36rem, calc(100vw - 3.2rem));
    min-width: 0;
    max-width: none;
    padding: 0;
    font-size: clamp(2.4rem, 7.2vw, 3.4rem);
    line-height: 1;
    white-space: normal;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .loader-copy > span {
    display: inline-block;
    max-width: 100%;
  }

  .loader-shape {
    transform: rotate(-12deg) scale(1.15);
  }

  /* B01 */
  .hero {
    display: grid;
    min-height: 100svh;
    height: auto;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: stretch;
    gap: clamp(1.6rem, 3vh, 3rem);
    padding: calc(env(safe-area-inset-top) + 8rem) var(--mobile-inline) calc(env(safe-area-inset-bottom) + 2rem);
  }

  .hero-wordmark {
    z-index: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    padding-top: .3rem;
    font-size: min(25vw, 15rem);
    line-height: .7;
  }

  .hero-deck {
    align-self: center;
    grid-row: 2;
    width: min(74vw, 35svh, 33rem);
    max-height: none;
    margin: 0 auto;
  }

  .hero-card figure {
    border-radius: clamp(1.8rem, 5vw, 2.5rem);
  }

  .hero-card--left figure,
  .hero-card--right figure {
    transform: scale(.78);
  }

  .chat-bubble--hero-center {
    top: 10%;
    left: 14%;
    width: 5.6rem;
    min-height: 4.4rem;
  }

  .chat-bubble--hero-left {
    top: 45%;
    left: -1rem;
  }

  .chat-bubble--hero-right {
    top: 48%;
    left: 65%;
  }

  .hero-content {
    align-self: end;
    grid-row: 3;
    max-width: calc(100% - 6rem);
  }

  .hero-content h1 {
    max-width: 30ch;
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 3.4vw, 1.5rem);
    line-height: 1.3;
  }

  .hero-content p {
    font-size: clamp(5.4rem, 16vw, 8.6rem);
    line-height: .7;
  }

  .hero-scroll {
    display: flex;
    position: absolute;
    right: var(--mobile-inline);
    bottom: calc(env(safe-area-inset-bottom) + 2.2rem);
    margin: 0;
    writing-mode: vertical-rl;
  }

  /* B02 */
  .agency {
    min-height: 0;
    padding: var(--mobile-section) var(--mobile-inline);
  }

  .agency-screen {
    min-height: 0;
    gap: clamp(2rem, 6vw, 4rem);
  }

  .agency-line {
    width: 100%;
    font-size: clamp(5rem, 14vw, 8rem);
    line-height: .94;
  }

  .agency-line--left {
    text-align: left;
  }

  .agency-line--right {
    text-align: right;
  }

  .agency-media {
    width: min(76vw, 34rem);
    max-height: none;
    border-radius: 2.2rem;
  }

  .video-time {
    top: 1.4rem;
    right: 1.4rem;
  }

  .video-play {
    width: 5.6rem;
    height: 5.6rem;
  }

  /* B03 */
  .team {
    min-height: 0;
    padding: var(--mobile-section) 0;
  }

  .team-screen {
    gap: clamp(4.5rem, 11vw, 8rem);
  }

  .team-heading,
  .expertise-heading,
  .process-heading,
  .faq-heading {
    align-items: flex-start;
    text-align: left;
  }

  .team-heading h2,
  .expertise-heading h2,
  .process-heading h2,
  .faq-heading h2,
  .projects-intro h2 {
    font-size: clamp(5rem, 14vw, 8rem);
    line-height: .94;
    text-wrap: balance;
  }

  .team-heading .section-bubble {
    top: auto;
    right: 0;
    bottom: -2.5rem;
    left: auto;
    transform: rotate(6deg) scale(0);
  }

  .team.is-inview .team-heading .section-bubble {
    transform: rotate(6deg) scale(1);
  }

  .team-deck {
    width: min(74vw, 34rem);
    max-height: none;
    margin-inline: auto;
    border-radius: 2.2rem;
  }

  .team-deck::after {
    position: absolute;
    z-index: 8;
    right: 1.2rem;
    bottom: 1.2rem;
    padding: .9rem 1.2rem;
    border-radius: 99px;
    background: var(--white);
    color: var(--green);
    content: "Tap to meet Olexi";
    font-size: 1.1rem;
    font-weight: 700;
    pointer-events: none;
  }

  .team-pin,
  .team-pin-bubble {
    display: none;
  }

  .team-copy {
    max-width: 62rem;
    padding: 0;
    margin: 0;
    gap: 2rem;
    font-size: clamp(1.7rem, 4.2vw, 2rem);
    line-height: 1.5;
    text-align: left;
  }

  /* B04 */
  .projects {
    height: auto;
    padding: var(--mobile-section) 0;
  }

  .projects-screen {
    overflow: visible;
  }

  .projects-intro {
    padding-inline: var(--mobile-inline);
    align-items: flex-start;
    text-align: left;
  }

  .section-bubble--projects {
    position: relative;
    top: auto;
    right: auto;
    align-self: flex-end;
    margin: 0 2rem 2.4rem 0;
    transform: rotate(-5deg) scale(0);
  }

  .projects.is-inview .section-bubble--projects {
    transform: rotate(-5deg) scale(1);
  }

  .project-thumbnails,
  .projects.mobile-active .project-thumbnails {
    position: relative;
    z-index: 1;
    right: auto;
    bottom: auto;
    left: auto;
    justify-content: flex-start;
    margin-top: 2.4rem;
    opacity: 1;
    pointer-events: auto;
    translate: none;
  }

  .project-thumbnails button {
    width: 4.8rem;
    height: 4.8rem;
    transform: scale(1);
  }

  .projects-stage {
    width: 100%;
    margin-top: clamp(3.5rem, 9vw, 6rem);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .projects-track {
    display: flex;
    width: max-content;
    height: auto;
    padding: 1.5rem max(var(--mobile-inline), calc((100vw - min(78vw, 34rem)) / 2));
    gap: clamp(1.4rem, 4vw, 2.4rem);
  }

  .project-story {
    flex: 0 0 min(78vw, 34rem);
    width: min(78vw, 34rem);
    height: auto;
    aspect-ratio: 45 / 68;
    border-radius: 2.2rem;
    opacity: 1;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    translate: none;
    transform: none !important;
    transition: opacity .35s ease, box-shadow .35s ease;
  }

  .project-story:not(.is-active) {
    box-shadow: 0 1rem 2.8rem rgba(19, 19, 19, .08);
  }

  .story-bottom h3 {
    font-size: clamp(3.4rem, 10vw, 4.6rem);
    line-height: .94;
  }

  .project-story--more p {
    font-size: clamp(5rem, 15vw, 7rem);
    line-height: .94;
  }

  /* B05 */
  .manifest {
    height: 300svh;
  }

  .manifest-screen {
    position: sticky;
    top: 0;
    height: 100svh;
  }

  .manifest-text {
    width: min(100%, 46rem);
    padding-inline: var(--mobile-inline);
    font-size: clamp(4.2rem, 11.5vw, 7rem);
    line-height: .96;
    text-wrap: balance;
  }

  .manifest-text--one {
    max-width: 42rem;
  }

  /* B06 */
  .expertise {
    height: auto;
    padding: var(--mobile-section) 0;
  }

  .expertise-screen {
    gap: clamp(3.5rem, 9vw, 6rem);
    padding-inline: 0;
  }

  .expertise-heading {
    height: auto;
    padding-inline: var(--mobile-inline);
  }

  .expertise-heading p {
    max-width: 34ch;
    margin-top: 2rem;
    font-size: 1.7rem;
    line-height: 1.45;
  }

  .expertise-heading .section-bubble {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: flex-end;
    order: -1;
    margin: 0 1rem 2rem 0;
    transform: rotate(-5deg) scale(0);
  }

  .expertise.is-inview .expertise-heading .section-bubble {
    transform: rotate(-5deg) scale(1);
  }

  .expertise-deck {
    display: flex;
    width: 100vw;
    padding: 1.5rem max(var(--mobile-inline), calc((100vw - min(74vw, 33rem)) / 2));
    gap: clamp(1.4rem, 4vw, 2.4rem);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .expertise-media,
  .expertise-media--one,
  .expertise-media--two,
  .expertise-media--three,
  .expertise[data-index="1"] .expertise-media,
  .expertise[data-index="2"] .expertise-media {
    position: relative;
    inset: auto;
    z-index: auto;
    flex: 0 0 min(74vw, 33rem);
    width: min(74vw, 33rem);
    height: auto;
    aspect-ratio: 45 / 68;
    border-radius: 2.2rem;
    opacity: .65;
    transform: none !important;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition: opacity .35s ease, transform .35s var(--ease-out);
  }

  .expertise-media.is-active {
    opacity: 1;
  }

  .expertise-details {
    position: relative;
    width: calc(100% - 2 * var(--mobile-inline));
    min-height: 26rem;
    height: auto;
    margin-inline: auto;
    padding: 0;
    border-radius: 2.2rem;
    background: rgba(255, 248, 246, .58);
    overflow: hidden;
  }

  .expertise-detail {
    position: absolute;
    inset: 0;
    min-height: 26rem;
    padding: 2.2rem;
    border: 0;
    opacity: 0;
    pointer-events: none;
  }

  .expertise-detail.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  .expertise-detail h3 {
    max-width: 15ch;
    padding: 0;
    font-size: clamp(3.4rem, 9vw, 4.4rem);
    line-height: .96;
  }

  /* B07 */
  .process-layout {
    display: flex;
    width: 100%;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
    padding: var(--mobile-section) 0;
  }

  .process-heading,
  .process-copy {
    width: 100%;
    flex: 0 0 auto;
    padding-inline: var(--mobile-inline);
  }

  .process-heading {
    z-index: 1;
  }

  .process-heading h2 {
    width: 100%;
  }

  .process-heading .section-bubble {
    align-self: flex-end;
    margin: 0 1rem 2.2rem 0;
    transform: rotate(5deg);
  }

  .process-stack {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100vw;
    margin: clamp(4rem, 10vw, 7rem) 0;
    padding: 1.5rem max(var(--mobile-inline), calc((100vw - min(76vw, 34rem)) / 2));
    gap: clamp(1.4rem, 4vw, 2.4rem);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    background: var(--pink-light);
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    position: relative;
    top: auto;
    flex: 0 0 min(76vw, 34rem);
    min-height: 0;
    padding: 0;
    transform: none;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .process-step article {
    width: 100%;
    height: auto;
    min-height: min(58rem, 68svh);
    aspect-ratio: 45 / 60;
    padding: clamp(2.2rem, 6vw, 3rem);
    border-radius: 2.2rem;
  }

  .process-step span {
    font-size: clamp(8rem, 25vw, 12rem);
  }

  .process-step h3 {
    font-size: clamp(4.8rem, 14vw, 6.8rem);
    line-height: .94;
  }

  .process-copy {
    max-width: 58rem;
    margin-inline: 0;
    font-size: 1.7rem;
    line-height: 1.5;
    text-align: left;
  }

  /* B08 */
  .why {
    padding: var(--mobile-section) 0;
  }

  .why-title {
    position: relative;
    height: auto;
    padding-inline: var(--mobile-inline);
  }

  .why-title h2 {
    font-size: clamp(7rem, 21vw, 13rem);
    line-height: .88;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: clamp(1.4rem, 3vw, 2.4rem);
    width: min(100%, 86rem);
    margin: clamp(6rem, 13vw, 10rem) auto 0;
    padding-inline: var(--mobile-inline);
  }

  .why-card,
  .why-card--one,
  .why-card--two,
  .why-card--three,
  .why-card--four {
    position: relative;
    top: auto;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: none;
    max-height: none;
    min-height: clamp(36rem, 55vw, 48rem);
    aspect-ratio: auto;
    margin: 0;
    padding: clamp(2rem, 5vw, 3rem);
    gap: 1.4rem;
    transform: none;
  }

  .why-card:nth-child(odd) {
    transform: rotate(-1deg);
  }

  .why-card:nth-child(even) {
    transform: rotate(1deg);
  }

  .why-card h3 {
    font-size: clamp(3.4rem, 7vw, 4.6rem);
    line-height: .96;
  }

  .why-card p {
    line-height: 1.45;
  }

  /* B09 */
  .faq {
    padding: var(--mobile-section) var(--mobile-inline);
  }

  .faq-heading {
    margin-bottom: clamp(5rem, 12vw, 8rem);
  }

  .faq-heading .section-bubble {
    position: relative;
    top: auto;
    left: auto;
    align-self: flex-end;
    order: -1;
    margin: 0 1rem 2rem 0;
    transform: rotate(-6deg) scale(1);
  }

  .faq-list summary {
    min-height: 6.4rem;
    padding: 2rem 5.6rem 2rem 0;
    font-size: clamp(1.8rem, 4.5vw, 2.2rem);
    line-height: 1.25;
  }

  .faq-list summary > span {
    width: 4.6rem;
    height: 4.6rem;
  }

  .faq-list details p {
    padding: 0 1rem 2.4rem 0;
    font-size: 1.6rem;
    line-height: 1.55;
  }

  /* B10 */
  .footer {
    padding: var(--mobile-section) var(--mobile-inline) calc(env(safe-area-inset-bottom) + 2.5rem);
  }

  .footer-contact {
    display: grid;
    width: min(100%, 58rem);
    grid-template-columns: 1fr;
    margin: 0 auto clamp(7rem, 14vw, 11rem);
  }

  .footer-contact figure {
    width: 88%;
    aspect-ratio: 4 / 5;
    border-radius: 2.2rem;
    opacity: 0;
    transform: translateY(10rem) rotate(-3deg);
    transition: opacity .55s ease, transform 1.15s var(--ease-out);
  }

  .footer-contact-card {
    width: 88%;
    min-height: 38rem;
    aspect-ratio: auto;
    justify-self: end;
    margin-top: -22%;
    padding: clamp(3rem, 8vw, 5rem) clamp(2rem, 6vw, 3.5rem);
    border-radius: 2.2rem;
    opacity: 0;
    transform: translateY(10rem) rotate(4deg);
    transition: opacity .55s ease .08s, transform 1.15s var(--ease-out) .08s;
  }

  .footer.is-inview .footer-contact figure {
    opacity: 1;
    transform: rotate(-3deg);
  }

  .footer.is-inview .footer-contact-card {
    opacity: 1;
    transform: rotate(4deg);
  }

  .footer-contact-card h2 {
    font-size: clamp(5rem, 14vw, 8rem);
    line-height: .94;
  }

  .footer-contact-card button,
  .project-story--more a,
  .quiz-primary,
  .quiz-success button {
    min-height: 5.2rem;
  }

  .footer-wordmark {
    font-size: min(25vw, 15rem);
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.4rem 1.5rem;
    padding-top: 2.4rem;
    line-height: 1.4;
  }

  .footer-bottom nav {
    grid-column: 1 / -1;
    grid-row: 1;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
  }

  .footer-bottom nav a,
  .footer-bottom > a,
  .footer-contact-card > a {
    display: inline-flex;
    min-height: 4.4rem;
    align-items: center;
  }

  .footer-bottom > p {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-bottom > a {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
  }

  /* Overlays */
  .dialog-close {
    top: 1.2rem;
    right: 1.2rem;
    width: 4.8rem;
    height: 4.8rem;
  }

  .team-dialog,
  .contact-dialog {
    width: calc(100vw - 1.2rem);
    max-width: none;
    max-height: calc(100dvh - 1.2rem);
    border-radius: 2rem;
  }

  .team-dialog {
    height: calc(100dvh - 1.2rem);
  }

  .team-dialog-stage {
    height: calc(100% - 7.5rem);
  }

  .team-profile {
    display: block;
    padding: 7rem var(--mobile-inline) 3rem;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .profile-card {
    position: relative;
    top: auto;
    left: auto;
    width: min(78vw, 32rem);
    margin-inline: auto;
    border-radius: 2.2rem;
    transform: none;
  }

  .profile-card--copy {
    min-height: 0;
    aspect-ratio: auto;
    margin-top: -18%;
    padding: 8rem 2.4rem 3rem;
  }

  .profile-card--copy h3 {
    font-size: clamp(4.8rem, 14vw, 7rem);
    line-height: .94;
  }

  .profile-card--copy p {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .team-profile.is-entering .profile-card {
    animation-name: profileEnterMobileFlow;
    animation-duration: .65s;
  }

  .team-profile.is-leaving .profile-card {
    animation-name: profileLeaveMobileFlow;
    animation-duration: .5s;
  }

  @keyframes profileEnterMobileFlow {
    from {
      opacity: 0;
      transform: translateY(4rem) rotateY(20deg);
    }

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

  @keyframes profileLeaveMobileFlow {
    from {
      opacity: 1;
      transform: none;
    }

    to {
      opacity: 0;
      transform: translateY(-4rem) rotateY(20deg);
    }
  }

  .team-dialog-controls {
    right: 1.5rem;
    bottom: 1.2rem;
    left: 1.5rem;
  }

  .team-dialog-controls > button {
    width: 4.8rem;
    height: 4.8rem;
  }

  .team-dialog-controls > div {
    gap: 0;
  }

  .team-dialog-controls > div button,
  .team-dialog-controls > div button.is-active {
    position: relative;
    width: 4.4rem;
    height: 4.4rem;
    background: transparent;
  }

  .team-dialog-controls > div button::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: .9rem;
    height: .9rem;
    border-radius: 50%;
    background: rgba(0, 82, 45, .3);
    content: "";
    transform: translate(-50%, -50%);
  }

  .team-dialog-controls > div button.is-active::after {
    background: var(--green);
  }

  .contact-dialog {
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .contact-dialog::before,
  .contact-dialog::after {
    display: none;
  }

  .contact-quiz {
    min-height: 0;
    padding: 7rem var(--mobile-inline) calc(env(safe-area-inset-bottom) + 3rem);
  }

  .quiz-step h2,
  .quiz-success h2 {
    margin-bottom: 3rem;
    font-size: clamp(4.6rem, 13vw, 7rem);
    line-height: .94;
  }

  .quiz-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .quiz-options label,
  .quiz-options span {
    width: 100%;
  }

  .quiz-options span {
    display: flex;
    min-height: 5.2rem;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    line-height: 1.25;
  }

  .quiz-fields input,
  .quiz-message textarea {
    min-height: 5.2rem;
    font-size: 1.6rem;
  }

  .quiz-actions {
    gap: 1.2rem;
  }

  .quiz-actions > button {
    min-height: 4.8rem;
  }

  .projects-stage::-webkit-scrollbar,
  .expertise-deck::-webkit-scrollbar,
  .process-stack::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 620px) {
  .menu-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-scroll {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .why-grid {
    grid-template-columns: 1fr;
    width: min(100%, 46rem);
  }

  .why-card,
  .why-card--one,
  .why-card--two,
  .why-card--three,
  .why-card--four {
    min-height: 40rem;
  }

  .story-tag {
    display: none;
  }

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

  .footer-bottom > a {
    align-self: flex-start;
  }

  .quiz-options,
  .quiz-fields {
    grid-template-columns: 1fr;
  }

  .quiz-actions {
    align-items: stretch;
  }

  .quiz-actions > button {
    flex: 1;
  }
}

@media (max-width: 390px) {
  .hero-deck {
    width: min(70vw, 32svh, 28rem);
  }

  .chat-bubble--hero-left,
  .chat-bubble--hero-right {
    display: none;
  }

  .project-story,
  .expertise-media,
  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    flex-basis: 82vw;
    width: 82vw;
  }

  .projects-track,
  .expertise-deck,
  .process-stack {
    padding-inline: max(var(--mobile-inline), 9vw);
  }

  .project-thumbnails button {
    width: 4.4rem;
    height: 4.4rem;
  }

  .footer-contact-card {
    width: 92%;
  }
}

@media (hover: none), (pointer: coarse) {
  .round-control:hover,
  .video-play:hover,
  .video-sound:hover,
  .hero-hidden .header-logo:hover {
    transform: none;
  }

  .hero-hidden .header-logo:hover {
    transform: translateX(-50%);
  }

  .team-pin:hover::after {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .loader {
    display: none;
  }

  .hero-wordmark span,
  .footer-wordmark span {
    transform: none;
  }

  .site-ready .hero-card--center {
    transform: none !important;
  }

  .site-ready .hero-card--left {
    transform: translateX(-80%) rotate(-3deg) !important;
  }

  .site-ready .hero-card--right {
    transform: translateX(80%) rotate(3deg) !important;
  }

  .chat-bubble {
    transform: scale(1) rotate(0);
  }

  .agency-media,
  .agency.is-inview .agency-media,
  .team-deck,
  .team.is-inview .team-deck {
    transform: none !important;
  }

  .agency-media {
    position: relative;
    z-index: auto;
    top: auto;
    left: auto;
    grid-column: 9 / span 8;
    grid-row: 1;
    width: 100%;
    justify-self: center;
  }

  .team-deck {
    position: relative;
    z-index: auto;
    top: auto;
    left: auto;
    grid-column: 2;
    width: 100%;
    margin: 0 auto;
    pointer-events: auto;
  }

  .projects,
  .manifest,
  .expertise {
    height: auto;
    padding-block: 10rem;
  }

  .projects-screen,
  .manifest-screen,
  .expertise-screen {
    position: relative;
    height: auto;
  }

  .projects-stage {
    position: relative;
    inset: auto;
    height: auto;
    overflow-x: auto;
  }

  .projects-track {
    position: relative;
    top: auto;
    left: auto;
    width: max-content;
    height: 60rem;
    padding: 1.5rem;
    transform: none;
  }

  .project-runway {
    display: none;
  }

  .projects .project-story,
  .projects.is-inview .project-story,
  .projects.is-inview .project-story.is-active {
    width: min(78vw, 42rem);
    height: 60rem;
    opacity: 1;
    transform: none;
  }

  .manifest-background {
    transform: scale(1);
  }

  .manifest-text--one {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  .manifest-text--one b {
    transform: none;
  }

  .manifest-text--two,
  .manifest-shape {
    display: none;
  }
}

@media (max-width: 1023px) and (prefers-reduced-motion: reduce) {
  .site-ready .hero-card--left {
    transform: translateX(-54%) rotate(-5deg) !important;
  }

  .site-ready .hero-card--right {
    transform: translateX(54%) rotate(5deg) !important;
  }

  .agency-media {
    grid-column: 1;
    grid-row: 2;
    width: min(76vw, 34rem);
  }

  .team-deck {
    grid-column: 1;
    width: min(74vw, 34rem);
  }

  .projects,
  .expertise {
    padding-block: var(--mobile-section);
  }

  .projects-track {
    height: auto;
    padding: 1.5rem max(var(--mobile-inline), calc((100vw - min(78vw, 34rem)) / 2));
  }

  .projects .project-story,
  .projects.is-inview .project-story,
  .projects.is-inview .project-story.is-active {
    width: min(78vw, 34rem);
    height: auto;
    aspect-ratio: 45 / 68;
  }

  .manifest {
    padding: var(--mobile-section) var(--mobile-inline);
  }

  .manifest-screen {
    min-height: 70svh;
  }

  .manifest-text--one {
    width: min(100%, 42rem);
    padding: 0;
  }
}

@media (max-width: 390px) and (prefers-reduced-motion: reduce) {
  .projects-track {
    padding-inline: max(var(--mobile-inline), 9vw);
  }

  .projects .project-story,
  .projects.is-inview .project-story,
  .projects.is-inview .project-story.is-active {
    width: 82vw;
  }
}
