@font-face {
  font-family: "AL Suisse";
  src: url("fonts/SuisseIntl-Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AL Mono";
  src: url("fonts/SuisseIntl-Mono.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AL Suisse Medium";
  src: url("fonts/SuisseIntl-Medium.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #151616;
  --ink: #151616;
  --white: #f2f4f4;
  --off: #1d1f1f;
  --soft: #171818;
  --soft-2: #1d1f20;
  --line-dark: rgba(247, 248, 248, 0.18);
  --accent: #FF4D00;
  --edge: 40px;
  --gutter: 30px;
  --max: 1760px;
  --font: "AL Suisse", "Helvetica Neue", Arial, sans-serif;
  --mono: "AL Mono", "SFMono-Regular", Consolas, monospace;
  --tight: -0.025em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--white);
  font-family: var(--font);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--white);
  font-weight: 400;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li,
button,
input,
textarea {
  font-weight: 400;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gutter);
}

.mono {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.body {
  margin: 0;
  font-size: 19px;
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: 0;
}

.micro {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  padding: 43px var(--edge) 0;
  color: var(--white);
  mix-blend-mode: normal;
  text-shadow: none;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gutter);
}

.nav-brand {
  grid-column: 1 / 5;
}

.nav-links {
  grid-column: 8 / 13;
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 34px);
}

.nav-toggle {
  display: none;
}

.page-hero {
  min-height: 100vh;
  position: relative;
  padding: 18px var(--edge);
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.hero-sticky {
  position: relative;
  min-height: 100vh;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.96;
}

.page-hero-media img,
.page-hero-media canvas,
.page-hero-media video,
.image-band img,
.image-band video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(0.92) brightness(0.8);
  transform: scale(1.01);
  will-change: transform;
}

.page-hero-media::after,
.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, var(--image-matte-top, rgba(20, 21, 22, 0.08)), var(--image-matte-bottom, rgba(20, 21, 22, 0.26))),
    var(--image-matte-fill, rgba(20, 21, 22, 0.04));
  mix-blend-mode: normal;
}

.page-hero-media.is-deep,
.image-band.is-deep {
  --image-matte-top: rgba(18, 19, 20, 0.18);
  --image-matte-bottom: rgba(18, 19, 20, 0.42);
  --image-matte-fill: rgba(18, 19, 20, 0.08);
}

.page-hero-media.is-soft,
.image-band.is-soft {
  --image-matte-top: rgba(18, 19, 20, 0.08);
  --image-matte-bottom: rgba(18, 19, 20, 0.22);
  --image-matte-fill: rgba(18, 19, 20, 0.03);
}

.page-hero-media.is-clear,
.image-band.is-clear {
  --image-matte-top: rgba(18, 19, 20, 0.04);
  --image-matte-bottom: rgba(18, 19, 20, 0.12);
  --image-matte-fill: rgba(18, 19, 20, 0.02);
}

.page-hero-media.is-clear img,
.page-hero-media.is-clear canvas,
.page-hero-media.is-clear video,
.image-band.is-clear img,
.image-band.is-clear video {
  filter: saturate(0.76) contrast(0.96) brightness(0.92);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 36px);
  align-content: center;
  padding: 74px 0;
}

.page-hero.poster-hero {
  min-height: 100vh;
}

.poster-hero .page-hero-inner {
  align-content: stretch;
  padding: 0;
}

.poster-title {
  grid-column: 2 / 7;
  align-self: center;
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(30px, 3.2vw, 58px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.poster-info {
  grid-column: 8 / 12;
  align-self: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  max-width: 520px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.poster-slash {
  font-size: clamp(34px, 4vw, 76px);
  line-height: 1;
  font-weight: 400;
  transform: scaleX(0.72);
}

.poster-band {
  grid-column: 2 / 12;
  align-self: end;
  margin-bottom: 8vh;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.5fr 1fr;
  gap: 24px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.poster-band .echo {
  display: block;
  margin-top: 0.3em;
  opacity: 0.36;
}

.poster-mark {
  position: absolute;
  z-index: 2;
  width: 14px;
  height: 1px;
  background: currentColor;
  opacity: 0.34;
  transition: opacity 260ms ease, transform 260ms ease;
}

.poster-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 1px;
  height: 14px;
  background: currentColor;
}

.poster-mark.tl,
.poster-mark.tr { display: none; }
.poster-mark.bl { bottom: 44px; left: var(--edge); }
.poster-mark.br { bottom: 44px; right: var(--edge); }
.poster-hero .poster-mark.tl,
.poster-hero .poster-mark.tr,
.type20-hero .poster-mark.tl,
.type20-hero .poster-mark.tr { top: 43px; }

.poster-mark:hover {
  opacity: 0.9;
  transform: rotate(45deg) scale(1.12);
}

.nav-sticker {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-sticker::before {
  content: none;
}

.quiet-hero .page-hero-inner {
  align-content: stretch;
  padding: 0;
}

.quiet-hero .poster-title {
  grid-column: 2 / 7;
  font-size: clamp(24px, 2vw, 38px);
  line-height: 1.16;
  letter-spacing: 0.04em;
}

.quiet-hero .poster-info {
  grid-column: 8 / 12;
  font-size: 12px;
}

.quiet-hero .poster-band {
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-bottom: 7vh;
}

.center-quiet .poster-title {
  grid-column: 4 / 10;
  justify-self: center;
  text-align: center;
}

.center-quiet .poster-info {
  grid-column: 9 / 12;
  justify-self: end;
}

.center-quiet .poster-band {
  grid-column: 2 / 12;
}

.minimal-hero .poster-title {
  grid-column: 3 / 8;
  align-self: center;
  justify-self: start;
  max-width: 720px;
  font-size: clamp(22px, 1.8vw, 34px);
  line-height: 1.2;
  text-align: left;
}

.minimal-hero.is-single .poster-title {
  grid-column: 3 / 8;
  font-size: clamp(42px, 4.2vw, 78px);
  line-height: 0.95;
  white-space: nowrap;
}

.notes-hero.minimal-hero.is-single .poster-title {
  font-size: clamp(32px, 3.2vw, 58px);
}

.minimal-hero.is-single .poster-info {
  grid-column: 8 / 12;
}

.minimal-hero.is-centered-combo .page-hero-inner {
  justify-content: center;
}

.minimal-hero.is-centered-combo .poster-title {
  grid-column: 2 / 7;
  justify-self: end;
  font-size: clamp(30px, 2.8vw, 52px);
}

.minimal-hero.is-centered-combo .poster-info {
  grid-column: 7 / 12;
  min-width: 360px;
  gap: 10px;
}

.minimal-hero .poster-info {
  grid-column: 8 / 12;
  align-self: center;
  justify-self: start;
  margin-bottom: 0;
}

.minimal-hero .poster-band {
  display: none;
}

.hero-rule-note {
  grid-column: 8 / 12;
  align-self: center;
  display: grid;
  grid-template-columns: 1fr minmax(160px, 240px);
  gap: 22px;
  align-items: start;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(248, 248, 246, 0.72);
}

.hero-rule-note::before {
  content: "";
  height: 1px;
  margin-top: 8px;
  background: rgba(248, 248, 246, 0.62);
}

.a11-band {
  padding: 18px var(--edge);
  min-height: 76vh;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.a11-band.with-image {
  min-height: 92vh;
}

.a11-band-media {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.a11-band-media img {
  filter: saturate(0.68) contrast(0.92) brightness(0.8);
  transform: scale(1.01);
  will-change: transform;
}

.a11-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 25, 25, 0.18), rgba(25, 25, 25, 0.5)),
    rgba(25, 25, 25, 0.08);
  mix-blend-mode: normal;
}

.a11-band-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  padding: 86px 0;
  align-content: end;
}

.a11-title {
  display: none;
  grid-column: 2 / 12;
  align-self: start;
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
}

.a11-labels {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: 1.05fr 1.3fr 1.35fr 1fr;
  gap: 24px;
  margin-bottom: 0;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.a11-labels .echo {
  display: block;
  margin-top: 0.25em;
  opacity: 0.36;
}

.a11-hero .page-hero-inner {
  align-content: center;
  padding: 86px 0;
}

.a11-hero .a11-labels {
  align-self: center;
  margin-bottom: 0;
}

.a11-hero .page-hero-media img {
  filter: saturate(0.68) contrast(0.92) brightness(0.78);
}

.scroll-video-hero {
  height: 320vh;
  padding: 0;
  overflow: visible;
  background: var(--ink);
  --hero-black: 0;
  --hero-invert: 0;
  --hero-label-y: 0px;
  --hero-label-opacity: 1;
  --hero-title-opacity: 0;
  --hero-start-opacity: 1;
  --hero-start-y: 0px;
  --hero-title-y: 32px;
  --hero-title-blur: 0px;
  --hero-title-scale: 1;
  --hero-title-tracking: 0;
  --hero-title-clip: 0%;
  --hero-freeze: 0;
}

.scroll-video-hero .hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

.scroll-video-hero .hero-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--white);
  opacity: var(--hero-invert);
  transition: opacity 80ms linear;
}

.scroll-video-hero .page-hero-media {
  position: absolute;
  inset: 0;
  opacity: 1;
  background: var(--ink);
}

.scroll-video-hero .page-hero-media img,
.scroll-video-hero .page-hero-media canvas,
.scroll-video-hero .page-hero-media video {
  display: block;
  width: 100vw;
  height: 100vh;
  filter: saturate(0.72) contrast(0.96) brightness(0.84);
  transform: scale(1.01);
  background: var(--ink);
}

.scroll-video-hero .page-hero-media .hero-freeze-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: var(--hero-freeze);
  pointer-events: none;
  transition: opacity 120ms linear;
  will-change: opacity;
}

.scroll-video-hero .page-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: var(--ink);
  opacity: var(--hero-black);
}

.scroll-video-hero .page-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding-left: var(--edge);
  padding-right: var(--edge);
  filter: invert(var(--hero-invert));
  will-change: filter;
}

.scroll-video-hero .a11-labels {
  opacity: var(--hero-label-opacity);
  transform: translate3d(0, var(--hero-label-y), 0);
  will-change: opacity, transform;
}

.hero-end-title {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: 0;
  transform: translate3d(0, calc(-50% + var(--hero-title-y)), 0) scale(var(--hero-title-scale));
  opacity: var(--hero-title-opacity);
  filter: blur(var(--hero-title-blur));
  pointer-events: none;
  text-align: center;
  font-size: clamp(52px, 5.7vw, 108px);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: var(--hero-title-tracking);
  text-transform: uppercase;
  clip-path: inset(0 var(--hero-title-clip) 0 var(--hero-title-clip));
  will-change: opacity, transform, filter, clip-path;
}

.index-approach-hero .page-hero-inner {
  align-content: center;
}

.index-approach-hero .poster-title {
  grid-column: 2 / 6;
  justify-self: end;
  align-self: center;
  max-width: 680px;
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(42px, 4.2vw, 82px);
  line-height: 1;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
  opacity: var(--hero-start-opacity);
  transform: translate3d(0, var(--hero-start-y), 0);
  visibility: visible;
  will-change: opacity, transform;
}

.index-approach-hero .poster-title sup {
  position: relative;
  top: -0.95em;
  margin-left: 0.08em;
  font-size: 0.12em;
  line-height: 1;
  letter-spacing: 0;
}

.index-approach-hero .poster-info {
  grid-column: 7 / 13;
  justify-self: start;
  align-self: center;
  min-width: 560px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  gap: clamp(34px, 3.2vw, 62px);
  opacity: var(--hero-start-opacity);
  transform: translate3d(0, var(--hero-start-y), 0);
  visibility: visible;
  will-change: opacity, transform;
}

.index-approach-hero .poster-info .poster-slash {
  justify-self: center;
}

.index-approach-hero .hero-end-title {
  display: none;
}

.hero-break .type14-inner {
  min-height: 62vh;
  align-content: center;
}

.hero-break {
  background: var(--ink);
}

.hero-break .type14-title {
  margin-top: 50px;
}

.client-logos {
  --logo-gap: clamp(104px, 9vw, 184px);
  position: relative;
  height: 27vh;
  min-height: 230px;
  padding: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--soft-2);
  color: var(--white);
}

.client-logo-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: client-logo-marquee 42s linear infinite;
}

.client-logo-marquee:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-row {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: var(--logo-gap);
  padding: 0 var(--logo-gap) 0 0;
}

.client-logo-row img {
  display: block;
  width: auto;
  max-width: clamp(74px, 7.8vw, 124px);
  max-height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(68%) sepia(5%) saturate(98%) hue-rotate(18deg) brightness(92%) contrast(86%) !important;
  opacity: 1;
  mix-blend-mode: normal;
}

.client-logo-row img[src$=".png"] {
  max-width: clamp(132px, 13.5vw, 218px);
  max-height: 35px;
}

.client-logo-row img[src$=".avif"] {
  max-height: 40px;
}

.client-logo-row .logo-aok {
  max-width: clamp(58px, 5vw, 82px);
  max-height: 28px;
}

.client-logo-row .logo-universal {
  max-width: clamp(108px, 9vw, 152px);
  max-height: 44px;
}

.client-logo-row .logo-mbfw {
  max-width: clamp(186px, 17vw, 286px);
  max-height: 43px;
}

.client-logo-row .logo-alessandro {
  max-width: clamp(132px, 12vw, 190px);
  max-height: 48px;
}

.client-logo-copy {
  max-width: 980px;
  margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 0.035em;
  color: rgba(247, 247, 244, 0.62);
}

@keyframes client-logo-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.table-hero .page-hero-inner {
  align-content: stretch;
  padding: 0;
}

.table-hero .hero-table {
  grid-column: 2 / 12;
  align-self: end;
  margin-bottom: 16vh;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.table-hero .hero-table-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(247, 247, 244, 0.42);
  padding: 0.72em 0;
}

.table-hero .hero-table-row:last-child {
  border-bottom: 1px solid rgba(247, 247, 244, 0.42);
}

.table-hero .hero-foot {
  grid-column: 2 / 12;
  align-self: end;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 6vh;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(247, 247, 244, 0.78);
}

.mini-table {
  padding: 18px var(--edge);
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 76vh;
}

.mini-table-inner {
  position: relative;
  z-index: 2;
  min-height: 76vh;
  padding: 96px 0 54px;
  align-content: end;
}

.mini-table-media {
  position: absolute;
  inset: 0;
  opacity: 0.88;
}

.mini-table-media img {
  filter: saturate(0.68) contrast(0.92) brightness(0.8);
  will-change: transform;
}

.mini-table-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 25, 25, 0.14), rgba(25, 25, 25, 0.38)),
    rgba(25, 25, 25, 0.08);
  mix-blend-mode: normal;
}

.mini-table.is-deep .mini-table-media::after {
  background:
    linear-gradient(180deg, rgba(18, 19, 20, 0.28), rgba(18, 19, 20, 0.58)),
    rgba(18, 19, 20, 0.16);
}

.mini-table.is-light-image {
  background: #f5f5f4;
  color: var(--ink);
}

.mini-table.is-light-image .mini-table-media {
  opacity: 1;
}

.mini-table.is-light-image .mini-table-media img {
  filter: saturate(0.72) contrast(0.94) brightness(1.02);
}

.mini-table.is-light-image .mini-table-media::after {
  background: rgba(245, 245, 244, 0.04);
}

.mini-table.is-light-image .hero-table-row,
.mini-table.is-light-image .hero-table-row:last-child {
  border-color: rgba(25, 25, 25, 0.32);
}

.mini-table.is-light-image .hero-foot {
  color: rgba(25, 25, 25, 0.62);
}

.mini-table .hero-table {
  grid-column: 4 / 10;
  align-self: end;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mini-table .hero-table-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(247, 247, 244, 0.36);
  padding: 0.8em 0;
}

.mini-table .hero-table-row:last-child {
  border-bottom: 1px solid rgba(247, 247, 244, 0.36);
}

.mini-table .hero-foot {
  grid-column: 4 / 10;
  display: flex;
  justify-content: space-between;
  margin-top: 34px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(247, 247, 244, 0.62);
}

.type20-hero .page-hero-inner {
  align-content: stretch;
  padding: 0;
}

.type20-open {
  grid-column: 1 / 13;
  align-self: start;
  margin-top: 12vh;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.type20-title {
  grid-column: 2 / 7;
  align-self: center;
  margin: 0;
  text-align: right;
  font-family: var(--mono);
  font-size: clamp(22px, 2.15vw, 42px);
  line-height: 1.28;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.type20-list {
  grid-column: 7 / 12;
  align-self: center;
  margin: 8vh 0 0;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.25;
  font-weight: 400;
}

.type20-list p {
  margin: 0;
}

.type20-list p + p {
  margin-top: 1.1em;
}

.case26 {
  padding: 18px var(--edge);
  background: var(--soft);
  color: var(--white);
}

.case26-inner {
  min-height: 72vh;
  padding: 150px 0 154px;
  align-content: start;
}

.case26.is-quiet {
  background: var(--soft-2);
}

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

.case26.is-light {
  background: var(--soft-2);
  color: var(--white);
}

.case26.is-light .case26-col h3 {
  border-color: rgba(247, 247, 244, 0.2);
}

.case26.is-light .case26-col p {
  color: rgba(247, 247, 244, 0.66);
}

.case26-head {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: 27% 1fr 20%;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(247, 247, 244, 0.22);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case26-head .muted,
.case26 .muted {
  color: rgba(247, 247, 244, 0.58);
}

.case26-head .right {
  text-align: right;
}

.case26-about {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: 27% 1fr;
  margin-top: clamp(58px, 5vw, 92px);
}

.case26-inner > .case26-about:first-child {
  margin-top: 0;
}

.case26-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case26-lead {
  margin: 0;
  max-width: 28em;
  font-size: clamp(30px, 2.35vw, 46px);
  line-height: 1.3;
  font-weight: 400;
}

.case26-lead.is-smaller {
  font-size: clamp(24px, 1.9vw, 36px);
  line-height: 1.28;
}

.case26-cols {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: 27% 33% 1fr;
  margin-top: clamp(58px, 5vw, 94px);
}

.case26-col {
  padding-right: 5vw;
}

.case26-col:first-child {
  padding-right: 0;
}

.case26-col h3 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 0;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
}

.case26-col h3::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(247, 247, 244, 0.28);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case26.is-light .case26-col h3::after {
  background: rgba(25, 25, 25, 0.26);
}

.case26-col h3.reveal {
  filter: none;
}

.case26-col h3.reveal.is-visible::after {
  transform: scaleX(1);
}

.case26-col p {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: rgba(247, 247, 244, 0.64);
}

.case26.is-index .case26-inner {
  min-height: 88vh;
  padding: 132px 0;
  align-content: center;
}

.case26.is-index .case26-about {
  grid-column: 2 / 6;
  display: block;
  margin: 0;
}

.case26.is-index .case26-lead {
  margin-top: 46px;
  max-width: 10.5em;
}

.case26.is-index .case26-cols {
  grid-column: 6 / 12;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  margin-top: 0;
}

.case26.is-index .case26-cols + .case26-cols {
  margin-top: 68px;
}

.case26.is-index .case26-cols > span {
  display: none;
}

.case26.is-index .case26-col {
  padding-right: 0;
}

.visible-trust-section .case26-inner {
  min-height: 76vh;
  padding-top: clamp(104px, 8vw, 132px);
  padding-bottom: clamp(104px, 8vw, 132px);
}

.public-surface-section {
  background: var(--ink);
}

.phase-stack {
  padding: 18px var(--edge);
  background: var(--ink);
  color: var(--white);
}

.phase-stack-inner {
  min-height: 92vh;
  padding: 140px 0;
  align-content: center;
}

.phase-row {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: 12% 28% 1fr;
  gap: var(--gutter);
  padding: 34px 0 40px;
  border-top: 1px solid rgba(248, 248, 246, 0.18);
}

.phase-row:last-child {
  border-bottom: 1px solid rgba(248, 248, 246, 0.18);
}

.phase-num,
.phase-row h2,
.phase-row p {
  margin: 0;
}

.phase-num {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(248, 248, 246, 0.5);
}

.phase-row h2 {
  font-size: clamp(30px, 2.45vw, 48px);
  line-height: 1.12;
  font-weight: 400;
}

.phase-copy {
  columns: 2;
  column-gap: 54px;
  max-width: 860px;
}

.phase-copy p {
  margin: 0 0 18px;
  break-inside: avoid;
  font-size: 15px;
  line-height: 24px;
  color: rgba(248, 248, 246, 0.68);
}

.method-numbers {
  padding: 18px var(--edge);
  background: var(--ink);
  color: var(--white);
}

.method-numbers-inner {
  min-height: 200vh;
  padding: clamp(128px, 10vw, 190px) 0;
  align-content: start;
  row-gap: 0;
}

.method-active-number {
  position: sticky;
  top: 36vh;
  grid-column: 1 / 4;
  grid-row: 1 / span 6;
  align-self: start;
  margin: 0;
  font-size: clamp(180px, 25vw, 450px);
  line-height: 0.76;
  font-weight: 400;
  letter-spacing: -0.08em;
  color: rgba(247, 247, 244, 0.1);
  transition: opacity 360ms ease;
}

.method-numbers-head {
  grid-column: 5 / 12;
  align-self: start;
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: var(--gutter);
  padding-bottom: clamp(70px, 7vw, 118px);
}

.method-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 247, 244, 0.5);
}

.method-numbers-head h2 {
  margin: 0;
  max-width: 15em;
  font-size: clamp(30px, 2.35vw, 46px);
  line-height: 1.3;
  font-weight: 400;
  font-family: "AL Suisse Medium", var(--font);
  letter-spacing: 0;
}

.method-card {
  position: relative;
  grid-column: 5 / 12;
  min-height: clamp(360px, 42vh, 560px);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter);
  align-items: start;
  padding: clamp(42px, 4vw, 72px) 0;
  border-top: 1px solid rgba(247, 247, 244, 0.22);
  background: transparent;
  color: var(--white);
}

.method-card:last-child {
  border-bottom: 1px solid rgba(247, 247, 244, 0.22);
}

.method-count {
  display: none;
}

.method-card h3 {
  margin: 0;
  overflow: hidden;
  font-size: clamp(30px, 2.35vw, 46px);
  line-height: 1.06;
  font-weight: 400;
  font-family: "AL Suisse Medium", var(--font);
  letter-spacing: -0.01em;
}

.method-card h3 span {
  display: block;
  transform: translate3d(0, 112%, 0);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.method-card.is-visible h3 span {
  transform: translate3d(0, 0, 0);
}

.method-card p {
  max-width: 34em;
  margin: 34px 0 0;
  font-size: 15px;
  line-height: 24px;
  color: rgba(247, 247, 244, 0.66);
}

.method-card p + p {
  margin-top: 16px;
}

.type14 {
  padding: 18px var(--edge);
  background: var(--soft);
  color: var(--white);
}

.type14-inner {
  min-height: 78vh;
  padding: 112px 0 110px;
  align-content: start;
}

.type14-meta {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 247, 244, 0.62);
}

.type14-meta span:nth-child(2) { text-align: center; }
.type14-meta span:nth-child(3) {
  text-align: right;
}

.type14-title {
  grid-column: 2 / 12;
  margin: 30px 0 0;
  font-size: clamp(52px, 5.7vw, 108px);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: -0.006em;
  text-transform: uppercase;
}

.type14-copy {
  grid-column: 7 / 12;
  margin-top: 82px;
}

.trust-system {
  padding: 18px var(--edge);
  background: var(--off);
  color: var(--ink);
}

.trust-system-inner {
  min-height: 72vh;
  padding: clamp(118px, 9vw, 172px) 0;
  align-content: center;
}

.trust-system-head {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 72px);
  margin-bottom: clamp(70px, 7vw, 118px);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(21, 22, 25, 0.62);
}

.trust-system-head p {
  margin: 0;
}

.trust-system-head p:nth-child(2) {
  color: rgba(21, 22, 25, 0.86);
}

.trust-system article {
  grid-column: span 3;
}

.trust-system article:nth-of-type(1) {
  grid-column: 2 / 5;
}

.trust-system article:nth-of-type(2) {
  grid-column: 5 / 8;
}

.trust-system article:nth-of-type(3) {
  grid-column: 8 / 11;
}

.trust-system h2 {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(21, 22, 25, 0.18);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}

.trust-system article:nth-of-type(2) h2 {
  color: inherit;
}

.trust-system p {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: rgba(25, 25, 25, 0.66);
}

.type33 {
  padding: 18px var(--edge);
  background: var(--off);
  color: var(--ink);
}

.type33-window {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--soft);
  color: var(--white);
  border-radius: 0;
  padding: 88px clamp(28px, 4vw, 76px) 96px;
}

.type33-dots {
  display: none;
  gap: 8px;
  padding: 0 0 62px;
}

.type33-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #696967;
}

.type33-intro {
  display: grid;
  grid-template-columns: 12% 1fr;
}

.type33-intro .micro-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a98;
  padding-top: 10px;
}

.type33-intro p {
  margin: 0;
  max-width: 34em;
  font-size: clamp(28px, 2.05vw, 40px);
  line-height: 1.35;
  font-weight: 400;
}

.type33-rows {
  margin-top: 78px;
}

.type33-row {
  display: grid;
  grid-template-columns: 12% 34% 1fr;
  border-top: 1px solid #3a3a38;
  padding: clamp(44px, 3vw, 62px) 0;
  align-items: start;
}

.type33-row .no {
  font-family: var(--mono);
  font-size: 12px;
  color: #c9c9c6;
}

.type33-row h2 {
  margin: 0;
  min-height: 2.3em;
  font-size: clamp(26px, 2.05vw, 40px);
  line-height: 1.15;
  font-weight: 400;
}

.type33-row p {
  margin: 0;
  max-width: 32em;
  font-size: 15px;
  line-height: 24px;
  color: #b7b7b4;
}

.type28 {
  padding: 18px var(--edge);
  background: var(--off);
}

.type28-canvas {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--off);
  color: var(--ink);
  padding: clamp(56px, 5vw, 92px) clamp(28px, 4vw, 72px) 92px;
  overflow: hidden;
}

.type28-hero {
  position: relative;
}

.type28-line {
  margin: 0;
  font-size: clamp(56px, 5.1vw, 98px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.type28-line.l2 { margin-left: 30vw; }
.type28-line.l3 { margin-left: 22.5vw; }

.type28-intro {
  position: absolute;
  top: 1.3em;
  left: 2vw;
  max-width: 240px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(25, 25, 25, 0.72);
}

.type28-arrow {
  position: absolute;
  top: 3.55em;
  left: 2vw;
  font-size: clamp(42px, 3.2vw, 62px);
  line-height: 1;
}

.type28-split {
  display: grid;
  grid-template-columns: 27% 1fr;
  margin-top: 112px;
}

.type28-label {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.type28-split h2 {
  margin: 0;
  max-width: 20em;
  font-size: clamp(28px, 1.85vw, 36px);
  line-height: 1.3;
  font-weight: 400;
}

.type28-split p {
  max-width: 34em;
  margin: 34px 0 0;
  font-size: 15px;
  line-height: 24px;
  color: rgba(25, 25, 25, 0.72);
}

.page-kicker {
  grid-column: 2 / 5;
  margin: 0 0 42px;
}

.page-title {
  grid-column: 2 / 9;
  margin: 0;
  font-size: clamp(54px, 7vw, 128px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: var(--tight);
  text-wrap: balance;
}

.page-intro {
  grid-column: 8 / 12;
  align-self: end;
  margin: 0;
  max-width: 620px;
}

.section {
  padding: 18px var(--edge);
  background: var(--paper);
}

.section.is-off {
  background: var(--soft-2);
  color: var(--white);
}

.section.is-muted {
  background: var(--soft-2);
  color: var(--white);
}

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

.section-inner {
  min-height: 70vh;
  align-content: center;
  padding: 150px 0;
}

.section-inner.is-compact {
  min-height: auto;
  padding: 150px 0;
}

.label {
  grid-column: 2 / 5;
  margin: 0;
  font-size: 13px;
  line-height: 15.6px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.large-text {
  grid-column: 6 / 12;
  margin: 0;
  max-width: 900px;
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
}

.correspondence .section-inner {
  min-height: 72vh;
  padding-top: clamp(124px, 10vw, 178px);
  padding-bottom: clamp(124px, 10vw, 178px);
  align-content: center;
}

.correspondence {
  background: var(--ink);
  color: var(--white);
}

.correspondence .reveal { color: rgba(247, 247, 244, 0.42) !important; }
.correspondence .reveal.is-visible { color: var(--white) !important; }

.correspondence .large-text {
  grid-column: 6 / 12;
  max-width: 860px;
  font-size: clamp(26px, 1.85vw, 36px);
  line-height: 1.28;
  font-weight: 400;
  letter-spacing: 0;
}

.correspondence .large-text p {
  margin: 0;
}

.correspondence .large-text p + p {
  margin-top: 1.1em;
}

.copy-stack {
  grid-column: 7 / 12;
  max-width: 720px;
}

.copy-stack p {
  margin: 0 0 24px;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.split-title {
  grid-column: 2 / 7;
  margin: 0;
  max-width: 720px;
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: var(--tight);
  text-wrap: balance;
}

.split-copy {
  grid-column: 7 / 12;
  align-self: end;
  max-width: 640px;
}

.ordered-feature {
  padding: 18px var(--edge);
  background: var(--ink);
  color: var(--white);
}

.ordered-feature-inner {
  min-height: 78vh;
  padding: 92px 0;
  align-content: center;
}

.ordered-head {
  grid-column: 2 / 12;
  display: flex;
  justify-content: space-between;
  margin: 0 0 84px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 247, 244, 0.62);
}

.ordered-col {
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.ordered-col:nth-child(2) { grid-column: 2 / 5; }
.ordered-col:nth-child(3) { grid-column: 5 / 8; }
.ordered-col:nth-child(4) { grid-column: 8 / 12; }

.ordered-kicker {
  margin: 0 0 44px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 247, 244, 0.54);
}

.ordered-col h2 {
  margin: 0;
  min-height: 2.35em;
  max-width: 390px;
  font-size: clamp(24px, 1.9vw, 34px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.ordered-col p {
  margin: 34px 0 0;
  max-width: 430px;
  color: rgba(247, 247, 244, 0.7);
}

.ordered-num {
  display: none;
}

.what-grid {
  padding: 18px var(--edge);
  background: var(--ink);
  color: var(--white);
}

.what-grid.tone-graphite {
  background: var(--soft-2);
  color: var(--white);
}

.index-opening {
  background: var(--ink) !important;
}

.index-opening .what-col {
  position: relative;
  min-height: 324px;
  border-top: 0;
  border-left: 0;
}

.index-opening .what-col:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(247, 247, 244, 0.22);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.index-opening .what-col h2,
.index-opening .what-col p,
.index-opening .what-col .num {
  display: block;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translate3d(-14px, 0, 0);
  filter: none;
  transition: opacity 420ms cubic-bezier(0.16, 1, 0.3, 1), transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.index-opening .what-col .num { color: var(--white); }

.index-opening.is-opening-visible .what-col .num {
  color: var(--white);
}

.index-opening.is-opening-visible .what-col:not(:first-child)::before {
  transform: scaleY(1);
}

.index-opening.is-opening-visible .what-col h2,
.index-opening.is-opening-visible .what-col p,
.index-opening.is-opening-visible .what-col .num {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.index-opening .what-col:nth-child(1) { --opening-delay: 90ms; }
.index-opening .what-col:nth-child(2) { --opening-delay: 190ms; }
.index-opening .what-col:nth-child(3) { --opening-delay: 290ms; }
.index-opening .what-col:nth-child(4) { --opening-delay: 390ms; }
.index-opening .what-col:not(:first-child)::before { transition-delay: var(--opening-delay); }
.index-opening .what-col h2 { transition-delay: calc(var(--opening-delay) + 110ms); }
.index-opening .what-col p { transition-delay: calc(var(--opening-delay) + 190ms); }
.index-opening .what-col .num { transition-delay: calc(var(--opening-delay) + 280ms); }

.what-grid.is-off {
  background: var(--soft-2);
  color: var(--white);
}

.what-grid.is-off .what-note,
.what-grid.is-off .what-col p,
.what-grid.is-off .what-col .num {
  color: rgba(247, 247, 244, 0.62);
}

.what-grid.is-off .what-col {
  border-color: rgba(247, 247, 244, 0.18);
}

.what-grid.tone-graphite .what-note,
.what-grid.tone-graphite .what-col p,
.what-grid.tone-graphite .what-col .num {
  color: rgba(247, 247, 244, 0.62);
}

.what-grid.tone-graphite .what-col {
  border-color: rgba(247, 247, 244, 0.18);
}

.notes-index .what-grid-inner {
  min-height: 82vh;
}

.notes-index .what-title {
  font-size: clamp(42px, 4.5vw, 84px);
}

.what-grid-inner {
  min-height: 94vh;
  padding: 116px 0 108px;
  align-content: start;
}

.what-title {
  grid-column: 2 / 8;
  margin: 0;
  font-size: clamp(58px, 6.2vw, 118px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: var(--tight);
}

.what-statement {
  grid-column: 2 / 7;
  margin: 96px 0 0;
  max-width: 720px;
  font-size: clamp(30px, 2.55vw, 48px);
  line-height: 1.18;
  font-weight: 400;
}

.what-note {
  grid-column: 9 / 12;
  margin: 110px 0 0;
  color: rgba(247, 247, 244, 0.72);
}

.what-cols {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 92px;
}

.what-col {
  min-height: 300px;
  padding: 34px 30px 0 28px;
  border-top: 1px solid rgba(247, 247, 244, 0.2);
  border-left: 1px solid rgba(247, 247, 244, 0.18);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.what-col:first-child {
  border-left: 0;
  padding-left: 0;
}

.what-col h2 {
  margin: 0 0 26px;
  font-size: clamp(24px, 1.65vw, 32px);
  line-height: 1.08;
  font-weight: 400;
}

.what-col p {
  margin: 0;
  color: rgba(247, 247, 244, 0.72);
}

.what-col .num {
  margin-top: auto;
  padding-top: 50px;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(247, 247, 244, 0.42);
}

.read-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.62;
}

.what-grid.tone-graphite .what-col .num,
.what-grid.is-off .what-col .num {
  display: block;
  font-size: 54px;
  line-height: 1;
  font-family: var(--font);
  font-weight: 400;
  color: rgba(247, 247, 244, 0.32);
}

.index-opening.what-grid.tone-graphite .what-col .num {
  color: rgba(247, 247, 244, 0.56);
}

.what-col:hover .read-note {
  opacity: 1;
}

.note-nav {
  padding: 18px var(--edge);
  background: var(--ink);
  color: var(--white);
}

.note-nav-inner {
  min-height: auto;
  padding: 28px 0 30px;
  border-top: 1px solid rgba(247, 247, 244, 0.22);
  border-bottom: 1px solid rgba(247, 247, 244, 0.22);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 247, 244, 0.66);
}

.note-nav-inner a,
.note-end a {
  color: inherit;
  text-decoration: none;
}

.note-nav-inner a {
  grid-column: 2 / 5;
}

.note-nav-inner span:nth-child(2) {
  grid-column: 5 / 8;
}

.note-nav-inner span:nth-child(3) {
  grid-column: 8 / 12;
  text-align: right;
}

.note-end {
  padding: 18px var(--edge);
  background: var(--soft);
  color: var(--white);
}

.note-end .large-text {
  text-decoration: none;
}

.note-end .large-text:hover {
  color: rgba(247, 247, 244, 0.68);
}

.note-article {
  background: #f8f8f6;
}

.note-article .nav {
  color: var(--ink);
  text-shadow: none;
}

.note-article .page-hero {
  display: none;
}

.note-article .note-nav {
  padding-top: 96px;
  background: #f8f8f6;
  color: var(--ink);
}

.note-article .note-nav-inner {
  padding-top: 20px;
  padding-bottom: 20px;
  border-color: transparent;
  color: rgba(25, 25, 25, 0.58);
}

.note-article-head {
  padding: 18px var(--edge);
  background: #f8f8f6;
  color: var(--ink);
}

.note-article-head-inner {
  min-height: 58vh;
  padding: clamp(76px, 8vw, 140px) 0 clamp(78px, 8vw, 138px);
  align-content: center;
  text-align: center;
}

.note-article-head p,
.note-article-head span {
  grid-column: 4 / 10;
  margin: 0 auto;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(25, 25, 25, 0.54);
}

.note-article-head h1 {
  grid-column: 3 / 11;
  margin: 34px auto 0;
  max-width: 12.5em;
  font-size: clamp(48px, 5.6vw, 104px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.note-article-head span {
  display: block;
  max-width: 34em;
  margin-top: 42px;
}

.note-article .section,
.note-article .section.is-off,
.note-article .case26,
.note-article .case26.is-light,
.note-article .case26.is-quiet {
  background: #f8f8f6;
  color: var(--ink);
}

.note-article .section:nth-of-type(even),
.note-article .case26:nth-of-type(even) {
  background: #f3f3f0;
}

.note-article .section.is-dark,
.note-article .note-end {
  background: var(--ink);
  color: var(--white);
}

.note-article .section-inner,
.note-article .case26-inner {
  min-height: auto;
  padding: clamp(54px, 5.6vw, 96px) 0;
  align-content: center;
}

.note-article .editorial-grid .section-inner,
.note-article .case26-inner {
  display: grid;
}

.note-article .split-title {
  grid-column: 4 / 10;
  justify-self: center;
  max-width: 14em;
  margin: 0 0 34px;
  font-size: clamp(28px, 2.6vw, 48px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.012em;
  text-align: center;
  color: var(--ink);
}

.note-article .copy-stack {
  grid-column: 3 / 11;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(42px, 5vw, 86px);
  row-gap: 18px;
  max-width: 940px;
  margin: 0 auto;
}

.note-article .copy-stack p {
  margin: 0;
  max-width: 34em;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  color: rgba(25, 25, 25, 0.7);
}

.note-article .note-article-head + .section .copy-stack p:first-child::first-letter {
  float: left;
  margin: 0.02em 0.16em 0 0;
  font-size: 7.2em;
  line-height: 0.78;
  font-weight: 400;
  color: var(--ink);
}

.note-article .image-band {
  height: 54vh;
  min-height: 380px;
}

.note-article .case26-about,
.note-article .case26-cols {
  grid-column: 4 / 10;
  display: block;
  max-width: 720px;
  margin: 0 auto;
}

.note-article .case26-label {
  margin: 0 auto 38px;
  text-align: center;
  color: rgba(25, 25, 25, 0.54);
}

.note-article .case26-lead {
  margin: 0 auto 42px;
  max-width: 14em;
  font-size: clamp(28px, 2.6vw, 48px);
  line-height: 1.12;
  text-align: center;
  color: var(--ink);
}

.note-article .case26-col {
  padding: 0;
}

.note-article .case26-col + .case26-col {
  margin-top: 38px;
}

.note-article .case26-col h3 {
  max-width: 40em;
  margin: 0 auto 18px;
  border-color: rgba(25, 25, 25, 0.18);
  text-align: center;
  color: rgba(25, 25, 25, 0.58);
}

.note-article .case26-col p {
  max-width: 34em;
  margin: 0 auto;
  font-size: 15px;
  line-height: 24px;
  text-align: left;
  color: rgba(25, 25, 25, 0.72);
}

.note-article .section.is-dark .label,
.note-article .section.is-dark .large-text,
.note-article .note-end .label,
.note-article .note-end .large-text {
  color: var(--white);
}

.note-article .section.is-dark .large-text,
.note-article .note-end .large-text {
  grid-column: 4 / 10;
  max-width: 840px;
  text-align: center;
}

.note-article .section.is-dark .label,
.note-article .note-end .label {
  grid-column: 4 / 10;
  margin: 0 auto 34px;
  text-align: center;
}

.note-article .section,
.note-article .section.is-off,
.note-article .section:nth-of-type(even),
.note-article .section.is-dark,
.note-article .case26,
.note-article .case26.is-light,
.note-article .case26.is-quiet,
.note-article .case26:nth-of-type(even) {
  background: #f8f8f6;
  color: var(--ink);
}

.note-article .section-inner,
.note-article .case26-inner {
  min-height: auto;
  padding: 18px 0;
}

.note-article-head + .section .section-inner {
  padding-top: clamp(42px, 5vw, 82px);
}

.note-article .section:has(+ .image-band) .section-inner,
.note-article .image-band + .section .section-inner {
  padding-bottom: clamp(44px, 5vw, 86px);
}

.note-article .split-title,
.note-article .case26-label,
.note-article .case26-lead,
.note-article .case26-col h3,
.note-article .section.is-dark .label {
  display: none;
}

.note-article .copy-stack,
.note-article .case26-about,
.note-article .case26-cols,
.note-article .section.is-dark .large-text {
  grid-column: 4 / 10;
  display: block;
  max-width: 680px;
  margin: 0 auto;
}

.note-article .copy-stack p,
.note-article .case26-col p,
.note-article .section.is-dark .large-text {
  max-width: none;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  color: rgba(25, 25, 25, 0.74);
}

.note-article .copy-stack p:last-child,
.note-article .case26-col p:last-child {
  margin-bottom: 0;
}

.note-article .case26-col + .case26-col {
  margin-top: 20px;
}

.note-article .note-article-head + .section .copy-stack p:first-child::first-letter {
  float: none;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.note-article .image-band {
  height: 48vh;
  min-height: 360px;
  margin: clamp(58px, 7vw, 112px) 0;
}

.journal-entry {
  padding: clamp(30px, 4vw, 72px) var(--edge) clamp(96px, 10vw, 170px);
  background: #f8f8f6;
  color: var(--ink);
}

.journal-body,
.journal-image {
  width: min(100%, 560px);
  margin-right: auto;
  margin-left: auto;
}

.journal-body p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(25, 25, 25, 0.76);
}

.journal-body p:last-child {
  margin-bottom: 0;
}

.journal-image {
  margin-top: clamp(58px, 7vw, 112px);
  margin-bottom: clamp(58px, 7vw, 112px);
  overflow: hidden;
}

.journal-image img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.78) contrast(0.96) brightness(0.86);
}

.legal-page .note-article-head-inner {
  min-height: 38vh;
  padding-top: clamp(58px, 6vw, 104px);
  padding-bottom: clamp(52px, 5.8vw, 96px);
}

.legal-page .note-article-head h1 {
  max-width: 10em;
  margin-top: 22px;
  font-size: clamp(34px, 3.8vw, 64px);
  line-height: 1.05;
}

.legal-page .note-article-head p,
.legal-page .note-article-head span {
  font-size: 11px;
  line-height: 16px;
}

.legal-page .note-article-head span {
  margin-top: 24px;
}

.legal-page .journal-entry {
  padding-top: clamp(22px, 3vw, 46px);
  padding-bottom: clamp(72px, 8vw, 124px);
}

.legal-page .journal-body {
  width: min(100%, 720px);
}

.legal-page .journal-body p {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 22px;
  color: rgba(25, 25, 25, 0.74);
}

.legal-page .journal-body h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(25, 25, 25, 0.54);
}

.legal-page .journal-body h2:first-child {
  margin-top: 0;
}

.note-article {
  background: var(--ink);
  color: var(--white);
}

.note-article .nav {
  color: var(--white);
}

.note-article .note-nav,
.note-article-head,
.journal-entry,
.note-article .section,
.note-article .section.is-off,
.note-article .section:nth-of-type(even),
.note-article .section.is-dark,
.note-article .case26,
.note-article .case26.is-light,
.note-article .case26.is-quiet,
.note-article .case26:nth-of-type(even),
.note-article .note-end {
  background: var(--ink);
  color: var(--white);
}

.note-article .note-nav-inner {
  color: rgba(248, 248, 246, 0.5);
}

.note-article-head p,
.note-article-head span,
.note-article .case26-label,
.note-article .case26-col h3 {
  color: rgba(248, 248, 246, 0.5);
}

.note-article-head h1,
.note-article .split-title,
.note-article .case26-lead {
  color: var(--white);
}

.journal-body p,
.note-article .copy-stack p,
.note-article .case26-col p,
.note-article .section.is-dark .large-text {
  color: rgba(248, 248, 246, 0.72);
}

.journal-body a,
.legal-page .journal-body a {
  color: rgba(248, 248, 246, 0.86);
}

.legal-page .note-article-head-inner {
  min-height: auto;
  padding-top: clamp(118px, 10vw, 172px);
  padding-bottom: clamp(32px, 4vw, 64px);
  align-content: start;
  text-align: left;
}

.legal-page .note-article-head p,
.legal-page .note-article-head h1,
.legal-page .note-article-head span {
  grid-column: 1 / 7;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.legal-page .note-article-head h1 {
  max-width: 12em;
  margin-top: 18px;
  font-size: clamp(28px, 2.7vw, 46px);
  line-height: 1.08;
}

.legal-page .note-article-head span {
  margin-top: 18px;
}

.legal-page .journal-entry {
  padding-top: 0;
  padding-bottom: clamp(72px, 8vw, 124px);
}

.legal-page .journal-body {
  width: min(100%, 720px);
  margin-left: 0;
  margin-right: auto;
}

.legal-page .journal-body p {
  color: rgba(248, 248, 246, 0.68);
}

.legal-page .journal-body h2 {
  color: rgba(248, 248, 246, 0.5);
}

.notes-shelf {
  padding: 18px var(--edge);
  background: var(--soft-2);
  color: var(--white);
}

.notes-shelf-inner {
  min-height: 150vh;
  padding: clamp(110px, 10vw, 180px) 0;
}

.notes-shelf-copy {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: 27% 1fr;
  column-gap: var(--gutter);
  margin-bottom: clamp(68px, 7vw, 132px);
}

.notes-shelf-copy .label { grid-column: auto; }

.notes-shelf-copy h2 {
  grid-column: 2;
  max-width: 18em;
  margin: 0;
  font-size: clamp(30px, 2.65vw, 52px);
  line-height: 1.12;
  font-weight: 400;
}

.notes-shelf-copy > p:last-child {
  grid-column: 2;
  max-width: 38em;
  margin: 30px 0 0;
  font-size: 15px;
  line-height: 24px;
  color: rgba(247, 247, 244, 0.62);
}

.notes-shelf-grid {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(58px, 8vw, 140px) clamp(28px, 5vw, 92px);
}

.note-card {
  display: block;
  color: inherit;
  text-decoration: none;
  opacity: 0;
  transform: translate3d(0, 126px, 0);
  transition: opacity 1080ms cubic-bezier(0.16, 1, 0.3, 1), transform 1080ms cubic-bezier(0.16, 1, 0.3, 1);
}

.note-card.is-note-card-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.note-card-media {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink);
  width: 100%;
}

.note-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(0.92) brightness(0.76);
  transform: translate3d(0, 14%, 0) scale(1.18);
  transition: transform 1300ms cubic-bezier(0.16, 1, 0.3, 1), filter 650ms ease;
}

.note-card.is-note-card-visible .note-card-media img,
.note-card:hover .note-card-media img {
  transform: translate3d(0, 0, 0) scale(1.04);
}

.note-card:hover .note-card-media img { filter: saturate(0.72) contrast(0.96) brightness(0.86); }

.note-card-meta,
.note-card .read-note {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.note-card-meta {
  margin-top: 18px;
  color: rgba(247, 247, 244, 0.5);
}

.note-card strong {
  display: block;
  max-width: 15em;
  margin-top: 14px;
  font-size: clamp(24px, 2vw, 38px);
  line-height: 1.12;
  font-weight: 400;
}

.note-card .read-note {
  margin-top: 24px;
  color: var(--white);
}

.process-deck {
  padding: 18px var(--edge);
  background: var(--ink);
  color: var(--white);
}

.process-deck.tone-soft {
  background: var(--soft-2);
}

.process-deck-inner {
  min-height: 76vh;
  padding: 86px 0;
  align-content: center;
}

.process-deck-head {
  grid-column: 2 / 12;
  display: flex;
  justify-content: space-between;
  margin: 0 0 54px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 247, 244, 0.58);
}

.process-deck-title {
  grid-column: 2 / 11;
  margin: 0;
  max-width: 1180px;
  font-size: clamp(32px, 3.35vw, 60px);
  line-height: 1.24;
  font-weight: 400;
}

.process-steps {
  grid-column: 2 / 12;
  display: flex;
  align-items: flex-start;
  gap: clamp(22px, 3vw, 54px);
  margin-top: 100px;
}

.process-step .n {
  font-size: clamp(46px, 4.5vw, 84px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.process-step .label {
  margin-top: 1.1em;
  font-size: 19px;
  line-height: 1.2;
  color: var(--white);
}

.process-step .desc {
  max-width: 220px;
  margin-top: 20px;
  font-size: 13px;
  line-height: 19px;
  color: rgba(248, 248, 246, 0.58);
}

.process-arrow {
  width: clamp(44px, 5vw, 88px);
  height: 1px;
  margin-top: clamp(22px, 2.2vw, 40px);
  background: rgba(247, 247, 244, 0.48);
  position: relative;
  flex: 0 0 auto;
}

.process-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border: solid rgba(247, 247, 244, 0.48);
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
}

.editorial-grid .section-inner {
  min-height: auto;
  padding: 150px 0;
  align-content: start;
}

.editorial-meta {
  grid-column: 2 / 5;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(25, 25, 25, 0.54);
}

.section.is-dark .editorial-meta {
  color: rgba(247, 247, 244, 0.54);
}

.section.is-muted .split-title,
.section.is-dark .split-title {
  color: rgba(248, 248, 246, 0.62);
}

.section.is-muted .copy-stack p,
.section.is-dark .copy-stack p {
  color: rgba(248, 248, 246, 0.72);
}

.editorial-title {
  grid-column: 5 / 12;
  margin: 0 0 54px;
  max-width: 980px;
  font-size: clamp(34px, 3vw, 58px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.006em;
}

.editorial-copy {
  grid-column: 5 / 12;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 72px;
  max-width: 1000px;
}

.editorial-copy p {
  margin: 0 0 22px;
}

.editorial-grid .split-title {
  grid-column: 2 / 5;
  max-width: 240px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(25, 25, 25, 0.58);
}

.editorial-grid .copy-stack {
  grid-column: 5 / 12;
  max-width: 980px;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 72px;
  margin-top: 0;
}

.editorial-grid .copy-stack p {
  margin: 0;
  font-size: 19px;
  line-height: 28px;
  letter-spacing: 0;
}

.section.is-muted .editorial-grid .split-title,
.section.is-dark .editorial-grid .split-title,
.section.is-muted.editorial-grid .split-title,
.section.is-dark.editorial-grid .split-title {
  color: rgba(248, 248, 246, 0.62);
}

.section.is-muted .editorial-grid .copy-stack p,
.section.is-dark .editorial-grid .copy-stack p,
.section.is-muted.editorial-grid .copy-stack p,
.section.is-dark.editorial-grid .copy-stack p {
  color: rgba(248, 248, 246, 0.72);
}

.image-band {
  height: 92vh;
  min-height: 620px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
  clip-path: inset(0);
  --image-window-w: 100vw;
  --image-window-h: min(75vh, 820px);
  --image-window-x: calc((100vw - var(--image-window-w)) / 2);
  --image-window-y: calc((100vh - var(--image-window-h)) / 2);
}

.image-band img,
.image-band video {
  position: fixed;
  left: var(--image-window-x);
  top: var(--image-window-y);
  width: var(--image-window-w);
  height: var(--image-window-h);
  z-index: 0;
  filter: saturate(0.68) contrast(0.92) brightness(0.78);
}

.image-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
}

.image-band::after {
  position: fixed;
  left: var(--image-window-x);
  top: var(--image-window-y);
  width: var(--image-window-w);
  height: var(--image-window-h);
  inset: auto;
  box-shadow: none;
}

.image-band-caption {
  position: absolute;
  left: 22px;
  bottom: calc((100% - var(--image-window-h)) / 2 + 22px);
  z-index: 2;
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 248, 246, 0.68);
  pointer-events: none;
}

.image-band-mini {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  z-index: 2;
  width: min(calc(var(--image-window-w) - 80px), 1180px);
  max-width: calc(var(--image-window-w) - 80px);
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: clamp(24px, 3vw, 58px);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.image-band-mini.is-right {
  left: 50%;
  right: auto;
}

.image-band-mini.is-center {
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.image-band-mini > div {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(1px);
  transition:
    opacity 900ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.image-band.is-band-visible .image-band-mini > div {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.image-band.is-band-visible .image-band-mini > div:nth-child(1) { transition-delay: 100ms; }
.image-band.is-band-visible .image-band-mini > div:nth-child(2) { transition-delay: 260ms; }
.image-band.is-band-visible .image-band-mini > div:nth-child(3) { transition-delay: 420ms; }
.image-band.is-band-visible .image-band-mini > div:nth-child(4) { transition-delay: 580ms; }

.image-band-mini span {
  display: block;
}

.image-band-mini .echo {
  margin-top: 4px;
  color: rgba(248, 248, 246, 0.38);
}

.image-band.is-bottom-copy .image-band-mini {
  top: auto;
  bottom: clamp(52px, 8vh, 96px);
  transform: translateX(-50%);
}

.image-band.is-light-copy .image-band-mini,
.image-band.is-light-copy .image-band-caption {
  color: rgba(21, 22, 22, 0.86);
}

.image-band.is-light-copy .image-band-mini .echo {
  color: rgba(21, 22, 22, 0.48);
}

.image-band.is-light-copy::after {
  --image-matte-top: rgba(242, 244, 244, 0.02);
  --image-matte-bottom: rgba(242, 244, 244, 0.08);
  --image-matte-fill: rgba(242, 244, 244, 0.01);
}

.image-band-table.is-matte {
  --image-matte-top: rgba(18, 19, 20, 0.14);
  --image-matte-bottom: rgba(18, 19, 20, 0.32);
  --image-matte-fill: rgba(18, 19, 20, 0.06);
}

.image-band-table .hero-table {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(52vw, 820px);
  max-width: calc(100vw - (var(--edge) * 2));
  transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(242, 244, 244, 0.86);
  pointer-events: none;
}

.image-band-table .hero-table-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(242, 244, 244, 0.38);
  padding: 0.8em 0;
}

.image-band-table .hero-table-row:last-child {
  border-bottom: 1px solid rgba(242, 244, 244, 0.38);
}

.image-band-table .hero-foot {
  position: fixed;
  left: 50%;
  top: calc(50% + 108px);
  z-index: 2;
  width: min(52vw, 820px);
  max-width: calc(100vw - (var(--edge) * 2));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(242, 244, 244, 0.58);
  pointer-events: none;
}

.media-text {
  padding: 0;
  background: var(--ink);
  color: var(--white);
}

.media-text-inner {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  min-height: 76vh;
}

.media-text.is-reverse .media-text-inner {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 1fr);
}

.media-text-media {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  background: var(--ink);
}

.media-text-media img {
  filter: saturate(0.72) contrast(0.94) brightness(0.84);
  transform: scale(1.01);
  will-change: transform;
}

.media-text-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 25, 25, 0.12), rgba(25, 25, 25, 0.34)),
    rgba(25, 25, 25, 0.08);
  mix-blend-mode: normal;
}

.media-text-copy {
  display: grid;
  align-content: center;
  padding: clamp(96px, 8vw, 156px) clamp(64px, 7vw, 132px);
}

.media-text-copy > * {
  max-width: 660px;
}

.media-text-kicker {
  margin: 0 0 52px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(248, 248, 246, 0.58);
}

.media-text-copy h2 {
  margin: 0 0 36px;
  font-size: clamp(19px, 1.25vw, 24px);
  line-height: 1.22;
  font-weight: 400;
}

.media-text-copy p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(248, 248, 246, 0.72);
}

.media-text-copy p:last-child {
  margin-bottom: 0;
}

.process-list,
.note-list {
  grid-column: 7 / 12;
}

.process-row,
.note-row {
  display: grid;
  grid-template-columns: 92px 1fr 34px;
  min-height: 92px;
  align-items: center;
}

.process-row span,
.note-row span {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

.process-row .plus,
.note-row .plus {
  justify-self: end;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.term-grid {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px 60px;
}

.term-card h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 34px;
  font-weight: 400;
}

.term-card p {
  margin: 0;
}

.footer {
  min-height: auto;
  padding: 48px 0 18px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.footer-inner,
.footer-bottom {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 0;
  padding-left: 25px;
  padding-right: 25px;
}

.footer-inner {
  min-height: clamp(292px, 30vh, 350px);
  border-top: 1px solid rgba(247, 247, 244, 0.18);
  border-bottom: 1px solid rgba(247, 247, 244, 0.18);
}

.footer-col {
  padding: 54px clamp(26px, 2.8vw, 48px);
  border-left: 1px solid rgba(247, 247, 244, 0.18);
}

.footer-col:first-child { grid-column: 1 / 4; }
.footer-col:nth-child(2) { grid-column: 4 / 7; }
.footer-col:nth-child(3) { grid-column: 7 / 10; }
.footer-col:nth-child(4) {
  grid-column: 10 / 13;
  border-right: 1px solid rgba(247, 247, 244, 0.18);
}

.footer h3,
.footer p,
.footer a {
  margin: 0;
  color: inherit;
  text-decoration: none;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer h3 {
  margin-bottom: 36px;
  font-size: 12px;
  line-height: 18px;
}

.footer p,
.footer a {
  display: block;
  color: rgba(247, 247, 244, 0.58);
  font-size: 12px;
  line-height: 18px;
}

.footer-col p + a {
  margin-top: 6px;
}

.footer-spacer {
  display: block;
  height: 26px;
}

.footer-spacer + p {
  color: rgba(247, 247, 244, 0.74);
}

.footer-rule {
  display: block;
  width: 100%;
  height: 1px;
  margin: 20px 0 26px;
  background: rgba(247, 247, 244, 0.18);
}

.footer-col:first-child a:first-of-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(247, 247, 244, 0.18);
}

.footer-col:first-child a:first-of-type::after {
  content: "↗";
  color: rgba(247, 247, 244, 0.58);
  font-size: 12px;
}

.footer-col:first-child .footer-rule {
  display: none;
}

.footer-mark {
  width: calc(100% - 50px);
  max-width: none;
  margin: clamp(110px, 14vh, 170px) auto 24px;
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(72px, 18.3vw, 352px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  overflow: visible;
}

.footer-mark.reveal,
.footer-mark.reveal.is-visible {
  filter: none;
}

.footer-mark sup {
  position: relative;
  top: -0.95em;
  margin-left: 0.08em;
  font-size: 0.12em;
  line-height: 1;
  letter-spacing: 0;
}

.footer-caption {
  width: 100%;
  max-width: var(--max);
  margin: 10px auto 0;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  color: rgba(248, 248, 246, 0.58);
}

.footer-caption {
  display: none;
}

.footer-bottom {
  margin-top: 0;
  padding-bottom: 0;
  width: 100%;
  color: rgba(247, 247, 244, 0.58);
}

.footer-bottom p,
.footer-bottom a {
  font-size: 12px;
  line-height: 18px;
}

.footer-bottom a {
  display: inline;
}

.footer-bottom p:first-child { grid-column: 1 / 4; }
.footer-bottom p:last-child {
  grid-column: 10 / 13;
  text-align: right;
}

.footer-bottom p:only-child {
  grid-column: 1 / 4;
  text-align: left;
}

.reveal {
  opacity: 0.12;
  transform: translate3d(0, 30px, 0);
  clip-path: inset(-0.24em -0.24em -0.36em -0.24em);
  filter: blur(2px);
  transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1), clip-path 720ms cubic-bezier(0.16, 1, 0.3, 1), filter 720ms cubic-bezier(0.16, 1, 0.3, 1), color 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(-0.24em -0.24em -0.36em -0.24em);
  filter: blur(0);
}

.index-approach-hero .poster-title.reveal.is-visible,
.index-approach-hero .poster-info.reveal.is-visible {
  opacity: var(--hero-title-opacity);
  transform: translate3d(0, var(--hero-title-y), 0);
}

.page-title.reveal,
.what-title.reveal,
.type14-title.reveal,
.case26-lead.reveal,
.method-numbers-head.reveal,
.large-text.reveal {
  filter: none;
}

.method-card.reveal {
  filter: none;
}

.section:not(.is-dark):not(.is-off):not(.is-muted) .reveal {
  color: rgba(25, 25, 25, 0.38);
}

.section:not(.is-dark):not(.is-off):not(.is-muted) .reveal.is-visible {
  color: var(--ink);
}

.page-hero .reveal,
.section.is-dark .reveal,
.section.is-off .reveal,
.section.is-muted .reveal,
.footer .reveal {
  color: rgba(247, 247, 244, 0.42);
}

.page-hero .reveal.is-visible,
.section.is-dark .reveal.is-visible,
.section.is-off .reveal.is-visible,
.section.is-muted .reveal.is-visible,
.footer .reveal.is-visible {
  color: var(--white);
}

.mono,
.nav-links,
.poster-info,
.poster-band span,
.a11-labels,
.client-logo-copy,
.table-hero .hero-table,
.hero-table-row,
.hero-foot,
.type14-meta,
.case26-label,
.phase-num,
.method-label,
.trust-system-head,
.trust-system h2,
.type33-intro,
.type33-row p,
.type28-intro,
.type28-label,
.label,
.what-col .num,
.read-note,
.process-step .desc,
.process-step .label,
.image-band-caption,
.media-text-kicker,
.footer h3,
.footer p,
.footer a,
.footer-bottom p,
.footer-caption {
  font-size: 11px;
  line-height: 16px;
}

.nav-sticker {
  font-size: 13px;
  line-height: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .index-opening .what-col:not(:first-child)::before {
    transform: scaleY(1);
    transition: none;
  }

  .case26-col h3::after {
    transform: scaleX(1);
    transition: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --edge: 22px;
    --gutter: 20px;
  }

  .grid,
  .page-hero-inner,
  .footer-inner,
  .footer-bottom,
  .nav-inner {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .nav-brand { grid-column: 1 / 3; }
  .nav-links { grid-column: 3 / 7; }

  .page-kicker,
  .page-title,
  .page-intro,
  .poster-title,
  .poster-info,
  .poster-band,
  .label,
  .large-text,
  .copy-stack,
  .split-title,
  .split-copy,
  .ordered-head,
  .ordered-col,
  .what-title,
  .what-statement,
  .what-note,
  .what-cols,
  .process-deck-head,
  .process-deck-title,
  .process-steps,
  .hero-table,
  .hero-foot,
  .type20-open,
  .type20-title,
  .type20-list,
  .case26-head,
  .case26-about,
  .case26-cols,
  .phase-row,
  .type14-meta,
  .type14-title,
  .type14-copy,
  .trust-system-head,
  .trust-system article,
  .editorial-meta,
  .editorial-title,
  .editorial-copy,
  .editorial-grid .split-title,
  .editorial-grid .copy-stack,
  .process-list,
  .note-list,
  .term-grid,
  .footer-col,
  .footer-bottom p {
    grid-column: 1 / 7;
  }

  .page-intro,
  .large-text,
  .copy-stack,
  .split-copy,
  .process-list,
  .note-list {
    margin-top: 70px;
  }

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

  .trust-system-head {
    grid-template-columns: 1fr;
    margin-bottom: 54px;
  }

  .trust-system article:nth-of-type(1),
  .trust-system article:nth-of-type(2),
  .trust-system article:nth-of-type(3) {
    grid-column: 1 / 7;
  }

  .trust-system article + article {
    margin-top: 42px;
  }

  .poster-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: end;
  }

  .ordered-col:nth-child(2),
  .ordered-col:nth-child(3),
  .ordered-col:nth-child(4) {
    grid-column: 1 / 7;
  }

  .ordered-col + .ordered-col {
    margin-top: 62px;
  }

  .what-cols {
    grid-template-columns: 1fr;
  }

  .what-col,
  .what-col:first-child {
    min-height: 220px;
    border-left: 0;
    padding-left: 0;
  }

  .process-steps {
    flex-wrap: wrap;
  }

  .client-logos {
    --logo-gap: 96px;
    height: 24vh;
    min-height: 200px;
    padding: 0;
  }

  .client-logo-row {
    flex-wrap: nowrap;
    gap: var(--logo-gap);
    padding: 0 var(--logo-gap) 0 0;
  }

  .editorial-copy {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .editorial-grid .copy-stack {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .case26-head,
  .case26-about,
  .case26-cols,
  .phase-row,
  .method-numbers-head,
  .method-card,
  .type33-intro,
  .type33-row,
  .type28-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .method-numbers-head,
  .method-card {
    grid-column: 1 / 7;
  }

  .phase-copy {
    columns: 1;
  }

  .method-card:nth-of-type(1),
  .method-card:nth-of-type(2),
  .method-card:nth-of-type(3),
  .method-card:nth-of-type(4) {
    grid-column: 1 / 7;
  }

  .type20-title {
    text-align: left;
    align-self: end;
    margin-bottom: 36px;
  }

  .type20-list {
    align-self: start;
    margin-top: 0;
  }

  .type28-intro,
  .type28-arrow {
    position: static;
    margin-top: 34px;
  }

  .type28-line.l2,
  .type28-line.l3 {
    margin-left: 0;
  }

  .footer-col,
  .footer-col:first-child,
  .footer-col:nth-child(2),
  .footer-col:nth-child(3),
  .footer-col:nth-child(4) {
    grid-column: 1 / 7;
    border-right: 1px solid rgba(247, 247, 244, 0.18);
  }

  .footer-mark {
    width: calc(100% - 44px);
    font-size: clamp(56px, 16.8vw, 132px);
    letter-spacing: 0;
    white-space: nowrap;
  }

  .footer-bottom p:first-child,
  .footer-bottom p:last-child {
    grid-column: 1 / 7;
    text-align: left;
    margin-top: 28px;
  }

  .footer-bottom p:only-child {
    grid-column: 1 / 7;
    text-align: left;
  }

  .note-article .note-nav-inner,
  .note-article-head p,
  .note-article-head span,
  .note-article-head h1,
  .note-article .split-title,
  .note-article .copy-stack,
  .note-article .case26-about,
  .note-article .case26-cols,
  .note-article .section.is-dark .large-text,
  .note-article .note-end .large-text,
  .note-article .section.is-dark .label,
  .note-article .note-end .label {
    grid-column: 1 / 7;
  }

  .note-article .copy-stack {
    display: block;
    max-width: 680px;
  }

  .note-article .copy-stack p + p {
    margin-top: 20px;
  }

  .notes-shelf-copy,
  .notes-shelf-grid {
    grid-column: 1 / 7;
  }
}

@media (max-width: 720px) {
  :root {
    --edge: 16px;
  }

  .nav {
    display: block;
    padding: 20px var(--edge) 0;
  }

  .nav-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 12px;
  }

  .nav-brand {
    grid-column: 1 / 5;
    font-size: 12px;
    line-height: 16px;
  }

  .nav-links {
    grid-column: 1 / 5;
    justify-content: space-between;
    gap: 12px;
    font-size: 10px;
    line-height: 14px;
  }

  .page-hero {
    min-height: 86vh;
  }

  .scroll-video-hero {
    height: 86vh;
    min-height: 86vh;
  }

  .scroll-video-hero .hero-sticky {
    position: relative;
    height: 86vh;
    min-height: 86vh;
  }

  .scroll-video-hero .page-hero-media {
    background: url("herovideo/heromovie.jpg") center / cover no-repeat;
  }

  .scroll-video-hero .page-hero-media video {
    display: none;
  }

  .scroll-video-hero .page-hero-media .hero-freeze-frame {
    opacity: 0 !important;
  }

  .page-hero-inner {
    min-height: calc(86vh - 36px);
  }

  .page-title {
    font-size: 48px;
  }

  .poster-title {
    font-size: 38px;
  }

  .index-approach-hero .poster-title {
    grid-column: 1 / 7;
    justify-self: start;
    max-width: none;
    text-align: left;
    font-size: clamp(34px, 12vw, 54px);
  }

  .index-approach-hero .poster-info {
    grid-column: 1 / 7;
    justify-self: start;
    min-width: 0;
    max-width: 100%;
    font-size: 11px;
    line-height: 16px;
  }

  .poster-info {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .poster-slash {
    display: none;
  }

  .poster-band {
    grid-template-columns: 1fr;
    font-size: 10px;
  }

  .what-title {
    font-size: 48px;
  }

  .what-statement {
    font-size: 28px;
  }

  .process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .table-hero .hero-table {
    font-size: 15px;
  }

  .table-hero .hero-table-row {
    flex-wrap: wrap;
  }

  .table-hero .hero-foot {
    display: grid;
    gap: 12px;
  }

  .type14-title,
  .type28-line {
    font-size: 44px;
  }

  .case26-lead,
  .type33-intro p,
  .type33-row h2 {
    font-size: 30px;
  }

  .process-arrow {
    display: none;
  }

  .large-text,
  .term-card h2 {
    font-size: 25px;
    line-height: 32px;
  }

  .section-inner,
  .section-inner.is-compact {
    min-height: auto;
    padding: 96px 0;
  }

  .image-band {
    height: 82vh;
    min-height: 560px;
    --image-window-w: 100vw;
    --image-window-h: min(70vh, 560px);
  }

  .image-band-caption {
    left: calc(var(--image-window-x) + 14px);
    bottom: calc(var(--image-window-y) + 14px);
    font-size: 10px;
    line-height: 14px;
  }

  .image-band-mini,
  .image-band-mini.is-right,
  .image-band-mini.is-center {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    width: calc(var(--image-window-w) - 28px);
    max-width: calc(var(--image-window-w) - 28px);
    transform: translate(-50%, -50%);
    text-align: left;
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px;
    font-size: 10px;
    line-height: 14px;
  }

  .image-band-table .hero-table,
  .mini-table .hero-table {
    left: var(--edge);
    right: var(--edge);
    bottom: 72px;
    width: auto;
    font-size: clamp(18px, 7vw, 32px);
    line-height: 1.05;
  }

  .image-band-table .hero-foot,
  .mini-table .hero-foot {
    left: var(--edge);
    right: var(--edge);
    bottom: 24px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 10px;
    line-height: 14px;
  }

  .client-logos {
    --logo-gap: 74px;
    height: 22vh;
    min-height: 172px;
    padding: 0;
  }

  .client-logo-row {
    gap: var(--logo-gap);
    padding: 0 var(--logo-gap) 0 0;
  }

  .client-logo-row img {
    max-width: 94px;
    max-height: 32px;
  }

  .client-logo-row img[src$=".png"] {
    max-width: 154px;
    max-height: 30px;
  }

  .client-logo-row .logo-aok {
    max-width: 64px;
    max-height: 24px;
  }

  .client-logo-row .logo-universal {
    max-width: 116px;
    max-height: 38px;
  }

  .client-logo-row .logo-mbfw {
    max-width: 184px;
    max-height: 34px;
  }

  .client-logo-row .logo-alessandro {
    max-width: 138px;
    max-height: 38px;
  }

  .client-logo-copy {
    font-size: 12px;
    line-height: 21px;
  }

  .note-article .note-nav {
    padding-top: 28px;
  }

  .note-article-head-inner {
    min-height: auto;
    padding: 92px 0 74px;
  }

  .note-article-head h1 {
    font-size: clamp(38px, 13vw, 58px);
    line-height: 1.04;
  }

  .note-article-head span {
    margin-top: 30px;
  }

  .note-article .section-inner,
  .note-article .case26-inner {
    padding: 72px 0;
  }

  .note-article .split-title,
  .note-article .case26-lead {
    font-size: clamp(28px, 9vw, 42px);
  }

  .note-article .copy-stack p,
  .note-article .case26-col p {
    font-size: 16px;
    line-height: 26px;
  }

  .note-article .image-band {
    height: 46vh;
    min-height: 300px;
  }

  .notes-shelf-inner {
    min-height: auto;
    padding: 88px 0;
  }

  .notes-shelf-copy,
  .notes-shelf-grid {
    grid-column: 1 / 7;
  }

  .notes-shelf-copy {
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-bottom: 64px;
  }

  .notes-shelf-copy h2,
  .notes-shelf-copy > p:last-child {
    grid-column: auto;
    margin: 0;
  }

  .notes-shelf-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .note-card strong { font-size: 30px; }
}

@media (max-width: 720px) {
  :root {
    --edge: 24px;
    --gutter: 16px;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  main,
  section,
  header,
  footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .grid,
  .page-hero-inner,
  .footer-inner,
  .footer-bottom,
  .nav-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nav {
    padding: 22px var(--edge) 0;
  }

  .nav-inner {
    align-items: center;
    row-gap: 0;
  }

  .nav-brand {
    grid-column: 1 / 4;
    position: relative;
    z-index: 32;
    font-size: 12px;
    line-height: 16px;
    white-space: nowrap;
  }

  .nav-toggle {
    display: block;
    grid-column: 4 / 5;
    justify-self: end;
    position: relative;
    z-index: 32;
    appearance: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    color: var(--white);
    font-family: var(--mono);
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .nav-links {
    grid-column: 1 / 5;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
    gap: 18px;
    max-height: 0;
    padding-top: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 260ms ease, opacity 180ms ease, transform 260ms ease, padding-top 260ms ease;
    font-size: 18px;
    line-height: 22px;
  }

  .nav.is-open {
    padding-bottom: 28px;
    background: rgba(21, 22, 22, 0.98);
  }

  .nav.is-open .nav-links {
    max-height: 260px;
    padding-top: 42px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav-open {
    overflow: hidden;
  }

  .page-hero {
    min-height: 84vh;
    padding: 18px var(--edge);
  }

  .scroll-video-hero,
  .scroll-video-hero .hero-sticky {
    height: 84vh;
    min-height: 84vh;
  }

  .scroll-video-hero .hero-sticky {
    position: relative;
  }

  .scroll-video-hero .page-hero-media {
    background: url("herovideo/heromovie.jpg") center / cover no-repeat;
  }

  .scroll-video-hero .page-hero-media video {
    display: none;
  }

  .scroll-video-hero .page-hero-media .hero-freeze-frame {
    opacity: 0 !important;
  }

  .page-hero-inner {
    min-height: calc(84vh - 36px);
    padding: 112px 0 54px;
    align-content: center;
  }

  .poster-title,
  .quiet-hero .poster-title,
  .center-quiet .poster-title,
  .minimal-hero .poster-title,
  .minimal-hero.is-single .poster-title,
  .minimal-hero.is-centered-combo .poster-title,
  .notes-hero.minimal-hero.is-single .poster-title,
  .index-approach-hero .poster-title {
    grid-column: 1 / 5;
    justify-self: start;
    align-self: end;
    max-width: 100%;
    white-space: normal;
    text-align: left;
    font-size: clamp(38px, 12.5vw, 56px);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .poster-info,
  .quiet-hero .poster-info,
  .center-quiet .poster-info,
  .minimal-hero .poster-info,
  .minimal-hero.is-single .poster-info,
  .minimal-hero.is-centered-combo .poster-info,
  .index-approach-hero .poster-info {
    grid-column: 1 / 5;
    justify-self: start;
    align-self: start;
    min-width: 0;
    max-width: 100%;
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 11px;
    line-height: 16px;
  }

  .poster-slash {
    display: none;
  }

  .poster-band {
    grid-column: 1 / 5;
    grid-template-columns: 1fr;
  }

  .page-title,
  .what-title,
  .type14-title,
  .type28-line {
    font-size: clamp(38px, 12vw, 56px);
    line-height: 1.02;
  }

  .what-statement,
  .case26-lead,
  .type33-intro p,
  .type33-row h2 {
    font-size: clamp(28px, 8.5vw, 38px);
    line-height: 1.16;
  }

  .large-text,
  .term-card h2 {
    font-size: clamp(24px, 7.4vw, 34px);
    line-height: 1.22;
  }

  .section-inner,
  .section-inner.is-compact,
  .type14-inner,
  .case26-inner,
  .case26.is-index .case26-inner,
  .visible-trust-section .case26-inner {
    min-height: auto;
    padding: 104px 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section-inner > *,
  .label,
  .large-text,
  .split-title,
  .split-copy,
  .copy-stack,
  .type14-meta,
  .type14-title,
  .type14-copy,
  .case26-head,
  .case26-about,
  .case26.is-index .case26-about,
  .case26-cols,
  .case26.is-index .case26-cols,
  .phase-row,
  .method-numbers-head,
  .method-card,
  .editorial-meta,
  .editorial-title,
  .editorial-copy,
  .notes-shelf-copy,
  .notes-shelf-grid {
    grid-column: 1 / 5;
  }

  .type14-meta {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 11px;
    line-height: 15px;
  }

  .type14-meta span,
  .type14-meta span:nth-child(2),
  .type14-meta span:nth-child(3) {
    text-align: left;
  }

  .type14-title,
  .type14-copy {
    margin-top: 42px;
  }

  .case26-head,
  .case26-about,
  .case26.is-index .case26-about,
  .case26-cols,
  .case26.is-index .case26-cols,
  .case26.is-index .case26-cols + .case26-cols {
    display: block;
    margin-top: 48px;
  }

  .case26-inner > .case26-about:first-child,
  .case26.is-index .case26-about:first-child {
    margin-top: 0;
  }

  .case26-label {
    max-width: 100%;
    font-size: 11px;
    line-height: 15px;
    overflow-wrap: anywhere;
  }

  .case26-lead,
  .case26.is-index .case26-lead {
    max-width: none;
    margin-top: 28px;
  }

  .case26-col,
  .case26.is-index .case26-col {
    max-width: none;
    padding-right: 0;
  }

  .case26-col + .case26-col,
  .case26.is-index .case26-col + .case26-col {
    margin-top: 38px;
  }

  .case26-col h3 {
    font-size: 11px;
    line-height: 15px;
  }

  .case26-col p,
  .case26.is-index .case26-col p {
    max-width: none;
    font-size: 16px;
    line-height: 26px;
    overflow-wrap: anywhere;
  }

  .image-band-table .hero-table,
  .mini-table .hero-table {
    position: absolute;
    left: var(--edge);
    right: var(--edge);
    top: auto;
    bottom: 88px;
    width: auto;
    max-width: none;
    transform: none;
    font-size: 11px;
    line-height: 15px;
  }

  .image-band-table .hero-foot,
  .mini-table .hero-foot {
    position: absolute;
    left: var(--edge);
    right: var(--edge);
    top: auto;
    bottom: 24px;
    width: auto;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    transform: none;
    font-size: 10px;
    line-height: 14px;
  }

  .image-band-table .hero-table-row,
  .mini-table .hero-table-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 0.65em 0;
  }

  .image-band-table .hero-table-row span,
  .mini-table .hero-table-row span {
    min-width: 0;
    overflow: hidden;
    text-overflow: clip;
  }

  .image-band-mini,
  .image-band-mini.is-right,
  .image-band-mini.is-center {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .method-numbers-inner {
    min-height: auto;
    padding: 104px 0;
  }

  .method-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-mark {
    width: calc(100vw - (var(--edge) * 2));
    font-size: clamp(46px, 14.4vw, 68px);
    line-height: 0.9;
  }
}

@media (max-width: 720px) {
  :root {
    --edge: 30px;
  }

  .nav-brand,
  .nav-toggle {
    font-size: 11px;
    line-height: 16px;
  }

  .scroll-video-hero,
  .scroll-video-hero .hero-sticky {
    height: 88vh;
    min-height: 88vh;
  }

  .scroll-video-hero .page-hero-media {
    background: url("herovideo/heromovie.jpg") center / cover no-repeat;
  }

  .scroll-video-hero .page-hero-media::before {
    opacity: 0.28;
  }

  .scroll-video-hero .page-hero-inner {
    min-height: calc(88vh - 36px);
    padding: 132px 0 68px;
    align-content: center;
  }

  .index-approach-hero .poster-title {
    justify-self: center;
    width: 100%;
    text-align: center;
  }

  .poster-info,
  .quiet-hero .poster-info,
  .center-quiet .poster-info,
  .minimal-hero .poster-info,
  .minimal-hero.is-single .poster-info,
  .minimal-hero.is-centered-combo .poster-info,
  .index-approach-hero .poster-info {
    justify-self: center;
    text-align: center;
  }

  .index-opening .what-grid-inner {
    min-height: auto;
    padding: 92px 0 78px;
  }

  .index-opening .what-title,
  .index-opening .what-statement,
  .index-opening .what-note,
  .index-opening .what-cols {
    grid-column: 1 / 5;
  }

  .index-opening .what-title {
    font-size: clamp(38px, 11vw, 52px);
  }

  .index-opening .what-statement {
    margin-top: 42px;
  }

  .index-opening .what-note {
    margin-top: 28px;
    max-width: none;
  }

  .index-opening .what-cols {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .index-opening .what-col,
  .index-opening .what-col:first-child {
    min-height: auto;
    padding: 28px 0 24px;
    border-left: 0;
    border-top: 1px solid rgba(247, 247, 244, 0.18);
  }

  .index-opening .what-col:not(:first-child)::before {
    display: none;
  }

  .index-opening .what-col h2 {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .index-opening .what-col .num {
    margin-top: 24px;
    padding-top: 0;
    font-family: var(--mono);
    font-size: 13px;
    line-height: 18px;
  }

  .client-logos {
    height: 16vh;
    min-height: 118px;
  }

  .image-band-caption {
    left: calc(var(--image-window-x) + var(--edge) + 4px);
    bottom: calc(var(--image-window-y) + 18px);
  }

  .image-band-mini,
  .image-band-mini.is-right,
  .image-band-mini.is-center {
    width: calc(var(--image-window-w) - ((var(--edge) + 8px) * 2));
    max-width: calc(var(--image-window-w) - ((var(--edge) + 8px) * 2));
  }

  .image-band-table .hero-table,
  .mini-table .hero-table,
  .image-band-table .hero-foot,
  .mini-table .hero-foot {
    left: calc(var(--edge) + 4px);
    right: calc(var(--edge) + 4px);
  }

  .image-band.is-light-copy .image-band-mini,
  .image-band.is-light-copy .image-band-caption {
    color: rgba(248, 248, 246, 0.9);
  }

  .image-band.is-light-copy .image-band-mini .echo {
    color: rgba(248, 248, 246, 0.5);
  }

  .footer {
    padding-top: 34px;
  }

  .footer-inner {
    min-height: auto;
  }

  .footer-col {
    padding: 34px 0;
    border-left: 0;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(247, 247, 244, 0.14);
  }

  .footer h3 {
    margin-bottom: 22px;
  }

  .footer-mark {
    width: calc(100vw - (var(--edge) * 2));
    margin-top: 64px;
    margin-bottom: 18px;
    font-size: clamp(42px, 13vw, 62px);
  }

  .footer-bottom p:first-child,
  .footer-bottom p:last-child {
    margin-top: 18px;
  }

  .footer-bottom p:only-child {
    grid-column: 1 / 5;
    text-align: left;
    margin-top: 18px;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    width: 34px;
    height: 24px;
    font-size: 0;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    width: 34px;
    height: 1px;
    background: currentColor;
    transform-origin: center;
    transition: transform 220ms ease, top 220ms ease, bottom 220ms ease, box-shadow 180ms ease;
  }

  .nav-toggle::before {
    top: 4px;
    box-shadow: 0 8px 0 currentColor;
  }

  .nav-toggle::after {
    bottom: 4px;
  }

  .nav.is-open .nav-toggle::before {
    top: 11px;
    box-shadow: 0 0 0 transparent;
    transform: rotate(42deg);
  }

  .nav.is-open .nav-toggle::after {
    bottom: 12px;
    transform: rotate(-42deg);
  }

  .scroll-video-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .scroll-video-hero .hero-sticky {
    width: 100vw;
  }

  .scroll-video-hero .page-hero-media {
    left: 50%;
    right: auto;
    width: 100vw;
    transform: translateX(-50%);
    background-image: url("herovideo/heromovie.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .scroll-video-hero .page-hero-media img,
  .scroll-video-hero .page-hero-media canvas,
  .scroll-video-hero .page-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .scroll-video-hero .page-hero-media .hero-freeze-frame {
    display: none;
  }

  .scroll-video-hero .page-hero-inner {
    padding-left: var(--edge);
    padding-right: var(--edge);
  }

  .index-approach-hero .poster-title {
    align-self: center;
    margin-top: 18vh;
    font-size: clamp(42px, 13vw, 62px);
  }

  .index-approach-hero .poster-info {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 14px;
    max-width: min(100%, 360px);
    margin-top: 22px;
    font-size: 9px;
    line-height: 13px;
    letter-spacing: 0.06em;
    text-align: left;
  }

  .index-approach-hero .poster-info .poster-slash {
    display: block;
    font-size: 36px;
    line-height: 0.8;
  }

  .image-band-caption {
    position: fixed;
    left: calc(var(--image-window-x) + var(--edge) + 4px);
    bottom: calc(var(--image-window-y) + 18px);
  }

  .image-band-mini,
  .image-band-mini.is-right,
  .image-band-mini.is-center {
    position: fixed;
    left: 50%;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }

  .image-band-table .hero-table,
  .mini-table .hero-table {
    position: fixed;
    top: auto;
    bottom: calc(var(--image-window-y) + 88px);
  }

  .image-band-table .hero-foot,
  .mini-table .hero-foot {
    position: fixed;
    top: auto;
    bottom: calc(var(--image-window-y) + 24px);
  }
}

/* Mobile hardening pass: keep the desktop composition, but prevent grid overflow. */
.image-band-caption,
.image-band-mini,
.image-band-mini.is-right,
.image-band-mini.is-center {
  position: fixed;
}

@media (max-width: 720px) {
  :root {
    --edge: 22px;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav {
    z-index: 100;
    padding: 18px var(--edge) 0;
    color: var(--white);
  }

  .nav-inner {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    column-gap: 14px;
    align-items: center;
  }

  .nav-brand {
    grid-column: 1 / 2;
    min-width: 0;
    color: var(--accent);
    font-size: 12px;
    line-height: 16px;
    white-space: nowrap;
  }

  .nav-toggle {
    grid-column: 2 / 3;
    width: 38px;
    height: 28px;
    color: var(--white);
    transform: none;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    left: 2px;
    width: 34px;
  }

  .nav-toggle::before {
    top: 5px;
    box-shadow: 0 9px 0 currentColor;
  }

  .nav-toggle::after {
    bottom: 5px;
  }

  .nav.is-open {
    inset: 0 0 auto;
    min-height: 100vh;
    padding-bottom: 44px;
    background: rgba(21, 22, 22, 0.98);
  }

  .nav.is-open .nav-toggle::before {
    top: 13px;
  }

  .nav.is-open .nav-toggle::after {
    bottom: 14px;
  }

  .nav-links {
    grid-column: 1 / 3;
    color: var(--white);
    padding-top: 0;
    gap: 22px;
    font-size: 22px;
    line-height: 28px;
  }

  .nav-links a {
    color: inherit;
  }

  .nav.is-open .nav-links {
    max-height: 70vh;
    padding-top: 62px;
  }

  .page-hero,
  .scroll-video-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .page-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .page-hero-inner,
  .scroll-video-hero .page-hero-inner {
    width: 100%;
    padding-left: var(--edge);
    padding-right: var(--edge);
    filter: none;
  }

  .scroll-video-hero .page-hero-media {
    inset: 0;
    left: 0;
    width: 100vw;
    transform: none;
    background-image: url("herovideo/heromovie.jpg");
    background-position: center;
    background-size: cover;
  }

  .scroll-video-hero .poster-title,
  .index-approach-hero .poster-title {
    margin-top: 0;
  }

  .scroll-video-hero .hero-end-title {
    display: none !important;
  }

  .index-approach-hero .poster-title,
  .index-approach-hero .poster-info,
  .index-approach-hero .poster-title.reveal,
  .index-approach-hero .poster-info.reveal,
  .index-approach-hero .poster-title.reveal.is-visible,
  .index-approach-hero .poster-info.reveal.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }

  .poster-title,
  .quiet-hero .poster-title,
  .center-quiet .poster-title,
  .minimal-hero .poster-title,
  .minimal-hero.is-single .poster-title,
  .minimal-hero.is-centered-combo .poster-title,
  .notes-hero.minimal-hero.is-single .poster-title,
  .index-approach-hero .poster-title {
    grid-column: 1 / 5;
    max-width: 100%;
    font-size: clamp(34px, 10.6vw, 50px);
    line-height: 1.02;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    white-space: normal;
  }

  .practice-page .poster-title,
  body:has(.poster-title:nth-child(1)) .poster-title {
    text-wrap: balance;
  }

  .poster-info,
  .quiet-hero .poster-info,
  .center-quiet .poster-info,
  .minimal-hero .poster-info,
  .minimal-hero.is-single .poster-info,
  .minimal-hero.is-centered-combo .poster-info,
  .index-approach-hero .poster-info {
    grid-column: 1 / 5;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 12px;
    max-width: 100%;
    font-size: 9px;
    line-height: 13px;
    text-align: left;
    overflow: hidden;
  }

  .poster-slash,
  .index-approach-hero .poster-info .poster-slash {
    display: block;
    font-size: 28px;
  }

  .section-inner,
  .section-inner.is-compact,
  .type14-inner,
  .case26-inner,
  .case26.is-index .case26-inner,
  .visible-trust-section .case26-inner,
  .what-grid-inner,
  .notes-shelf-inner,
  .method-numbers-inner {
    width: 100%;
    padding-left: var(--edge);
    padding-right: var(--edge);
  }

  .grid,
  .section-inner,
  .section-inner.is-compact,
  .case26-inner,
  .case26.is-index .case26-inner,
  .visible-trust-section .case26-inner,
  .what-grid-inner,
  .notes-shelf-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 14px;
  }

  .section-inner > *,
  .what-title,
  .what-statement,
  .what-note,
  .what-cols,
  .case26-head,
  .case26-about,
  .case26-cols,
  .case26.is-index .case26-about,
  .case26.is-index .case26-cols,
  .large-text,
  .label,
  .copy-stack,
  .split-title,
  .split-copy,
  .notes-shelf-copy,
  .notes-shelf-grid {
    grid-column: 1 / 5 !important;
    min-width: 0;
  }

  .case26-about,
  .case26-cols,
  .case26.is-index .case26-about,
  .case26.is-index .case26-cols {
    display: block !important;
  }

  .case26-cols > span {
    display: none;
  }

  .case26-col,
  .case26.is-index .case26-col {
    display: block;
    width: 100%;
    max-width: none;
    padding-right: 0;
  }

  .case26-col + .case26-col,
  .case26.is-index .case26-col + .case26-col {
    margin-top: 34px;
  }

  .case26-lead,
  .case26.is-index .case26-lead,
  .large-text {
    max-width: 100%;
    font-size: clamp(28px, 8.4vw, 40px);
    line-height: 1.16;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  .case26-col p,
  .case26.is-index .case26-col p,
  .micro,
  .what-note {
    font-size: 16px;
    line-height: 25px;
    overflow-wrap: normal;
    word-break: normal;
  }

  .index-opening .what-col h2,
  .index-opening .what-col p,
  .index-opening .what-col .num {
    opacity: 1;
    transform: none;
  }

  .index-opening .what-col:not(:first-child)::before {
    transform: scaleY(1);
  }

  .index-opening .what-col .num {
    color: rgba(248, 248, 246, 0.56);
  }

  .image-band {
    height: 72vh;
    min-height: 460px;
    --image-window-w: 100vw;
    --image-window-h: min(66vh, 560px);
  }

  .image-band-caption {
    left: calc(var(--image-window-x) + var(--edge));
    bottom: calc(var(--image-window-y) + 18px);
    max-width: calc(100vw - (var(--edge) * 2));
  }

  .image-band-mini,
  .image-band-mini.is-right,
  .image-band-mini.is-center {
    left: 50%;
    top: 50%;
    width: calc(100vw - (var(--edge) * 2));
    max-width: calc(100vw - (var(--edge) * 2));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    transform: translate(-50%, -50%);
  }

  .image-band.is-light-copy .image-band-mini,
  .image-band.is-light-copy .image-band-caption,
  .image-band.is-light-copy .hero-table,
  .image-band.is-light-copy .hero-foot {
    color: rgba(248, 248, 246, 0.88);
  }

  .footer {
    padding-top: 30px;
  }

  .footer-mark {
    width: calc(100vw - (var(--edge) * 2));
    font-size: clamp(40px, 12.2vw, 56px);
  }
}
