:root {
  --ink: #171512;
  --paper: #f4f0e8;
  --muted: #8b8378;
  --suede: #c4ad91;
  --line: rgba(23, 21, 18, 0.14);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  overscroll-behavior: none;
}

body.is-loading {
  cursor: wait;
}

@media (hover: hover) and (pointer: fine) {
  body:not(.is-loading),
  body:not(.is-loading) a,
  body:not(.is-loading) button {
    cursor: none;
  }
}

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

.cursor {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244, 240, 232, 0.86);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.74);
  transition:
    opacity 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    transform 180ms ease;
  mix-blend-mode: difference;
}

.cursor::after {
  position: absolute;
  inset: 13px;
  border-radius: inherit;
  content: "";
  background: rgba(244, 240, 232, 0.9);
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-pressed {
  transform: translate3d(-50%, -50%, 0) scale(0.52);
}

.cursor.is-link {
  background: rgba(244, 240, 232, 0.18);
  transform: translate3d(-50%, -50%, 0) scale(1.38);
}

.view-shutters {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: block;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
}

.view-shutters span {
  position: absolute;
  display: block;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition:
    transform 940ms cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0ms linear 760ms;
  will-change: transform;
}

.view-shutters span:first-child {
  left: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, rgba(210, 199, 181, 1) 1px),
    linear-gradient(180deg, rgba(23, 21, 18, 0.06) 1px, rgba(201, 189, 169, 1) 1px),
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(135deg, rgb(214, 204, 187), rgb(174, 162, 143));
  background-size: 5px 5px, 7px 7px, auto, auto;
  filter: sepia(0.16) saturate(0.72) contrast(0.96) brightness(1.02);
  transform: translate3d(-101%, 0, 0);
}

.view-shutters span:nth-child(2) {
  right: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, rgba(206, 195, 177, 1) 1px),
    linear-gradient(180deg, rgba(23, 21, 18, 0.06) 1px, rgba(196, 184, 165, 1) 1px),
    radial-gradient(circle at 62% 14%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(225deg, rgb(206, 196, 179), rgb(181, 170, 151));
  background-size: 5px 5px, 7px 7px, auto, auto;
  transform: translate3d(101%, 0, 0);
}

.view-shutters span::before,
.view-shutters span::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.view-shutters span::before {
  opacity: 0.32;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, rgba(203, 191, 172, 0.05) 1px 4px),
    repeating-linear-gradient(0deg, rgba(23, 21, 18, 0.06) 0 1px, rgba(203, 191, 172, 0.05) 1px 5px);
  mix-blend-mode: multiply;
}

.view-shutters span::after {
  opacity: 0.26;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 78% 64%, rgba(23, 21, 18, 0.18), transparent 24%);
  filter: blur(0.4px);
}

.view-shutters span:nth-child(3) {
  display: none;
}

.view-shutters span b {
  position: absolute;
  z-index: 2;
  top: 50%;
  font-size: clamp(5rem, 13vw, 17rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(23, 21, 18, 0.14);
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transition: opacity 260ms ease;
}

.view-shutters span:first-child b {
  right: 0;
  transform: translateY(-50%) translateX(50%);
}

.view-shutters span:nth-child(2) b {
  left: 0;
  transform: translateY(-50%) translateX(-50%);
}

body.is-view-closing .view-shutters span b {
  opacity: 1;
  transition: opacity 320ms ease 560ms;
}

body.is-view-opening .view-shutters span b {
  opacity: 0;
  transition: opacity 160ms ease;
}

html.has-view-transition-arrival body.is-loading .intro-mask {
  display: none;
}

html.has-view-transition-arrival .view-shutters {
  visibility: visible;
}

html.has-view-transition-arrival .view-shutters span {
  transform: translate3d(0, 0, 0);
  transition: none !important;
}

body.is-view-closing .view-shutters,
body.is-view-opening .view-shutters {
  visibility: visible;
}

body.is-view-closing .view-shutters span {
  transform: translate3d(0, 0, 0);
  transition-duration: 940ms;
}

body.is-view-opening .view-shutters span:first-child {
  transform: translate3d(-101%, 0, 0);
  transition-duration: 1040ms;
}

body.is-view-opening .view-shutters span:nth-child(2) {
  transform: translate3d(101%, 0, 0);
  transition-duration: 1040ms;
}

body.is-view-closing .view-shutters span:first-child,
body.is-view-opening .view-shutters span:first-child {
  transition-delay: 0ms;
}

body.is-view-closing .view-shutters span:nth-child(2),
body.is-view-opening .view-shutters span:nth-child(2) {
  transition-delay: 0ms;
}

.intro-mask {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: var(--paper);
  color: var(--ink);
  transform: translate3d(0, 0, 0);
  transition:
    transform 1900ms cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0ms linear 1900ms;
}

.logo-mark {
  position: relative;
  z-index: 2;
  display: inline-grid;
  gap: 3px;
  width: 100%;
  color: var(--ink);
  line-height: 1;
}

.logo-word {
  display: block;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.logo-subtitle {
  display: block;
  color: rgba(23, 21, 18, 0.52);
  font-size: clamp(0.42rem, 0.8vw, 0.58rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-logo {
  width: min(360px, 58vw);
  justify-items: center;
  text-align: center;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition:
    opacity 900ms ease,
    transform 1250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-loader {
  position: relative;
  z-index: 2;
  width: min(280px, 46vw);
  height: 1px;
  overflow: hidden;
  background: rgba(23, 21, 18, 0.16);
}

.intro-loader::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  transform-origin: left;
  animation: intro-load 2850ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: rgba(23, 21, 18, 0.74);
}

body.is-ready .intro-mask {
  visibility: hidden;
  transform: translate3d(0, -100%, 0);
}

body.is-ready .intro-mask .logo-mark {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -18px, 0);
}

body.is-ready .intro-loader {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.nav-toggle { display: none; }
.nav-mobile-only { display: none; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding: 0 clamp(20px, 4vw, 58px);
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  opacity: 0;
  transform: translate3d(0, -18px, 0);
  transition:
    opacity 780ms ease,
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
    background 420ms ease,
    border-color 420ms ease,
    color 420ms ease;
}

body.is-nav-ready .site-header {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.is-news .site-header {
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  opacity: 0;
  pointer-events: auto;
  transform: translate3d(0, -8px, 0);
  transition:
    opacity 680ms ease 120ms,
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1) 120ms;
}

.brand {
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 550;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand .logo-word {
  font-size: clamp(1.22rem, 1.8vw, 1.62rem);
}

.brand .logo-subtitle {
  font-size: 0.43rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  pointer-events: auto;
  color: rgba(23, 21, 18, 0.68);
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

body.is-nav-ready .brand,
body.is-nav-ready .nav-links a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  transition:
    opacity 620ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:nth-child(1) {
  transition-delay: 180ms;
}

.nav-links a:nth-child(2) {
  transition-delay: 250ms;
}

.nav-links a:nth-child(3) {
  transition-delay: 320ms;
}

.nav-links a:nth-child(4) {
  transition-delay: 390ms;
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.is-current {
  color: var(--ink);
}

.project-stage {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

body.is-agency .project-stage,
body.is-news .project-stage {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.project-stage::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 21, 18, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

.project-copy {
  position: fixed;
  z-index: 3;
  left: clamp(20px, 4vw, 58px);
  bottom: clamp(24px, 6vh, 74px);
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(0.68rem, 0.9vw, 0.74rem);
  font-weight: 500;
  line-height: 1.45;
  text-transform: uppercase;
}

.project-copy p,
.project-copy a {
  position: relative;
  margin: 0;
}

.project-copy a::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.project-copy a:hover::after,
.project-copy a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.scroll-space {
  position: fixed;
  inset: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

.slider {
  position: absolute;
  inset: -1px;
  display: flex;
  width: calc(var(--slides, 6) * 100vw + 2px);
  height: calc(100vh + 2px);
  transform: translate3d(calc(var(--track-x, 0px) + var(--track-drift, 0px)), 0, 0);
  transition: transform 1080ms cubic-bezier(0.2, 0.9, 0.22, 1);
  will-change: transform;
}

.slide {
  position: relative;
  display: grid;
  flex: 0 0 100vw;
  width: 100vw;
  height: 100vh;
  place-items: center;
  overflow: hidden;
}

.slide::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 18, 0.12) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 50%);
  display: block;
  transform: translate3d(var(--image-shift, 0px), 0, 0) scale(var(--image-scale, 1.04));
  filter:
    sepia(calc(0.28 + var(--suede-warmth, 0)))
    saturate(calc(0.72 - var(--suede-warmth, 0)))
    contrast(calc(0.92 - var(--suede-warmth, 0) * 0.5))
    brightness(1.02);
  transition:
    filter 900ms ease,
    opacity 820ms ease,
    transform 1120ms cubic-bezier(0.2, 0.9, 0.22, 1);
  will-change: transform;
}

.slide::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(115deg, rgba(196, 173, 145, 0.28), rgba(244, 240, 232, 0.08) 42%, rgba(112, 94, 73, 0.18));
  mix-blend-mode: soft-light;
}

.slide:not(.is-active) img {
  opacity: 0.72;
  filter: sepia(0.34) saturate(0.52) contrast(0.82) brightness(0.95);
}

.slide.is-active img {
  animation: active-breath 7600ms ease-in-out infinite alternate;
}

.project-meta {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  pointer-events: none;
}

.project-title-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.project-title-word span {
  display: inline-block;
  transform: translate3d(0, 105%, 0);
  animation: title-reveal 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--word-index, 0) * 70ms);
}

.project-count {
  transform: translate3d(0, 0, 0);
}

.project-meta.is-changing .project-count {
  animation: meta-rise 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-meta h1 {
  margin: 0;
  font-size: clamp(0.82rem, 1.1vw, 1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-card {
  position: fixed;
  top: 50%;
  right: 0;
  bottom: auto;
  z-index: 12;
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr);
  align-content: start;
  gap: 18px 28px;
  width: min(430px, calc(100vw - 48px));
  min-height: 430px;
  padding: 34px 34px 30px;
  overflow: hidden;
  border: 1px solid rgba(23, 21, 18, 0.075);
  border-radius: 10px 0 0 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 239, 0.96)),
    #fff;
  color: rgba(23, 21, 18, 0.82);
  box-shadow:
    0 18px 58px rgba(23, 21, 18, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: none;
  outline: 0;
  transform: translate3d(calc(100% - 14px), -50%, 0);
  transition:
    width 720ms cubic-bezier(0.22, 1, 0.36, 1),
    min-height 720ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 720ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    background 420ms ease,
    box-shadow 420ms ease;
}

.project-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background:
    linear-gradient(rgba(23, 21, 18, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 18, 0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

.project-card::after {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 2px;
  height: 72px;
  pointer-events: none;
  content: "";
  border: 0;
  border-radius: 999px;
  background: rgba(23, 21, 18, 0.22);
  transform: translateY(-50%);
}

.project-card:hover,
.project-card:focus-within,
.project-card:focus-visible {
  width: min(430px, calc(100vw - 48px));
  min-height: 430px;
  padding: 34px 34px 30px;
  border-radius: 10px;
  transform: translate3d(0, -50%, 0);
  box-shadow:
    0 28px 86px rgba(23, 21, 18, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.78) inset;
}

.project-card__top,
.project-card__bottom,
.project-card h2 {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: rgba(23, 21, 18, 0.58);
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.project-card__top {
  display: contents;
}

.project-card__top span:first-child {
  color: rgba(23, 21, 18, 0.5);
}

.project-card__top span:last-child {
  justify-self: start;
}

.project-card h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  grid-column: 1 / -1;
  max-width: 330px;
  overflow: hidden;
  font-size: clamp(1rem, 1.7vw, 1.7rem);
  font-weight: 580;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    font-size 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card p {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  align-self: start;
  max-width: 520px;
  margin: 0;
  color: rgba(23, 21, 18, 0.68);
  font-size: clamp(0.86rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1.45;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card p,
.project-card__top,
.project-card__bottom,
.project-card h2,
.project-card__mark {
  opacity: 0;
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card__top {
  transform: translate3d(0, 0, 0);
}

.project-card__bottom {
  grid-column: 1 / -1;
  justify-self: end;
  transform: translate3d(0, 0, 0);
}

.project-card:hover .project-card__top,
.project-card:hover p,
.project-card:hover h2,
.project-card:hover .project-card__bottom,
.project-card:hover .project-card__mark,
.project-card:focus-within .project-card__top,
.project-card:focus-within p,
.project-card:focus-within h2,
.project-card:focus-within .project-card__bottom,
.project-card:focus-within .project-card__mark,
.project-card:focus-visible .project-card__top,
.project-card:focus-visible p,
.project-card:focus-visible h2,
.project-card:focus-visible .project-card__bottom,
.project-card:focus-visible .project-card__mark {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.project-card:hover h2,
.project-card:focus-within h2,
.project-card:focus-visible h2 {
  transform: translate3d(0, 0, 0);
}

.project-card__bottom a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  color: rgba(23, 21, 18, 0.78);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.project-card__bottom a::after {
  content: "→";
  transform: translate3d(0, -1px, 0);
  transition: transform 260ms ease;
}

.project-card__bottom a:hover::after,
.project-card__bottom a:focus-visible::after {
  transform: translate3d(5px, -1px, 0);
}

.project-card__mark {
  position: absolute;
  right: clamp(22px, 4vw, 60px);
  bottom: clamp(28px, 5vw, 70px);
  color: rgba(23, 21, 18, 0.035);
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 600;
  line-height: 0.7;
  transform: translate3d(22px, 22px, 0);
}

.progress {
  position: fixed;
  top: 50%;
  right: clamp(14px, 2vw, 28px);
  z-index: 5;
  width: 1px;
  height: 28vh;
  transform: translateY(-50%);
  background: rgba(23, 21, 18, 0.13);
}

.progress span {
  display: block;
  width: 100%;
  height: var(--progress, 16.66%);
  background: var(--ink);
  transform-origin: top;
  transition: height 220ms ease;
}

.project-rail {
  position: fixed;
  top: 50%;
  left: clamp(18px, 3vw, 46px);
  z-index: 10;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.news-section {
  position: fixed;
  inset: 0;
  z-index: 2;
  overflow-x: hidden;
  overflow-y: auto;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, rgba(206, 195, 177, 1) 1px),
    linear-gradient(180deg, rgba(23, 21, 18, 0.06) 1px, rgba(196, 184, 165, 1) 1px),
    radial-gradient(circle at 62% 14%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(225deg, rgb(206, 196, 179), rgb(181, 170, 151));
  background-size: 5px 5px, 7px 7px, auto, auto;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  scrollbar-width: thin;
  overscroll-behavior: contain;
  transition:
    opacity 520ms ease,
    visibility 0ms linear 520ms;
}

body.is-news .news-section {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity 520ms ease,
    visibility 0ms;
}

.news-section::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.46;
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 21, 18, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

.news-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(42px, 5vw, 82px);
  min-height: calc(100vh - var(--header-height));
  padding: clamp(86px, 10vw, 150px) clamp(18px, 4vw, 58px) clamp(70px, 8vw, 118px);
}

body.is-news-article .news-shell {
  min-height: calc(100vh - var(--header-height));
}

.news-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.28fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
}

.news-hero p,
.news-card span {
  margin: 0;
  color: rgba(23, 21, 18, 0.58);
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.news-hero h1 {
  grid-column: 1 / -1;
  order: -1;
  max-width: 960px;
  margin: 0;
  font-size: clamp(5.4rem, 15vw, 14rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.78;
  text-transform: uppercase;
}

.news-hero span {
  justify-self: end;
  max-width: 320px;
  color: rgba(23, 21, 18, 0.72);
  font-size: clamp(0.92rem, 1.25vw, 1.12rem);
  font-weight: 600;
  line-height: 1.05;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px) clamp(14px, 1.6vw, 24px);
}

body.is-news-article .news-hero,
body.is-news-article .news-grid,
body.is-news-article .news-cta {
  display: none;
}

.news-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  outline: 0;
  transform: translate3d(0, 0, 0);
}

.news-card::after {
  width: 18px;
  height: 18px;
  border-top: 1px solid rgba(23, 21, 18, 0.54);
  border-right: 1px solid rgba(23, 21, 18, 0.54);
  content: "";
  opacity: 0;
  justify-self: end;
  transform: translate3d(-10px, -4px, 0) rotate(45deg);
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card--wide {
  grid-column: span 2;
}

.news-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.22;
  background: rgba(23, 21, 18, 0.08);
}

.news-card--wide .news-card__image {
  aspect-ratio: 1.74;
}

.news-card__image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.28), transparent 26%),
    linear-gradient(115deg, rgba(196, 173, 145, 0.32), rgba(23, 21, 18, 0.18));
  mix-blend-mode: soft-light;
}

.news-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) sepia(0.12) saturate(0.04) contrast(0.86) brightness(0.92);
  transform: scale(1.035);
  transition:
    filter 760ms ease,
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card h2 {
  max-width: 680px;
  margin: 0;
  color: rgba(23, 21, 18, 0.88);
  font-size: clamp(1rem, 1.45vw, 1.54rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}

.news-card:hover img,
.news-card:focus-visible img {
  filter: grayscale(0) sepia(0.08) saturate(0.86) contrast(0.96) brightness(1.02);
  transform: scale(1.09);
}

.news-card:hover::after,
.news-card:focus-visible::after {
  opacity: 1;
  transform: translate3d(0, -4px, 0) rotate(45deg);
}

.news-article-nav {
  display: none;
  min-width: 0;
  padding: clamp(20px, 3vw, 38px) 0 0;
  border-top: 1px solid rgba(23, 21, 18, 0.18);
}

body.is-news-article .news-article-nav {
  display: grid;
  gap: 16px;
}

.news-article-nav p,
.news-article-track span {
  margin: 0;
  color: rgba(23, 21, 18, 0.58);
  font-size: 0.68rem;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

.news-article-track {
  display: grid;
  grid-auto-columns: minmax(260px, 31vw);
  grid-auto-flow: column;
  gap: clamp(12px, 1.4vw, 20px);
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.news-article-track a {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  min-width: 0;
  scroll-snap-align: start;
  opacity: 0.68;
  transition:
    opacity 280ms ease,
    transform 240ms ease;
}

.news-article-track img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  filter: grayscale(1) sepia(0.12) saturate(0.04) contrast(0.86) brightness(0.92);
  transition:
    filter 620ms ease,
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-article-track strong {
  display: block;
  max-width: 92%;
  color: var(--ink);
  font-size: clamp(1rem, 1.36vw, 1.34rem);
  font-weight: 650;
  line-height: 1.02;
}

.news-article-track a:hover,
.news-article-track a:focus-visible,
.news-article-track a.is-current {
  opacity: 1;
  transform: translate3d(0, -5px, 0);
}

.news-article-track a:hover img,
.news-article-track a:focus-visible img,
.news-article-track a.is-current img {
  filter: grayscale(0) sepia(0.08) saturate(0.8) contrast(0.96) brightness(1.02);
}

.news-article {
  display: none;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: start;
  min-height: min(920px, calc(100vh - var(--header-height)));
  padding-top: clamp(68px, 9vw, 140px);
  border-top: 1px solid rgba(23, 21, 18, 0.18);
  scroll-margin-top: 24px;
}

body.is-news-article .news-article:target {
  display: grid;
}

body.is-news-article .news-article:not(:target) {
  display: none;
}

.news-article__media {
  position: sticky;
  top: 28px;
  height: min(74vh, 760px);
  margin: 0;
  overflow: hidden;
  background: rgba(23, 21, 18, 0.08);
}

.news-article__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) sepia(0.12) saturate(0.05) contrast(0.86) brightness(0.94);
}

.news-article__content {
  display: grid;
  gap: clamp(18px, 2.2vw, 30px);
  max-width: 720px;
}

.news-back,
.news-article__content > span,
.news-project-access p,
.news-cta p {
  margin: 0;
  color: rgba(23, 21, 18, 0.58);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.news-back {
  justify-self: start;
  position: sticky;
  z-index: 3;
  top: 20px;
  padding: 10px 0;
  background: linear-gradient(90deg, rgba(244, 240, 232, 0.92), rgba(244, 240, 232, 0));
}

.news-article h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.6vw, 5.1rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.86;
}

.news-intro,
.news-article p {
  margin: 0;
  color: rgba(23, 21, 18, 0.78);
  font-size: clamp(0.94rem, 1.16vw, 1.1rem);
  font-weight: 500;
  line-height: 1.36;
}

.news-intro {
  max-width: 600px;
  font-size: clamp(1.04rem, 1.42vw, 1.34rem);
  font-weight: 650;
  line-height: 1.18;
}

.news-article section {
  display: grid;
  gap: 7px;
  max-width: 590px;
}

.news-article h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.7vw, 1.72rem);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 0.98;
}

.news-project-access {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 21, 18, 0.16);
}

.news-project-access a,
.news-cta a {
  position: relative;
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.news-project-access a::after,
.news-cta a::after {
  content: " ↗";
}

.news-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) auto;
  gap: clamp(24px, 5vw, 86px);
  align-items: end;
  min-height: 52vh;
  padding: clamp(52px, 8vw, 110px) 0;
  border-top: 1px solid rgba(23, 21, 18, 0.18);
}

.news-cta h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.8rem, 6.8vw, 7.8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.84;
}

.news-cta a {
  align-self: end;
  white-space: nowrap;
}


.agency-section {
  position: fixed;
  inset: 0;
  z-index: 2;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  scrollbar-width: thin;
  overscroll-behavior: contain;
  transition:
    opacity 520ms ease,
    visibility 0ms linear 520ms;
}

body.is-agency .agency-section {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity 520ms ease,
    visibility 0ms;
}

body.is-agency:not(.is-method) .method-section {
  display: none;
}

body.is-method .agency-animation,
body.is-method .agency-shell > :not(.method-section) {
  display: none;
}

body.is-method .agency-shell {
  gap: 0;
  min-height: auto;
  padding: 0;
  background: var(--paper);
}

body.is-method .method-section {
  display: block;
}

.agency-section::before {
  position: fixed;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.58), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(196, 173, 145, 0.12));
  pointer-events: none;
}

.agency-animation {
  position: relative;
  height: 185vh;
  min-height: 1040px;
}

.agency-animation::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 21, 18, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: calc(1 - var(--agency-progress, 0));
  transition: opacity 180ms ease;
}

.agency-animation__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.agency-media {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 18px 80px rgba(23, 21, 18, 0.12);
  contain: paint;
  clip-path: inset(var(--agency-clip-y, 42%) var(--agency-clip-x, 28%));
  transform: translate3d(0, var(--agency-y, -16vh), 0) scale(var(--agency-scale, 0.68));
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform, clip-path;
}

.agency-media::after {
  position: absolute;
  inset: var(--agency-clip-y, 42%) var(--agency-clip-x, 28%);
  pointer-events: none;
  content: "";
  border: 8px solid rgba(255, 255, 255, 0.78);
  opacity: var(--agency-frame-opacity, 1);
}

.agency-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translateZ(0);
}

.agency-copy {
  position: absolute;
  left: 50%;
  bottom: clamp(44px, 7vh, 88px);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(920px, calc(100vw - 48px));
  color: var(--ink);
  text-align: center;
  opacity: var(--agency-copy-opacity, 1);
  transform: translate3d(-50%, 0, 0);
  transition:
    opacity 120ms linear;
  will-change: opacity;
}

.agency-final-text {
  position: absolute;
  left: 50%;
  bottom: clamp(44px, 7vh, 84px);
  z-index: 4;
  max-width: min(520px, calc(100vw - 48px));
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.64rem, 0.9vw, 0.78rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  opacity: var(--agency-final-opacity, 0);
  transform: translate3d(-50%, 10px, 0);
  transition: opacity 120ms linear;
  pointer-events: none;
}

.agency-watermark {
  position: absolute;
  z-index: 1;
  bottom: clamp(28px, 5vh, 58px);
  color: rgba(255, 255, 255, 0.38);
  font-size: clamp(0.95rem, 2.1vw, 2.45rem);
  font-weight: 600;
  line-height: 1;
  opacity: calc((1 - var(--agency-progress, 0)) * 0.48);
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.38),
    0 10px 24px rgba(23, 21, 18, 0.08);
  pointer-events: none;
}

.agency-watermark--left {
  left: clamp(22px, 4vw, 64px);
}

.agency-watermark--right {
  right: clamp(22px, 4vw, 64px);
}

.agency-copy p,
.agency-copy span {
  margin: 0;
  max-width: 500px;
  color: rgba(23, 21, 18, 0.66);
  font-size: clamp(0.62rem, 0.9vw, 0.76rem);
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.agency-copy h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.05rem, 4.75vw, 5.25rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

.agency-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(86px, 13vw, 190px);
  min-height: calc(100vh - var(--header-height));
  padding: clamp(112px, 15vh, 190px) clamp(24px, 3.8vw, 58px) clamp(86px, 10vh, 132px);
}

.agency-shell--story {
  background: var(--paper);
}

.agency-kicker {
  position: absolute;
  top: calc(var(--header-height) + clamp(18px, 3vh, 38px));
  left: clamp(24px, 3.8vw, 58px);
  margin: 0;
  color: rgba(23, 21, 18, 0.44);
  font-size: clamp(0.68rem, 0.92vw, 0.78rem);
  font-weight: 600;
  text-transform: uppercase;
}

.agency-hero {
  display: grid;
  grid-template-columns: minmax(280px, 660px) 1fr;
  align-items: start;
  gap: clamp(32px, 8vw, 140px);
  min-height: clamp(520px, 72vh, 820px);
}

.agency-manifesto {
  display: grid;
  gap: clamp(24px, 3.6vh, 38px);
  max-width: 650px;
  padding-top: clamp(18px, 3vh, 46px);
}

.agency-manifesto p {
  margin: 0;
  color: rgba(23, 21, 18, 0.94);
  font-size: clamp(1.38rem, 2.45vw, 2.55rem);
  font-weight: 600;
  line-height: 1.08;
}

.agency-manifesto .reveal-word {
  display: inline;
  color: rgba(23, 21, 18, 0.18);
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.agency-manifesto .reveal-word.is-visible {
  color: rgba(23, 21, 18, 0.96);
}

.agency-date {
  justify-self: end;
  margin-top: clamp(12px, 16vh, 160px);
  color: rgba(23, 21, 18, 0.76);
  font-size: clamp(0.74rem, 0.96vw, 0.84rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.agency-portrait {
  grid-column: 2;
  width: min(520px, 34vw);
  aspect-ratio: 4 / 5;
  justify-self: center;
  align-self: center;
  overflow: hidden;
  background: rgba(23, 21, 18, 0.08);
}

.agency-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
  filter: sepia(0.18) saturate(0.72) contrast(0.94) brightness(1.03);
}

.agency-expertise {
  display: grid;
  gap: clamp(54px, 9vw, 120px);
  padding-bottom: clamp(40px, 7vh, 90px);
}

.agency-expertise-main {
  display: grid;
  grid-template-columns: minmax(220px, 380px) minmax(300px, 520px) minmax(220px, 380px);
  align-items: center;
  gap: clamp(32px, 5vw, 86px);
}

.agency-text-block {
  display: grid;
  gap: 26px;
  text-align: center;
}

.agency-text-block--left {
  grid-column: 1;
  position: sticky;
  top: 54%;
  align-self: center;
  padding-top: 0;
  transform: translateY(-50%);
}

.agency-text-block--right {
  grid-column: 3;
  position: sticky;
  top: 54%;
  align-self: center;
  padding-top: 0;
  transform: translateY(-50%);
}

.agency-text-block--wide {
  justify-self: center;
  max-width: 560px;
  padding-top: 0;
}

.agency-text-block h2 {
  margin: 0;
  color: rgba(23, 21, 18, 0.96);
  font-size: clamp(1.22rem, 1.95vw, 1.86rem);
  font-weight: 600;
  line-height: 1;
}

.agency-text-block p {
  margin: 0;
  color: rgba(23, 21, 18, 0.78);
  font-size: clamp(0.92rem, 1.02vw, 1.04rem);
  font-weight: 500;
  line-height: 1.34;
}

.team-section {
  display: grid;
  gap: clamp(54px, 8vw, 110px);
  padding: clamp(24px, 4vh, 52px) 0 clamp(72px, 12vh, 150px);
}

.team-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.38fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: clamp(28px, 6vw, 96px);
}

.team-heading p {
  margin: 0;
  color: rgba(23, 21, 18, 0.44);
  font-size: clamp(0.68rem, 0.92vw, 0.78rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.team-heading h2 {
  max-width: 820px;
  margin: 0;
  color: rgba(23, 21, 18, 0.96);
  font-size: clamp(1.8rem, 3.8vw, 4.25rem);
  font-weight: 600;
  line-height: 0.96;
}

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

.team-member {
  position: relative;
  display: grid;
  align-content: start;
  gap: 28px;
  min-height: clamp(360px, 42vh, 520px);
  padding: clamp(24px, 3vw, 42px);
  overflow: visible;
  border-right: 1px solid var(--line);
  isolation: isolate;
  outline: 0;
  transition:
    background 320ms ease,
    color 320ms ease;
}

.team-member::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0;
  background: linear-gradient(180deg, rgba(23, 21, 18, 0.04), rgba(23, 21, 18, 0.28));
  pointer-events: none;
  transition: opacity 360ms ease;
}

.team-member__photo {
  position: absolute;
  z-index: 3;
  right: clamp(-54px, -3vw, -26px);
  bottom: clamp(-52px, -3vw, -24px);
  width: min(86%, 340px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  border: 10px solid rgba(244, 240, 232, 0.94);
  box-shadow:
    0 34px 72px rgba(23, 21, 18, 0.28),
    0 2px 0 rgba(255, 255, 255, 0.42) inset;
  filter: sepia(0.16) saturate(0.78) contrast(0.94) brightness(0.96);
  transform: translate3d(30px, 38px, 0) rotate(2.5deg) scale(0.84);
  transform-origin: center bottom;
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.team-member:last-child {
  border-right: 0;
}

.team-member span,
.team-member small {
  position: relative;
  z-index: 1;
  color: rgba(23, 21, 18, 0.42);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: color 320ms ease;
}

.team-member h3 {
  position: relative;
  z-index: 1;
  margin: clamp(40px, 8vh, 90px) 0 0;
  color: var(--ink);
  font-size: clamp(1.38rem, 2vw, 2.18rem);
  font-weight: 600;
  line-height: 0.96;
  transition: color 320ms ease;
}

.team-member p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(23, 21, 18, 0.72);
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  font-weight: 500;
  line-height: 1.38;
  transition: color 320ms ease;
}

.team-member small {
  align-self: end;
  margin-top: auto;
}

.team-member--founder {
  background: rgba(255, 255, 255, 0.28);
}

.team-member:hover,
.team-member:focus-within {
  background: rgba(23, 21, 18, 0.74);
}

.team-member:hover::after,
.team-member:focus-within::after,
.team-member:hover .team-member__photo,
.team-member:focus-within .team-member__photo {
  opacity: 1;
}

.team-member:hover .team-member__photo,
.team-member:focus-within .team-member__photo {
  transform: translate3d(0, 0, 0) rotate(-1deg) scale(1);
}

.team-member:hover span,
.team-member:hover small,
.team-member:hover h3,
.team-member:hover p,
.team-member:focus-within span,
.team-member:focus-within small,
.team-member:focus-within h3,
.team-member:focus-within p {
  color: rgba(244, 240, 232, 0.92);
}

.services-section {
  display: grid;
  gap: clamp(28px, 4.6vw, 62px);
  padding: clamp(34px, 6vh, 78px) 0 clamp(90px, 14vh, 180px);
}

.services-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 0;
}

.services-heading p,
.service-flow__index {
  margin: 0;
  color: rgba(23, 21, 18, 0.44);
  font-size: clamp(0.68rem, 0.92vw, 0.78rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-flow {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-flow__item {
  border-bottom: 1px solid var(--line);
  outline: 0;
}

.service-flow__item:last-child {
  border-bottom: 0;
}

.service-flow__line {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: clamp(84px, 9.4vw, 138px);
  overflow: hidden;
  padding: 0 clamp(0px, 1vw, 18px);
}

.service-flow__line h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 5.2vw, 6.25rem);
  font-weight: 600;
  line-height: 0.92;
  transition:
    opacity 340ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-flow__marquee {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: rgba(244, 240, 232, 0.96);
  white-space: nowrap;
  opacity: 0;
  background: var(--ink);
  transform: translate3d(0, 72%, 0) scaleY(0.82);
  transform-origin: bottom;
  transition:
    opacity 360ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-flow__marquee span {
  flex: 0 0 auto;
  padding-right: 0.42em;
  font-size: clamp(2.15rem, 5.7vw, 6.8rem);
  font-weight: 600;
  line-height: 0.92;
  animation: service-marquee 17s linear infinite;
}

.service-flow__details {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(320px, 0.68fr);
  gap: clamp(30px, 5vw, 86px);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, -22px, 0);
  transition:
    max-height 860ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 480ms ease 110ms,
    padding 860ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-flow__details p,
.service-flow__details .service-list {
  grid-column: 2;
}

.service-flow__details p {
  margin: 0;
  color: rgba(23, 21, 18, 0.74);
  font-size: clamp(1rem, 1.35vw, 1.32rem);
  font-weight: 500;
  line-height: 1.36;
}

.service-flow__item:hover .service-flow__line h3,
.service-flow__item:focus-within .service-flow__line h3 {
  opacity: 0.04;
  transform: translate3d(0, -10px, 0);
}

.service-flow__item:hover .service-flow__marquee,
.service-flow__item:focus-within .service-flow__marquee {
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleY(1);
}

.service-flow__item:hover .service-flow__details,
.service-flow__item:focus-within .service-flow__details {
  max-height: 760px;
  padding: clamp(18px, 2.4vw, 34px) 0 clamp(30px, 4.4vw, 58px);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(8px, 2vh, 18px) 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  min-height: 68px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.34);
  color: rgba(23, 21, 18, 0.82);
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1.22;
}

/* ══════════════════════════════════════════════════════
   MÉTHODE PAGE
══════════════════════════════════════════════════════ */

.method-section {
  display: block;
  background: var(--paper);
  color: var(--ink);
}

/* ── Hero image ── */
.method-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.method-hero img {
  display: block;
  width: 100%;
  height: 100svh;
  object-fit: cover;
  object-position: center 48%;
  filter: grayscale(0.12) sepia(0.16) saturate(0.72) contrast(0.94) brightness(0.92);
}

.method-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.2) 0%, rgba(23, 21, 18, 0.08) 42%, rgba(23, 21, 18, 0.58) 100%),
    linear-gradient(90deg, rgba(23, 21, 18, 0.34), transparent 44%, rgba(23, 21, 18, 0.18));
  pointer-events: none;
}

.method-hero__content {
  position: absolute;
  left: clamp(24px, 3.8vw, 58px);
  right: clamp(24px, 3.8vw, 58px);
  bottom: clamp(32px, 7vh, 88px);
  z-index: 2;
  display: grid;
  gap: clamp(8px, 1.4vh, 16px);
  color: rgba(244, 240, 232, 0.94);
}

.method-hero__content p,
.method-hero__content span {
  margin: 0;
  max-width: 560px;
  font-size: clamp(0.66rem, 0.9vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.method-hero__content h1 {
  margin: 0;
  font-size: clamp(4rem, 15vw, 14rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* ── Scroll text intro ── */
.method-intro {
  position: relative;
  height: 165vh;
  min-height: 980px;
  background: var(--paper);
}

.method-intro__stage {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(280px, 720px) 1fr;
  gap: clamp(32px, 8vw, 140px);
  min-height: 100svh;
  align-items: start;
  padding: clamp(112px, 15vh, 190px) clamp(24px, 3.8vw, 58px) clamp(72px, 10vh, 120px);
  overflow: hidden;
}

.method-intro__kicker {
  position: absolute;
  top: calc(var(--header-height) + clamp(18px, 3vh, 38px));
  left: clamp(24px, 3.8vw, 58px);
  margin: 0;
  color: rgba(23, 21, 18, 0.44);
  font-size: clamp(0.68rem, 0.92vw, 0.78rem);
  font-weight: 600;
  text-transform: uppercase;
}

.method-intro__manifesto {
  display: grid;
  gap: clamp(24px, 3.6vh, 38px);
  max-width: 720px;
  padding-top: clamp(18px, 3vh, 46px);
}

.method-intro__manifesto p {
  margin: 0;
  color: rgba(23, 21, 18, 0.94);
  font-size: clamp(1.55rem, 2.8vw, 3.15rem);
  font-weight: 600;
  line-height: 1.08;
}

.method-intro__manifesto .reveal-word {
  display: inline;
  color: rgba(23, 21, 18, 0.16);
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.method-intro__manifesto .reveal-word.is-visible {
  color: rgba(23, 21, 18, 0.96);
}

.method-intro__date {
  justify-self: end;
  margin-top: clamp(12px, 16vh, 160px);
  color: rgba(23, 21, 18, 0.76);
  font-size: clamp(0.74rem, 0.96vw, 0.84rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

/* ── Hero ── */
.ms-hero {
  position: relative;
  z-index: 5;
  height: 215vh;
  min-height: 1180px;
  overflow: hidden;
  background: var(--paper);
}

.ms-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 21, 18, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: calc(1 - var(--ms-progress, 0));
  pointer-events: none;
}

.ms-hero__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.ms-hero__media {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 18px 80px rgba(23, 21, 18, 0.12);
  contain: paint;
  clip-path: inset(var(--ms-clip-y, 14%) var(--ms-clip-x, 40%));
  transform: translate3d(0, var(--ms-y, -10vh), 0) scale(var(--ms-scale, 0.68));
  transform-origin: center center;
  will-change: transform, clip-path;
  backface-visibility: hidden;
}

.ms-hero__media::after {
  position: absolute;
  inset: var(--ms-clip-y, 14%) var(--ms-clip-x, 40%);
  content: "";
  border: 8px solid rgba(255, 255, 255, 0.78);
  opacity: var(--ms-frame-opacity, 1);
  pointer-events: none;
  transition: none;
}

.ms-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: translateZ(0);
}

.ms-hero__copy {
  position: absolute;
  left: 50%;
  bottom: clamp(44px, 7vh, 88px);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(920px, calc(100vw - 48px));
  color: var(--ink);
  text-align: center;
  opacity: var(--ms-copy-opacity, 1);
  transform: translate3d(-50%, 0, 0);
  transition: opacity 120ms linear;
  will-change: opacity;
}

.ms-hero__title {
  display: block;
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.05rem, 4.75vw, 5.25rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink);
}

.ms-hero__sub {
  display: block;
  max-width: 500px;
  margin: 0;
  font-size: clamp(0.62rem, 0.9vw, 0.76rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(23, 21, 18, 0.66);
}

/* ── Full bleed "socle commun" ── */

.ms-corner {
  position: absolute;
  z-index: 4;
  font-size: clamp(2.8rem, 7vw, 9rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.18);
  opacity: var(--ms-corner-opacity, 0);
  pointer-events: none;
}

.ms-corner--tl { top: clamp(20px, 3vh, 40px); left: clamp(20px, 3vw, 48px); }
.ms-corner--tr { top: clamp(20px, 3vh, 40px); right: clamp(20px, 3vw, 48px); text-align: right; }
.ms-corner--bl { bottom: clamp(20px, 3vh, 40px); left: clamp(20px, 3vw, 48px); }
.ms-corner--br { bottom: clamp(20px, 3vh, 40px); right: clamp(20px, 3vw, 48px); text-align: right; }

.ms-fullbleed__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  font-size: clamp(0.68rem, 0.8vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.72);
  opacity: var(--ms-corner-opacity, 0);
  pointer-events: none;
}

/* ── Steps ── */
.ms-steps {
  position: relative;
  z-index: 4;
  height: calc(6 * 100svh);
  margin-top: 0;
}

.ms-steps__viewport {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.ms-step {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(var(--ms-offset, 100%));
  will-change: transform;
}

.ms-step:first-child {
  --ms-offset: 0%;
}

.ms-step__media {
  margin: 0;
  overflow: hidden;
}

.ms-step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%);
  transform: translateY(var(--ms-photo-parallax, 0%)) scale(1.06);
  will-change: transform;
}

.ms-step__panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
  padding: clamp(16px, 2.5vh, 28px) clamp(32px, 4vw, 64px) clamp(32px, 5vh, 56px);
}

.ms-step__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: clamp(14px, 2vh, 24px);
  border-bottom: 1px solid var(--ink);
}

.ms-step__header h3 {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ms-step__header span {
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 0.9;
}

.ms-step__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 32px);
}

.ms-step__aside {
  font-size: clamp(0.62rem, 0.75vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.ms-step__photo {
  margin: 0;
  width: clamp(120px, 16vw, 210px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  outline: 3px solid #fff;
  outline-offset: -3px;
  box-shadow: 0 6px 32px rgba(23, 21, 18, 0.16);
  flex-shrink: 0;
}

.ms-step__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-step__text {
  margin: 0;
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  line-height: 1.8;
  color: var(--muted);
  text-align: center;
}

/* ── Flowing services ── */
.method-services {
  position: relative;
  padding: clamp(68px, 10vh, 130px) clamp(24px, 3.8vw, 58px) clamp(76px, 11vh, 150px);
  margin-bottom: clamp(24px, 5vh, 56px);
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.method-services__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(320px, 0.76fr);
  gap: clamp(24px, 5vw, 88px);
  align-items: end;
  margin-bottom: clamp(28px, 5vh, 60px);
}

.method-services__head p {
  margin: 0;
  color: rgba(23, 21, 18, 0.44);
  font-size: clamp(0.68rem, 0.92vw, 0.78rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.method-services__head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 4.4vw, 5.4rem);
  font-weight: 650;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.method-flow {
  border-top: 1px solid var(--ink);
  perspective: 1200px;
}

.method-flow__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(38px, 0.08fr) minmax(280px, 0.58fr) minmax(220px, 0.34fr);
  gap: clamp(18px, 3vw, 58px);
  align-items: center;
  min-height: clamp(96px, 10vw, 165px);
  padding: clamp(16px, 2.4vh, 28px) 0;
  border-bottom: 1px solid var(--ink);
  outline: 0;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: z-index 0ms linear 240ms;
}

.method-flow__item.is-active {
  z-index: 5;
  transition-delay: 0ms;
}

.method-flow__item::before {
  position: absolute;
  inset: 0 calc(clamp(24px, 3.8vw, 58px) * -1);
  z-index: -1;
  content: "";
  background: var(--ink);
  opacity: 0;
  transform: scaleY(0.04);
  transform-origin: center;
  transition:
    opacity 340ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.method-flow__num {
  color: rgba(23, 21, 18, 0.42);
  font-size: clamp(0.68rem, 0.9vw, 0.78rem);
  font-weight: 800;
  line-height: 1;
  transition: color 340ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.method-flow__item h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 4vw, 5.1rem);
  font-weight: 650;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    color 340ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.method-flow__item p {
  max-width: 330px;
  margin: 0;
  color: rgba(23, 21, 18, 0.62);
  font-size: clamp(0.82rem, 1vw, 0.96rem);
  font-weight: 600;
  line-height: 1.45;
  transition:
    color 340ms ease,
    opacity 340ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.method-flow__photo {
  position: absolute;
  z-index: 3;
  margin: 0;
  overflow: hidden;
  background: rgba(23, 21, 18, 0.08);
  box-shadow: 0 30px 82px rgba(23, 21, 18, 0.22);
  opacity: 0;
  pointer-events: none;
  transform-style: preserve-3d;
  transition:
    opacity 380ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.method-flow__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.14) saturate(0.78) contrast(0.96) brightness(0.98);
  transform: scale(1.08);
  transition: transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.method-flow__photo--a {
  top: 50%;
  right: clamp(180px, 21vw, 340px);
  width: clamp(120px, 14vw, 220px);
  aspect-ratio: 4 / 5;
  transform: translate3d(-18px, -48%, 82px) rotateY(-18deg) rotateZ(-2.5deg) scale(0.88);
}

.method-flow__photo--b {
  top: 50%;
  right: clamp(22px, 5vw, 84px);
  width: clamp(140px, 17vw, 270px);
  aspect-ratio: 5 / 4;
  transform: translate3d(28px, -50%, 132px) rotateY(16deg) rotateZ(2deg) scale(0.9);
}

.method-flow__item:hover::before,
.method-flow__item:focus-visible::before,
.method-flow__item.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.method-flow__item:hover .method-flow__num,
.method-flow__item:focus-visible .method-flow__num,
.method-flow__item.is-active .method-flow__num,
.method-flow__item:hover h3,
.method-flow__item:focus-visible h3,
.method-flow__item.is-active h3,
.method-flow__item:hover p,
.method-flow__item:focus-visible p,
.method-flow__item.is-active p {
  color: rgba(244, 240, 232, 0.94);
}

.method-flow__item:hover .method-flow__num,
.method-flow__item:focus-visible .method-flow__num,
.method-flow__item.is-active .method-flow__num {
  transform: translate3d(10px, 0, 34px);
}

.method-flow__item:hover h3,
.method-flow__item:focus-visible h3,
.method-flow__item.is-active h3 {
  transform: translate3d(22px, 0, 54px);
}

.method-flow__item:hover p,
.method-flow__item:focus-visible p,
.method-flow__item.is-active p {
  opacity: 0.82;
  transform: translate3d(-16px, 0, 42px);
}

.method-flow__item:hover .method-flow__photo,
.method-flow__item:focus-visible .method-flow__photo,
.method-flow__item.is-active .method-flow__photo {
  opacity: 1;
}

.method-flow__item:hover .method-flow__photo--a,
.method-flow__item:focus-visible .method-flow__photo--a,
.method-flow__item.is-active .method-flow__photo--a {
  transform: translate3d(0, -54%, 112px) rotateY(-9deg) rotateZ(-1.4deg) scale(1);
}

.method-flow__item:hover .method-flow__photo--b,
.method-flow__item:focus-visible .method-flow__photo--b,
.method-flow__item.is-active .method-flow__photo--b {
  transform: translate3d(0, -46%, 168px) rotateY(8deg) rotateZ(1.2deg) scale(1);
}

.method-flow__item:hover .method-flow__photo img,
.method-flow__item:focus-visible .method-flow__photo img,
.method-flow__item.is-active .method-flow__photo img {
  transform: scale(1);
}

/* ── Accompagnement ── */
.ms-accomp {
  position: relative;
  isolation: isolate;
  padding: clamp(60px, 9vh, 115px) clamp(28px, 6vw, 88px) clamp(68px, 10vh, 130px);
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.ms-accomp::before {
  position: absolute;
  inset: clamp(14px, 2vw, 30px);
  z-index: -2;
  content: "";
  border: 1px solid rgba(23, 21, 18, 0.08);
  pointer-events: none;
}

.ms-accomp::after {
  position: absolute;
  right: clamp(28px, 5vw, 88px);
  bottom: clamp(56px, 8vh, 120px);
  z-index: -3;
  content: "";
  width: min(28vw, 380px);
  aspect-ratio: 4 / 5;
  background: url("IMG/LaboisserieVUE-1plusCLAIRE_161220-1-min copie.png") center / cover no-repeat;
  filter: sepia(0.2) saturate(0.66) contrast(0.92) brightness(1.06);
  opacity: 0.045;
  pointer-events: none;
}

.ms-accomp > * {
  position: relative;
  z-index: 1;
}

.ms-accomp__head {
  display: grid;
  grid-template-columns: minmax(360px, 0.58fr) minmax(260px, 0.42fr);
  align-items: end;
  gap: clamp(28px, 5vw, 90px);
  margin-bottom: clamp(24px, 4vh, 52px);
}

.ms-accomp__head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.15rem, 4.35vw, 5.6rem);
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 8.8em;
}

.ms-accomp__right {
  text-align: right;
  justify-self: end;
  max-width: 5.2em !important;
}

.ms-accomp__intro {
  margin: 0 0 clamp(30px, 5vh, 58px);
  color: rgba(23, 21, 18, 0.56);
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1.6;
  max-width: 48ch;
}

.ms-accomp__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(23, 21, 18, 0.72);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
}

.ms-accomp__item {
  border-bottom: 1px solid rgba(23, 21, 18, 0.72);
}

.ms-accomp__btn {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  min-height: clamp(64px, 5.8vw, 96px);
  padding: clamp(14px, 2vh, 24px) 0;
  background: none;
  border: none;
  cursor: none;
  text-align: left;
  color: var(--ink);
  transition:
    background 360ms ease,
    color 360ms ease,
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ms-accomp__btn:hover,
.ms-accomp__btn:focus-visible,
.ms-accomp__item.is-open .ms-accomp__btn {
  background: transparent;
  transform: translate3d(10px, 0, 0);
}

.ms-accomp__name {
  font-size: clamp(1.25rem, 2.35vw, 3.3rem);
  font-weight: 520;
  line-height: 0.96;
  letter-spacing: 0;
}

.ms-accomp__tag {
  color: rgba(23, 21, 18, 0.5);
  font-size: clamp(0.68rem, 0.86vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ms-accomp__plus {
  display: grid;
  width: clamp(34px, 3vw, 48px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(23, 21, 18, 0.34);
  border-radius: 50%;
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  font-weight: 300;
  line-height: 1;
  transition:
    border-color 320ms ease,
    background 320ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ms-accomp__item.is-open .ms-accomp__plus {
  background: rgba(23, 21, 18, 0.08);
  border-color: rgba(23, 21, 18, 0.72);
  transform: rotate(45deg);
}

.ms-accomp__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 520ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.ms-accomp__item.is-open .ms-accomp__body {
  grid-template-rows: 1fr;
}

.ms-accomp__body p {
  margin: 0;
  padding: 0 0 clamp(20px, 3vh, 36px);
  color: rgba(23, 21, 18, 0.58);
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1.7;
  max-width: 72ch;
  min-height: 0;
}

.ms-accomp__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(40px, 6vh, 72px);
  font-size: clamp(0.85rem, 1vw, 0.96rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: color 220ms, border-color 220ms;
}

.ms-accomp__cta:hover {
  color: var(--muted);
  border-color: var(--muted);
}

/* Responsive */
@media (max-width: 760px) {
  .method-hero__content h1 {
    font-size: clamp(3.4rem, 22vw, 6.8rem);
  }
  .method-hero img {
    object-position: 50% 42%;
  }
  .method-intro {
    height: 145vh;
    min-height: 780px;
  }
  .method-intro__stage {
    grid-template-columns: 1fr;
    padding: clamp(104px, 15vh, 150px) 24px 56px;
  }
  .method-intro__manifesto p {
    font-size: clamp(1.55rem, 8vw, 2.8rem);
  }
  .method-intro__date {
    justify-self: start;
    margin-top: 18px;
  }
  .ms-hero__title { font-size: clamp(2.15rem, 12vw, 4.2rem); }
  .ms-hero__sub { display: none; }
  .ms-corner { font-size: clamp(1.8rem, 10vw, 4rem); }
  .ms-steps { height: calc(6 * 100svh); }
  .ms-step { grid-template-columns: 1fr; }
  .ms-step__media { height: 45vw; min-height: 220px; }
  .ms-step__panel { padding: 20px 24px 36px; }
  .method-services {
    padding: 58px 24px 72px;
    margin-bottom: 24px;
  }
  .method-services__head {
    grid-template-columns: 1fr;
  }
  .method-services__head h2 {
    font-size: clamp(2rem, 10vw, 4.2rem);
  }
  .method-flow__item {
    grid-template-columns: 34px 1fr;
    min-height: auto;
    padding: 22px 0;
  }
  .method-flow__item p {
    grid-column: 2;
    max-width: none;
  }
  .method-flow__item h3 {
    font-size: clamp(1.7rem, 8vw, 3.2rem);
  }
  .method-flow__photo {
    position: relative;
    inset: auto;
    grid-column: 2;
    width: min(68vw, 280px);
    margin-top: 12px;
    opacity: 1;
    transform: none;
    box-shadow: 0 18px 46px rgba(23, 21, 18, 0.16);
  }
  .method-flow__photo--b {
    display: none;
  }
  .method-flow__item::before {
    display: none;
  }
  .method-flow__item:hover h3,
  .method-flow__item:focus-visible h3,
  .method-flow__item:hover p,
  .method-flow__item:focus-visible p,
  .method-flow__item:hover .method-flow__num,
  .method-flow__item:focus-visible .method-flow__num,
  .method-flow__item:hover .method-flow__photo--a,
  .method-flow__item:focus-visible .method-flow__photo--a {
    color: inherit;
    transform: none;
  }
  .ms-accomp {
    padding: 58px 24px 70px;
  }
  .ms-accomp::before {
    inset: 14px;
  }
  .ms-accomp__head { grid-template-columns: 1fr; }
  .ms-accomp__right { text-align: left; }
  .ms-accomp__head h2 { font-size: clamp(2.2rem, 11vw, 4.3rem); }
  .ms-accomp__head h2,
  .ms-accomp__right {
    max-width: 100% !important;
  }
  .ms-accomp::after {
    width: 72vw;
    right: -18vw;
    bottom: 24px;
    opacity: 0.035;
  }
  .ms-accomp__btn { grid-template-columns: 1fr auto; }
  .ms-accomp__tag { display: none; }
  .ms-accomp__name { font-size: clamp(1.45rem, 7vw, 2.75rem); }
  .ms-accomp__body p { padding-inline: 0; }
}

.contact-cta {
  position: relative;
  display: grid;
  min-height: clamp(620px, 88vh, 920px);
  align-items: stretch;
  padding: clamp(62px, 9vh, 110px) 0 clamp(28px, 5vh, 58px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.55;
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 21, 18, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

.contact-cta::after {
  position: absolute;
  top: 50%;
  right: -8vw;
  left: -8vw;
  height: 1px;
  content: "";
  background: rgba(23, 21, 18, 0.16);
  transform: rotate(-2deg);
}

.contact-cta__scene,
.contact-cta__actions {
  position: relative;
  z-index: 1;
}

.contact-cta__scene {
  display: grid;
  min-height: clamp(440px, 66vh, 700px);
  align-items: center;
}

.contact-cta__eyebrow {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(23, 21, 18, 0.48);
  font-size: clamp(0.68rem, 0.9vw, 0.8rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.contact-cta h2 {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(4rem, 13.8vw, 15rem);
  font-weight: 600;
  line-height: 0.78;
  text-transform: uppercase;
}

.contact-cta h2 span {
  animation: contact-drift 5200ms ease-in-out infinite alternate;
}

.contact-cta h2 span:last-child {
  animation-delay: -1800ms;
}

.contact-cta__frame {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(430px, 34vw);
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(244, 240, 232, 0.82);
  box-shadow:
    0 30px 90px rgba(23, 21, 18, 0.18),
    0 0 0 1px rgba(23, 21, 18, 0.08);
  transform: translate3d(-50%, -50%, 0) rotate(-1.4deg);
}

.contact-cta__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: sepia(0.22) saturate(0.68) contrast(0.9) brightness(1.03);
  transform: scale(1.08);
  animation: contact-image-breathe 7600ms ease-in-out infinite alternate;
}

.contact-cta__marquee {
  position: absolute;
  right: -10vw;
  bottom: clamp(34px, 8vh, 80px);
  left: -10vw;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: rgba(23, 21, 18, 0.1);
  white-space: nowrap;
  transform: rotate(-1.2deg);
}

.contact-cta__marquee span {
  flex: 0 0 auto;
  padding-right: 0.5em;
  font-size: clamp(3rem, 10vw, 10rem);
  font-weight: 600;
  text-transform: uppercase;
  animation: service-marquee 22s linear infinite;
}

.contact-cta__actions {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: end;
  gap: clamp(24px, 4vw, 64px);
}

.contact-cta__actions p {
  max-width: 520px;
  margin: 0;
  color: rgba(23, 21, 18, 0.72);
  font-size: clamp(1rem, 1.65vw, 1.8rem);
  font-weight: 600;
  line-height: 1.08;
}

.contact-cta__actions a {
  position: relative;
  color: var(--ink);
  font-size: clamp(0.74rem, 0.95vw, 0.86rem);
  font-weight: 700;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.contact-cta__actions a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 320ms ease;
}

.contact-cta__actions a:hover,
.contact-cta__actions a:focus-visible {
  color: rgba(23, 21, 18, 0.52);
}

.contact-cta__actions a:hover::after,
.contact-cta__actions a:focus-visible::after {
  transform: scaleX(1);
}

body.is-contact .site-header {
  background: transparent;
  border-bottom-color: transparent;
  color: rgba(244, 240, 232, 0.88);
}

body.is-contact .logo-subtitle {
  color: rgba(244, 240, 232, 0.38);
}

body.is-contact .nav-links {
  color: rgba(244, 240, 232, 0.58);
}

body.is-contact .nav-links a.is-current {
  color: rgba(244, 240, 232, 0.96);
}

body.is-contact-form .site-header {
  color: var(--ink);
}

body.is-contact-form .logo-subtitle {
  color: rgba(23, 21, 18, 0.46);
}

body.is-contact-form .nav-links {
  color: rgba(23, 21, 18, 0.66);
}

body.is-contact-form .nav-links a.is-current {
  color: var(--ink);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(220px, 0.7fr) minmax(260px, 0.9fr);
  align-items: end;
  gap: clamp(22px, 4vw, 72px);
  min-height: clamp(360px, 52vh, 560px);
  padding: clamp(42px, 7vh, 82px) clamp(28px, 6vw, 88px);
  overflow: hidden;
  border-top: 1px solid rgba(23, 21, 18, 0.12);
  background: var(--paper);
}

.footer-fill-title {
  position: absolute;
  top: 47%;
  left: 50%;
  z-index: 0;
  width: min(92vw, 1840px);
  color: transparent;
  font-size: clamp(4.4rem, 10.6vw, 13.2rem);
  font-weight: 800;
  line-height: 0.8;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(23, 21, 18, 0.14);
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

.footer-mark {
  position: absolute;
  top: 49%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: clamp(74px, 8vw, 132px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(23, 21, 18, 0.13);
  border-radius: 50%;
  color: rgba(23, 21, 18, 0.18);
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: 800;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.footer-links,
.site-footer p,
.footer-credit {
  position: relative;
  z-index: 2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px clamp(18px, 2.4vw, 34px);
}

.footer-links a,
.site-footer p,
.footer-credit {
  margin: 0;
  color: rgba(23, 21, 18, 0.64);
  font-size: clamp(0.72rem, 0.9vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-links a,
.footer-credit {
  transition: color 200ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-credit:hover,
.footer-credit:focus-visible {
  color: var(--ink);
}

.site-footer p {
  justify-self: center;
  text-align: center;
}

.footer-credit {
  justify-self: end;
}

/* ─── Contact Form Page ─────────────────────────────────── */

.cfp-page {
  position: fixed;
  inset: 0;
  z-index: 3;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 21, 18, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.62), transparent 28%),
    linear-gradient(135deg, rgba(244, 240, 232, 0.98), rgba(229, 221, 207, 0.92));
  background-size: 82px 82px, 82px 82px, auto, auto;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 520ms ease, visibility 0ms linear 520ms;
}

.cfp-page::before,
.cfp-page::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.cfp-page::before {
  background:
    linear-gradient(90deg, rgba(244, 240, 232, 0.74) 0%, rgba(244, 240, 232, 0.52) 42%, rgba(244, 240, 232, 0.2) 100%),
    linear-gradient(180deg, rgba(244, 240, 232, 0.78), rgba(244, 240, 232, 0.34));
  opacity: 1;
  mix-blend-mode: normal;
}

.cfp-page::after {
  background:
    linear-gradient(90deg, rgba(244, 240, 232, 0.9) 0%, rgba(244, 240, 232, 0.7) 38%, rgba(244, 240, 232, 0.24) 78%),
    linear-gradient(180deg, rgba(244, 240, 232, 0.88), transparent 36%, rgba(244, 240, 232, 0.72));
}

body.is-contact-form .cfp-page {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 520ms ease, visibility 0ms;
}

/* Left: photo slideshow */

.cfp-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  overflow: hidden;
  opacity: 0.34;
  pointer-events: none;
  filter: grayscale(0.22) sepia(0.18) contrast(0.88) brightness(1.12);
}

@keyframes cfp-photo-show {
  0% { opacity: 0; }
  5% { opacity: 1; }
  16.67% { opacity: 1; }
  22% { opacity: 0; }
  100% { opacity: 0; }
}

.cfp-slide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.08);
  animation: cfp-photo-show 30s infinite, contact-photo-drift 9000ms ease-in-out infinite alternate;
}

.cfp-slide__img:nth-child(1) { animation-delay: 0s; }
.cfp-slide__img:nth-child(2) { animation-delay: -25s; }
.cfp-slide__img:nth-child(3) { animation-delay: -20s; }
.cfp-slide__img:nth-child(4) { animation-delay: -15s; }
.cfp-slide__img:nth-child(5) { animation-delay: -10s; }
.cfp-slide__img:nth-child(6) { animation-delay: -5s; }

/* Right: scrollable content panel */

.cfp-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  background: transparent;
  scrollbar-width: thin;
  overscroll-behavior: contain;
}

.cfp-content__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
  padding: calc(var(--header-height) + clamp(18px, 3vh, 32px)) 0 clamp(12px, 2vh, 24px);
  flex-shrink: 0;
}

.cfp-back {
  color: rgba(23, 21, 18, 0.46);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 220ms ease;
}

.cfp-back:hover {
  color: var(--ink);
}

.cfp-content__brand {
  color: rgba(23, 21, 18, 0.38);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cfp-content__body {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 760px);
  gap: clamp(48px, 8vw, 148px);
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(22px, 3.4vh, 44px) 0 clamp(58px, 8vh, 104px);
  align-content: start;
  align-items: start;
}

/* Brand mark */

.cfp-mark {
  display: grid;
  width: clamp(62px, 6vw, 104px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(23, 21, 18, 0.14);
  border-radius: 50%;
  color: rgba(23, 21, 18, 0.2);
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
  font-weight: 600;
  margin-bottom: clamp(8px, 2vh, 24px);
}

/* Contact info */

.cfp-intro {
  position: sticky;
  top: calc(var(--header-height) + clamp(20px, 3vh, 42px));
  display: grid;
  gap: clamp(20px, 3vh, 34px);
  min-width: 0;
}

.cfp-touch {
  display: grid;
  gap: clamp(16px, 2.4vh, 28px);
  align-content: start;
}

.cfp-touch__title {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(3rem, 5.4vw, 6.6rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  color: var(--ink);
  text-shadow: none;
}

.cfp-touch__lead {
  max-width: 360px;
  margin: 0;
  color: rgba(23, 21, 18, 0.68);
  font-size: clamp(0.95rem, 1.08vw, 1.08rem);
  font-weight: 550;
  line-height: 1.45;
}

.cfp-touch__links {
  display: grid;
  gap: 8px;
}

.cfp-touch__links a {
  color: rgba(23, 21, 18, 0.62);
  font-size: clamp(0.92rem, 1.08vw, 1.05rem);
  font-weight: 650;
  overflow-wrap: anywhere;
  transition: color 200ms ease;
}

.cfp-touch__links a:hover {
  color: var(--ink);
}

.cfp-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 360px;
}

.cfp-cues span {
  padding: 8px 10px;
  border: 1px solid rgba(23, 21, 18, 0.12);
  color: rgba(23, 21, 18, 0.5);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cfp-progress {
  display: grid;
  gap: 9px;
  max-width: 100%;
  padding-top: clamp(8px, 1.5vh, 18px);
}

.cfp-progress__label {
  color: rgba(23, 21, 18, 0.4);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cfp-progress__track {
  display: block;
  height: 2px;
  overflow: hidden;
  background: rgba(23, 21, 18, 0.1);
}

.cfp-progress__track span {
  display: block;
  width: var(--contact-progress, 0%);
  height: 100%;
  background: var(--ink);
  transition: width 280ms ease;
}

/* Form */

.cfp-form {
  position: relative;
  display: grid;
  gap: clamp(16px, 2.2vh, 24px);
  width: 100%;
  align-content: start;
  overflow: hidden;
  padding: clamp(20px, 2.6vw, 36px);
  border: 1px solid rgba(23, 21, 18, 0.1);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.94), rgba(235, 226, 211, 0.9)),
    var(--paper);
  box-shadow:
    0 28px 76px rgba(23, 21, 18, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.42) inset;
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.cfp-form::before {
  display: none;
}

.cfp-section {
  position: relative;
  display: grid;
  gap: clamp(16px, 2vh, 24px);
  padding: clamp(20px, 2.8vh, 30px) 0 clamp(22px, 3vh, 34px);
  border-top: 1px solid rgba(23, 21, 18, 0.12);
  background: transparent;
  box-shadow: none;
  z-index: 1;
}

.cfp-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.cfp-section__head {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 12px;
  padding-bottom: 2px;
  border-bottom: 0;
}

.cfp-section__num {
  display: inline-grid;
  width: auto;
  height: auto;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: rgba(23, 21, 18, 0.36);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cfp-section__title {
  color: var(--ink);
  font-size: clamp(1.16rem, 1.55vw, 1.52rem);
  font-weight: 750;
  line-height: 1;
}

.cfp-section__fields {
  display: grid;
  gap: clamp(16px, 2vh, 24px);
}

.cfp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}

.cfp-field {
  display: grid;
  gap: 7px;
}

.cfp-label {
  color: rgba(23, 21, 18, 0.54);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cfp-label abbr {
  text-decoration: none;
  color: rgba(23, 21, 18, 0.32);
}

.cfp-field input,
.cfp-field textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(23, 21, 18, 0.18);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(0.95rem, 1.05vw, 1.04rem);
  font-weight: 600;
  outline: none;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

.cfp-field input::placeholder,
.cfp-field textarea::placeholder {
  color: rgba(23, 21, 18, 0.34);
}

.cfp-field input:focus,
.cfp-field textarea:focus {
  border-bottom-color: rgba(23, 21, 18, 0.74);
  background: transparent;
}

.cfp-field input:invalid:not(:placeholder-shown),
.cfp-field textarea:invalid:not(:placeholder-shown) {
  border-bottom-color: rgba(148, 52, 37, 0.62);
}

.cfp-field.is-invalid .cfp-label {
  color: rgba(148, 52, 37, 0.82);
}

.cfp-field.is-invalid input,
.cfp-field.is-invalid textarea {
  border-bottom-color: rgba(148, 52, 37, 0.82);
}

.cfp-field textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.48;
}

.cfp-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 8px;
}

.cfp-chip {
  display: block;
}

.cfp-chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.cfp-chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(23, 21, 18, 0.13);
  border-radius: 0;
  background: transparent;
  color: rgba(23, 21, 18, 0.68);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.16;
  text-align: center;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    transform 200ms ease;
}

.cfp-chip:hover span {
  border-color: rgba(23, 21, 18, 0.28);
  background: rgba(244, 240, 232, 0.52);
  color: var(--ink);
  transform: translateY(-1px);
}

.cfp-chip input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: none;
}

.cfp-chip input:focus-visible + span {
  outline: 2px solid rgba(23, 21, 18, 0.26);
  outline-offset: 3px;
}

.cfp-field.is-invalid .cfp-chips {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(148, 52, 37, 0.62);
}

.cfp-select-wrap {
  position: relative;
}

.cfp-select-wrap::after {
  position: absolute;
  top: 50%;
  right: 2px;
  width: 7px;
  height: 7px;
  border-right: 1px solid rgba(23, 21, 18, 0.52);
  border-bottom: 1px solid rgba(23, 21, 18, 0.52);
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.cfp-select-wrap select {
  width: 100%;
  padding: 13px 24px 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 21, 18, 0.18);
  border-radius: 0;
  appearance: none;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(0.95rem, 1.05vw, 1.04rem);
  font-weight: 600;
  outline: none;
}

.cfp-select-wrap select:focus {
  border-bottom-color: rgba(23, 21, 18, 0.74);
  background: transparent;
  box-shadow: none;
}

.cfp-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  bottom: 0;
  z-index: 2;
  margin-top: 4px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(23, 21, 18, 0.12);
  background: linear-gradient(180deg, rgba(235, 226, 210, 0), rgba(235, 226, 210, 0.94) 38%);
}

.cfp-form__note {
  margin: 0;
  color: rgba(23, 21, 18, 0.34);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cfp-form__note abbr {
  text-decoration: none;
}

.cfp-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  min-width: 220px;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
  box-shadow: none;
}

.cfp-submit:hover {
  border-color: rgba(23, 21, 18, 0.72);
  background: rgba(23, 21, 18, 0.82);
  transform: translateY(-1px);
}

.cfp-submit__arrow {
  transition: transform 220ms ease;
}

.cfp-submit:hover .cfp-submit__arrow {
  transform: translateX(4px);
}

.cfp-form__status {
  min-height: 1.2em;
  margin: -4px 0 0;
  padding-left: 2px;
  color: rgba(23, 21, 18, 0.5);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.45;
}

.cfp-form__status.is-error {
  color: rgba(148, 52, 37, 0.86);
}

.cfp-form__status.is-success {
  color: rgba(56, 91, 62, 0.9);
}


.rail-dot {
  position: relative;
  width: 34px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.rail-dot::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 1px;
  content: "";
  transform: translateY(-50%);
  background: rgba(23, 21, 18, 0.32);
  transition:
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 240ms ease;
}

.rail-dot::after {
  position: absolute;
  top: 50%;
  left: 22px;
  color: rgba(23, 21, 18, 0.44);
  content: attr(data-index);
  transform: translate3d(6px, -50%, 0);
  opacity: 0;
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1;
  transition:
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.rail-dot.is-active::before {
  width: 28px;
  background: var(--ink);
}

.rail-dot.is-active::after,
.rail-dot:hover::after,
.rail-dot:focus-visible::after {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.rail-dot:hover::before,
.rail-dot:focus-visible::before {
  width: 24px;
  background: rgba(23, 21, 18, 0.72);
}

@keyframes meta-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes intro-load {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes title-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 105%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes active-breath {
  from {
    transform: translate3d(var(--image-shift, 0px), 0, 0) scale(var(--image-scale, 1.04));
  }

  to {
    transform: translate3d(var(--image-shift, 0px), 0, 0) scale(calc(var(--image-scale, 1.04) + 0.035));
  }
}

@keyframes service-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes contact-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -0.04em, 0);
  }
}

@keyframes contact-image-breathe {
  from {
    transform: scale(1.08) translate3d(-1.4%, 0, 0);
  }

  to {
    transform: scale(1.16) translate3d(1.4%, 0, 0);
  }
}

@keyframes contact-photo-drift {
  from {
    transform: scale(1.08) translate3d(-1.2%, 0, 0);
  }

  to {
    transform: scale(1.15) translate3d(1.2%, 0, 0);
  }
}

@keyframes footer-pulse {
  from {
    opacity: 0.38;
    transform: translate(-50%, -50%) scale(0.94);
  }

  to {
    opacity: 0.78;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  /* ── Header ── */
  /* Remove transform so position:fixed children anchor to viewport, not header */
  .site-header {
    z-index: 310;
    height: var(--header-height);
    padding: 0 20px;
    align-items: center;
    flex-wrap: nowrap;
    transform: none !important;
  }

  /* ── Hamburger button — position: fixed indépendant ── */
  .nav-toggle {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 10px);
    right: 20px;
    z-index: 400;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(23,21,18,0.12);
    transition: background 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
  }

  body.is-nav-ready .nav-toggle {
    opacity: 1;
  }

  .nav-toggle__bar {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 360ms cubic-bezier(0.4,0,0.2,1), background 280ms ease;
    transform-origin: center;
  }

  body.is-nav-open .nav-toggle {
    z-index: 9001;
    background: rgba(244,240,232,0.12);
    border-color: rgba(244,240,232,0.2);
    box-shadow: none;
  }

  body.is-nav-open .site-header {
    background: var(--ink);
    border-bottom-color: transparent;
    color: var(--paper);
  }

  body.is-nav-open .brand .logo-word,
  body.is-nav-open .brand .logo-subtitle { color: var(--paper); }

  body.is-nav-open .nav-toggle__bar { background: var(--paper); }
  body.is-nav-open .nav-toggle__bar:first-child { transform: translateY(3.5px) rotate(45deg); }
  body.is-nav-open .nav-toggle__bar:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

  /* ── Nav overlay ── */
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0;
    padding: 0 24px max(env(safe-area-inset-bottom), 48px);
    background: var(--ink);
    font-size: 1rem;
    max-width: 100%;
    flex-wrap: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 300ms ease, transform 300ms ease;
  }

  body.is-nav-open .nav-links {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links::before {
    content: "Runes";
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(244,240,232,0.35);
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(244,240,232,0.1);
    color: var(--paper);
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0.85;
  }

  .nav-links a::after {
    content: "→";
    font-size: 0.38em;
    font-weight: 400;
    opacity: 0.45;
    letter-spacing: 0;
    position: static;
    background: none;
    height: auto;
    transform: none;
    transition: none;
  }

  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a.is-current { opacity: 1; }
  .nav-mobile-only { display: flex; }

  .slide {
    min-height: 0;
  }

  .slide img {
    width: 100%;
    height: 100%;
  }

  .project-copy {
    display: none;
  }

  .cursor {
    display: none;
  }

  .project-meta {
    width: 1px;
    height: 1px;
  }

  .progress {
    right: 10px;
    height: 20vh;
  }

  .project-card {
    top: 50%;
    right: 0;
    bottom: auto;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    width: min(84vw, 340px);
    min-height: 390px;
    padding: 28px 24px;
    transform: translate3d(calc(100% - 12px), -50%, 0);
  }

  .project-card:hover,
  .project-card:focus-within,
  .project-card:focus-visible {
    width: min(84vw, 340px);
    min-height: 390px;
    border-radius: 2px;
    padding: 24px;
    transform: translate3d(0, -50%, 0);
  }

  .project-card h2 {
    font-size: clamp(1rem, 6vw, 2rem);
  }

  .project-card p {
    grid-column: 1 / -1;
    max-width: 72vw;
  }

  .project-card__top span:last-child {
    display: none;
  }

  .project-card__bottom {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .news-shell {
    gap: 44px;
    padding: 74px 18px 76px;
  }

  .news-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-hero h1 {
    font-size: clamp(4.1rem, 24vw, 7.2rem);
    line-height: 0.82;
  }

  .news-hero span {
    justify-self: start;
    max-width: 92vw;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .news-card--wide {
    grid-column: auto;
  }

  .news-card__image,
  .news-card--wide .news-card__image {
    aspect-ratio: 1.08;
  }

  .news-card h2 {
    font-size: clamp(1.12rem, 6vw, 1.8rem);
  }

  .news-article-track {
    grid-auto-columns: minmax(230px, 78vw);
  }

  .news-article-track strong {
    font-size: clamp(1rem, 5vw, 1.28rem);
  }

  .news-article {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding-top: 64px;
  }

  .news-article__media {
    position: relative;
    top: auto;
    height: auto;
    aspect-ratio: 0.92;
  }

  .news-article h2 {
    font-size: clamp(2.2rem, 12vw, 4.1rem);
    line-height: 0.9;
  }

  .news-intro {
    font-size: clamp(1rem, 5vw, 1.22rem);
  }

  .news-article p {
    font-size: 0.98rem;
  }

  .news-cta {
    grid-template-columns: 1fr;
    min-height: 42vh;
  }

  .news-cta h2 {
    font-size: clamp(3rem, 16vw, 5.8rem);
  }

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

  .project-rail {
    left: 14px;
    gap: 8px;
  }

  .agency-shell {
    gap: 68px;
    padding: calc(var(--header-height) + 34px) 22px 72px;
  }

  .agency-kicker {
    top: calc(var(--header-height) + 18px);
    left: 22px;
  }

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

  .agency-manifesto {
    gap: 22px;
    padding-top: 0;
  }

  .agency-manifesto p {
    font-size: clamp(1.25rem, 6.4vw, 1.9rem);
    line-height: 1.06;
  }

  .agency-date {
    justify-self: start;
    margin-top: 0;
  }

  .agency-portrait {
    grid-column: 1;
    grid-row: auto;
    width: min(100%, 430px);
    aspect-ratio: 4 / 5;
  }

  .agency-expertise {
    gap: 58px;
  }

  .agency-expertise-main {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .agency-text-block,
  .agency-text-block--left,
  .agency-text-block--right,
  .agency-text-block--wide {
    grid-column: 1;
    position: static;
    max-width: 520px;
    padding-top: 0;
    text-align: left;
    transform: none;
  }

  .agency-text-block h2 {
    font-size: clamp(1.34rem, 8vw, 2rem);
  }

  .agency-text-block p {
    font-size: 1rem;
    line-height: 1.42;
  }

  .team-section {
    gap: 46px;
    padding-bottom: 82px;
  }

  .team-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .team-heading h2 {
    font-size: clamp(1.9rem, 10vw, 3.35rem);
  }

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

  .team-member {
    min-height: auto;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .team-member:last-child {
    border-bottom: 0;
  }

  .team-member h3 {
    margin-top: 24px;
  }

  .team-member__photo {
    right: 0;
    bottom: 22px;
    width: min(48%, 180px);
    opacity: 0.16;
    transform: none;
  }

  .team-member:hover,
  .team-member:focus-within {
    background: transparent;
  }

  .team-member:hover::after,
  .team-member:focus-within::after {
    opacity: 0;
  }

  .team-member:hover span,
  .team-member:hover small,
  .team-member:hover h3,
  .team-member:hover p,
  .team-member:focus-within span,
  .team-member:focus-within small,
  .team-member:focus-within h3,
  .team-member:focus-within p {
    color: inherit;
  }

  .services-section {
    gap: 44px;
    padding-bottom: 90px;
  }

  .services-heading,
  .service-flow__details {
    grid-template-columns: 1fr;
  }

  .services-heading {
    gap: 0;
  }

  .service-flow__line {
    grid-template-columns: 42px 1fr;
    min-height: 82px;
    padding: 0;
  }

  .service-flow__line h3 {
    font-size: clamp(1.85rem, 10vw, 3.55rem);
  }

  .service-flow__marquee span {
    font-size: clamp(2rem, 11vw, 3.8rem);
  }

  .service-flow__details {
    gap: 20px;
  }

  .service-flow__details p,
  .service-flow__details .service-list {
    grid-column: 1;
  }

  .service-flow__details p {
    font-size: 1rem;
    line-height: 1.42;
  }

  .service-flow__item:hover .service-flow__details,
  .service-flow__item:focus-within .service-flow__details {
    max-height: 1100px;
    padding-bottom: 32px;
  }

  .service-flow__details {
    max-height: none;
    padding-bottom: 32px;
    opacity: 1;
    transform: none;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-list li {
    min-height: auto;
    padding: 15px 0;
    background: transparent;
    border-top: 1px solid var(--line);
  }

  .contact-scene {
    min-height: 52vh;
    padding: 52px 0 28px;
  }

  .contact-scene__title {
    font-size: clamp(3.4rem, 19vw, 6rem);
  }

  .contact-form-panel {
    padding: 46px 0 60px;
  }

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

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

  .cfp-page {
    display: block;
    overflow-y: auto;
  }

  .cfp-slides {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.22;
    filter: grayscale(0.22) sepia(0.18) contrast(0.88) brightness(1.12);
    mask-image: none;
  }

  .cfp-content {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .cfp-content__top {
    width: min(100% - 36px, 680px);
    padding: calc(var(--header-height) + 18px) 0 8px;
  }

  .cfp-content__body {
    grid-template-columns: 1fr;
    gap: 32px;
    width: min(100% - 36px, 680px);
    padding: 24px 0 58px;
  }

  .cfp-intro {
    position: relative;
    top: auto;
    gap: 18px;
  }

  .cfp-mark {
    width: 58px;
  }

  .cfp-touch__title {
    max-width: 12ch;
    font-size: clamp(2.25rem, 13vw, 4.2rem);
  }

  .cfp-touch__lead {
    max-width: 28rem;
  }

  .cfp-row {
    grid-template-columns: 1fr;
  }

  .cfp-section {
    padding: 22px 18px;
  }

  .cfp-form {
    padding: 18px;
  }

  .cfp-section__head {
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
  }

  .cfp-chips {
    grid-template-columns: 1fr;
  }

  .cfp-form__footer {
    align-items: stretch;
    flex-direction: column;
    position: static;
  }

  .cfp-submit {
    justify-content: space-between;
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    min-height: 340px;
  }

  .footer-fill-title {
    top: 48%;
    max-width: 160vw;
    font-size: clamp(4.3rem, 21vw, 7.4rem);
  }

  .footer-mark {
    top: 46%;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .site-footer p,
  .footer-credit {
    justify-self: start;
  }

  .agency-watermark {
    bottom: 24px;
    font-size: clamp(0.82rem, 5.5vw, 1.35rem);
    opacity: calc((1 - var(--agency-progress, 0)) * 0.36);
  }

  .rail-dot {
    width: 22px;
  }

  .rail-dot::after {
    display: none;
  }

  .rail-dot.is-active::before {
    width: 18px;
  }
}

/* ══════════════════════════════════════════════════════
   MOBILE PREMIUM  ≤ 639px
══════════════════════════════════════════════════════ */

@media (max-width: 639px) {

  /* ── Variables ── */
  :root {
    --header-height: 64px;
    --gutter: 20px;
  }

  /* ── Cursor ── */
  .cursor { display: none; }

  /* ══ PROJETS ══════════════════════════════════════ */

  .project-copy { display: none; }

  .project-meta {
    position: absolute;
    bottom: max(env(safe-area-inset-bottom), 28px);
    left: var(--gutter);
    right: auto;
    display: flex;
    align-items: baseline;
    gap: 10px;
    z-index: 8;
    pointer-events: none;
  }

  .project-meta h1 {
    font-size: clamp(1.05rem, 5.5vw, 1.4rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
    text-shadow: 0 1px 12px rgba(0,0,0,0.38);
  }

  [data-count] {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.6);
  }

  .slide { min-height: 0; }
  .slide img { width: 100%; height: 100%; object-fit: cover; }

  .progress {
    right: 14px;
    height: 22vh;
    width: 2px;
  }

  .project-rail {
    left: 50%;
    bottom: max(env(safe-area-inset-bottom), 14px);
    transform: translateX(-50%);
    flex-direction: row;
    gap: 6px;
  }

  .rail-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }

  .rail-dot::after { display: none; }

  .rail-dot.is-active::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
  }

  /* Project card — slide-in from right */
  .project-card {
    top: 50%;
    right: 0;
    bottom: auto;
    width: min(88vw, 340px);
    min-height: 0;
    padding: 24px 22px;
    border-radius: 3px 0 0 3px;
    transform: translate3d(calc(100% - 10px), -50%, 0);
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-card:hover,
  .project-card:focus-within,
  .project-card:focus-visible {
    width: min(88vw, 340px);
    min-height: 0;
    border-radius: 3px 0 0 3px;
    padding: 24px 22px;
    transform: translate3d(0, -50%, 0);
  }

  .project-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .project-card h2 {
    font-size: clamp(1.4rem, 7vw, 1.9rem);
    line-height: 1;
    margin: 4px 0;
  }

  .project-card p {
    font-size: 0.88rem;
    line-height: 1.4;
    color: var(--muted);
    max-width: 100%;
    grid-column: 1;
  }

  .project-card__bottom {
    grid-column: 1;
    justify-self: start;
    margin-top: 4px;
  }

  .project-card__mark { display: none; }

  /* ══ NEWS ══════════════════════════════════════════ */

  .news-shell {
    padding: 80px var(--gutter) 64px;
    gap: 48px;
  }

  .news-hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news-hero p { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
  .news-hero h1 { font-size: clamp(4rem, 22vw, 6.5rem); line-height: 0.85; }
  .news-hero span { font-size: clamp(0.9rem, 4.5vw, 1.1rem); max-width: 100%; }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-card--wide { grid-column: auto; }

  .news-card {
    gap: 14px;
    padding: 0;
    border-radius: 0;
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }

  .news-card__image,
  .news-card--wide .news-card__image {
    aspect-ratio: 16/9;
    border-radius: 3px;
    overflow: hidden;
  }

  .news-card span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
  .news-card h2 { font-size: clamp(1.1rem, 5.8vw, 1.5rem); line-height: 1.18; }

  .news-article {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding-top: calc(var(--header-height) + 12px);
  }

  .news-article__media {
    position: relative;
    top: auto;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 0;
    margin: 0 calc(-1 * var(--gutter));
  }

  .news-article__content {
    padding: 28px 0 60px;
  }

  .news-article h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
    line-height: 0.92;
  }

  .news-intro { font-size: clamp(0.95rem, 4.8vw, 1.15rem); }
  .news-article p { font-size: 0.95rem; line-height: 1.52; }
  .news-article section h3 { font-size: clamp(1.1rem, 5.5vw, 1.4rem); }

  .news-article-track {
    grid-auto-columns: 78vw;
  }

  .news-cta {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 52px var(--gutter);
    gap: 20px;
  }

  .news-cta p { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
  .news-cta h2 { font-size: clamp(2.6rem, 14vw, 4.5rem); }
  .news-cta a { align-self: flex-start; }

  /* ══ AGENCE ════════════════════════════════════════ */

  .agency-shell {
    gap: 56px;
    padding: calc(var(--header-height) + 28px) var(--gutter) 64px;
  }

  .agency-kicker {
    top: calc(var(--header-height) + 16px);
    left: var(--gutter);
    font-size: 0.68rem;
  }

  .agency-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .agency-manifesto { gap: 20px; padding-top: 0; }
  .agency-manifesto p { font-size: clamp(1.3rem, 6.8vw, 2.1rem); line-height: 1.08; }
  .agency-date { justify-self: start; }

  .agency-portrait {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3/4;
    border-radius: 2px;
    overflow: hidden;
  }

  .agency-expertise { gap: 48px; }
  .agency-expertise-main { grid-template-columns: 1fr; gap: 44px; }

  .agency-text-block,
  .agency-text-block--left,
  .agency-text-block--right,
  .agency-text-block--wide {
    grid-column: 1;
    position: static;
    max-width: 100%;
    padding: 0;
    text-align: left;
    transform: none;
  }

  .agency-text-block h2 { font-size: clamp(1.25rem, 7vw, 1.9rem); margin-bottom: 10px; }
  .agency-text-block p { font-size: 0.95rem; line-height: 1.48; }

  .team-section { gap: 36px; padding-bottom: 64px; }

  .team-heading { grid-template-columns: 1fr; gap: 14px; }
  .team-heading p { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
  .team-heading h2 { font-size: clamp(1.8rem, 10vw, 3rem); }

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

  .team-member {
    position: relative;
    min-height: auto;
    padding: 24px 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }

  .team-member:last-child { border-bottom: 0; }

  .team-member__photo {
    position: absolute;
    right: 0;
    bottom: 16px;
    width: min(44%, 160px);
    height: auto;
    object-fit: cover;
    opacity: 0.13;
    transform: none;
    border-radius: 2px;
  }

  .team-member span { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.08em; }
  .team-member h3 { font-size: clamp(1.25rem, 6.5vw, 1.8rem); margin-top: 16px; }
  .team-member p { font-size: 0.92rem; max-width: 65%; }
  .team-member small { font-size: 0.68rem; letter-spacing: 0.1em; }

  .team-member:hover,
  .team-member:focus-within {
    background: transparent;
  }

  /* ══ MÉTHODE ═══════════════════════════════════════ */

  .method-section { overflow: hidden; }

  /* method-hero */
  .method-hero {
    position: relative;
    height: 100svh;
    overflow: hidden;
  }

  .method-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 38%;
  }

  .method-hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 var(--gutter) max(env(safe-area-inset-bottom), 40px);
    background: linear-gradient(to top, rgba(23,21,18,0.72) 0%, transparent 55%);
    color: #fff;
  }

  .method-hero__content p {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.65;
    margin: 0 0 10px;
  }

  .method-hero__content h1 {
    font-size: clamp(3.8rem, 20vw, 6rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #fff;
  }

  .method-hero__content span {
    font-size: clamp(0.88rem, 4.5vw, 1.1rem);
    opacity: 0.72;
    line-height: 1.35;
  }

  /* method-intro */
  .method-intro {
    height: auto;
    min-height: auto;
  }

  .method-intro__stage {
    position: static;
    height: auto;
    padding: 52px var(--gutter) 56px;
    grid-template-columns: 1fr;
  }

  .method-intro__kicker {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .method-intro__manifesto { gap: 16px; }
  .method-intro__manifesto p { font-size: clamp(1.2rem, 6vw, 1.75rem); line-height: 1.1; }
  .method-intro__date { justify-self: start; margin-top: 24px; }

  /* ms-steps */
  .ms-steps { height: calc(6 * 100svh); margin-top: 0; }

  .ms-step { grid-template-columns: 1fr; }

  .ms-step__media {
    height: 48vw;
    min-height: 200px;
    max-height: 280px;
  }

  .ms-step__panel { padding: 20px var(--gutter) 32px; }

  .ms-step__header h3 { font-size: clamp(1.5rem, 8vw, 2.2rem); }

  .ms-step__body { display: none; }

  .ms-step__text {
    font-size: 0.92rem;
    line-height: 1.52;
    margin-top: 12px;
  }

  /* method-services */
  .method-services {
    padding: 52px var(--gutter) 64px;
    margin-bottom: 0;
  }

  .method-services__head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
  }

  .method-services__head p { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
  .method-services__head h2 { font-size: clamp(1.8rem, 10vw, 3rem); }

  .method-flow { gap: 0; }

  .method-flow__item {
    grid-template-columns: 32px 1fr;
    min-height: auto;
    padding: 20px 0;
    gap: 0 14px;
    border-top: 1px solid var(--line);
  }

  .method-flow__num {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    padding-top: 5px;
    grid-row: 1;
  }

  .method-flow__item h3 {
    font-size: clamp(1.35rem, 7.5vw, 2rem);
    line-height: 1.1;
    grid-column: 2;
  }

  .method-flow__item p {
    font-size: 0.9rem;
    grid-column: 2;
    max-width: 100%;
    color: var(--muted);
    margin-top: 6px;
  }

  .method-flow__photo {
    position: relative;
    inset: auto;
    grid-column: 2;
    width: min(70vw, 260px);
    margin-top: 14px;
    opacity: 1;
    transform: none;
    border-radius: 2px;
    overflow: hidden;
  }

  .method-flow__photo--b { display: none; }
  .method-flow__item::before { display: none; }

  /* ms-accomp (accordion) */
  .ms-accomp {
    padding: 52px var(--gutter) 64px;
  }

  .ms-accomp::before { inset: 12px; }

  .ms-accomp__head {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 14px;
  }

  .ms-accomp__head h2 {
    font-size: clamp(2rem, 11vw, 3.5rem);
    max-width: 100% !important;
  }

  .ms-accomp__right { text-align: left; }
  .ms-accomp__intro { font-size: 0.92rem; max-width: 100%; margin-bottom: 28px; }

  .ms-accomp__btn {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 18px 0;
  }

  .ms-accomp__name { font-size: clamp(1.1rem, 5.8vw, 1.6rem); }
  .ms-accomp__tag { display: none; }
  .ms-accomp__body p { padding: 0 0 16px; font-size: 0.92rem; }

  .ms-accomp__cta {
    display: block;
    margin-top: 32px;
    padding: 18px 22px;
    background: var(--ink);
    color: var(--paper);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    border-radius: 3px;
    text-align: center;
  }

  .ms-accomp__after { display: none; }

  /* ══ CONTACT CTA ═══════════════════════════════════ */

  .contact-cta {
    padding: 52px var(--gutter) 40px;
    min-height: auto;
  }

  .contact-cta__scene { min-height: auto; padding: 32px 0 28px; }

  .contact-cta h2 {
    font-size: clamp(4rem, 22vw, 7rem);
    line-height: 0.82;
    flex-direction: column;
    gap: 0;
  }

  .contact-cta__eyebrow { font-size: 0.68rem; }

  .contact-cta__frame {
    width: min(60vw, 220px);
    height: auto;
    aspect-ratio: 3/4;
  }

  .contact-cta__marquee { font-size: clamp(0.7rem, 4vw, 0.95rem); }

  .contact-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
  }

  .contact-cta__actions p {
    font-size: 0.88rem;
    line-height: 1.42;
    max-width: 100%;
    color: var(--muted);
  }

  .contact-cta__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border: 1px solid var(--line);
    border-radius: 3px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    background: rgba(244,240,232,0.6);
    backdrop-filter: blur(8px);
  }

  /* ══ CONTACT FORM (cfp-page) ══════════════════════ */

  .cfp-page {
    display: block;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cfp-slides {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.15;
    filter: grayscale(0.3) sepia(0.2) contrast(0.85) brightness(1.1);
    mask-image: none;
  }

  .cfp-content {
    position: relative;
    z-index: 1;
    height: auto;
    min-height: 100dvh;
    overflow: visible;
  }

  .cfp-content__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: max(env(safe-area-inset-top), var(--header-height)) var(--gutter) 12px;
    box-sizing: border-box;
  }

  .cfp-back { font-size: 0.82rem; }
  .cfp-content__brand { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

  .cfp-content__body {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
    padding: 12px var(--gutter) max(env(safe-area-inset-bottom), 48px);
    box-sizing: border-box;
  }

  .cfp-intro {
    position: static;
    gap: 14px;
  }

  .cfp-mark { width: 52px; }

  .cfp-touch__title {
    font-size: clamp(2.4rem, 13vw, 3.8rem);
    max-width: 100%;
    line-height: 0.92;
  }

  .cfp-touch__lead {
    font-size: 0.92rem;
    line-height: 1.48;
    max-width: 100%;
  }

  .cfp-touch__links { flex-direction: column; gap: 6px; }
  .cfp-touch__links a { font-size: 0.88rem; }

  .cfp-cues { gap: 6px; }
  .cfp-cues span { font-size: 0.68rem; }

  .cfp-form {
    padding: 0;
    gap: 20px;
  }

  .cfp-section {
    padding: 20px 18px;
    border-radius: 4px;
  }

  .cfp-section__head {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }

  .cfp-section__num { font-size: 0.65rem; }
  .cfp-section__title { font-size: 1rem; }

  .cfp-row { grid-template-columns: 1fr; gap: 14px; }

  .cfp-chips { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cfp-chip span { font-size: 0.82rem; padding: 10px 12px; }

  .cfp-field input,
  .cfp-field textarea,
  .cfp-select-wrap select {
    font-size: 16px; /* prevent iOS zoom */
    padding: 14px 16px;
  }

  .cfp-form__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    position: static;
    padding: 0;
  }

  .cfp-submit {
    width: 100%;
    justify-content: space-between;
    padding: 18px 22px;
    font-size: 0.95rem;
    border-radius: 4px;
  }

  .cfp-form__note { font-size: 0.75rem; }

  /* ══ FOOTER ════════════════════════════════════════ */

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
    min-height: 280px;
    padding: 44px var(--gutter) max(env(safe-area-inset-bottom), 36px);
  }

  .footer-fill-title {
    top: 46%;
    font-size: clamp(3.8rem, 19vw, 6.5rem);
    letter-spacing: -0.03em;
  }

  .footer-mark { top: 44%; }

  .footer-links { flex-wrap: wrap; gap: 10px 20px; }
  .footer-links a { font-size: 0.8rem; }

  .site-footer p,
  .footer-credit { justify-self: start; font-size: 0.72rem; }

  /* ══ INTRO SCREEN ══════════════════════════════════ */

  .intro-mask .logo-word { font-size: clamp(2.2rem, 12vw, 3.5rem); }

  /* ══ AGENCY ANIMATION (frame) ════════════════════= */

  .agency-watermark {
    font-size: clamp(0.75rem, 5vw, 1.2rem);
    opacity: calc((1 - var(--agency-progress, 0)) * 0.3);
  }

  /* ══ VIEW SHUTTERS ══════════════════════════════ */
  .view-shutters span { font-size: clamp(1.2rem, 8vw, 2.4rem); }

  /* ══ SAFE AREA SPACING ══════════════════════════ */
  body.is-agency .agency-section { padding-bottom: env(safe-area-inset-bottom); }
}
