@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  /* ===== COLORS ===== */
  --blue: #2f6bff;
  --black: #000000;
  --charcoal: #1a1a1a;
  --line: #333333;
  --white: #ffffff;
  --warm-white: #f6f4f1;
  --yellow: #ffc714;

  /* ===== LAYOUT ===== */
  --gutter: 20px;
  --header-height: 78px;
  --content-width: 1920px;

  /* ===== TRANSITIONS ===== */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --transition-fast: 220ms var(--ease-out);
  --transition: 650ms var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--blue) var(--white);
  scrollbar-width: thin;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--black);
  font-family: loos-extended, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

p strong,
ul li strong,
ol li strong {
  font-weight: 500;
}

p {
  font-family: Inter, Arial, sans-serif;
}

.font-loos {
  font-family: loos-extended, Arial, sans-serif !important;
}

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

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

img {
  height: auto;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

ul {
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

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

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.is-dark :focus-visible {
  outline-color: var(--white);
}

.shell {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.skip-link:focus {
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: var(--white);
  color: var(--black);
}

.icons {
  display: none;
}

.theme-icon {
  display: inline-block;
  flex: none;
  color: currentColor;
  vertical-align: middle;
}

/* ===== LOADER / CURSOR ===== */
.no-js .page-loader {
  display: none;
}

.page-loader {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  transition: transform 900ms var(--ease-in-out), visibility 900ms;
}

.page-loader.is-complete {
  visibility: hidden;
  transform: translateY(-101%);
}

.page-loader__inner {
  position: relative;
  width: min(72vw, 360px);
}

.page-loader img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.page-loader__track {
  height: 1px;
  margin-top: 28px;
  overflow: hidden;
  background: rgb(255 255 255 / 35%);
}

.page-loader__track span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
}

.page-loader__count {
  display: block;
  margin-top: 10px;
  text-align: right;
  font-size: 11px;
  letter-spacing: .1em;
}

.scroll-progress {
  position: fixed;
  z-index: 9500;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
}

.cursor {
  display: none;
}

/* ===== HEADER / MENU ===== */
.site-header {
  position: absolute;
  z-index: 9000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  pointer-events: none;
}

.site-header__logo,
.menu-toggle {
  position: fixed;
  z-index: 9003;
  top: 22px;
  pointer-events: auto;
}

.site-header__logo {
  display: block;
  top: 29px;
  left: var(--gutter);
  width: 105px;
  transition: transform var(--transition-fast);
}

.site-header__logo > * {
  filter: brightness(0);
  transition: filter 280ms var(--ease-out);
}

.site-header__logo:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 52px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  transition: color 280ms var(--ease-out);
}

.site-header.is-header-on-dark .site-header__logo > * {
  filter: brightness(0) invert(1);
}

.site-header.is-header-on-dark .menu-toggle {
  color: var(--white);
}

.menu-toggle__label {
  display: none;
  font-size: 11px;
  text-transform: uppercase;
}

.menu-toggle__icon {
  display: grid;
  width: 32px;
  gap: 7px;
}

.menu-toggle__icon i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 400ms var(--ease-out), opacity 220ms;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.is-menu-open .menu-toggle {
  color: var(--white);
}

.is-menu-open .site-header__logo > * {
  filter: brightness(0) invert(1);
}

.site-navigation {
  position: fixed;
  z-index: 9002;
  inset: 0;
  overflow: auto;
  background: var(--blue);
  color: var(--white);
  visibility: hidden;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  pointer-events: auto;
  transition: clip-path 800ms var(--ease-in-out), opacity 300ms, visibility 800ms;
}

.site-navigation.is-open {
  visibility: visible;
  opacity: 1;
  clip-path: inset(0);
}

.site-navigation__inner {
  min-height: 100%;
  padding: 110px var(--gutter) 36px;
}

.site-navigation__eyebrow {
  margin-bottom: 32px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-navigation .menu {
  border-top: 1px solid rgb(255 255 255 / 45%);
}

.site-navigation .menu > .menu-item {
  position: relative;
  border-bottom: 1px solid rgb(255 255 255 / 45%);
}

.site-navigation .menu > .menu-item > a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 48px 16px 0;
  font-size: clamp(25px, 8vw, 44px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.site-navigation .menu > .menu-item > a span {
  width: 24px;
  font-size: 9px;
  font-weight: 400;
}

.submenu-toggle {
  position: absolute;
  top: 10px;
  right: 0;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 25px;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.menu-item.is-open > .submenu-toggle {
  transform: rotate(45deg);
}

.site-navigation .sub-menu {
  height: 0;
  overflow: hidden;
  padding-left: 40px;
  opacity: 0;
  transition: height 450ms var(--ease-out), opacity 300ms;
}

.site-navigation .menu-item.is-open > .sub-menu {
  opacity: 1;
}

.site-navigation .sub-menu .menu-item {
  position: relative;
}

.site-navigation .sub-menu a {
  display: block;
  padding: 8px 42px 8px 0;
  font-size: 13px;
  text-transform: uppercase;
}

.site-navigation__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
  font-size: 12px;
}

/* ===== SHARED UI ===== */
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 24px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.button:hover {
  background: var(--white);
  color: var(--blue);
}

.section-rule {
  display: block;
  width: 88px;
  height: 1px;
  margin-block: 15px 22px;
  background: currentColor;
}

.registered-stamp {
  display: block;
  width: 48px;
  height: 48px;
}

.registered-mark {
  display: block;
  color: inherit;
}

.registered-stamp .registered-mark {
  width: 100%;
  height: 100%;
}

.is-dark {
  background: var(--blue);
  color: var(--white);
}

/* ===== HERO ===== */
/* tastemaker: existing split hero extended with a compact video inset. critique — show/tell 5, philosophy 4, hierarchy 5, specificity 5, restraint 5, variance 3 (existing architecture retained by request). */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero__main {
  display: flex;
  flex-direction: column;
  padding-top: 108px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__heading {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.hero__heading h1 {
  font-size: clamp(20px, 11vw, 60px);
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.hero__heading strong {
  font-weight: 700;
}

.hero__intro {
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.hero__intro p {
  max-width: 600px;
  font-size: 15px;
  line-height: 1.28;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding-block: 28px 34px;
}

.split-button {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 385px);
  min-height: 58px;
  border: 1px solid var(--blue);
}

.split-button__main,
.split-button__note {
  display: flex;
  align-items: center;
}

.split-button__main {
  gap: 18px;
  padding: 9px 15px;
  background: var(--blue);
  color: var(--white);
}

.split-button__main strong {
  font-size: 13px;
  line-height: 1.05;
}

.split-button__note {
  padding: 8px 12px;
  font-size: 8px;
  line-height: 1.35;
}

.scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  line-height: 1.2;
}

.scroll-link .theme-icon {
  transition: transform 450ms var(--ease-out);
}

.scroll-link:hover .theme-icon {
  transform: translateY(8px);
}

.hero__visual {
  position: relative;
  align-self: flex-start;
  width: 100%;
  margin-inline: 0;
  margin-bottom: 18px;
}

.hero__portrait {
  width: 85%;
  height: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.hero__portrait img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 28%;
}

.hero__inset {
  position: absolute;
  z-index: 2;
  top: 17%;
  right: 0;
  width: 30%;
  aspect-ratio: 305 / 205;
  overflow: hidden;
}

.hero__inset :is(img, video) {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  transition: transform 280ms var(--ease-out);
}

.hero__inset--video {
  background: var(--black);
  cursor: zoom-in;
}

.hero__inset--video video {
  pointer-events: none;
}

.hero__inset-expand {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: rgb(0 0 0 / 55%);
  color: var(--white);
  opacity: .82;
  transition: opacity 180ms var(--ease-out);
}

.hero__inset-expand svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

a.hero__inset:focus-visible :is(img, video) {
  transform: scale(1.06);
}

a.hero__inset:focus-visible .hero__inset-expand {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  a.hero__inset:hover :is(img, video) {
    transform: scale(1.06);
  }

  a.hero__inset:hover .hero__inset-expand {
    opacity: 1;
  }
}

.hero__caption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  width: max-content;
  max-width: 88%;
  padding: 8px 12px;
  background: var(--blue);
  color: var(--white);
  font-family: loos-extended, Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.collaborations {
  padding-top: 34px;
  padding-bottom: 36px;
}

.collaborations::before {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 28px;
  background: var(--line);
  content: "";
}

.collaborations__heading h2 {
  padding-bottom: 15px;
  font-size: clamp(28px, 8.4vw, 44px);
  font-weight: 200;
  line-height: 1;
}

.collaborations__heading::after {
  display: block;
  width: 88px;
  height: 1px;
  background: var(--line);
  content: "";
}

.collaborations__heading strong {
  font-weight: 700;
}

.collaborations__intro {
  margin-top: 24px;
}

.collaborations__intro p {
  max-width: 620px;
  font-size: 13px;
  line-height: 1.3;
}

.logo-marquee {
  width: 100vw;
  max-width: none;
  margin: 34px 0 0 calc(50% - 50vw);
  overflow: hidden;
}

.logo-marquee .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}

.logo-marquee .swiper-slide {
  display: flex;
  width: clamp(118px, 34vw, 160px);
  align-items: center;
  justify-content: center;
}

.logo-marquee img {
  width: auto;
  height: 34px;
  max-width: 105px;
  object-fit: contain;
  filter: grayscale(1);
}

.collaborations__more {
  margin-top: 22px;
  text-align: center;
  font-size: 9px;
}

/* ===== BRAND DIRECTION ===== */
.brand-direction {
  position: relative;
  overflow: hidden;
}

.brand-direction__inner {
  position: relative;
  display: grid;
  gap: 32px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.brand-direction__heading {
  position: relative;
  z-index: 2;
}

.brand-direction__heading h2 {
  font-size: clamp(33px, 9vw, 58px);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.brand-direction__heading h2::after {
  display: block;
  width: 88px;
  height: 1px;
  margin-top: 26px;
  background: var(--white);
  content: "";
}

.brand-direction__heading strong {
  font-weight: 700;
}

.brand-direction__copy p strong {
  font-weight: 500;
}

.brand-direction__copy,
.brand-direction__benefits {
  position: relative;
  z-index: 2;
  max-width: 650px;
  font-size: 13px;
}

.brand-direction__benefits {
  font-family: Inter, Arial, sans-serif;
}

.brand-direction__copy p + p {
  margin-top: 14px;
}

.brand-direction__benefits ul {
  margin-top: 12px;
}

.brand-direction__benefits li::before {
  margin-right: 8px;
  content: "•";
}

.registered-orbit {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: clamp(300px, 68vw, 390px);
  pointer-events: none;
}

.registered-orbit__image {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== LIFECYCLE ===== */
.lifecycle {
  position: relative;
  padding-block: 50px;
  overflow: hidden;
}

.lifecycle__lead {
  display: grid;
  gap: 28px;
}

.lifecycle__lead > img {
  width: 108px;
}

.lifecycle__lead h2 {
  max-width: 1000px;
  font-size: clamp(32px, 8.2vw, 58px);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.lifecycle__lead h2 strong {
  font-weight: 700;
}

.lifecycle__lead p strong {
  font-weight: 500;
}

.lifecycle__lead p {
  margin-top: 18px;
  font-size: 13px;
}

.lifecycle__grid {
  display: grid;
  gap: 34px;
  margin-top: 54px;
}

.lifecycle__grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}

.lifecycle__grid article img {
  width: 42px;
  transition: transform 550ms var(--ease-out);
}

.lifecycle__grid article:hover img {
  transform: rotate(12deg) scale(1.1);
}

.lifecycle__grid h3 {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.2;
}

.lifecycle__grid p {
  font-size: 11px;
  line-height: 1.45;
}

.lifecycle .registered-stamp {
  margin: 42px 0 0 auto;
}

/* ===== GALLERY ===== */
.work-gallery {
  position: relative;
  padding-bottom: 66px;
  overflow: hidden;
}

.work-gallery__swiper {
  overflow: visible;
}

.work-gallery__swiper .swiper-slide {
  width: 88%;
  aspect-ratio: 935 / 560;
  overflow: hidden;
}

.work-gallery__swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

.work-gallery__swiper .swiper-slide:hover img {
  transform: scale(1.035);
}

.gallery-progress {
  width: calc(100% - 40px);
  height: 2px;
  margin: 22px auto 0;
  overflow: hidden;
  background: #d7d7d7;
}

.gallery-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: scaleX(.5);
  transform-origin: left;
}

/* ===== DIAGNOSIS ===== */
.diagnosis {
  padding-block: 50px;
  overflow: hidden;
}

.diagnosis__header {
  display: grid;
  gap: 28px;
}

.diagnosis__header > img {
  width: 92px;
}

.diagnosis__header h2 {
  font-size: clamp(31px, 8.2vw, 54px);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.diagnosis__header h2 strong {
  font-weight: 700;
}

.diagnosis__header p strong {
  font-weight: 500;
}

.diagnosis__header > div:last-child {
  max-width: 620px;
  font-size: 12px;
}

.diagnosis__header > div:last-child p + p {
  margin-top: 14px;
}

.diagnosis__swiper {
  margin-top: 58px;
  overflow: visible;
}

.diagnosis__swiper .swiper-slide {
  width: 84%;
  min-height: 146px;
  padding: 20px 8px 20px 0;
  border-top: 1px solid var(--line);
}

.diagnosis__swiper h3 {
  margin-bottom: 18px;
  font-size: 14px;
}

.diagnosis__swiper p {
  font-size: 11px;
}

.slider-controls {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 18px;
}

.slider-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--black);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.slider-controls button:hover {
  background: var(--black);
  color: var(--white);
}

/* ===== AUDIENCE ===== */
.audience {
  padding-block: 50px;
  overflow: hidden;
  background: var(--warm-white);
}

.audience__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.audience__header > [data-split] {
  padding-bottom: 8px;
}

.audience__header h2 {
  font-size: clamp(32px, 8.6vw, 54px);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.audience__header h2 strong {
  font-weight: 700;
}

.audience__header img {
  width: 94px;
}

.audience > .shell > p {
  margin-top: 56px;
  font-size: 12px;
}

.audience__grid {
  display: grid;
  gap: 26px;
  margin-top: 32px;
}

.audience__grid article {
  min-height: 60px;
  padding-left: 16px;
  border-left: 2px solid var(--black);
}

.audience__grid p {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.25;
}

/* ===== SERVICES ===== */
.services {
  position: relative;
  overflow: hidden;
}

.services__inner {
  position: relative;
  padding-block: 50px;
}

.services__header {
  position: relative;
  z-index: 2;
}

.services__header h2 {
  font-size: clamp(32px, 9vw, 58px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -.035em;
}

.services__header h2 strong {
  font-weight: 700;
}

.services__header p {
  max-width: 580px;
  margin-top: 24px;
  font-size: 12px;
}

.services__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 32px;
  margin-top: 52px;
}

.services__grid article {
  padding-left: 14px;
  border-left: 2px solid var(--white);
}

.services__grid h3 {
  margin-bottom: 12px;
  font-size: 15px;
  text-transform: uppercase;
}

.services__grid p {
  max-width: 560px;
  font-size: 11px;
}

.services__grid small {
  display: block;
  margin-top: 9px;
  font-size: 9px;
}

.services-motif {
  position: absolute;
  right: -85px;
  bottom: -70px;
  width: 320px;
  aspect-ratio: 1;
  opacity: .38;
  pointer-events: none;
}

.services-motif span {
  position: absolute;
  width: 66%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgb(255 255 255 / 32%);
}

.services-motif span:nth-child(1) { top: 0; left: 17%; }
.services-motif span:nth-child(2) { top: 17%; left: 0; }
.services-motif span:nth-child(3) { top: 17%; right: 0; }
.services-motif span:nth-child(4) { bottom: 0; left: 17%; }

.services-motif > .registered-mark {
  position: absolute;
  top: 42%;
  left: 42%;
  width: 16%;
  height: 16%;
  padding: 3.2%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgb(255 255 255 / 85%);
  color: var(--blue);
}

/* ===== CASE STUDIES ===== */
.case-studies {
  position: relative;
  padding-block: 50px;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    var(--black) 0,
    var(--black) var(--case-dark-end, 50%),
    var(--white) var(--case-dark-end, 50%),
    var(--white) 100%
  );
  color: var(--white);
}

.case-studies__header h2 {
  font-size: clamp(38px, 10vw, 58px);
  line-height: 1;
}

.case-studies__header > p {
  font-size: 13px;
}

.case-studies__motif {
  width: min(100%, 210px);
  margin-top: 32px;
}

.case-studies__motif img {
  width: 100%;
  height: auto;
}

.cases-grid {
  margin-top: 56px;
}

.cases-grid__inner {
  display: grid;
  gap: 24px;
}

.case-card a {
  display: block;
}

.case-card__media {
  position: relative;
  aspect-ratio: 835 / 560;
  overflow: hidden;
  background: #262626;
}

.case-card__media > img:not(.case-card__mosir-logo):not(.case-card__hdc) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__media > img:not(.case-card__mosir-logo):not(.case-card__hdc) {
  transition: transform 1.1s var(--ease-out);
}

.case-card:hover .case-card__media > img:not(.case-card__mosir-logo):not(.case-card__hdc) {
  transform: scale(1.04);
}

.case-card > a > p {
  margin-top: 11px;
  color: var(--black);
  font-size: 8px;
  line-height: 1.35;
}

.case-card__hdc,
.case-card__manolo {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
}

.case-card__hdc {
  width: 16.92%;
  height: auto;
  object-fit: contain;
}

.case-card.is-hdc .case-card__media::after,
.case-card.is-manolo .case-card__media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgb(0 0 0 / 49%);
  content: "";
}

.case-card__manolo {
  display: block;
  width: 20.1%;
}

.case-card__manolo img {
  display: block;
  width: 100%;
  height: auto;
}

.case-card__tint {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgb(56 199 122 / 38%);
}

.case-card__mosir-logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 24%;
  height: 32%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transform: translate(-50%, -50%);
}

.case-studies__more {
  margin-top: 54px;
  text-align: right;
}

/* ===== ABOUT ===== */
.about {
  padding-block: 50px;
  overflow: hidden;
  background: var(--warm-white);
}

.about__inner {
  display: grid;
  gap: 48px;
}

.about__content h2 {
  font-size: clamp(36px, 9vw, 54px);
  line-height: 1;
}

.about__content > div:not(:first-child) p {
  font-size: 12px;
  line-height: 1.55;
}

.about__content > div:not(:first-child) p + p {
  margin-top: 14px;
}

.about__content blockquote {
  margin-top: 26px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.about__visual {
  position: relative;
}

.about__portrait {
  width: 220px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
}

.about__portrait img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center top;
}

.about__logo {
  position: absolute;
  top: 48%;
  left: 180px;
  width: 150px;
}

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.site-footer__main {
  position: relative;
  display: grid;
  gap: 52px;
  padding-block: 50px;
}

.site-footer__lead h2 {
  font-size: clamp(38px, 10vw, 58px);
  line-height: 1.2;
  letter-spacing: -.035em;
}

.site-footer__intro {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  max-width: 540px;
  margin-top: 42px;
  font-size: 12px;
}

.site-footer__lead .button {
  margin-top: 30px;
  min-width: 240px;
}

.site-footer address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 42px;
  padding-left: 14px;
  border-left: 2px solid var(--black);
  font-size: 14px;
}

.site-footer__brand img {
  width: 160px;
}

.site-footer__brand ul {
  margin-top: 30px;
}

.site-footer__brand li + li {
  margin-top: 12px;
}

.site-footer__brand a,
.site-footer__nav a {
  position: relative;
  font-size: 10px;
  text-transform: uppercase;
}

.site-footer__brand a::after,
.site-footer__nav a::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 400ms var(--ease-out);
}

.site-footer__brand a:hover::after,
.site-footer__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-footer__nav {
  padding-top: 24px;
  border-top: 1px solid var(--black);
}

.site-footer__nav li + li {
  margin-top: 5px;
}

.site-footer__nav > p {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--black);
  font-size: 9px;
}

.site-footer__stamp {
  position: absolute;
  top: 64px;
  right: var(--gutter);
  width: 38px;
  height: 38px;
  font-size: 16px;
}

.site-footer__closing {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 50px var(--gutter);
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

/* ===== MOTION STATES ===== */
.js [data-reveal],
.js [data-split] .word,
.js .image-reveal {
  opacity: 0;
}

.js [data-reveal] {
  transform: translateY(56px);
}

[data-split] {
  /* Keep the reveal mask, but extend its paint edge so Loos Extended
     descenders and Polish diacritics are never cropped. */
  overflow: clip;
  overflow-clip-margin: .22em;
}

[data-split] .word {
  display: inline-block;
  transform: translateY(135%);
  will-change: transform;
}

[data-split] .word-space {
  display: inline-block;
  width: .25em;
}

.image-reveal {
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}

@media (min-width: 992px) {
  :root {
    --gutter: clamp(50px, 5.2vw, 100px);
    --header-height: 100px;
  }

  body {
    font-size: 16px;
  }

  .cursor {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    display: grid;
    width: 14px;
    height: 14px;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 260ms var(--ease-out), height 260ms var(--ease-out), opacity 200ms, background 200ms;
    mix-blend-mode: difference;
  }

  .cursor.is-visible { opacity: 1; }
  .cursor.is-active {
    width: 82px;
    height: 82px;
    background: var(--blue);
    mix-blend-mode: normal;
  }

  .site-header__logo {
    top: 34px;
    left: 38px;
    width: 180px;
  }

  .menu-toggle {
    top: 30px;
    right: 24px;
  }

  .menu-toggle__label {
    display: block;
  }

  .menu-toggle__icon {
    width: 48px;
    gap: 12px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(1) { transform: translateY(13px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(3) { transform: translateY(-13px) rotate(-45deg); }

  .site-navigation__inner {
    display: grid;
    grid-template-columns: .8fr 2.4fr .8fr;
    gap: 70px;
    align-items: start;
    padding: 145px var(--gutter) 60px;
  }

  .site-navigation__eyebrow {
    margin: 8px 0 0;
  }

  .site-navigation .menu > .menu-item > a {
    padding-block: 18px;
    font-size: clamp(44px, 4.3vw, 82px);
  }

  .site-navigation__meta {
    margin-top: 8px;
  }

  .site-navigation .sub-menu {
    padding-left: 72px;
  }

  .site-navigation .sub-menu a {
    font-size: 14px;
  }

  .site-navigation .menu-item-has-children:hover > .sub-menu,
  .site-navigation .menu-item-has-children:focus-within > .sub-menu {
    height: auto !important;
    opacity: 1;
  }

  .hero__main {
    position: relative;
    display: grid;
    grid-template-columns: 52.6% 47.4%;
    min-height: min(49.2vw, 945px);
    padding-top: 0;
  }

  .hero__content {
    padding-top: clamp(138px, 8.6vw, 165px);
    padding-right: 50px;
  }

  .hero__heading {
    max-width: 860px;
    padding: 0 0 clamp(58px, 3.65vw, 70px);
  }

  .hero__heading h1 {
    font-size: clamp(58px, 3.75vw, 72px);
    line-height: 1.16;
  }

  .hero__intro {
    max-width: 860px;
    padding-block: clamp(48px, 3.3vw, 63px);
  }

  .hero__intro p {
    font-size: clamp(20px, 1.45vw, 28px);
    line-height: 1.28;
  }

  .hero__actions {
    flex-direction: row;
    align-items: center;
    gap: clamp(70px, 7vw, 135px);
    padding-top: 82px;
  }

  .split-button {
    width: 445px;
    grid-template-columns: 225px 220px;
  }

  .split-button__main {
    padding-inline: 18px;
  }

  .split-button__main strong {
    font-size: 16px;
  }

  .split-button__note {
    padding-inline: 20px;
    font-size: 11px;
  }

  .scroll-link {
    font-size: 15px;
  }

  .hero__visual {
    align-self: start;
    margin: 0 calc(var(--gutter) * -1) 0 0;
  }

  .hero__portrait {
    width: 78%;
    height: min(47.9vw, 920px);
  }

  .hero__portrait img {
    height: 108%;
    object-position: center 22%;
  }

  .hero__inset {
    top: 17.5%;
    right: 0;
    width: 35.7%;
  }

  .hero__caption {
    right: 0;
    bottom: 0;
    max-width: none;
    padding: 16px 18px;
    font-size: 11px;
  }

  .collaborations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 70px;
    padding-top: 18px;
    padding-bottom: 34px;
  }

  .collaborations::before {
    grid-column: 1 / -1;
    margin-bottom: 42px;
  }

  .collaborations__heading h2 {
    font-size: 48px;
  }

  .collaborations__intro {
    margin-top: 6px;
  }

  .collaborations__intro p {
    font-size: 22px;
  }

  .logo-marquee {
    grid-column: 1 / -1;
    width: 100vw;
    margin: 52px 0 0 calc(50% - 50vw);
  }

  .logo-marquee .swiper-slide {
    width: clamp(170px, 15vw, 230px);
  }

  .logo-marquee img {
    height: 80px;
    max-width: 195px;
  }

  .collaborations__more {
    grid-column: 1 / -1;
    font-size: 11px;
  }

  .brand-direction__inner {
    grid-template-columns: 1.55fr .9fr .8fr;
    grid-template-rows: auto 1fr;
    gap: 34px 90px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .brand-direction__heading {
    grid-column: 1 / 3;
  }

  .brand-direction__heading h2 {
    font-size: clamp(46px, 2.82vw, 54px);
    line-height: 1.18;
  }

  .brand-direction__copy {
    grid-column: 1;
    max-width: 760px;
    font-size: 16px;
  }

  .brand-direction__benefits {
    grid-column: 2;
    font-size: 16px;
  }

  .registered-orbit {
    top: 50%;
    right: -35px;
    bottom: auto;
    width: clamp(360px, 24vw, 460px);
    transform: translateY(-50%);
  }

  .lifecycle {
    padding-block: 60px;
  }

  .lifecycle__lead {
    grid-template-columns: 178px 1fr;
    gap: 77px;
  }

  .lifecycle__lead > img {
    width: 178px;
  }

  .lifecycle__lead h2 {
    font-size: 54px;
    line-height: 1.17;
  }

  .lifecycle__lead p {
    font-size: 19px;
  }

  .lifecycle__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 62px 44px;
    margin-top: 78px;
  }

  .lifecycle__grid article {
    grid-template-columns: 54px 1fr;
    gap: 40px;
  }

  .lifecycle__grid article img {
    width: 54px;
  }

  .lifecycle__grid h3 {
    font-size: 19px;
  }

  .lifecycle__grid p {
    font-size: 14px;
  }

  .lifecycle .registered-stamp {
    position: absolute;
    right: 6%;
    bottom: 4px;
    width: 86px;
    height: 86px;
    font-size: 34px;
  }

  .work-gallery {
    padding-bottom: 100px;
  }

  .work-gallery__swiper .swiper-slide {
    width: calc(50% - 24px);
  }

  .gallery-progress {
    display: none;
  }

  .diagnosis {
    padding-block: 60px;
  }

  .diagnosis__header {
    grid-template-columns: 150px minmax(560px, 1.4fr) 1fr;
    gap: 90px;
    align-items: start;
  }

  .diagnosis__header > img {
    width: 150px;
  }

  .diagnosis__header h2 {
    font-size: 52px;
    line-height: 1.19;
  }

  .diagnosis__header > div:last-child {
    padding-top: 18px;
    font-size: 14px;
  }

  .diagnosis__swiper {
    margin-top: 68px;
  }

  .diagnosis__swiper .swiper-slide {
    width: 540px;
    min-height: 126px;
  }

  .diagnosis__swiper h3 {
    font-size: 18px;
  }

  .diagnosis__swiper p {
    font-size: 14px;
  }

  .slider-controls {
    margin-top: 18px;
  }

  .audience {
    padding-block: 60px;
  }

  .audience__header h2 {
    font-size: 52px;
  }

  .audience__header img {
    width: 240px;
    margin-right: 8%;
  }

  .audience > .shell > p {
    margin-top: 42px;
    font-size: 15px;
  }

  .audience__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }

  .audience__grid p {
    font-size: 19px;
  }

  .services__inner {
    padding-block: 60px;
  }

  .services__header h2 {
    font-size: 54px;
  }

  .services__header p {
    margin-top: 18px;
    font-size: 15px;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 560px));
    gap: 30px 30px;
    margin-top: 32px;
  }

  .services__grid h3 {
    font-size: 18px;
  }

  .services__grid p {
    font-size: 14px;
  }

  .services__grid small {
    font-size: 12px;
  }

  .services-motif {
    right: 7%;
    bottom: 50px;
    width: 445px;
  }

  .case-studies {
    padding-block: 60px;
    background: linear-gradient(to bottom, var(--black) 0 40%, var(--white) 40% 100%);
  }

  .case-studies__header h2 {
    font-size: min(54px, 2.8125vw);
  }

  .case-studies__header > p {
    font-size: min(20px, 1.0417vw);
  }

  .case-studies__motif {
    width: min(322px, 16.7709vw);
    margin-top: min(36px, 1.875vw);
    transform: translateY(60px);
  }

  .cases-grid {
    margin-top: clamp(-140px, calc(-7.092vw - 3.84px), -90px);
  }

  .cases-grid__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 50px;
    row-gap: clamp(30px, calc(3.404vw - 11.36px), 54px);
  }

  .cases-grid .case-card {
    width: auto;
    margin: 0;
  }

  .case-studies .case-card.is-hdc {
    grid-row: 1 / 3;
    align-self: center;
    margin-top: 0;
  }

  .case-studies .case-card.is-manolo {
    grid-column: 2;
    grid-row: 1;
  }

  .case-studies .case-card.is-mosir {
    grid-column: 2;
    grid-row: 2;
  }

  .case-card > a > p {
    font-size: min(10px, .5209vw);
  }

  .case-card__manolo {
    width: min(168px, 8.75vw);
  }

  .case-studies__more {
    margin-top: clamp(58px, calc(6.383vw - 19.55px), 103px);
  }

  .case-studies__more .button {
    width: min(220px, 11.4584vw);
    min-height: min(44px, 2.2917vw);
    padding-inline: min(24px, 1.25vw);
    font-size: min(10px, .5209vw);
  }

  .about {
    padding-block: 60px;
  }

  .about__inner {
    grid-template-columns: 2.1fr .9fr;
    gap: 30px;
  }

  .about__content h2 {
    font-size: 52px;
  }

  .about__content > div:not(:first-child) p {
    font-size: 13px;
  }

  .about__content blockquote {
    font-size: 17px;
  }

  .about__portrait {
    width: 310px;
  }

  .about__logo {
    top: 46%;
    left: 255px;
    width: 250px;
  }

  .site-footer__main {
    grid-template-columns: 1.75fr .7fr .7fr;
    gap: 80px;
    padding-block: 60px;
  }

  .site-footer__lead h2 {
    font-size: 54px;
  }

  .site-footer__intro {
    margin-top: 60px;
    font-size: 13px;
  }

  .site-footer__brand {
    padding-top: 185px;
  }

  .site-footer__brand img {
    width: 220px;
  }

  .site-footer__nav {
    margin-top: 190px;
  }

  .site-footer__stamp {
    top: 70px;
    right: 8%;
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .site-footer__closing {
    justify-content: flex-end;
    gap: 20px;
    padding: 60px var(--gutter);
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .js [data-reveal],
  .js [data-split] .word,
  .js .image-reveal {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .cursor,
  .page-loader { display: none; }
}
