:root {
  --black: #000;
  --ink: #11110f;
  --white: #fff;
  --cream: #f1eee6;
  --warm: #c6bfb3;
  --line: rgba(241, 238, 230, 0.22);
  --line-dark: rgba(17, 17, 15, 0.2);
  --blue: #6c86ff;
  --font-sans: "Helvetica Neue", "Neue Haas Grotesk Text Pro", Helvetica, Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --gutter: clamp(1.25rem, 4vw, 4.75rem);
  --header-height: 5.25rem;
  --title-hero: clamp(3.4rem, 7.2vw, 7.8rem);
  --title-contact: clamp(3rem, 6.2vw, 6.8rem);
  --title-hero-column: clamp(2.8rem, 4.5vw, 5.5rem);
  --title-section: clamp(2.6rem, 5.2vw, 5.8rem);
  --title-feature: clamp(2.1rem, 4vw, 4.2rem);
  --title-card: clamp(1.65rem, 2.7vw, 2.9rem);
  --title-overlay: clamp(2.4rem, 4vw, 4.6rem);
  --leading-hero: 1.12;
  --leading-section: 1.12;
  --leading-feature: 1.16;
  --leading-card: 1.18;
  --leading-overlay: 1.12;
  --intro-logo-opacity: 1;
  --intro-logo-y: 0px;
  --intro-message-opacity: 0;
  --intro-message-y: 28px;
  --intro-video-scale: 1;
  --intro-veil-opacity: 0.5;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  scrollbar-color: rgba(241, 238, 230, 0.35) var(--black);
  scrollbar-width: thin;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.has-menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

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

img {
  height: auto;
}

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

address {
  font-style: normal;
}

::selection {
  background: var(--cream);
  color: var(--black);
}

:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
  background: var(--cream);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.wordmark {
  display: inline-flex;
  width: clamp(4rem, 5.5vw, 4.8rem);
  align-items: center;
}

.wordmark img {
  width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(18px);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), opacity 350ms ease;
}

.site-header.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100%);
}

.whatsapp-fab {
  position: fixed;
  z-index: 100;
  right: calc(var(--gutter) + env(safe-area-inset-right));
  bottom: calc(1rem + env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 3.35rem;
  padding: 0.82rem 1.05rem;
  border: 1px solid #25d366;
  border-radius: 999px;
  background: #25d366;
  color: #061b0d;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(0.8rem);
  transition: opacity 250ms ease, transform 250ms ease, background-color 200ms ease, color 200ms ease, visibility 0s linear 250ms;
}

.whatsapp-fab.is-visible,
.page-body .whatsapp-fab {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.whatsapp-fab.is-footer-visible,
.page-body .whatsapp-fab.is-footer-visible {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(0.8rem);
  transition-delay: 0s;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--black);
}

.whatsapp-fab svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.category-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 2.4rem);
}

.category-nav a {
  position: relative;
  padding: 0.5rem 0;
  color: rgba(241, 238, 230, 0.5);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.category-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.15rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 300ms ease;
}

.category-nav a:hover,
.category-nav a.is-active {
  color: var(--cream);
}

.category-nav a:hover::after,
.category-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-icon-links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: clamp(0.1rem, 0.6vw, 0.65rem);
  padding-left: clamp(0.65rem, 1.1vw, 1.15rem);
  border-left: 1px solid var(--line);
}

.social-icon-link {
  display: inline-grid;
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(241, 238, 230, 0.28);
  border-radius: 50%;
  color: rgba(241, 238, 230, 0.62);
  transition: border-color 200ms ease, background-color 200ms ease, color 200ms ease, transform 220ms ease;
}

.social-icon-link::after,
.category-nav .social-icon-link::after {
  display: none;
}

.social-icon-link:hover,
.social-icon-link:focus-visible {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--black);
  transform: translateY(-0.12rem);
}

.social-icon-link svg {
  display: block;
  width: 0.92rem;
  height: 0.92rem;
  overflow: visible;
}

.social-icon-link--instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon-link--linkedin svg {
  fill: currentColor;
}

.category-nav .social-icon-link {
  position: static;
  padding: 0;
  color: rgba(241, 238, 230, 0.62);
}

.category-nav .social-icon-link:hover,
.category-nav .social-icon-link:focus-visible {
  color: var(--black);
}

.menu-button {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-button i,
.menu-panel__top button i {
  position: relative;
  width: 1.45rem;
  height: 0.75rem;
}

.menu-button i::before,
.menu-button i::after,
.menu-panel__top button i::before,
.menu-panel__top button i::after {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 250ms ease;
}

.menu-button i::before {
  top: 0.15rem;
}

.menu-button i::after {
  bottom: 0.15rem;
}

.menu-button:hover i::before {
  transform: translateX(-0.22rem);
}

.menu-button:hover i::after {
  transform: translateX(0.22rem);
}

.intro {
  position: relative;
  height: 125svh;
  min-height: 52rem;
  background: var(--black);
}

.intro__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 38rem;
  overflow: hidden;
}

.intro__video,
.intro__veil,
.intro__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro__video {
  object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(0.72);
  transform: scale(var(--intro-video-scale));
  transition: filter 600ms ease;
}

.intro.is-logo-hidden .intro__video {
  filter: grayscale(0) contrast(1.06) brightness(0.72);
}

.intro__veil {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.7) 100%),
    radial-gradient(circle at 66% 44%, transparent 0, rgba(0, 0, 0, 0.62) 78%);
  opacity: var(--intro-veil-opacity);
}

.intro__grain {
  pointer-events: none;
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.intro__logo {
  position: absolute;
  z-index: 2;
  top: 40%;
  left: 50%;
  width: min(25.2rem, 68vw);
  isolation: isolate;
  opacity: var(--intro-logo-opacity);
  transform: translate(-50%, calc(-50% + var(--intro-logo-y)));
}

.intro__logo::before {
  position: absolute;
  z-index: 0;
  inset: -58% -30%;
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.32) 38%, transparent 74%);
  filter: blur(10px);
}

.intro__logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.intro__message {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: clamp(4rem, 9vh, 8rem);
  left: var(--gutter);
  max-width: 48rem;
  text-shadow: 0 0.25rem 1.6rem rgba(0, 0, 0, 0.48);
}

.js .intro__message {
  opacity: var(--intro-message-opacity);
  pointer-events: none;
  transform: translateY(var(--intro-message-y));
}

.intro__headline {
  max-width: 49rem;
  margin-top: 0.85rem;
  color: var(--cream);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.intro__headline em {
  display: block;
  margin-left: clamp(1.3rem, 4vw, 4rem);
  color: var(--warm);
  font-family: var(--font-serif);
  font-size: 1.03em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.intro__scroll {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: 2.2rem;
  display: flex;
  align-items: center;
  color: rgba(241, 238, 230, 0.75);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.intro__scroll:hover {
  color: var(--warm);
}

.intro__scroll i {
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(241, 238, 230, 0.4);
  border-radius: 50%;
}

.intro__scroll i::before {
  position: absolute;
  top: 0.72rem;
  left: 50%;
  width: 1px;
  height: 0.8rem;
  content: "";
  transform: translateX(-50%);
  background: currentColor;
  animation: scroll-pulse 1.6s ease-in-out infinite;
}

.content-section {
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) var(--gutter);
}

.section-index,
.eyebrow,
.card-index {
  color: var(--warm);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem 2rem;
  min-height: 92svh;
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.manifesto > .section-index {
  align-self: start;
  padding-top: 0.9rem;
}

.manifesto__statement {
  min-width: 0;
  font-size: clamp(3.2rem, 7.8vw, 9rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.manifesto__statement p:nth-child(2) {
  padding-left: 8vw;
}

.manifesto__statement p:nth-child(3) {
  text-align: right;
}

.manifesto__statement em,
.section-heading em,
.projects__header em,
.numbers__header em {
  font-family: var(--font-serif);
  font-weight: 400;
}

.manifesto__grid {
  display: grid;
  grid-column: 2;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
  gap: clamp(3rem, 9vw, 10rem);
  max-width: 68rem;
  margin-top: 2rem;
  min-width: 0;
}

.manifesto__lead {
  font-size: clamp(1.35rem, 2.25vw, 2.35rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.manifesto__grid > div {
  color: rgba(241, 238, 230, 0.68);
  font-size: 0.88rem;
  line-height: 1.75;
}

.text-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1rem;
  transition: transform 250ms ease;
}

.text-link:hover span {
  transform: translate(0.25rem, 0.25rem);
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
  gap: clamp(2rem, 4.5vw, 5.5rem);
  min-height: 100svh;
  align-content: start;
  padding-top: calc(var(--header-height) + clamp(4rem, 6vw, 6rem));
  padding-bottom: clamp(5rem, 8vw, 8rem);
  overflow: hidden;
}

.category-hero__heading {
  grid-column: 1 / -1;
}

.category-hero__heading h2 {
  margin-top: 1rem;
  max-width: 100%;
  font-size: clamp(4.5rem, 11vw, 11rem);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.category-hero__tagline {
  width: fit-content;
  margin: 1.8rem 0 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  font-style: italic;
}

.category-hero__media {
  position: relative;
  height: min(56vw, 50rem);
  min-height: 32rem;
  overflow: hidden;
}

.category-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(155deg, transparent 58%, rgba(0, 0, 0, 0.38));
}

.category-hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.06);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.category-hero__media:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02);
}

.category-hero__media figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  color: rgba(241, 238, 230, 0.78);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding-bottom: 0;
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.display-copy {
  margin: 1.25rem 0 2rem;
  font-size: clamp(1.9rem, 3.4vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.category-hero__copy > p:last-child {
  max-width: 42rem;
  color: rgba(241, 238, 230, 0.72);
  font-size: 0.94rem;
  line-height: 1.75;
}

.services {
  padding-top: clamp(5rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--header-height);
}

.section-heading {
  display: block;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.section-heading h2,
.projects__header h2,
.numbers__header h2 {
  max-width: 100%;
  font-size: clamp(3rem, 6.7vw, 7.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
  overflow-wrap: break-word;
}

.section-heading > p:last-child {
  max-width: 24rem;
  color: rgba(241, 238, 230, 0.6);
  font-size: 0.82rem;
  line-height: 1.7;
}

.section-heading--slogan {
  display: flex;
  justify-content: flex-end;
}

.section-heading--slogan h2 {
  max-width: 13ch;
  font-size: clamp(3.2rem, 5.8vw, 6.5rem);
  line-height: 0.92;
  text-align: right;
}

.section-heading--slogan h2 span {
  display: block;
  color: var(--warm);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(13rem, 0.75fr) minmax(20rem, 1.15fr) minmax(20rem, 0.9fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  min-height: 16rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 300ms ease, padding 350ms ease;
}

.service-row > span {
  align-self: start;
  padding-top: 0.65rem;
  color: var(--warm);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-row h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.service-row p {
  color: rgba(241, 238, 230, 0.7);
  font-size: 0.88rem;
  line-height: 1.7;
  transition: color 300ms ease;
}

.service-row__media {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 0.55rem;
  height: 13.5rem;
  overflow: hidden;
}

.service-row__media img,
.service-row__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.48);
  opacity: 0.82;
  transform: scale(1.025);
  transition: opacity 450ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
}

.service-row__media > :nth-child(2) {
  transform: scale(1.025) translateY(0.7rem);
}

.service-row:hover {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  color: var(--cream);
}

.service-row:hover p {
  color: var(--cream);
}

.service-row:hover .service-row__media img,
.service-row:hover .service-row__media video {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1);
}

.service-row:hover .service-row__media > :nth-child(2) {
  transform: scale(1) translateY(0);
}

.deliverables {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 7vw, 8rem);
  min-height: auto;
  align-content: center;
  padding: clamp(5rem, 9vw, 8rem) var(--gutter);
  background: var(--black);
  color: var(--cream);
}

.deliverables .section-index {
  color: rgba(241, 238, 230, 0.55);
}

.deliverables h2 {
  margin-top: 2rem;
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.deliverables__list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.deliverables__list li {
  display: flex;
  align-items: center;
  min-height: 4.4rem;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.05rem, 1.7vw, 1.75rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.deliverables__list span {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.7fr;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: end;
}

.section-heading--compact {
  grid-column: 1 / -1;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: start;
  margin-bottom: 4rem;
}

.section-heading--compact h2 {
  max-width: 60rem;
}

.story-grid__item {
  position: relative;
  overflow: hidden;
}

.story-grid__item img,
.story-grid__item video {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1), filter 450ms ease;
}

.story-grid__item--wide img {
  height: 38rem;
}

.story-grid__item--portrait video {
  height: 47rem;
}

.story-grid__item:hover img,
.story-grid__item:hover video {
  transform: scale(1.025);
  filter: saturate(1);
}

.story-grid__item figcaption,
.project-tile figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.7rem;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.category-hero--people {
  margin-top: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.category-hero--people .category-hero__media {
  order: 4;
  grid-column: 2;
  height: min(52vw, 45rem);
}

.category-hero--people .category-hero__copy {
  order: 3;
  grid-column: 1;
  align-self: end;
  max-width: 50rem;
}

.people-pulse {
  position: absolute;
  z-index: -1;
  top: 46%;
  left: 31%;
  width: clamp(18rem, 38vw, 38rem);
  aspect-ratio: 1;
}

.people-pulse span,
.people-pulse i,
.people-pulse b {
  position: absolute;
  inset: 0;
  display: block;
  border: 1px solid rgba(108, 134, 255, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 3rem rgba(108, 134, 255, 0.22), inset 0 0 4rem rgba(108, 134, 255, 0.08);
  animation: pulse-orbit 12s linear infinite;
}

.people-pulse i {
  inset: 12%;
  border-color: rgba(241, 238, 230, 0.5);
  animation-direction: reverse;
  animation-duration: 16s;
}

.people-pulse b {
  inset: 28%;
  border-color: rgba(241, 238, 230, 0.25);
  animation-duration: 9s;
}

.people-services {
  padding-top: clamp(5rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--header-height);
}

.people-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.people-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 30rem;
  padding: clamp(1.4rem, 2.6vw, 2.6rem);
  overflow: hidden;
  background: var(--black);
}

.people-card h3 {
  margin: auto 0 1.25rem;
  font-size: clamp(1.8rem, 3.2vw, 3.3rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.people-card > p:last-child,
.people-card > h3 + p {
  max-width: 31rem;
  color: rgba(241, 238, 230, 0.74);
  font-size: 0.88rem;
  line-height: 1.7;
}

.people-card--feature {
  grid-column: span 2;
  grid-row: auto;
  min-height: 36rem;
}

.people-card--feature h3 {
  position: relative;
  z-index: 2;
  margin: auto 0 1.2rem;
}

.people-card--feature img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
  filter: grayscale(0.32) contrast(1.06);
  transition: opacity 500ms ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.people-card--feature::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.88) 78%);
}

.people-card--feature > *:not(img) {
  z-index: 2;
}

.people-card--feature:hover img {
  opacity: 0.8;
  transform: scale(1.035);
}

.people-card--image :is(img, video) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
  filter: grayscale(0.24) contrast(1.04);
  transition: opacity 500ms ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.people-card--image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.88) 82%);
}

.people-card--image > *:not(img):not(video) {
  position: relative;
  z-index: 1;
}

.people-card--image:hover :is(img, video) {
  opacity: 0.82;
  transform: scale(1.035);
}

.people-card--media {
  padding: 0;
  background: #222;
}

.people-card--media video {
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.people-card--media p {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  left: 1.2rem;
  color: var(--cream);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.people-card--wide {
  grid-column: 1 / -1;
}

.people-card--wide.people-card--image::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 46%, rgba(0, 0, 0, 0.16) 100%);
}

.people-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 2rem;
}

.people-card__tags-text {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.people-card__link {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 100%;
  margin-top: 1rem;
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.people-card__tags span {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 99rem;
  color: rgba(241, 238, 230, 0.68);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.projects {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(3rem, 6vw, 7rem);
  padding-bottom: clamp(5rem, 9vw, 9rem);
}

.projects__header {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
}

.projects__header h2 {
  margin: 0;
}

.projects__header > p:last-child {
  max-width: 26rem;
  color: rgba(241, 238, 230, 0.58);
  font-size: 0.82rem;
  line-height: 1.7;
}

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

.project-tile {
  align-self: start;
  overflow: hidden;
}

.project-tile img {
  height: clamp(26rem, 32vw, 32rem);
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1), filter 450ms ease;
}

.project-tile--lead,
.project-tile--wide {
  grid-column: 1 / -1;
}

.project-tile--lead img {
  height: clamp(28rem, 42vw, 40rem);
}

.project-tile--wide img {
  height: clamp(28rem, 36vw, 35rem);
}

.project-tile:hover img {
  transform: scale(1.025);
  filter: saturate(1);
}

.client-strip {
  padding: clamp(4rem, 6vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: var(--header-height);
}

.client-strip > .section-index {
  padding: 0 var(--gutter) 3rem;
}

.client-strip__title {
  width: min(100%, 92rem);
  margin: 0 auto clamp(3.5rem, 7vw, 7rem);
  padding: 0 var(--gutter);
  font-size: clamp(3.5rem, 9vw, 10rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.065em;
}

.client-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.2vw, 1.15rem);
  width: min(100%, 92rem);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.client-logo {
  display: grid;
  aspect-ratio: 1.45 / 1;
  place-items: center;
  margin: 0;
  padding: clamp(1rem, 1.8vw, 1.75rem);
  background: transparent;
  transition: transform 250ms ease;
}

.client-logo img {
  width: auto;
  max-width: 84%;
  height: auto;
  max-height: clamp(4.5rem, 6.5vw, 7.25rem);
  object-fit: contain;
  transition: transform 250ms ease, opacity 250ms ease;
}

.client-logo--badge img {
  max-width: 58%;
  max-height: clamp(5.5rem, 7.5vw, 8.25rem);
}

.client-logo--wide img {
  max-width: 80%;
}

.client-logo--bold img {
  max-width: 72%;
  max-height: clamp(4.6rem, 5.8vw, 6.4rem);
}

.client-logo--light img {
  filter: brightness(0) invert(1);
}

/* Only dark monochrome marks are normalized. Composite marks keep their
   original colors and light fields so crests and multicolor identities stay
   recognizable on the black surface. */
.client-logo img[src*="/adidas.svg"],
.client-logo img[src*="/dyson.svg"],
.client-logo img[src*="/loreal.svg"],
.client-logo img[src*="/trendyol.svg"],
.client-logo img[src*="/beymen.svg"],
.client-logo img[src*="/koton.svg"],
.client-logo img[src*="/sephora.svg"] {
  filter: grayscale(1) brightness(0) invert(1);
}

.client-logo:hover {
  transform: translateY(-0.18rem);
}

.client-logo:hover img {
  opacity: 0.88;
  transform: scale(1.025);
}

.numbers {
  min-height: auto;
}

.numbers__header {
  display: block;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

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

.numbers__grid article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  min-height: 18rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.numbers__grid article:last-child {
  border-right: 0;
}

.numbers__grid strong {
  font-size: clamp(2.5rem, 5.2vw, 5.75rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.numbers__grid span {
  color: var(--warm);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.numbers__note {
  max-width: 46rem;
  margin: 3.5rem auto 0;
  color: rgba(241, 238, 230, 0.68);
  font-size: 0.86rem;
  line-height: 1.7;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(5rem, 9vw, 9rem));
  padding-bottom: 0;
  overflow: hidden;
  background: var(--black);
  color: var(--cream);
}

.contact__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(22rem, 0.8fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: center;
  min-height: 50svh;
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.contact__hero > h2,
.contact__hero > div:first-child h2 {
  max-width: 100%;
  font-size: var(--title-contact);
  font-weight: 500;
  line-height: 0.76;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  overflow-wrap: break-word;
  white-space: nowrap;
}

.contact__details {
  display: grid;
  min-width: 0;
  border-top: 1px solid var(--line);
}

.contact__detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 7.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(0.86rem, 1.1vw, 1.08rem);
  line-height: 1.45;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  transition: color 250ms ease, padding 300ms ease;
}

.contact__detail-row i {
  position: relative;
  display: block;
  width: 3rem;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 250ms ease, background 250ms ease, transform 300ms ease;
}

.contact__detail-row i::before,
.contact__detail-row i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.contact__detail-row i::before {
  width: 0.85rem;
  height: 1px;
}

.contact__detail-row i::after {
  width: 0.38rem;
  height: 0.38rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  background: transparent;
  transform: translate(-25%, -50%) rotate(45deg);
}

.contact__detail-row:hover {
  padding-right: 0.65rem;
  padding-left: 0.65rem;
  color: var(--cream);
}

.contact__detail-row:hover i {
  border-color: var(--cream);
  background: rgba(241, 238, 230, 0.1);
  transform: rotate(-45deg);
}

.contact__map {
  position: relative;
  height: clamp(32rem, 58vw, 52rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0a0a;
}

.contact__map::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2), inset 0 -10rem 12rem rgba(0, 0, 0, 0.16);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.08) brightness(0.72);
  transition: filter 500ms ease;
}

.contact__map:hover iframe,
.contact__map:focus-within iframe {
  filter: grayscale(0.4) contrast(1.04) brightness(0.84);
}

.site-footer {
  position: relative;
  isolation: isolate;
  margin: 0;
  padding: clamp(5rem, 9vw, 9rem) var(--gutter) 2.25rem;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--black);
  color: rgba(241, 238, 230, 0.65);
}

.site-footer::before {
  position: absolute;
  z-index: -1;
  top: clamp(-24rem, -22vw, -12rem);
  right: clamp(-22rem, -18vw, -10rem);
  width: clamp(24rem, 44vw, 44rem);
  aspect-ratio: 1;
  border: 1px solid rgba(241, 238, 230, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 8rem rgba(241, 238, 230, 0.08), inset 0 0 8rem rgba(241, 238, 230, 0.035);
  content: "";
  pointer-events: none;
}

.site-footer .wordmark {
  filter: none;
}

.site-footer__brand {
  display: grid;
  width: clamp(10rem, 14vw, 14rem);
  aspect-ratio: 1;
  place-items: center;
  padding: clamp(1.7rem, 3vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 250ms ease, transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer__brand:hover {
  border-color: var(--cream);
  transform: rotate(-4deg);
}

.site-footer__lead {
  display: grid;
  grid-template-columns: minmax(12rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: end;
  padding-bottom: clamp(5rem, 9vw, 9rem);
  border-bottom: 1px solid var(--line);
}

.site-footer__lead p {
  max-width: 58rem;
  color: var(--cream);
  font-size: clamp(2.8rem, 6.4vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.site-footer__lead p::before {
  display: block;
  width: 3rem;
  height: 2px;
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
  background: var(--cream);
  content: "";
}

.site-footer__lead p span {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: 2.75rem 0;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 2rem;
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__nav a {
  position: relative;
  display: flex;
  min-height: 3rem;
  align-items: center;
  border-bottom: 1px solid rgba(241, 238, 230, 0.12);
  transition: color 200ms ease, padding 250ms ease;
}

.site-footer__nav a::after {
  position: absolute;
  right: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  opacity: 0;
  transform: translateX(-0.4rem) rotate(45deg);
  transition: opacity 200ms ease, transform 250ms ease;
}

.site-footer__nav a:hover {
  padding-left: 0.4rem;
  color: var(--cream);
}

.site-footer__nav a:hover::after {
  opacity: 1;
  transform: translateX(0) rotate(45deg);
}

.site-footer__contact {
  display: grid;
  align-content: start;
  gap: 0;
  color: rgba(241, 238, 230, 0.72);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__contact a,
.site-footer__contact address {
  display: flex;
  min-height: 3rem;
  align-items: center;
  border-bottom: 1px solid rgba(241, 238, 230, 0.12);
  font-style: normal;
  overflow-wrap: anywhere;
}

.site-footer__contact address {
  text-align: left;
}

.site-footer__social {
  display: grid;
  gap: 0;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(241, 238, 230, 0.12);
}

.site-footer > .site-footer__social {
  max-width: 24rem;
  margin-top: 2.5rem;
}

.site-footer__social a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(241, 238, 230, 0.12);
  color: rgba(241, 238, 230, 0.72);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 200ms ease, padding 250ms ease;
}

.site-footer__social a:hover {
  padding-left: 0.35rem;
  color: var(--cream);
}

.site-footer__social a strong {
  color: var(--cream);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-footer__credit {
  display: flex;
  justify-content: flex-end;
  padding-top: 1.5rem;
  color: rgba(241, 238, 230, 0.6);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer__credit a {
  color: var(--cream);
  font-weight: 700;
}

.site-footer__credit a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.menu-panel {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(22rem, 0.75fr);
  grid-template-rows: auto 1fr auto;
  padding: 2rem var(--gutter);
  visibility: hidden;
  overflow: hidden;
  background: var(--black);
  color: var(--cream);
  opacity: 0;
  transition: visibility 0s linear 650ms, opacity 420ms ease;
}

.menu-panel .wordmark {
  filter: none;
}

.menu-panel.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.menu-panel__top {
  z-index: 2;
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  align-items: center;
}

.menu-panel__top button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-panel__top button i::before {
  top: 50%;
  transform: rotate(45deg);
}

.menu-panel__top button i::after {
  bottom: 50%;
  transform: rotate(-45deg);
}

.menu-panel__nav {
  z-index: 2;
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  justify-self: start;
  align-self: stretch;
  width: min(100%, 64rem);
  padding: 2rem 0;
  text-align: left;
}

.menu-panel__nav a {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  width: 100%;
  padding: 0.36rem 0;
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 350ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1), color 250ms ease;
}

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

.menu-panel.is-open .menu-panel__nav a:nth-child(1) { transition-delay: 90ms; }
.menu-panel.is-open .menu-panel__nav a:nth-child(2) { transition-delay: 140ms; }
.menu-panel.is-open .menu-panel__nav a:nth-child(3) { transition-delay: 190ms; }
.menu-panel.is-open .menu-panel__nav a:nth-child(4) { transition-delay: 240ms; }
.menu-panel.is-open .menu-panel__nav a:nth-child(5) { transition-delay: 290ms; }
.menu-panel.is-open .menu-panel__nav a:nth-child(6) { transition-delay: 340ms; }

.menu-panel__nav small {
  color: rgba(241, 238, 230, 0.45);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.menu-panel__nav span {
  display: block;
  max-width: 100%;
  font-size: clamp(1.1rem, 2.65vw, 2.75rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.menu-panel__nav a:hover {
  color: var(--cream);
}

.menu-panel__visual {
  position: absolute;
  z-index: 1;
  top: 6.3rem;
  right: var(--gutter);
  bottom: 5rem;
  width: min(34vw, 34rem);
  overflow: hidden;
  background: var(--black);
  pointer-events: none;
}

.menu-panel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.82);
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 650ms ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-panel.is-open .menu-panel__video {
  opacity: 0.72;
  transform: scale(1);
  transition-delay: 160ms;
}

.menu-panel__visual span {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  color: var(--cream);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-panel__footer {
  z-index: 2;
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: rgba(241, 238, 230, 0.62);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-panel__social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}

.menu-panel__social .social-icon-link {
  width: 2.15rem;
  height: 2.15rem;
}

.cursor {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  pointer-events: none;
}

.cursor span,
.cursor i {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50%;
  will-change: transform;
}

.cursor span {
  width: 0.28rem;
  height: 0.28rem;
  background: var(--cream);
}

.cursor i {
  width: 1.65rem;
  height: 1.65rem;
  border: 1px solid rgba(241, 238, 230, 0.44);
  transition: width 220ms ease, height 220ms ease, border-color 220ms ease, background 220ms ease;
}

.cursor.is-active i {
  width: 2.7rem;
  height: 2.7rem;
  border-color: rgba(241, 238, 230, 0.75);
  background: rgba(241, 238, 230, 0.08);
}

.js .reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease, transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js .service-row.reveal:nth-child(even),
.js .people-card.reveal:nth-child(even),
.js .project-tile.reveal:nth-child(even) {
  transition-delay: 80ms;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.25; transform: translate(-50%, -0.15rem); }
  50% { opacity: 1; transform: translate(-50%, 0.3rem); }
}

@keyframes pulse-orbit {
  0% { transform: rotate(0deg) scaleX(1); }
  50% { transform: rotate(180deg) scaleX(0.88); }
  100% { transform: rotate(360deg) scaleX(1); }
}

@media (max-width: 1080px) {
  .section-heading {
    grid-template-columns: 0.45fr 1.55fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .service-row {
    grid-template-columns: minmax(10rem, 0.7fr) minmax(17rem, 1.15fr) minmax(16rem, 0.85fr);
    gap: 1.5rem;
  }

  .service-row__media {
    height: 12rem;
  }

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

  .people-card--feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 34rem;
  }

  .people-card--wide {
    grid-column: 1 / -1;
  }

  .projects {
    grid-template-columns: 0.7fr 1.3fr;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 4.6rem;
  }

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

  .site-header .category-nav {
    display: none;
  }

  .intro {
    min-height: 64rem;
  }

  .intro__message {
    bottom: clamp(3.5rem, 8vh, 6rem);
    max-width: 38rem;
  }

  .manifesto {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .manifesto > .section-index,
  .manifesto__grid {
    grid-column: 1;
  }

  .manifesto__statement p:nth-child(2) {
    padding-left: 0;
  }

  .manifesto__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .category-hero__media,
  .category-hero--people .category-hero__media,
  .category-hero--people .category-hero__copy {
    grid-column: 1;
  }

  .category-hero__media {
    height: 68svh;
    min-height: 30rem;
  }

  .category-hero__copy {
    padding: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading > p:last-child {
    grid-column: 1;
  }

  .section-heading--slogan h2 {
    max-width: 100%;
    font-size: clamp(2.8rem, 10.5vw, 4.8rem);
  }

  .service-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    min-height: auto;
    padding: 2rem 0;
  }

  .service-row__media {
    height: clamp(14rem, 48vw, 21rem);
  }

  .deliverables {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 3rem;
    padding: 5rem var(--gutter);
  }

  .story-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading--compact {
    grid-column: 1 / -1;
  }

  .story-grid__item--wide {
    grid-column: 1 / -1;
  }

  .story-grid__item--portrait video {
    height: 37rem;
  }

  .story-grid__item img,
  .story-grid__item video {
    height: 29rem;
  }

  .people-services__grid {
    grid-template-columns: 1fr;
  }

  .people-card--feature,
  .people-card--wide {
    grid-column: 1;
    grid-row: auto;
  }

  .people-card--feature {
    min-height: 34rem;
  }

  .projects {
    grid-template-columns: 1fr;
  }

  .projects__header {
    position: static;
  }

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

  .numbers__grid article:nth-child(2) {
    border-right: 0;
  }

  .numbers__grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .contact__hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact__details {
    max-width: 42rem;
  }

  .menu-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-panel__visual {
    opacity: 1;
    inset: 5rem 0 4rem 40%;
    width: auto;
  }

  .menu-panel__nav {
    min-width: 0;
    width: 100%;
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 1.15rem;
  }

  .content-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .site-header {
    padding-right: 1.15rem;
    padding-left: 1.15rem;
  }

  .menu-button span {
    display: none;
  }

  .intro {
    height: 125svh;
    min-height: 47rem;
  }

  .intro__logo {
    top: 50%;
    width: min(16rem, 70vw);
  }

  .intro__message {
    bottom: 3rem;
  }

  .intro__headline {
    max-width: 21rem;
    font-size: clamp(2.35rem, 12.5vw, 3.8rem);
  }

  .intro__headline em {
    margin-left: 1.15rem;
  }

  .intro__scroll {
    right: 1.15rem;
    bottom: 1.5rem;
  }

  .manifesto {
    gap: 3rem;
  }

  .manifesto__statement {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .manifesto__statement p:nth-child(3) {
    text-align: left;
  }

  .category-hero {
    min-height: auto;
    gap: 2rem;
  }

  .category-hero__heading h2 {
    font-size: 21vw;
  }

  .category-hero__tagline {
    margin-left: 0;
  }

  .category-hero__media,
  .category-hero--people .category-hero__media {
    height: 62svh;
    min-height: 27rem;
  }

  .service-row {
    padding: 1.6rem 0;
  }

  .service-row__media {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    height: 13.5rem;
  }

  .service-row__media img,
  .service-row__media video,
  .service-row__media > :nth-child(2) {
    opacity: 0.85;
    transform: none;
  }

  .service-row p {
    font-size: 0.82rem;
  }

  .deliverables h2 {
    font-size: 19vw;
  }

  .deliverables__list li {
    min-height: 4.2rem;
    font-size: 0.95rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-grid__item--wide,
  .section-heading--compact {
    grid-column: 1;
  }

  .story-grid__item img,
  .story-grid__item video,
  .story-grid__item--wide img,
  .story-grid__item--portrait video {
    height: 65svh;
    min-height: 29rem;
  }

  .people-pulse {
    left: 5%;
    width: 90vw;
  }

  .people-card {
    min-height: 30rem;
    padding: 1.5rem;
  }

  .people-card--feature {
    min-height: 33rem;
  }

  .people-card > p:last-child,
  .people-card > h3 + p {
    font-size: 0.84rem;
  }

  .people-card--wide.people-card--image::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9) 82%);
  }

  .projects__gallery {
    grid-template-columns: 1fr;
  }

  .project-tile,
  .project-tile--wide {
    grid-column: 1;
  }

  .project-tile img,
  .project-tile--wide img {
    height: 62svh;
    min-height: 28rem;
  }

  .project-tile--lead img,
  .project-tile--wide img {
    height: clamp(18rem, 72vw, 24rem);
    min-height: 18rem;
  }

  .client-strip {
    padding: 3.5rem 0;
  }

  .client-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .client-logo {
    aspect-ratio: 1.4 / 1;
    padding: 1rem;
  }

  .client-logo img {
    max-height: 5rem;
  }

  .client-logo:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 0.4rem);
    justify-self: center;
  }

  .numbers__header {
    grid-template-columns: 1fr;
  }

  .numbers__grid article {
    min-height: 12rem;
    padding: 1rem;
  }

  .numbers__grid strong {
    font-size: clamp(2.2rem, 11vw, 2.75rem);
  }

  .contact__hero {
    gap: 3rem;
    min-height: auto;
  }

  .contact__hero > h2,
  .contact__hero > div:first-child h2 {
    font-size: 19.5vw;
  }

  .contact__detail-row {
    min-height: 6rem;
    font-size: 0.78rem;
  }

  .contact__detail-row i {
    width: 2.6rem;
  }

  .contact__map {
    width: calc(100% + (var(--gutter) * 2));
    height: 32rem;
    margin-left: calc(var(--gutter) * -1);
    border-right: 0;
    border-left: 0;
  }

  .site-footer {
    padding-top: 4.5rem;
  }

  .site-footer__lead,
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .site-footer__brand {
    width: 9.5rem;
  }

  .site-footer__lead p {
    font-size: 12.5vw;
  }

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

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

  .site-footer__contact address {
    justify-self: start;
    text-align: left;
  }

  .site-footer__credit {
    justify-content: flex-start;
    line-height: 1.6;
  }

  .menu-panel {
    padding: 1.5rem 1.15rem;
  }

  .menu-button {
    min-width: 2.75rem;
    min-height: 2.75rem;
    justify-content: center;
    padding: 0;
  }

  .menu-panel__nav span {
    font-size: clamp(1.08rem, 5.1vw, 1.35rem);
  }

  .menu-panel__visual {
    display: none;
  }

  .cursor {
    display: none;
  }
}

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

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

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

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

  .cursor {
    display: none;
  }
}

/* 2026 unified Sense Ajans navigation and footer */
.home-cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 0.95rem 1.2rem;
  border: 1px solid rgba(241, 238, 230, 0.72);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, padding 260ms ease;
}

.cta-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  place-items: center;
  line-height: 0;
}

.cta-icon svg {
  display: block;
  width: 0.95rem;
  height: 0.95rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-icon path {
  vector-effect: non-scaling-stroke;
}

.home-cta:hover {
  padding-right: 1.5rem;
  background: var(--cream);
  color: var(--black);
}

.section-action {
  display: flex;
  justify-content: flex-end;
  padding-top: clamp(2rem, 4vw, 4rem);
}

.service-row,
.people-card {
  color: inherit;
}

.site-header {
  grid-template-columns: minmax(5rem, 0.55fr) auto minmax(5rem, 0.55fr);
}

.category-nav {
  gap: clamp(0.85rem, 2vw, 2.4rem);
}

.category-nav a {
  font-size: clamp(0.56rem, 0.63vw, 0.66rem);
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.category-nav a[aria-current="page"] {
  color: var(--cream);
}

.category-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-button {
  min-width: 4.4rem;
  justify-content: flex-end;
  gap: 0.85rem;
}

.menu-button i,
.menu-panel__top button i {
  width: 2rem;
  height: 1rem;
}

.menu-button i::before,
.menu-button i::after,
.menu-panel__top button i::before,
.menu-panel__top button i::after {
  height: 2px;
}

.site-footer__contact {
  align-items: start;
}

.site-footer__contact a,
.site-footer__contact address {
  line-height: 1.65;
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding-top: 1.25rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  color: rgba(241, 238, 230, 0.5);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.site-footer__legal a {
  transition: color 180ms ease;
}

.site-footer__legal a:hover,
.site-footer__legal a[aria-current="page"] {
  color: var(--cream);
}

.menu-panel__footer {
  gap: 1rem;
}

/* Content is never dependent on animation or connection speed. */
.js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .category-nav {
    gap: 1rem;
  }

  .category-nav a {
    font-size: 0.55rem;
  }
}

@media (max-width: 900px) {
  .category-nav {
    display: none;
  }

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

  .menu-button {
    min-height: 2.75rem;
  }

  .menu-panel__nav a {
    align-items: center;
    min-height: 2.75rem;
  }
}

/* At tablet widths the footer navigation still shares a row with contact
   details. Two columns prevent the longest label from being clipped. */
@media (max-width: 820px) {
  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .menu-button i {
    width: 2.15rem;
  }

  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Typography clarity pass: keep the premium scale, but make supporting copy
   readable and give every line enough breathing room to avoid clipped or
   visually fused text at narrow widths. */
h1,
h2,
h3 {
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
}

p,
li {
  text-wrap: pretty;
}

.section-index,
.eyebrow,
.card-index {
  font-size: clamp(0.68rem, 0.72vw, 0.78rem);
  letter-spacing: 0.13em;
}

.intro__headline {
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.intro__headline em {
  letter-spacing: -0.025em;
}

.manifesto__statement {
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.manifesto__lead {
  letter-spacing: -0.01em;
}

.manifesto__grid > div {
  font-size: clamp(0.96rem, 1.05vw, 1.1rem);
  line-height: 1.82;
}

.category-hero__heading h2 {
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.category-hero__tagline {
  letter-spacing: -0.015em;
}

.display-copy {
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.category-hero__copy > p:last-child {
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.82;
}

.category-hero__heading h2 + .category-hero__tagline,
.service-row h3 + p,
.people-card h3 + p {
  margin-top: clamp(0.55rem, 0.9vw, 0.9rem);
}

.category-hero--people .category-hero__heading h2 {
  margin-top: clamp(1.5rem, 1.8vw, 1.75rem);
}

.section-heading h2,
.projects__header h2,
.numbers__header h2 {
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child,
.projects__header > p:last-child {
  color: rgba(241, 238, 230, 0.7);
  font-size: clamp(0.98rem, 1.15vw, 1.15rem);
  line-height: 1.82;
  margin-top: clamp(0.65rem, 1vw, 1rem);
}

.section-heading--slogan h2 {
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-heading--slogan h2 span {
  letter-spacing: -0.02em;
}

.service-row h3 {
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.service-row p {
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.8;
}

.people-card h3 {
  line-height: 1.03;
  letter-spacing: -0.025em;
}

.people-card > p:last-child,
.people-card > h3 + p {
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.8;
}

.people-card__tags-text {
  font-size: 0.72rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.deliverables h2 {
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.deliverables__list li {
  line-height: 1.5;
  letter-spacing: 0;
}

.deliverables__list span {
  font-size: 0.66rem;
}

.project-tile figcaption {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.numbers__grid strong {
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.numbers__grid span {
  font-size: 0.72rem;
  line-height: 1.55;
  letter-spacing: 0.1em;
}

.numbers__note {
  font-size: 0.95rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.contact__hero > h2,
.contact__hero > div:first-child h2 {
  line-height: 0.9;
  letter-spacing: -0.04em;
  white-space: normal;
}

.contact__detail-row {
  font-size: clamp(0.86rem, 1.1vw, 1.08rem);
  line-height: 1.6;
  letter-spacing: 0.025em;
}

.site-footer__lead p {
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.site-footer__nav {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.site-footer__contact {
  font-size: 0.8rem;
  letter-spacing: 0.09em;
}

@media (max-width: 560px) {
  .intro__headline {
    max-width: 100%;
    font-size: clamp(2.5rem, 12.5vw, 4rem);
    line-height: 0.98;
  }

  .category-hero__copy > p:last-child,
  .section-heading > p:last-child,
  .projects__header > p:last-child,
  .service-row p,
  .people-card > p:last-child,
  .people-card > h3 + p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .numbers__grid span {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .numbers__note {
    font-size: 0.92rem;
    letter-spacing: 0.02em;
  }

  .contact__hero > h2,
  .contact__hero > div:first-child h2 {
    line-height: 0.94;
    letter-spacing: -0.035em;
  }

  .contact__detail-row {
    min-height: 6.5rem;
    font-size: 0.84rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  }
}

/* Compact homepage message: keep the cinematic transition, then present one
   centered promise and two immediate actions. */
.js .intro__message {
  pointer-events: auto;
}

.intro__message {
  max-width: min(60rem, calc(100% - (2 * var(--gutter))));
  text-align: center;
}

.intro__headline {
  width: min(100%, 20ch);
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.6rem, 4.4vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.intro__headline em {
  margin-left: 0;
  font-size: 0.92em;
  letter-spacing: -0.025em;
}

.intro__lead {
  max-width: 32rem;
  margin-top: 1.35rem;
  margin-right: auto;
  margin-left: auto;
  color: var(--cream);
  font-size: clamp(1.05rem, 1.55vw, 1.4rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.intro__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.intro__actions a {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 11.5rem;
  min-height: 3.5rem;
  padding: 0.55rem 0.55rem 0.55rem 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(241, 238, 230, 0.58);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.9rem 2.2rem rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: var(--cream);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  transition: transform 260ms ease, background-color 260ms ease, color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.intro__actions a::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: var(--cream);
  transform: translateX(-101%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intro__actions .cta-icon {
  display: grid;
  flex: 0 0 2.35rem;
  width: 2.35rem;
  height: 2.35rem;
  margin-left: 1.1rem;
  place-items: center;
  border: 1px solid rgba(241, 238, 230, 0.42);
  border-radius: 50%;
  background: rgba(241, 238, 230, 0.12);
  color: var(--cream);
  transition: transform 260ms ease, background-color 260ms ease, border-color 260ms ease, color 260ms ease;
}

.intro__actions a:first-child {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--black);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.intro__actions a:first-child .cta-icon {
  border-color: var(--black);
  background: var(--black);
  color: var(--cream);
}

.intro__actions a.secondary {
  border-color: rgba(241, 238, 230, 0.52);
  background: rgba(0, 0, 0, 0.24);
}

.intro__actions a:hover,
.intro__actions a:focus-visible {
  transform: translateY(-3px);
  border-color: var(--cream);
  box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.intro__actions a:hover::before,
.intro__actions a:focus-visible::before {
  transform: translateX(0);
}

.intro__actions a:hover .cta-icon,
.intro__actions a:focus-visible .cta-icon {
  transform: translate(2px, -2px);
}

.intro__actions a.secondary:hover,
.intro__actions a.secondary:focus-visible {
  color: var(--black);
}

.intro__actions a.secondary:hover .cta-icon,
.intro__actions a.secondary:focus-visible .cta-icon {
  border-color: var(--black);
  background: var(--black);
  color: var(--cream);
}

.intro__actions a:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

.agency-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.5rem;
  max-width: 36rem;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.agency-facts li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .intro__message {
    bottom: clamp(2.8rem, 7vh, 4.5rem);
    max-width: calc(100% - (2 * var(--gutter)));
  }

  .intro__headline {
    font-size: clamp(2rem, 8.8vw, 3.6rem);
    line-height: 1;
  }

  .intro__lead {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .intro__actions {
    width: min(100%, 22rem);
    margin-right: auto;
    margin-left: auto;
    margin-top: 1.15rem;
    flex-direction: column;
    align-items: stretch;
  }

  .intro__actions a {
    width: 100%;
    min-width: 0;
  }

  .agency-facts {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
}

/* Two-step cinematic intro: the video stays pinned while the logo gives way
   to the compact message; normal page flow begins on the following scroll. */
.intro {
  height: 200svh;
  min-height: 76rem;
}

.intro__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 38rem;
}

.intro__message {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  inset: 0;
  width: 100%;
  max-width: none;
  padding: clamp(6rem, 12vh, 9rem) var(--gutter) clamp(5rem, 10vh, 7rem);
  border: 0;
  background: transparent;
  text-shadow: 0 0.25rem 1.8rem rgba(0, 0, 0, 0.62);
}

.js .intro__message {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.intro-motion-ready .intro__message {
  opacity: var(--intro-message-opacity);
  pointer-events: none;
  transform: translateY(var(--intro-message-y));
}

.intro-motion-ready .intro.is-message-active .intro__message {
  pointer-events: auto;
}

.people-card--feature::after,
.people-card--image::after {
  display: none;
}

.people-card--feature img,
.people-card--image :is(img, video) {
  position: relative;
  inset: auto;
  order: -1;
  flex: 0 0 auto;
  width: 100%;
  height: clamp(12rem, 18vw, 19rem);
  margin: 0 0 clamp(1.6rem, 2.4vw, 2.4rem);
  object-fit: cover;
  opacity: 0.9;
  transform: none;
}

.people-card--feature > *:not(img),
.people-card--image > *:not(img):not(video) {
  position: relative;
  z-index: auto;
}

.people-card--feature h3,
.people-card--image h3 {
  margin: 0 0 1.2rem;
}

.people-card--feature:hover img,
.people-card--image:hover :is(img, video) {
  opacity: 1;
  transform: scale(1.025);
}

.category-hero__media {
  display: flex;
  height: auto;
  min-height: 0;
  flex-direction: column;
  overflow: visible;
}

.category-hero__media::after {
  display: none;
}

.category-hero__media > img {
  flex: 0 0 auto;
  height: min(56vw, 50rem);
  min-height: 32rem;
}

.category-hero__media figcaption {
  position: static;
  right: auto;
  bottom: auto;
  padding-top: 0.8rem;
  color: rgba(241, 238, 230, 0.65);
}

@media (max-width: 820px) {
  .category-hero__media > img {
    height: 68svh;
    min-height: 30rem;
  }
}

@media (max-width: 560px) {
  .intro {
    height: 200svh;
    min-height: 60rem;
  }

  .intro__stage {
    height: 100svh;
    min-height: 100svh;
  }

  .intro__logo {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .intro__message {
    inset: 0;
    align-items: center;
    justify-content: center;
    padding: clamp(4rem, 10svh, 6rem) var(--gutter);
    text-align: center;
  }

  .intro-motion-ready .intro__message {
    transform: none;
  }

  .people-card--feature img,
  .people-card--image :is(img, video) {
    height: 12rem;
  }

  .category-hero__media > img {
    height: 62svh;
    min-height: 27rem;
  }
}

/* Shared display scale: keep large headings clear of adjacent media while
   preserving the editorial hierarchy across the homepage. */
.intro__headline {
  font-size: var(--title-overlay);
  line-height: var(--leading-overlay);
}

.manifesto__statement,
.category-hero__heading h2,
.deliverables h2,
.client-strip__title {
  font-size: var(--title-hero);
  line-height: var(--leading-hero);
}

.contact__hero > h2,
.contact__hero > div:first-child h2 {
  font-size: var(--title-contact);
  line-height: 0.92;
}

.section-heading h2,
.projects__header h2,
.numbers__header h2,
.section-heading--slogan h2,
.site-footer__lead p {
  font-size: var(--title-section);
  line-height: var(--leading-section);
}

.display-copy,
.section-heading--compact h2,
.service-row h3,
.people-card h3 {
  font-size: var(--title-card);
  line-height: var(--leading-card);
}

@media (max-width: 560px) {
  :root {
    --title-hero: clamp(2.8rem, 13vw, 4.1rem);
    --title-contact: clamp(2.65rem, 11.8vw, 3.4rem);
    --title-hero-column: clamp(2.35rem, 10.8vw, 3.6rem);
    --title-section: clamp(2.35rem, 10.8vw, 3.4rem);
    --title-feature: clamp(2rem, 9vw, 3rem);
    --title-card: clamp(1.55rem, 7.2vw, 2.5rem);
    --title-overlay: clamp(2.1rem, 9.2vw, 3.2rem);
  }
}

/* Homepage revision: the projects and references sections keep their visual
   weight, but their copy is intentionally quieter than the hero typography. */
.projects__header h2 {
  font-size: clamp(2.65rem, 5.4vw, 5.5rem);
  line-height: 0.94;
}

.projects__header > p:last-child {
  font-size: 0.74rem;
  line-height: 1.65;
}

.client-strip__title {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
}

@media (max-width: 560px) {
  .projects__header h2 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .client-strip__title {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
  }
}

/* Analytics stays disabled until the visitor makes an explicit choice. */
.analytics-consent[hidden],
.analytics-settings[hidden] {
  display: none;
}

.analytics-consent {
  position: fixed;
  z-index: 1000;
  right: var(--gutter);
  bottom: 1rem;
  left: var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(241, 238, 230, 0.24);
  background: rgba(17, 17, 15, 0.96);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
  color: var(--cream);
}

.analytics-consent__copy {
  max-width: 46rem;
}

.analytics-consent__copy strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analytics-consent__copy p {
  max-width: 42rem;
  color: var(--warm);
  font-size: 0.78rem;
  line-height: 1.55;
}

.analytics-consent__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.5rem;
}

.analytics-consent__actions a,
.analytics-consent__actions button,
.analytics-settings {
  min-height: 2.5rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(241, 238, 230, 0.35);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.analytics-consent__actions a:hover,
.analytics-consent__actions a:focus-visible,
.analytics-consent__actions button:hover,
.analytics-consent__actions button:focus-visible,
.analytics-settings:hover,
.analytics-settings:focus-visible {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--black);
}

.analytics-consent__actions button[data-analytics-consent-choice="granted"] {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--black);
}

.analytics-settings {
  position: fixed;
  z-index: 999;
  bottom: 1rem;
  left: 1rem;
  background: var(--black);
}

@media (max-width: 720px) {
  .analytics-consent {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    align-items: stretch;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1rem;
  }

  .analytics-consent__actions {
    flex-wrap: wrap;
  }
}
