:root {
  --font-title: "Cormorant Satorium", Georgia, "Times New Roman", serif;
  --font-body: "Albert Sans Satorium", Arial, Helvetica, sans-serif;
}

/* Asset cache convention: when CSS or JS changes for production, update the
   local asset query string in every HTML file, e.g. 20260810-01, 20260810-02. */

@font-face {
  font-family: "Cormorant Satorium";
  src: url("../assets/fonts/Cormorant-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Satorium";
  src: url("../assets/fonts/Cormorant-Italic-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Albert Sans Satorium";
  src: url("../assets/fonts/AlbertSans-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Albert Sans Satorium";
  src: url("../assets/fonts/AlbertSans-Italic-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --stone: #ece7e0;
  --stone-soft: #eae5da;
  --brown: #221814;
  --brown-sotf: #534743;
  --gold: #a28a65;
  --line: #d8d1c3;
  --burgundy: #2f1416;
  --burgundy-soft: #431c1f;
  --blue-navy: #0f1121;
  --blue-navy-soft: #1e223e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--stone);
  color: var(--brown);
  font-family: var(--font-body);
  line-height: 1.55;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  padding: 20px clamp(24px, 7vw, 110px);
  color: rgba(49, 34, 29, 0.78);
  transition:
    background 300ms ease,
    border-color 300ms ease,
    backdrop-filter 300ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  background: rgba(236, 231, 224, 0.92);
  border-bottom: 1px solid rgba(216, 209, 195, 0.8);
  backdrop-filter: blur(16px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 132px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 42px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.main-nav a,
.site-footer a {
  transition: color 220ms ease, opacity 220ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  transform: none;
}

.menu-toggle,
.menu-close {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle {
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: end;
  pointer-events: auto;
}

.menu-toggle span,
.menu-close span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform 300ms ease;
}

.menu-toggle span:first-child {
  transform: translate(-50%, -4px);
}

.menu-toggle span:last-child {
  transform: translate(-50%, 4px);
}

.menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close span:first-child {
  transform: translateX(-50%) rotate(45deg);
}

.menu-close span:last-child {
  transform: translateX(-50%) rotate(-45deg);
}

.menu-toggle:focus-visible,
.menu-close:focus-visible,
.mobile-menu-nav a:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 8px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-y: auto;
  background: var(--brown);
  color: var(--stone);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 350ms ease,
    visibility 350ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  padding:
    clamp(1.25rem, 4vw, 2rem)
    clamp(1.5rem, 6vw, 3rem)
    clamp(2rem, 6vw, 3rem);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-brand {
  width: 132px;
}

.mobile-menu-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.mobile-menu-nav a {
  display: block;
  padding: clamp(1.15rem, 3.2vw, 1.8rem) 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.16);
  color: rgba(245, 240, 232, 0.74);
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 3.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.34em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition:
    color 220ms ease,
    opacity 360ms ease,
    transform 360ms ease;
}

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

.mobile-menu.is-open .mobile-menu-nav a:nth-child(1) {
  transition-delay: 70ms;
}

.mobile-menu.is-open .mobile-menu-nav a:nth-child(2) {
  transition-delay: 110ms;
}

.mobile-menu.is-open .mobile-menu-nav a:nth-child(3) {
  transition-delay: 150ms;
}

.mobile-menu.is-open .mobile-menu-nav a:nth-child(4) {
  transition-delay: 190ms;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.is-active {
  color: var(--gold);
}

.mobile-menu-footer {
  max-width: 420px;
  color: rgba(245, 240, 232, 0.62);
  font-size: 0.8rem;
  line-height: 1.5;
}

.mobile-menu-footer p {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(49, 34, 29, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 72svh;
  padding: 31vh clamp(24px, 9vw, 140px) 7vh;
  background:
    linear-gradient(180deg, rgba(236, 231, 224, 0.1) 0%, rgba(236, 231, 224, 0.94) 78%),
    linear-gradient(90deg, rgba(236, 231, 224, 0.5) 0%, rgba(236, 231, 224, 0.28) 44%, rgba(236, 231, 224, 0.06) 100%),
    url("../assets/images/hero-satorium-home.jpg");
  background-position: center top;
  background-size: cover;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 49% 0;
  background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.42), transparent 32%);
  opacity: 0.78;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(760px, 100%);
}

.hero-kicker {
  margin: 42px 0 0;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.3rem, 5.5vw, 4.8rem);
  line-height: 0.96;
}

.hero-copy {
  width: min(560px, 100%);
  margin: 30px 0 0;
  color: var(--brown-sotf);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button-outline {
  background: transparent;
  color: var(--brown);
}

.button-outline:hover {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--stone);
}

.button-dark {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--stone);
}

.button-dark:hover,
.button-black:hover {
  opacity: 0.78;
}

.button-light {
  border-color: rgba(236, 231, 224, 0.58);
  background: transparent;
  color: var(--stone);
}

.button-light:hover {
  background: var(--stone);
  color: var(--burgundy);
}

.button-black {
  border-color: var(--blue-navy);
  background: var(--blue-navy);
  color: var(--stone);
}

.section-dark {
  background: var(--brown);
  color: var(--stone);
}

.content-narrow {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
}

.method-scroll-region {
  min-height: 380svh;
  background: var(--brown);
}

.method {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: clamp(72px, 8vw, 112px) 0 clamp(64px, 7vw, 96px);
}

.method-interactive-inner {
  width: 100%;
  margin: 0 auto;
  padding-inline: clamp(24px, 7vw, 110px);
}

.method-heading {
  width: min(100%, 1000px);
  margin-inline: auto;
  text-align: center;
}

.method-heading h2 {
  max-width: 900px;
  margin: 1.5rem auto 0;
  text-align: center;
}

.method-heading .eyebrow {
  margin-bottom: 0;
}

.method-intro {
  max-width: 760px;
  margin: 2rem auto 0;
  color: rgba(236, 231, 224, 0.72);
  font-size: 0.96rem;
  text-align: center;
}

.method-display {
  max-width: 620px;
  min-height: clamp(96px, 10vw, 150px);
  margin-inline: auto;
  padding-block: clamp(1.6rem, 3vw, 2.6rem) 0;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 280ms ease,
    transform 280ms ease;
  touch-action: pan-y;
}

.method-display.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.method-display-number {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.method-display-statement {
  max-width: 980px;
  margin: 0 auto;
  color: var(--stone);
  font-family: var(--font-title);
  font-size: clamp(2.3rem, 3.6vw, 3.3rem);
  font-weight: 500;
  line-height: 1.18;
}

.method-display-details {
  margin: 1.1rem 0 0;
  color: rgba(236, 231, 224, 0.64);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.method-timeline {
  position: relative;
  margin-top: clamp(1.4rem, 3vw, 2.6rem);
  padding-top: 24px;
}

.method-line {
  position: absolute;
  top: 61px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(236, 231, 224, 0.14);
}

.method-line-progress {
  width: 0;
  height: 100%;
  background: var(--gold);
  transition: width 120ms linear;
}

.method-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
}

.method-step {
  display: grid;
  grid-template-rows: 24px 26px auto;
  min-height: 96px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--stone);
  cursor: pointer;
  font: inherit;
  opacity: 0.46;
  text-align: center;
  transition:
    color 280ms ease,
    opacity 280ms ease;
}

.method-step-number {
  display: block;
  min-height: 24px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.method-step-dot {
  align-self: center;
  justify-self: center;
  width: 7px;
  height: 7px;
  margin: 18px 0;
  border-radius: 999px;
  background: currentColor;
  transition:
    background 280ms ease,
    transform 280ms ease;
}

.method-step-label {
  display: block;
  color: rgba(236, 231, 224, 0.78);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 280ms ease;
}

.method-step.is-active {
  opacity: 1;
}

.method-step.is-past {
  opacity: 1;
}

.method-step.is-active .method-step-number,
.method-step.is-active .method-step-label {
  color: var(--stone);
}

.method-step.is-active .method-step-dot {
  background: var(--gold);
  transform: scale(1.55);
}

.method-step.is-past .method-step-dot {
  background: var(--gold);
  opacity: 1;
}

.method-step:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 8px;
}

.method-active-label {
  display: none;
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

@media (hover: hover) {
  .method-step:hover {
    opacity: 0.78;
  }

  .method-step.is-active:hover {
    opacity: 1;
  }
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 42px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 1.08;
}

.section-intro {
  width: min(760px, 100%);
  margin: 34px 0 64px;
  color: rgba(236, 231, 224, 0.72);
  font-size: 0.96rem;
}

.expertise-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--burgundy-soft);
}

.expertise-list article {
  display: grid;
  grid-template-columns: 120px minmax(220px, 0.55fr) minmax(280px, 1fr);
  gap: 44px;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid var(--burgundy-soft);
}

.expertise-list h3,
.work-grid h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.expertises {
  padding: clamp(84px, 12vw, 140px) 0;
  background: var(--stone);
}

.expertises .section-intro {
  color: var(--brown-sotf);
}

.expertise-list {
  margin-top: 52px;
  border-color: var(--line);
}

.expertise-list article {
  grid-template-columns: minmax(230px, 0.74fr) minmax(300px, 1fr);
  min-height: 132px;
  border-color: var(--line);
}

.expertise-list p {
  margin: 0;
  color: var(--brown-sotf);
  font-size: 0.9rem;
}

.expertise-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: start;
}

.expertise-entry h2 {
  max-width: 520px;
}

.expertise-entry-copy {
  max-width: 560px;
  color: var(--brown-sotf);
  font-size: 0.98rem;
}

.expertise-entry-copy p {
  margin: 0;
}

.expertise-entry-copy p + p {
  margin-top: 1.35rem;
}

.expertise-entry-list {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.18fr) minmax(0, 0.9fr);
  gap: clamp(32px, 4.5vw, 64px);
  margin-top: clamp(52px, 7vw, 88px);
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.expertise-entry-list a {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-content: start;
  min-height: clamp(150px, 16vw, 220px);
  padding: clamp(30px, 3.8vw, 44px) 0;
  color: var(--brown);
  text-decoration: none;
  transition: color 360ms ease, opacity 360ms ease;
}

.expertise-entry-list a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: clamp(20px, 2.4vw, 30px);
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.22;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-entry-title {
  max-width: 390px;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.65vw, 1.85rem);
  line-height: 1.12;
  text-wrap: balance;
  transition:
    color 360ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-entry-arrow {
  align-self: end;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 1rem;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .expertise-entry-list a:hover {
    color: var(--burgundy);
    opacity: 1;
  }

  .expertise-entry-list a:hover::after {
    opacity: 0.42;
    transform: scaleX(1);
  }

  .expertise-entry-list a:hover .expertise-entry-title {
    transform: translateY(-4px);
  }

  .expertise-entry-list a:hover .expertise-entry-arrow {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.expertise-entry-list a:focus-visible {
  color: var(--burgundy);
  outline: 0;
}

.expertise-entry-list a:focus-visible::after {
  opacity: 0.42;
  transform: scaleX(1);
}

.expertise-entry-list a:focus-visible .expertise-entry-title {
  transform: translateY(-4px);
}

.expertise-entry-list a:focus-visible .expertise-entry-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(320px, 0.95fr);
  min-height: 380px;
  padding-top: 88px;
  border-bottom: 1px solid var(--line);
  background: var(--stone-soft);
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 12vw, 155px) clamp(24px, 9vw, 140px);
}

.page-hero-copy h1 {
  max-width: 780px;
}

.page-hero-copy p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--brown-sotf);
  font-size: 0.95rem;
}

.page-hero-image {
  min-height: 380px;
  background:
    linear-gradient(180deg, rgba(236, 231, 224, 0.04), rgba(236, 231, 224, 0.5)),
    url("../assets/images/hero-architecture.png");
  background-position: center;
  background-size: cover;
}

.maison-hero-image {
  background-image:
    linear-gradient(180deg, rgba(236, 231, 224, 0.02), rgba(236, 231, 224, 0.18)),
    url("../assets/images/hero-satorium-maison.jpg");
}

.expertises-hero-image {
  background-image:
    linear-gradient(180deg, rgba(236, 231, 224, 0.04), rgba(236, 231, 224, 0.24)),
    url("../assets/images/hero-satorium-expertises.jpg");
}

.page-hero-image-soft {
  filter: saturate(0.4) brightness(1.08);
  opacity: 0.82;
}

.house-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: clamp(44px, 8vw, 140px);
  padding: clamp(80px, 11vw, 130px) clamp(24px, 17vw, 330px) clamp(70px, 9vw, 100px);
  background: var(--stone);
}

.house-intro h2 {
  max-width: 640px;
}

.house-intro p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: var(--brown-sotf);
  font-size: 1.15rem;
}

.house-intro-single {
  grid-template-columns: minmax(0, 1fr);
}

.house-intro-single h2 {
  max-width: 760px;
}

.role-story {
  position: relative;
  min-height: 280vh;
  background: var(--brown);
  color: var(--stone);
}

.house-role-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.house-role-reason {
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(6rem, 10vh, 8rem) clamp(24px, 8vw, 120px);
  background: var(--stone);
  color: var(--brown);
}

.house-role-reason h2 {
  max-width: 640px;
  margin: 0;
}

.role-sticky {
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: clamp(6rem, 10vh, 8rem) clamp(24px, 9vw, 140px);
  overflow: hidden;
}

.house-role-split .role-sticky {
  padding-right: clamp(24px, 6vw, 96px);
  padding-left: clamp(24px, 6vw, 96px);
}

.role-eyebrow {
  position: absolute;
  top: clamp(5rem, 8vh, 7rem);
  left: clamp(24px, 9vw, 140px);
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.house-role-split .role-eyebrow {
  left: clamp(24px, 6vw, 96px);
}

.role-sequences {
  position: relative;
  width: min(100%, 980px);
  min-height: clamp(430px, 52vh, 620px);
  margin: 0 auto;
}

.house-role-split .role-sequences {
  width: min(100%, 760px);
  margin-right: 0;
  margin-left: 0;
}

.role-sequence {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(24px);
  transition:
    opacity 1200ms ease,
    visibility 1200ms ease,
    transform 1400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.role-sequence.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.role-title,
.role-statement,
.role-description {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 1300ms ease,
    transform 1500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.role-sequence.is-active .role-title,
.role-sequence.is-active .role-statement,
.role-sequence.is-active .role-description {
  opacity: 1;
  transform: translateY(0);
}

.role-sequence.is-active .role-statement {
  transition-delay: 140ms;
}

.role-sequence.is-active .role-description {
  transition-delay: 260ms;
}

.role-title {
  margin: 0;
  color: var(--stone);
  font-family: var(--font-title);
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.role-statement {
  max-width: 760px;
  margin: clamp(1.75rem, 3vw, 2.4rem) 0 0;
  color: var(--stone);
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1.05;
}

.role-description {
  max-width: 640px;
  margin: clamp(1.4rem, 2vw, 1.9rem) 0 0;
  color: rgba(236, 231, 224, 0.76);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
}

.role-progress {
  position: absolute;
  top: 25%;
  right: clamp(24px, 9vw, 140px);
  bottom: 25%;
  width: 1px;
  overflow: hidden;
  background: rgba(236, 231, 224, 0.18);
}

.house-role-split .role-progress {
  right: clamp(24px, 6vw, 96px);
}

.role-progress-fill {
  display: block;
  width: 100%;
  height: var(--role-progress, 0%);
  background: var(--gold);
  transition: height 180ms linear;
}

.house-culture {
  padding: clamp(80px, 10vw, 125px) 0;
}

.house-culture h2 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--stone);
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  line-height: 1.18;
  text-align: center;
}

.house-culture .eyebrow {
  text-align: center;
}

.house-origin {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 620px;
  background: var(--stone);
}

.house-origin-image {
  min-height: 620px;
}

.house-origin-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.house-origin-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(72px, 9vw, 130px) clamp(24px, 10vw, 150px);
}

.house-origin-content h2,
.house-origin-content p {
  max-width: 620px;
}

.house-origin-content h2 {
  margin: 0 0 34px;
}

.house-origin-content p:not(.eyebrow) {
  margin: 0 0 22px;
  color: var(--brown-sotf);
  font-size: 0.98rem;
}

.house-origin-content .button {
  margin-top: 18px;
}

.audiences {
  padding: clamp(58px, 7vw, 88px) 0;
  background: var(--stone);
}

.audiences .content-narrow {
  width: min(1280px, calc(100% - 48px));
}

.audiences .eyebrow {
  text-align: center;
}

.tag-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: center;
  overflow-x: visible;
}

.tag-list span {
  white-space: nowrap;
}

.tag-list span,
.filter-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 20px;
  border: 1px solid var(--line);
  color: var(--brown);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}

.next-page-cta {
  border-top: 1px solid rgba(49, 34, 29, 0.14);
  background: var(--stone-soft);
  color: var(--brown);
}

.next-page-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.7fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  width: 100%;
  min-height: 190px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 50px) clamp(24px, 9vw, 140px);
}

.next-page-cta .eyebrow {
  margin-bottom: 1rem;
  color: rgba(49, 34, 29, 0.65);
}

.next-page-cta h2 {
  max-width: 850px;
  margin: 0;
  color: var(--brown);
  font-size: clamp(1.75rem, 2.7vw, 2.55rem);
  line-height: 1.08;
}

.next-page-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  padding: 1rem 0;
  border-top: 1px solid rgba(49, 34, 29, 0.35);
  border-bottom: 1px solid rgba(49, 34, 29, 0.35);
  color: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 300ms ease, color 300ms ease, opacity 300ms ease;
}

.next-page-link span:last-child {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 300ms ease;
}

.next-page-link:hover,
.next-page-link:focus-visible {
  border-color: var(--brown);
  color: var(--brown);
  outline: none;
}

.next-page-link:hover span:last-child,
.next-page-link:focus-visible span:last-child {
  transform: translateX(0.4rem);
}

.expertise-draft-hero .page-hero-copy {
  gap: 0;
}

.expertise-draft-hero {
  min-height: 228px;
}

.expertise-draft-hero .page-hero-copy {
  padding-top: clamp(32px, 5vw, 62px);
  padding-bottom: clamp(32px, 5vw, 62px);
}

.expertise-draft-hero .page-hero-copy h1 {
  max-width: 640px;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 0.98;
}

.expertise-draft-hero .page-hero-image {
  min-height: 228px;
}

.expertise-draft-hero .eyebrow {
  margin-bottom: 18px;
}

.expertise-draft-hero .page-hero-copy p {
  max-width: 640px;
  margin-top: 16px;
}

.expertise-hero-note {
  font-size: 0.84rem !important;
  opacity: 0.76;
}

.expertise-intro,
.expertise-domains {
  background: var(--stone);
}

.expertise-intro {
  padding: clamp(30px, 5vw, 64px) clamp(24px, 9vw, 140px);
}

.expertise-intro-shell {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.expertise-intro-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 88px);
  max-width: none;
  margin-top: 42px;
}

.expertise-intro-copy p {
  margin: 0;
  color: var(--brown-sotf);
  font-size: 0.98rem;
}

.expertise-domains {
  padding: 0;
}

.expertise-domains-shell {
  width: calc(100% - 30px);
  margin: 0 auto;
}

.expertise-domains-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.expertise-domain {
  padding: clamp(30px, 4vw, 58px);
  border-left: 1px solid var(--line);
}

.expertise-domain span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.expertise-domain h2 {
  max-width: 420px;
  margin: 0 0 28px;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1.08;
}

.expertise-domain p {
  max-width: 430px;
  margin: 0 0 20px;
  color: var(--brown-sotf);
  font-size: 0.9rem;
}

.expertise-domain ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.expertise-domain li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--brown-sotf);
  font-size: 0.84rem;
}

.domain-accordion {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.domain-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 66px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--brown);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.domain-accordion-trigger span:first-child {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.domain-accordion-trigger span:last-child {
  color: var(--gold);
  font-size: 1.32rem;
  line-height: 1;
  transition: transform 280ms ease;
}

.domain-accordion-trigger:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 6px;
}

.domain-accordion.is-open .domain-accordion-trigger span:last-child {
  transform: rotate(45deg);
}

.domain-accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition:
    grid-template-rows 900ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 650ms ease;
}

.domain-accordion.is-open .domain-accordion-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.domain-accordion-content ul {
  margin: 0;
  padding: 0;
  border-top: 0;
  list-style: none;
  min-height: 0;
  overflow: hidden;
}

.domain-accordion-content li:first-child {
  border-top: 1px solid var(--line);
}

.case-studies-marquee-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
  background: var(--brown);
  color: var(--stone);
}

.case-marquee-heading {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: clamp(32px, 4vw, 48px);
}

.case-marquee-heading h2 {
  max-width: 720px;
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
}

.case-marquee {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-top: 1px solid rgba(245, 240, 232, 0.22);
  border-bottom: 1px solid rgba(245, 240, 232, 0.22);
}

.case-marquee::-webkit-scrollbar {
  display: none;
}

.case-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.case-marquee-track.is-animated {
  animation: caseMarqueeScroll var(--case-marquee-duration, 40s) linear infinite;
}

.case-marquee.is-paused .case-marquee-track {
  animation-play-state: paused;
}

.case-marquee-item {
  display: grid;
  flex: 0 0 clamp(560px, 44vw, 720px);
  grid-template-columns: clamp(170px, 14vw, 230px) 1fr;
  min-height: 230px;
  padding: 0;
  border-right: 1px solid rgba(245, 240, 232, 0.22);
  color: inherit;
  text-decoration: none;
}

.case-marquee-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border-right: 1px solid rgba(245, 240, 232, 0.22);
}

.case-marquee-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.case-marquee-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 3vw, 48px);
}

.case-marquee-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: rgba(245, 240, 232, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-marquee-item h3 {
  max-width: 430px;
  margin: 1.5rem 0 0;
  color: inherit;
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  line-height: 1.05;
  font-weight: 400;
}

.case-marquee-link {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  width: fit-content;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 220ms ease;
}

.case-marquee-link span {
  transition: transform 220ms ease;
}

.case-marquee-item:hover .case-marquee-link,
.case-marquee-item:focus-visible .case-marquee-link {
  opacity: 0.76;
}

.case-marquee-item:hover .case-marquee-link span,
.case-marquee-item:focus-visible .case-marquee-link span {
  transform: translateX(4px);
}

.case-marquee-item:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: -10px;
}

@keyframes caseMarqueeScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--case-marquee-distance, 0px)), 0, 0);
  }
}

.main-nav a.is-active {
  color: var(--gold);
}

.highlights-hero,
.highlights-featured,
.highlights-editorial,
.highlights-opportunities,
.highlights-cta {
  background: var(--stone);
}

.highlights-hero-centered {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  overflow: hidden;
  color: var(--stone);
  background: var(--brown);
}

.highlights-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.highlights-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(24, 15, 12, 0.52);
  pointer-events: none;
}

.highlights-hero-centered-content {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 3rem));
  margin: 0 auto;
  text-align: center;
}

.highlights-hero-background img,
.highlights-featured-image img,
.highlight-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlights-hero-background img {
  object-position: center;
}

.highlights-hero-centered h1 {
  max-width: 1000px;
  margin: 0 auto;
  color: #f5f0e8;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.98;
  font-weight: 400;
  text-wrap: balance;
}

.highlights-section-heading {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto clamp(34px, 6vw, 78px);
}

.highlights-section-heading h1,
.highlights-section-heading h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.05;
}

.highlights-section-heading > p:not(.eyebrow) {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--brown-sotf);
  font-size: 0.98rem;
}

.highlights-featured {
  padding: clamp(82px, 11vw, 150px) 0;
  border-top: 1px solid var(--line);
}

.highlights-featured-article {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.highlights-featured-article .highlight-card-link {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: stretch;
}

.highlights-featured-image {
  min-height: 520px;
}

.highlights-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 76px) 0;
}

.highlights-featured-content h2,
.highlight-card-content h2,
.highlight-opportunity h3,
.highlights-house h2 {
  margin: 0;
  color: inherit;
  font-family: var(--font-title);
  font-weight: 400;
}

.highlights-featured-content h2 {
  max-width: 560px;
  font-size: clamp(2.2rem, 4vw, 4.7rem);
  line-height: 1.02;
}

.highlights-featured-content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--brown-sotf);
  font-size: 0.96rem;
}

.highlight-read-link {
  display: inline-flex;
  margin-top: 34px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.highlights-editorial {
  padding: clamp(76px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
}

.highlights-filters {
  display: flex;
  gap: 10px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto clamp(42px, 7vw, 86px);
  overflow-x: auto;
  padding-bottom: 4px;
}

.highlights-filters button {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--brown);
  cursor: pointer;
  flex: 0 0 auto;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    color 260ms ease;
}

.highlights-filters button.is-active {
  border-color: var(--brown);
  background: var(--brown);
  color: var(--stone);
}

.highlights-filter-select {
  position: relative;
  z-index: 60;
  display: none;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto clamp(42px, 7vw, 86px);
}

.highlights-filter-label {
  display: block;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.highlights-filter-dropdown {
  position: relative;
}

.highlights-filter-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--brown);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.highlights-filter-trigger > span:last-child {
  width: 0;
  height: 0;
  border-top: 7px solid var(--gold);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  transition: transform 220ms ease;
}

.highlights-filter-dropdown.is-open .highlights-filter-trigger > span:last-child {
  transform: rotate(180deg);
}

.highlights-filter-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 70;
  width: 100%;
  border: 1px solid var(--gold);
  background: var(--stone);
  color: var(--brown);
}

.highlights-filter-menu[hidden] {
  display: none;
}

.highlights-filter-menu button {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid rgba(162, 138, 101, 0.24);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}

.highlights-filter-menu button:last-child {
  border-bottom: 0;
}

.highlights-filter-menu button[aria-selected="true"] {
  background: var(--brown);
  color: var(--stone);
}

.highlights-filter-menu button:hover,
.highlights-filter-menu button:focus-visible {
  background: var(--burgundy);
  color: var(--stone);
}

.highlights-filter-trigger:focus-visible,
.highlights-filter-menu button:focus-visible {
  border-color: var(--gold);
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.highlights-filters button:focus-visible,
.highlight-card-link:focus-visible,
.highlights-house a:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 6px;
}

.highlights-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-top: 1px solid var(--line);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

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

.highlight-card.is-filtered-out {
  opacity: 0;
  transform: translateY(10px);
}

.highlight-card.is-filter-visible {
  opacity: 1;
  transform: translateY(0);
}

.highlight-card-large {
  grid-column: auto;
}

.highlight-card-medium {
  grid-column: auto;
}

.highlight-card-small {
  grid-column: auto;
}

.highlight-card-link {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.highlight-card-image {
  aspect-ratio: 1.28 / 1;
  background: var(--stone-soft);
  overflow: hidden;
}

.highlight-card-large .highlight-card-image {
  aspect-ratio: 1.28 / 1;
}

.highlight-card-small .highlight-card-image {
  aspect-ratio: 1.28 / 1;
}

.highlight-card-content h2 {
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  line-height: 1.12;
  overflow-wrap: break-word;
  hyphens: auto;
}

.highlight-card-content > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--brown-sotf);
  font-size: 0.9rem;
}

.highlight-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.highlights-opportunities {
  padding: clamp(80px, 10vw, 135px) 0;
  border-top: 1px solid var(--line);
}

.highlight-opportunity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.highlight-opportunity {
  min-height: 220px;
  padding: clamp(34px, 5vw, 62px);
  border-left: 1px solid var(--line);
}

.highlight-opportunity:first-child {
  border-left: 0;
}

.highlight-opportunity h3 {
  max-width: 520px;
  font-size: clamp(1.85rem, 3vw, 3.3rem);
  line-height: 1.08;
}

.highlights-opportunities-note {
  width: min(1180px, calc(100% - 48px));
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--brown-sotf);
  font-size: 0.82rem;
}

.highlights-house {
  background: var(--brown);
  color: var(--stone);
}

.highlights-house-inner {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 132px) 0;
}

.highlights-house h2 {
  color: var(--stone);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.04;
}

.highlights-house p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 34px;
  color: rgba(236, 231, 224, 0.76);
  font-size: 0.98rem;
}

.highlights-house .button-outline {
  border-color: rgba(236, 231, 224, 0.45);
  color: var(--stone);
}

.highlights-house .button-outline:hover {
  border-color: var(--stone);
  background: var(--stone);
  color: var(--brown);
}

.highlights-cta {
  border-top: 1px solid rgba(49, 34, 29, 0.14);
  background: var(--stone-soft);
  color: var(--brown);
}

.highlights-cta .next-page-cta-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--brown-sotf);
  font-size: 0.94rem;
}

.article-page {
  background: var(--stone);
  color: var(--brown);
}

.article-hero {
  position: relative;
  min-height: 72svh;
  padding: 30vh clamp(24px, 9vw, 140px) 9vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(236, 231, 224, 0.94) 0%, rgba(236, 231, 224, 0.8) 46%, rgba(236, 231, 224, 0.24) 100%),
    var(--article-hero-image);
  background-position: center;
  background-size: cover;
}

.article-hero-sport {
  --article-hero-image: url("../assets/images/highlight-organisation-sportive.jpg");
}

.article-hero-capital {
  --article-hero-image: url("../assets/images/highlight-opportunite.jpg");
}

.article-hero-territory {
  --article-hero-image: url("../assets/images/highlight-case-territoire.jpg");
}

.article-hero-inner {
  position: relative;
  width: min(780px, 100%);
}

.article-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.98;
}

.article-hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--brown-sotf);
  font-size: 0.98rem;
}

.article-case-section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.article-case-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(260px, 1fr) minmax(260px, 1fr);
  gap: clamp(36px, 6vw, 90px);
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(44px, 5vw, 68px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-case-intro h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
  line-height: 1.12;
}

.article-case-intro span {
  display: block;
  max-width: 360px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--gold);
  color: var(--brown-sotf);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.55;
  text-transform: uppercase;
}

.article-case-column p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 0 30px;
  color: var(--brown-sotf);
  font-size: 0.96rem;
}

.article-return {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(70px, 9vw, 115px);
}

.realisation-editorial {
  background: var(--stone);
}

.realisation-intro,
.realisation-section {
  padding: clamp(72px, 10vw, 130px) 0;
}

.realisation-section + .realisation-section {
  border-top: 1px solid var(--line);
}

.realisation-section-inner {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.realisation-section-inner h2 {
  max-width: 980px;
  margin: 0 0 32px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
}

.realisation-section-inner p:not(.eyebrow) {
  max-width: 920px;
  margin: 0 0 24px;
  color: var(--brown-sotf);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.7;
}

.realisation-emphasis {
  font-family: var(--font-title);
  color: var(--brown) !important;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem) !important;
  line-height: 1.15 !important;
}

.realisation-perspective {
  padding: clamp(76px, 10vw, 132px) 0;
  background: var(--stone-soft);
}

.realisation-quote {
  max-width: 1000px;
  margin: clamp(36px, 5vw, 62px) 0;
  color: var(--burgundy);
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 1;
}

.realisation-work {
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.realisation-work-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.realisation-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  counter-reset: work-item;
}

.realisation-work-grid span {
  min-height: 96px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--brown-sotf);
  font-size: 0.9rem;
  line-height: 1.55;
}

.realisation-work-grid span::before {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  content: counter(work-item, decimal-leading-zero);
  counter-increment: work-item;
}

.realisation-role,
.realisation-status {
  padding: clamp(52px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
}

.realisation-role .realisation-section-inner,
.realisation-status .realisation-section-inner {
  width: min(980px, calc(100% - 48px));
}

.realisation-role p:not(.eyebrow),
.realisation-status p:not(.eyebrow) {
  color: var(--brown);
  font-family: var(--font-title);
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.18;
}

.realisation-status,
.realisation-next {
  background: var(--stone-soft);
}

.realisation-next {
  border-top: 1px solid var(--line);
}

.founders-page {
  background: var(--stone);
}

.founders-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(42px, 7vw, 110px);
  min-height: 92svh;
  padding: clamp(132px, 14vw, 190px) clamp(24px, 9vw, 140px) clamp(72px, 9vw, 120px);
  align-items: end;
}

.founders-hero-copy {
  max-width: 900px;
}

.founders-hero h1 {
  max-width: 920px;
  margin: 28px 0 0;
  font-size: clamp(3rem, 5.8vw, 6.2rem);
  font-weight: 400;
  line-height: 0.98;
}

.founders-hero-text {
  display: grid;
  gap: 18px;
  max-width: 660px;
  margin-top: clamp(36px, 5vw, 64px);
  color: var(--brown-sotf);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.75;
}

.founders-hero-text p {
  margin: 0;
}

.founders-hero-media,
.founder-profile-media {
  margin: 0;
  overflow: hidden;
  background: var(--stone-soft);
}

.founders-hero-media {
  align-self: stretch;
  min-height: 560px;
}

.founders-hero-media img,
.founder-profile-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 118px);
  padding: clamp(82px, 11vw, 150px) clamp(24px, 9vw, 140px);
  border-top: 1px solid var(--line);
  align-items: start;
}

.founder-profile-steeve .founder-profile-media {
  order: 2;
}

.founder-profile-steeve {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
}

.founder-profile-steeve .founder-profile-content {
  order: 1;
}

.founder-profile-media {
  position: sticky;
  top: 110px;
  min-height: min(46svh, 420px);
}

.founder-profile-content {
  max-width: 780px;
}

.founder-profile-content h1,
.founder-profile-content h2 {
  margin: 24px 0 clamp(34px, 4vw, 54px);
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
}

.founder-profile-copy {
  display: grid;
  gap: 20px;
  color: var(--brown-sotf);
  font-size: clamp(0.96rem, 1.25vw, 1.04rem);
  line-height: 1.75;
}

.founder-profile-copy p {
  margin: 0;
}

.founder-capabilities {
  margin-top: clamp(44px, 6vw, 72px);
  border-top: 1px solid var(--line);
}

.founder-capabilities div {
  display: grid;
  grid-template-columns: 44px minmax(180px, 0.48fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.founder-capabilities span,
.founders-method li span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.founder-capabilities h3 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.founder-capabilities p {
  margin: 0;
  color: var(--brown-sotf);
  font-size: 0.92rem;
  line-height: 1.6;
}

.founder-signature {
  margin: clamp(42px, 5vw, 64px) 0 0;
  color: var(--burgundy);
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.6vw, 4.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.02;
}

.founders-convergence {
  padding: clamp(82px, 11vw, 150px) clamp(24px, 9vw, 140px);
}

.founders-convergence-heading {
  width: min(980px, 100%);
  margin: 0 auto clamp(54px, 7vw, 88px);
  text-align: center;
}

.founders-convergence-heading h2,
.founders-terrain h2,
.founders-method h2 {
  margin: 24px 0 0;
  color: inherit;
  font-size: clamp(2.7rem, 5.8vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
}

.founders-convergence-heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 30px auto 0;
  color: rgba(245, 240, 232, 0.68);
  line-height: 1.7;
}

.founders-convergence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(245, 240, 232, 0.2);
  border-left: 1px solid rgba(245, 240, 232, 0.2);
}

.founders-convergence-grid article {
  min-height: 520px;
  padding: clamp(34px, 4.5vw, 58px);
  border-right: 1px solid rgba(245, 240, 232, 0.2);
  border-bottom: 1px solid rgba(245, 240, 232, 0.2);
}

.founders-convergence-grid h3 {
  margin: 28px 0 38px;
  color: var(--stone);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founders-convergence-grid ul,
.founders-method ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.founders-convergence-grid li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.13);
  color: rgba(245, 240, 232, 0.72);
}

.founders-terrain {
  padding: clamp(86px, 12vw, 170px) clamp(24px, 12vw, 180px);
}

.founders-terrain-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: start;
}

.founders-terrain h2 {
  margin: 0;
  color: var(--brown);
}

.founders-terrain-copy {
  display: grid;
  gap: 18px;
  color: var(--brown-sotf);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.75;
}

.founders-terrain-copy p {
  margin: 0;
}

.founders-terrain-emphasis {
  margin: clamp(24px, 4vw, 42px) 0 !important;
  color: var(--brown) !important;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1.02;
}

.founders-principles {
  padding: clamp(92px, 12vw, 170px) clamp(24px, 9vw, 140px);
  border-top: 1px solid var(--line);
}

.founders-principles-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.62fr);
  column-gap: clamp(42px, 5vw, 76px);
  width: min(1080px, 100%);
  margin: 0 auto;
  align-items: start;
}

.founders-principles .eyebrow {
  grid-column: 1 / -1;
}

.founders-principles h2 {
  max-width: 680px;
  margin: clamp(28px, 4vw, 48px) 0 0;
  color: var(--brown);
  font-size: clamp(2.85rem, 6vw, 6.55rem);
  font-weight: 400;
  line-height: 0.98;
}

.founders-manifesto {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  width: min(520px, 100%);
  margin: clamp(90px, 7.5vw, 112px) 0 0;
}

.founders-manifesto p {
  margin: 0;
  color: rgba(49, 34, 29, 0.82);
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.38;
}

.founders-manifesto em {
  color: var(--brown);
  font-family: var(--font-title);
  font-size: 1.08em;
  font-style: italic;
  font-weight: 500;
}

.founders-principles-signature {
  grid-column: 2;
  max-width: 760px;
  margin: clamp(54px, 7vw, 88px) 0 0;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.8;
  text-transform: uppercase;
}

.founders-principles-signature p {
  margin: 0;
}

.founders-method {
  padding: clamp(76px, 10vw, 132px) clamp(24px, 9vw, 140px);
}

.founders-method-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.founders-method h2 {
  max-width: 920px;
}

.founders-method ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(48px, 6vw, 78px);
  border-top: 1px solid rgba(245, 240, 232, 0.2);
  border-left: 1px solid rgba(245, 240, 232, 0.2);
}

.founders-method li {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 24px;
  border-right: 1px solid rgba(245, 240, 232, 0.2);
  border-bottom: 1px solid rgba(245, 240, 232, 0.2);
  color: var(--stone);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founders-final-cta .next-page-cta-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--brown-sotf);
  font-size: 0.98rem;
  line-height: 1.7;
}

.expertise-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(38px, 5vw, 80px);
  padding: clamp(70px, 9vw, 110px) clamp(24px, 11vw, 170px);
  background: var(--stone);
}

.expertise-columns article {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}

.expertise-columns article:first-child {
  border-left: 0;
  padding-left: 0;
}

.expertise-columns h2 {
  margin-bottom: 24px;
  font-size: 1.55rem;
}

.expertise-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-columns li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--brown-sotf);
  font-size: 0.88rem;
}

.expertise-statement {
  padding: 0 clamp(24px, 9vw, 140px) clamp(70px, 9vw, 110px);
  background: var(--stone);
}

.expertise-statement p {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.2;
}

.case-studies {
  padding: 0 clamp(24px, 11vw, 170px) clamp(120px, 16vw, 210px);
  background: var(--stone);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 70px;
}

.filter-row span {
  margin-right: 10px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.filter-row button {
  background: transparent;
  cursor: pointer;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    opacity 220ms ease;
}

.filter-row button.is-active {
  border-color: var(--blue-navy);
  background: var(--blue-navy);
  color: var(--stone);
}

.filter-row button:not(.is-active):hover {
  border-color: var(--gold);
  color: var(--gold);
}

.case-study {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(260px, 1fr) minmax(260px, 1fr);
  gap: clamp(36px, 6vw, 90px);
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.case-study:first-of-type {
  border-top: 0;
}

.case-study h2 {
  max-width: 340px;
  font-size: 1.55rem;
}

.case-study span {
  display: block;
  max-width: 330px;
  margin-top: 36px;
  padding-top: 12px;
  border-top: 1px solid var(--gold);
  color: var(--brown-sotf);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-study p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--brown-sotf);
  font-size: 0.86rem;
}

.contact-hero {
  min-height: 340px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.56fr) minmax(420px, 1.44fr);
  gap: clamp(44px, 7vw, 100px);
  padding: clamp(62px, 8vw, 92px) clamp(24px, 9vw, 140px);
  background: var(--stone);
}

.contact-section aside {
  border-left: 1px solid var(--gold);
  padding-left: 26px;
}

.contact-section aside p {
  max-width: 360px;
  margin: 0;
  color: var(--brown-sotf);
  font-size: 1.04rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 36px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label span {
  color: var(--brown-sotf);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--brown);
  font: inherit;
  transition: border-color 220ms ease, background 220ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(236, 231, 224, 0.32);
  outline: none;
}

.contact-form input,
.contact-form select {
  min-height: 54px;
  padding: 0 18px;
}

.contact-form textarea {
  min-height: 170px;
  padding: 16px 18px;
  resize: vertical;
}

.character-note {
  margin: -16px 0 0;
  color: var(--brown-sotf);
  font-size: 0.86rem;
}

.short-field {
  max-width: 420px;
}

.checkbox-row {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px !important;
  align-items: start;
}

.checkbox-row input {
  min-height: auto;
  margin-top: 3px;
}

.checkbox-row span {
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.proof {
  padding: clamp(78px, 11vw, 126px) clamp(24px, 9vw, 140px);
  border-top: 1px solid var(--line);
  background: var(--stone-soft);
}

.proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.proof-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--brown-sotf);
  font-size: 0.9rem;
}

.proof-heading a {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 76px;
}

.work-grid article {
  min-height: 178px;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.work-grid article:first-child {
  border-left: 0;
  padding-left: 0;
}

.work-grid p,
.work-grid span,
.site-footer span,
.site-footer small {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.js .hero h1,
.js .hero-copy,
.js .hero-actions,
.js .hero-kicker,
.js .page-hero-copy h1,
.js .page-hero-copy p,
.js .page-hero-image {
  opacity: 0;
  transform: translateY(24px);
}

.js.is-loaded .hero h1,
.js.is-loaded .page-hero-copy h1 {
  animation: introReveal 4400ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards;
}

.js.is-loaded .hero-copy,
.js.is-loaded .page-hero-copy p {
  animation: introReveal 4400ms cubic-bezier(0.16, 1, 0.3, 1) 230ms forwards;
}

.js.is-loaded .hero-actions,
.js.is-loaded .page-hero-image {
  animation: introReveal 4400ms cubic-bezier(0.16, 1, 0.3, 1) 380ms forwards;
}

.js.is-loaded .hero-kicker {
  animation: introReveal 4400ms cubic-bezier(0.16, 1, 0.3, 1) 520ms forwards;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 4000ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 4000ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes introReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .js .hero h1,
  .js .hero-copy,
  .js .hero-actions,
  .js .hero-kicker,
  .js .page-hero-copy h1,
  .js .page-hero-copy p,
  .js .page-hero-image,
  .method-line-progress,
  .method-display,
  .method-step,
  .role-sequence,
  .role-title,
  .role-statement,
  .role-description,
  .js [data-reveal] {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .case-marquee-track {
    animation: none !important;
    transform: none !important;
  }

  .mobile-menu,
  .menu-toggle span,
  .menu-close span,
  .mobile-menu-nav a {
    animation: none !important;
    transition: none !important;
  }

  .role-story {
    min-height: auto;
  }

  .role-sticky {
    position: relative;
    display: block;
    min-height: auto;
    overflow: visible;
  }

  .role-eyebrow {
    position: static;
    margin-bottom: 3rem;
  }

  .role-sequences {
    min-height: auto;
  }

  .role-sequence {
    position: relative;
    inset: auto;
    padding-block: 4rem;
    pointer-events: auto;
  }

  .role-progress {
    display: none;
  }
}

.work-grid h3 {
  margin-top: 14px;
}

.work-grid span {
  display: block;
  margin-top: 34px;
  color: var(--brown-sotf);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 7vw, 110px);
  padding: 58px clamp(24px, 9vw, 140px) 72px;
  background: var(--brown);
  color: rgba(236, 231, 224, 0.76);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 24px;
  width: 112px;
}

.footer-legal-brand {
  display: inline-flex;
  width: 202px;
}

.footer-legal-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer p {
  max-width: 430px;
  margin: 0 0 24px;
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-column: 2;
  justify-self: stretch;
  align-self: center;
  gap: 12px;
  width: 100%;
  font-size: 0.82rem;
  text-align: center;
}

.site-footer small {
  display: block;
  margin-top: 34px;
  color: rgba(236, 231, 224, 0.46);
  text-transform: none;
  letter-spacing: 0;
}

.site-footer > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  justify-self: start;
  align-self: center;
  gap: 34px;
  text-align: left;
}

.site-footer > div:last-child p {
  margin-bottom: 12px;
  font-size: 0.62rem;
}

.site-footer > div:last-child small {
  margin-top: 0;
  font-size: 0.52rem;
}

@media (min-width: 1025px) {
  .menu-toggle,
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 1024px) {
  .site-header {
    position: fixed;
    top: env(safe-area-inset-top, 0);
    left: 0;
    z-index: 10020;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding:
      calc(clamp(1rem, 4vw, 1.4rem) + env(safe-area-inset-top, 0px))
      clamp(1.25rem, 5vw, 2rem);
    background: rgba(236, 231, 224, 0.92);
    border-bottom: 1px solid rgba(216, 209, 195, 0.72);
    backdrop-filter: blur(14px);
  }

  .site-header.is-scrolled {
    background: rgba(236, 231, 224, 0.94);
    border-bottom-color: rgba(216, 209, 195, 0.78);
    backdrop-filter: blur(14px);
  }

  body.menu-open .site-header {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
  }

  .site-header > .brand {
    display: block;
    flex: 0 0 auto;
    width: auto;
  }

  .site-header > .brand img {
    display: block;
    width: clamp(135px, 34vw, 175px);
    height: auto;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .highlights-filters {
    display: none;
  }

  .highlights-filter-select {
    display: block;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .highlight-card-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
  }

  .role-story {
    min-height: auto;
  }

  .house-role-split {
    display: block;
  }

  .house-role-reason {
    position: relative;
    top: auto;
    min-height: auto;
    padding: clamp(5rem, 10vw, 8rem) clamp(24px, 9vw, 86px);
  }

  .role-sticky {
    position: relative;
    top: auto;
    display: block;
    min-height: auto;
    padding: clamp(5rem, 10vw, 8rem) clamp(24px, 9vw, 86px);
    overflow: visible;
  }

  .role-eyebrow {
    position: static;
    margin-bottom: clamp(4rem, 8vw, 6rem);
  }

  .role-sequences {
    width: 100%;
    min-height: auto;
    margin: 0;
  }

  .role-sequence {
    position: relative;
    inset: auto;
    min-height: auto;
    padding-block: clamp(5rem, 10vw, 8rem);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .role-sequence + .role-sequence {
    border-top: 1px solid rgba(236, 231, 224, 0.14);
  }

  .js .role-sequence {
    opacity: 0;
    transform: translateY(24px);
  }

  .js .role-sequence.is-visible,
  .js .role-sequence.is-active {
    opacity: 1;
    transform: translateY(0);
  }

  .role-title,
  .role-statement,
  .role-description {
    opacity: 1;
    transform: none;
  }

  .role-progress {
    display: none;
  }

  .expertise-list article,
  .expertise-entry,
  .expertise-entry-list,
  .proof-heading,
  .page-hero,
  .article-case-grid,
  .highlights-hero,
  .house-intro,
  .house-origin,
  .house-intro-single,
  .next-page-cta-inner,
  .highlights-featured-article .highlight-card-link,
  .expertise-intro-copy,
  .expertise-domains-grid,
  .highlight-opportunity-list,
  .expertise-columns,
  .case-study,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .expertise-entry {
    gap: 30px;
  }

  .expertise-entry-copy {
    max-width: 680px;
  }

  .expertise-entry-list {
    gap: 0;
    margin-top: 58px;
  }

  .expertise-entry-list a {
    min-height: auto;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
  }

  .expertise-entry-list a:last-child {
    border-bottom: 0;
  }

  .site-footer nav {
    align-items: flex-start;
    justify-self: start;
    grid-column: auto;
    width: 100%;
  }

  .method-interactive-inner {
    width: 100%;
    padding-inline: clamp(24px, 5vw, 48px);
  }

  .method-scroll-region {
    min-height: 340svh;
  }

  .method {
    min-height: 100svh;
    padding-block: clamp(64px, 9vw, 96px);
  }

  .method-display {
    min-height: clamp(120px, 18vw, 170px);
    padding-block: clamp(1.8rem, 4vw, 2.8rem) 0;
  }

  .method-display-statement {
    font-size: clamp(2.1rem, 4.4vw, 2.7rem);
  }

  .method-step {
    grid-template-rows: 24px 26px auto;
    min-height: 88px;
  }

  .method-line {
    top: 64px;
  }

  .method-step-number {
    min-height: 24px;
  }

  .method-step-dot {
    align-self: center;
    margin: 18px 0 18px;
  }

  .method-step-label {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .expertise-list article {
    gap: 12px;
    align-items: start;
    padding: 26px 0;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 0;
  }

  .work-grid article:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .page-hero-copy {
    padding-bottom: 48px;
  }

  .article-hero {
    min-height: 62svh;
    padding-top: 22vh;
  }

  .article-case-grid {
    gap: 34px;
  }

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

  .article-case-intro span {
    margin-top: 28px;
  }

  .page-hero-image {
    min-height: 330px;
  }

  .highlights-hero-centered {
    min-height: 72vh;
  }

  .highlights-hero-centered-content {
    width: min(100% - 2rem, 700px);
  }

  .highlights-featured-image {
    min-height: 360px;
  }

  .highlights-featured-content {
    padding: 0 0 clamp(34px, 6vw, 62px);
  }

  .highlight-card-large,
  .highlight-card-medium,
  .highlight-card-small {
    grid-column: auto;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .highlight-card-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
  }

  .highlight-opportunity,
  .highlight-opportunity:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .highlight-opportunity:first-child {
    border-top: 0;
  }

  .house-culture {
    margin-right: 0;
  }

  .house-origin {
    min-height: 0;
  }

  .house-origin-image {
    min-height: clamp(320px, 48vw, 420px);
  }

  .house-origin-content {
    padding: clamp(56px, 8vw, 86px) clamp(24px, 9vw, 86px);
  }

  .case-marquee-heading {
    width: min(100% - 40px, 700px);
  }

  .case-marquee-item {
    flex-basis: min(84vw, 640px);
    min-height: 190px;
  }

  .tag-list {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .next-page-cta-inner {
    align-items: start;
    min-height: auto;
    gap: 1.65rem;
    padding: clamp(38px, 6vw, 52px) clamp(24px, 9vw, 86px);
  }

  .next-page-cta h2 {
    font-size: clamp(1.85rem, 5.5vw, 2.5rem);
  }

  .expertise-domain,
  .expertise-domain:first-child {
    width: 100%;
    min-width: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 32px;
  }

  .expertise-domain:first-child {
    border-top: 0;
  }

  .expertise-columns article,
  .expertise-columns article:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0 0;
  }

  .expertise-columns article:first-child {
    border-top: 0;
    padding-top: 0;
  }

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

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

  .expertise-domain {
    border-left: 1px solid var(--line);
  }

  .expertise-domain:nth-child(odd) {
    border-left: 0;
  }

  .expertise-domain:nth-child(-n + 2) {
    border-top: 0;
  }
}

@media (max-width: 768px) {
  .role-sticky {
    padding-top: clamp(4.5rem, 14vw, 6rem);
    padding-bottom: clamp(4.5rem, 14vw, 6rem);
  }

  .role-eyebrow {
    margin-bottom: clamp(2.8rem, 10vw, 4rem);
  }

  .role-sequence {
    padding-block: clamp(3.8rem, 13vw, 5.5rem);
  }

  .role-title {
    font-size: clamp(3.6rem, 16vw, 6rem);
    line-height: 0.9;
  }

  .role-statement {
    margin-top: 1.45rem;
    font-size: clamp(1.8rem, 8vw, 2.7rem);
  }

  .role-description {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .page-hero,
  .expertise-intro,
  .expertise-domains,
  .next-page-cta,
  .site-footer {
    width: 100%;
    max-width: 100%;
  }

  .page-hero {
    min-height: auto;
  }

  .expertise-draft-hero .page-hero-copy {
    padding: clamp(34px, 9vw, 54px) 20px clamp(28px, 7vw, 40px);
  }

  .expertise-draft-hero .page-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.05rem, 8vw, 2.85rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .expertise-draft-hero .page-hero-copy p {
    max-width: 38rem;
  }

  .expertise-intro {
    padding: clamp(3.5rem, 12vw, 5.5rem) 20px;
  }

  .expertise-intro-copy {
    grid-template-columns: 1fr;
  }

  .expertise-intro-copy p {
    max-width: 38rem;
  }

  .expertise-domains-shell {
    width: calc(100% - 40px);
  }

  .expertise-domains-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .expertise-domain,
  .expertise-domain:nth-child(odd),
  .expertise-domain:nth-child(-n + 2) {
    width: 100%;
    min-width: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .expertise-domain:first-child {
    border-top: 0;
  }

  .expertise-domain h2 {
    max-width: none;
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .expertise-domain p {
    max-width: 38rem;
    font-size: 0.95rem;
  }

  .expertise-entry h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .expertise-entry-copy {
    font-size: 0.94rem;
  }

  .expertise-entry-list {
    margin-top: 48px;
  }

  .expertise-entry-title {
    max-width: 24rem;
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }

  .expertises .section-action {
    justify-content: flex-start;
    margin-top: 34px;
  }

  .case-marquee-item {
    min-height: 160px;
  }

  .case-marquee-image {
    aspect-ratio: 4 / 3;
  }

  .case-marquee-meta {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .case-marquee-item h3 {
    font-size: clamp(1.35rem, 5vw, 1.8rem);
    line-height: 1.1;
  }

  .method {
    min-height: 100svh;
    padding-block: clamp(72px, 14vw, 96px);
  }

  .method-scroll-region {
    min-height: 320svh;
  }

  .method-interactive-inner {
    width: 100%;
    padding-inline: 20px;
  }

  .method-heading h2 {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
    font-size: clamp(2.1rem, 10vw, 3.35rem);
  }

  .method-intro {
    max-width: 34rem;
    margin-inline: auto;
    margin-top: 28px;
    font-size: 0.94rem;
    text-align: center;
  }

  .method-display {
    min-height: 0;
    padding-block: clamp(2rem, 8vw, 3rem) 0;
  }

  .method-display-number {
    display: none;
  }

  .method-display-statement {
    font-size: clamp(2.04rem, 8.8vw, 2.56rem);
    line-height: 1.18;
  }

  .method-display-details {
    margin-top: 1.45rem;
    font-size: 0.74rem;
    line-height: 1.7;
  }

  .method-timeline {
    margin-top: 1.6rem;
    padding-top: 14px;
  }

  .method-line {
    top: 69px;
  }

  .method-step {
    grid-template-rows: 32px 30px;
    min-width: 44px;
    min-height: 64px;
  }

  .method-step-number {
    min-height: 32px;
    display: grid;
    place-items: center;
    font-size: 0.66rem;
  }

  .method-step-dot {
    width: 6px;
    height: 6px;
    align-self: center;
    margin: 16px 0 0;
  }

  .method-step-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .method-active-label {
    display: block;
    margin-top: 18px;
  }

  .next-page-cta-inner {
    width: 100%;
  }

  .site-footer {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding:
      calc(16px + env(safe-area-inset-top, 0px))
      20px
      16px;
  }

  .brand {
    width: 112px;
  }

  .hero {
    min-height: 88svh;
    padding: 26vh 20px 56px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4rem);
  }

  .expertise-draft-hero .page-hero-copy h1 {
    font-size: clamp(1.95rem, 8vw, 2.35rem);
    line-height: 1.04;
  }

  .expertise-draft-hero .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.65rem);
    line-height: 1.08;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    padding: 0 14px;
    text-align: center;
  }

  .content-narrow {
    width: calc(100% - 40px);
  }

  .case-studies-marquee-section {
    padding-top: 0;
  }

  .case-marquee-heading {
    width: calc(100% - 40px);
    padding-bottom: 30px;
  }

  .case-marquee-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }

  .case-marquee-item {
    flex-basis: 84vw;
    grid-template-columns: minmax(120px, 38%) 1fr;
    min-height: 175px;
  }

  .case-marquee-copy {
    padding: 24px 20px;
  }

  .case-marquee-meta {
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 0.66rem;
  }

  .case-marquee-item h3 {
    margin: 1rem 0 0;
    font-size: clamp(1.15rem, 4.8vw, 1.45rem);
    line-height: 1.08;
  }

  .section-action {
    justify-content: stretch;
  }

  .page-hero {
    padding-top: 72px;
  }

  .page-hero-copy {
    padding: 82px 20px 42px;
  }

  .article-hero {
    min-height: 58svh;
    padding: 132px 20px 56px;
  }

  .article-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
    line-height: 1;
  }

  .article-case-section {
    padding: 48px 0;
  }

  .article-case-grid,
  .article-return {
    width: calc(100% - 40px);
  }

  .article-case-grid {
    padding: 36px 0;
  }

  .article-case-intro h2 {
    font-size: clamp(1.55rem, 9vw, 2.1rem);
  }

  .realisation-intro,
  .realisation-section,
  .realisation-perspective,
  .realisation-work {
    padding: 52px 0;
  }

  .realisation-section-inner,
  .realisation-work-inner {
    width: calc(100% - 40px);
  }

  .realisation-section-inner h2 {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .realisation-quote {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .realisation-work-grid {
    grid-template-columns: 1fr;
  }

  .realisation-work-grid span {
    min-height: auto;
    padding: 20px;
  }

  .realisation-role,
  .realisation-status {
    padding: 44px 0;
  }

  .highlights-hero-centered h1 {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
    line-height: 1;
  }

  .page-hero-image {
    min-height: 260px;
  }

  .highlights-featured-image {
    min-height: 280px;
  }

  .house-intro,
  .house-origin-content,
  .expertise-columns,
  .next-page-cta-inner,
  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .next-page-cta-inner {
    width: 100%;
  }

  .highlights-section-heading,
  .highlights-featured-article,
  .highlights-filters,
  .highlights-filter-select,
  .highlights-grid,
  .highlight-opportunity-list,
  .highlights-opportunities-note,
  .highlights-house-inner {
    width: calc(100% - 40px);
  }

  .highlights-filters {
    margin-bottom: 42px;
  }

  .highlights-filter-select {
    margin-bottom: 2rem;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 2rem;
  }

  .highlight-card-link {
    gap: 14px;
  }

  .highlight-card-large,
  .highlight-card-medium,
  .highlight-card-small {
    grid-column: auto;
  }

  .highlight-card-image,
  .highlight-card-large .highlight-card-image,
  .highlight-card-small .highlight-card-image {
    aspect-ratio: 4 / 5;
  }

  .highlight-card-content h2 {
    font-size: clamp(1.15rem, 4.8vw, 1.5rem);
    line-height: 1.05;
  }

  .highlight-card-content > p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .highlight-card-meta {
    gap: 6px 10px;
    margin-top: 16px;
    font-size: 0.56rem;
  }

  .highlight-opportunity {
    padding: 32px 0;
  }

  .next-page-link {
    gap: 1.25rem;
    min-height: 58px;
  }

  .expertise-domains {
    padding-top: 64px;
    padding-bottom: 0;
  }

  .expertise-intro {
    padding: 34px 20px 30px;
  }

  .expertise-draft-hero .page-hero-copy p {
    margin-top: 16px;
  }

  .case-studies {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tag-list span,
  .filter-row button {
    width: 100%;
    justify-content: center;
  }

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

  .work-grid article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 26px 0 0;
  }

  .work-grid article:first-child {
    border-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 359px) {
  .highlights-grid {
    gap: 0.65rem;
  }

  .highlight-card-link {
    gap: 12px;
  }

  .highlight-card-content h2 {
    font-size: 1.05rem;
  }

  .highlight-card-content > p:not(.eyebrow) {
    font-size: 0.76rem;
  }

  .highlight-card-meta {
    font-size: 0.52rem;
  }
}

@media (max-width: 1024px) {
  .founders-hero,
  .founder-profile,
  .founders-terrain-inner {
    grid-template-columns: 1fr;
  }

  .founders-hero {
    min-height: auto;
    padding-top: clamp(128px, 18vw, 170px);
    align-items: start;
  }

  .founders-hero-media {
    min-height: clamp(360px, 58vw, 560px);
  }

  .founder-profile-media,
  .founder-profile-steeve .founder-profile-media,
  .founder-profile-steeve .founder-profile-content {
    position: static;
    order: initial;
  }

  .founder-profile-media {
    width: min(100%, 440px);
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .founders-convergence-grid {
    grid-template-columns: 1fr;
  }

  .founders-convergence-grid article {
    min-height: auto;
  }

  .founders-method ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .founders-principles-inner {
    display: block;
  }

  .founders-manifesto {
    width: min(620px, 100%);
    margin-top: clamp(42px, 6vw, 64px);
  }

  .founders-principles-signature {
    margin-top: clamp(52px, 7vw, 78px);
  }
}

@media (max-width: 768px) {
  .founders-hero,
  .founder-profile,
  .founders-convergence,
  .founders-terrain,
  .founders-principles,
  .founders-method {
    padding-right: 20px;
    padding-left: 20px;
  }

  .founders-hero h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
    line-height: 1;
  }

  .founder-profile-content h1,
  .founder-profile-content h2,
  .founders-convergence-heading h2,
  .founders-principles h2,
  .founders-terrain h2,
  .founders-method h2 {
    font-size: clamp(2.35rem, 10vw, 4.2rem);
    line-height: 1;
  }

  .founder-capabilities div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .founders-manifesto {
    width: 100%;
    margin-left: 0;
  }

  .founders-manifesto p {
    font-size: clamp(1.12rem, 5vw, 1.55rem);
    line-height: 1.42;
  }

  .founders-principles-signature {
    margin-left: 0;
  }

  .founder-signature,
  .founders-terrain-emphasis {
    font-size: clamp(1.9rem, 9vw, 3.3rem);
  }

  .founders-method ol {
    grid-template-columns: 1fr;
  }

  .founders-method li {
    min-height: 96px;
  }
}

@media (max-width: 640px) {
  .founders-hero {
    padding-top: 118px;
  }

  .founders-hero-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .founders-hero-text,
  .founder-profile-copy,
  .founders-terrain-copy {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .founder-capabilities p {
    font-size: 0.9rem;
  }

  .founders-principles h2 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .founders-principles-signature {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }
}
