@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/PPNeueMontreal-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/PPNeueMontreal-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/PPNeueMontreal-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/PPNeueMontreal-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #010101;
  --paper: #ffffff;
  --surface: #f2f2f2;
  --gray-50: #d9d9d9;
  --ink-50: rgba(1, 1, 1, 0.5);
  --rule: #010101;
  --rule-soft: rgba(0, 0, 0, 0.05);
  --hairline: rgba(0, 0, 0, 0.05);
  --overlay: rgba(1, 1, 1, 0.2);
  --rule-footer: rgba(1, 1, 1, 0.2);
  --gutter: 24px;
  --col-gap: 20px;
  --canvas: 1920px;
  --measure: 600px;
  --ease-lush: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-lush-in: cubic-bezier(0.2, 0.9, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.5, 0.58, 1);
  --type-display: calc((min(100vw, var(--canvas)) - 48px) / 9.22);
  --type-headline: clamp(30px, 3.24vw, 56px);
  --type-body: clamp(24px, 1.74vw, 30px);
  --type-news: 26px;
  --type-label: 16px;
  --type-footer: 16px;
  --type-micro: 12px;
  --hero-ratio-d: 1728 / 800;
  --hero-ratio-m: 402 / 750;
  --work-ratio: 547 / 678.526;
  --news-ratio: 1 / 1;
  --video-peek: 64px;
}

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

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

html,
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "PP Neue Montreal", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

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

button,
input {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
}

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

.page {
  min-height: 100vh;
  overflow-x: clip;
}

/* Canvas: 24px until 1920, then the 1920 box centers and margins grow */
.shell {
  width: 100%;
  max-width: var(--canvas);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: var(--col-gap);
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  width: 100%;
  max-width: var(--canvas);
  margin-inline: auto;
  padding-block: var(--gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s var(--ease-out);
}

.nav.is-in {
  opacity: 1;
  pointer-events: auto;
}

.nav__grid {
  align-items: center;
  min-height: 40px;
}

.nav__brand {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.nav__name {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 600;
  font-size: var(--type-label);
  line-height: 1;
  letter-spacing: -0.16px;
}

.nav-word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(-0.1em, 0.08em, 0);
  will-change: opacity, filter, transform;
  transition:
    opacity 0.7s var(--ease-out),
    filter 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.nav__name.is-in .nav-word {
  opacity: 1;
  filter: none;
  transform: none;
}

.nav__mark {
  width: 35px;
  height: 24px;
  overflow: clip;
}

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

.nav__links {
  grid-column: 3 / 5;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__cluster {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a,
.nav button {
  font-weight: 600;
  font-size: var(--type-label);
  line-height: 1;
  letter-spacing: -0.16px;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.nav__links a,
.nav__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  background: transparent;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 0.85s var(--ease-out),
    filter 0.85s var(--ease-out),
    background 0.45s var(--ease-lush),
    backdrop-filter 0.45s var(--ease-lush),
    -webkit-backdrop-filter 0.45s var(--ease-lush);
}

.nav.is-links-in .nav__links a,
.nav.is-links-in .nav__menu {
  opacity: 1;
  filter: none;
}

.nav.is-links-in .nav__cluster--start a:nth-child(2) {
  transition-delay: 0.07s;
}

.nav.is-links-in .nav__cluster--start a:nth-child(3) {
  transition-delay: 0.14s;
}

.nav.is-links-in .nav__cluster--end a {
  transition-delay: 0.2s;
}

.nav__links a:hover,
.nav__menu:hover {
  background: rgba(1, 1, 1, 0.08);
}

.nav__cluster--start {
  margin-left: -16px;
}

.nav__cluster--end {
  margin-right: -16px;
}

.nav.is-stuck .nav__links a,
.nav.is-stuck .nav__menu {
  background: rgba(242, 242, 242, 0.46);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}

.nav.is-over-media .nav__links a:hover,
.nav.is-over-media .nav__menu:hover {
  background: rgba(255, 255, 255, 0.62);
}

.nav__menu {
  display: none;
  grid-column: 4 / 5;
  justify-self: end;
}

.menu-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  background: var(--surface);
  padding: var(--gutter);
  flex-direction: column;
  gap: 40px;
}

.menu-panel.is-open {
  display: flex;
}

.menu-panel a {
  font-weight: 600;
  font-size: 30px;
  line-height: 0.94;
  letter-spacing: -0.42px;
}

/* ---------- Intro ---------- */

.landing {
  min-height: calc(100svh - var(--video-peek));
  padding-top: var(--nav-h, 72px);
  display: flex;
  flex-direction: column;
}

.masthead {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.intro {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-block: 0;
  overflow: visible;
}

.intro__band {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  width: 100%;
}

.intro__band .grid-4 {
  width: 100%;
  min-width: 0;
}

.intro__lede {
  grid-column: 3 / 5;
  margin: 0;
  max-width: none;
  font-weight: 600;
  font-size: var(--type-headline);
  line-height: 0.95;
  letter-spacing: -0.42px;
}

.intro__lede:not(.is-in) {
  visibility: hidden;
}

.intro__lede .split-line {
  display: block;
  overflow: visible;
  padding: 0;
  margin: 0;
  line-height: inherit;
}

.intro__lede .split-line > span {
  line-height: inherit;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 0.72em, 0);
  transition:
    opacity 1.3s var(--ease-lush),
    filter 1.3s var(--ease-lush),
    transform 1.3s var(--ease-lush);
}

.intro__lede.is-in .split-line > span {
  opacity: 1;
  filter: none;
  transform: none;
}

.intro__title {
  margin: 0;
  font-weight: 600;
  font-size: var(--type-display);
  line-height: 0.88;
  letter-spacing: -0.05em;
  white-space: nowrap;
  overflow: visible;
  width: max-content;
  max-width: none;
  padding-bottom: calc(16px + 0.14em);
  transform-origin: center center;
  will-change: transform, filter;
}

.intro__title:not(.is-split) {
  visibility: hidden;
}

.intro__title.is-boot-sharp {
  filter: none;
}

.boot-word {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(-0.12em, 0.08em, 0);
  will-change: opacity, filter, transform;
  transition:
    opacity 1.2s var(--ease-out),
    filter 1.2s var(--ease-out),
    transform 1.2s var(--ease-out);
}

.intro__title.is-in .boot-word {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.intro__title-line {
  display: inline;
}

.intro__title .split-line {
  padding: 0.04em 0.06em 0.08em 0;
}

@media (max-width: 799px) {
  .intro {
    gap: 0;
  }

  .intro__band {
    flex: 1 1 auto;
    align-items: center;
    padding-block: 0;
  }

  .intro__lede {
    grid-column: 1 / -1;
    margin: 0;
    max-width: none;
  }

  .intro__title {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    font-size: 64px;
    line-height: 0.94;
    letter-spacing: -0.05em;
    padding-bottom: 24px;
  }

  .intro__title-line {
    display: block;
    white-space: nowrap;
  }
}

/* Split / blur */

.split-line {
  display: block;
  overflow: hidden;
  padding: 0.08em 0.06em 0.22em 0;
  margin: 0;
}

.split-line > span {
  display: block;
  white-space: nowrap;
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(0, 0.36em, 0);
  will-change: opacity, filter, transform;
  transition:
    opacity 0.9s var(--ease-out),
    filter 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

.is-in .split-line > span {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

[data-split-rise]:not(.is-split),
[data-split-rise]:not(.is-in) {
  visibility: hidden;
}

[data-split-rise] {
  --split-bleed: 0.28em;
}

[data-split-rise] .split-line {
  overflow: hidden;
  padding: 0 0.02em var(--split-bleed);
  margin: 0 0 calc(var(--split-bleed) * -1);
}

[data-split-rise] .split-line:last-child {
  margin-bottom: 0;
}

[data-split-rise] .split-line > span {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 110%, 0);
  transition: transform 1.3s var(--ease-lush);
}

[data-split-rise].is-in .split-line > span {
  transform: none;
}

[data-split-rise].is-instant .split-line > span,
.is-instant .split-line > span {
  transition: none;
}

[data-split-rise] .split-line > span > span {
  display: inline;
}

.intro__title.is-in .split-line {
  overflow: visible;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.85s var(--ease-out),
    filter 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}

.reveal.is-in {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

/* ---------- Hero media (full bleed) ---------- */

html.is-booting .page {
  overflow: visible;
}

.hero-media.media {
  width: min(1014px, 80%);
  margin-inline: auto;
  aspect-ratio: var(--hero-ratio-d);
  overflow: visible;
  background: #111;
  opacity: 0;
  filter: blur(75px);
  transform: translate3d(0, -72px, 0);
  transform-origin: 50% 0%;
  transition:
    width 2.2s var(--ease-lush-in),
    filter 2.2s var(--ease-out),
    transform 2.2s var(--ease-lush-in),
    opacity 0.9s var(--ease-out);
}

.hero-media.media.is-ready {
  opacity: 1;
}

.hero-media.media.is-in {
  width: 100%;
  filter: blur(0);
  overflow: clip;
  transform: none;
}

@media (max-width: 799px) {
  .hero-media.media,
  .hero-media.media.is-in {
    width: 100%;
    aspect-ratio: var(--hero-ratio-m);
  }
}

.hero-media picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.media {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.media img,
.media video {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  scale: 1;
  will-change: transform, scale;
  transition: scale 0.7s var(--ease-lush);
}

[data-parallax] img,
[data-parallax] video {
  top: -6%;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 112%;
}

.hero-media[data-parallax] video {
  top: -18%;
  height: 136%;
}

.work-card__media img {
  object-position: center 38%;
}

.work-card:nth-child(3) img {
  object-position: center 22%;
}

.work-card:nth-child(4) img {
  object-position: center 42%;
}

a:hover .media img,
a:hover .media video,
a:focus-visible .media img,
a:focus-visible .media video {
  scale: 1.045;
}


/* ---------- Manifesto ---------- */

.stack {
  display: flex;
  flex-direction: column;
  gap: 212px;
  padding-block: 24px 212px;
}

@media (max-width: 799px) {
  .stack {
    gap: 140px;
    padding-block: 24px 140px;
  }
}

.lead {
  margin: 0;
  max-width: 1257px;
  font-weight: 600;
  font-size: var(--type-headline);
  line-height: 0.95;
  letter-spacing: -0.42px;
}

.lead .mute {
  color: rgba(0, 0, 0, 0.5);
}

.lead a,
.lead__cite {
  text-decoration: none;
}

.manifesto {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: var(--col-gap);
}

.manifesto__hook,
.manifesto__copy {
  margin: 0;
  max-width: var(--measure);
  font-weight: 500;
  font-size: var(--type-body);
  line-height: 1.04;
}

.manifesto__hook {
  grid-column: 1 / 3;
}

.manifesto__copy {
  grid-column: 3 / 5;
}

.manifesto__copy p {
  margin: 0 0 24px;
}

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

@media (max-width: 799px) {
  .manifesto {
    display: flex;
    flex-direction: column;
    gap: 140px;
  }

  .manifesto__hook,
  .manifesto__copy {
    max-width: none;
    font-weight: 400;
    line-height: 1.2;
  }

  .manifesto__copy p {
    margin-bottom: 32px;
  }
}

/* ---------- Sections ---------- */

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 24px 0 80px;
}

.section-head h2 {
  margin: 0;
  font-weight: 600;
  font-size: var(--type-headline);
  line-height: 0.95;
  letter-spacing: -0.42px;
}

.news-paddles {
  display: flex;
  align-items: center;
  gap: 16px;
}

.news-paddles button {
  width: 44px;
  height: 44px;
  border-radius: 100px;
  cursor: pointer;
  background: #d9d9d9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.16px;
  transition:
    opacity 0.45s var(--ease-lush),
    background 0.45s var(--ease-lush);
}

.news-paddles button:hover:not(:disabled) {
  background: #c8c8c8;
}

.news-paddles button:disabled {
  opacity: 0.5;
}

@media (max-width: 799px) {
  .section-head {
    padding-bottom: 64px;
  }
}

/* ---------- Selected work ---------- */

.work-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 96px var(--col-gap);
}

.work-card {
  flex: 1 1 calc((100% - 2 * var(--col-gap)) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: inherit;
}

.work-card.reveal:not(.is-in) {
  transform: translate3d(0, 18px, 0);
  filter: blur(6px);
}

.work-card.reveal {
  transition:
    opacity 1.4s var(--ease-lush),
    filter 1.4s var(--ease-lush),
    transform 1.4s var(--ease-lush);
}

.work-grid .work-card:nth-child(3n + 2) {
  transition-delay: 0.1s;
}

.work-grid .work-card:nth-child(3n + 3) {
  transition-delay: 0.2s;
}

.work-card__media {
  aspect-ratio: var(--work-ratio);
  overflow: clip;
}

.work-card__meta {
  margin: 0;
  width: 100%;
  font-weight: 600;
  font-size: var(--type-label);
  line-height: 1;
  letter-spacing: -0.16px;
}

@media (max-width: 799px) {
  .work-grid {
    flex-direction: column;
    gap: 64px;
  }

  .work-card {
    flex: none;
    width: 100%;
  }
}

/* ---------- News carousel ---------- */

.news-bleed {
  margin-right: calc(var(--gutter) * -1);
  overflow: hidden;
  touch-action: pan-y;
}

.news-track {
  display: flex;
  gap: 10px;
  cursor: grab;
  padding-right: var(--gutter);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.news-track.is-dragging {
  cursor: grabbing;
}

.news-card {
  flex: 0 0 455px;
  max-width: 86vw;
  position: relative;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: inherit;
}

.news-card__media {
  aspect-ratio: var(--news-ratio);
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-card__title {
  margin: 0;
  padding-right: 24px;
  font-weight: 600;
  font-size: var(--type-news);
  line-height: 1.04;
  min-height: calc(var(--type-news) * 1.04 * 3);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.news-card__byline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
  margin: 0;
  font-weight: 600;
  font-size: var(--type-label);
  line-height: 1;
  letter-spacing: -0.16px;
  color: var(--ink-50);
}

@media (max-width: 799px) {
  .news-card {
    flex-basis: 329px;
  }
}

/* ---------- Footer ---------- */

.footer {
  position: relative;
  min-height: calc(100svh - var(--nav-h, 88px));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 44px 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
}

/* Parked footer cursor film — keep markup/assets. Flip FOOTER_CURSOR_FILM in js/nds.js */
.footer-peek {
  display: none !important;
}

@media (min-width: 800px) {
  .footer-peek {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    width: 212px;
    aspect-ratio: 3 / 2;
    margin: 0;
    overflow: clip;
    pointer-events: none;
    opacity: 0;
    filter: blur(14px);
    scale: 0.8;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    will-change: left, top, filter, opacity, scale;
    transition:
      opacity 0.4s var(--ease-out),
      filter 0.55s var(--ease-out),
      scale 0.55s var(--ease-lush);
  }

  .footer-peek.is-on {
    opacity: 1;
    filter: none;
    scale: 1;
  }

  .footer-peek video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.footer__top,
.footer__bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: var(--col-gap);
  align-items: end;
}

.footer__mark {
  grid-column: 1 / 3;
  align-self: start;
}

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

.footer__cols {
  grid-column: 3 / 5;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 0.7fr;
  gap: var(--col-gap);
  align-self: start;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
}

.footer__cols p {
  margin: 0;
  font-weight: 700;
}

.footer__cols a {
  display: block;
  font-weight: 700;
}

.footer__legal {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.15;
  text-transform: uppercase;
}

.footer__legal p {
  margin: 0;
  font-weight: 600;
  opacity: 0.5;
}

.footer__legal a {
  font-weight: 500;
  opacity: 1;
}

.footer__subscribe {
  grid-column: 3 / 5;
}

.footer__subscribe p {
  margin: 0 0 80px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
}

.footer__form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule-footer);
}

.footer__form input {
  flex: 1;
  min-width: 0;
  outline: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
}

.footer__form input::placeholder,
.footer__form button {
  color: var(--ink-50);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
}

.footer__form button {
  cursor: pointer;
  transition: color 0.35s var(--ease-out);
}

.footer__form button:hover {
  color: var(--ink);
}

/* ---------- Rule draw (L → R) ---------- */

[data-rule] {
  position: relative;
}

[data-rule]::before {
  content: "";
  position: absolute;
  background: var(--ink);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 1.15s var(--ease-lush),
    opacity 1.15s var(--ease-lush);
}

.section-head[data-rule]::before {
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.footer[data-rule]::before {
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
}


[data-rule].is-in::before {
  opacity: 1;
  transform: scaleX(1);
}


/* ---------- Inline link underline (Watson wipe) ---------- */

@media (max-width: 799px) {
  .nav__links {
    display: none;
  }

  .nav__menu {
    display: inline-flex;
    margin-right: -16px;
  }

  .nav__brand {
    grid-column: 1 / 3;
  }

  .nav__name {
    display: none;
  }

  .footer__top,
  .footer__bottom,
  .footer__cols {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .footer__top {
    gap: 72px;
  }

  .footer__mark,
  .footer__subscribe,
  .footer__cols,
  .footer__legal {
    grid-column: auto;
    width: 100%;
  }

  .footer__mark img {
    width: 100%;
  }

  .footer__cols {
    gap: 0;
  }

  .footer__cols p:first-child {
    margin-bottom: 48px;
  }

  .footer__bottom {
    gap: 24px;
  }

  .footer__subscribe {
    order: -1;
    text-align: left;
  }

  .footer__subscribe p {
    margin: 0 0 80px;
  }

  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ---------- Brand system page ---------- */

.interior {
  padding-top: var(--nav-h, 88px);
}

.brand-lede {
  margin: 0;
  max-width: var(--measure);
  font-weight: 500;
  font-size: var(--type-body);
  line-height: 1.04;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 80px var(--col-gap);
}

.swatch__chip {
  aspect-ratio: 1;
  width: 100%;
}

.swatch__chip.is-paper,
.swatch__chip.is-hairline,
.swatch__chip.is-overlay {
  box-shadow: inset 0 0 0 1px var(--hairline);
}

.swatch__name {
  margin: 16px 0 0;
  font-weight: 600;
  font-size: var(--type-label);
  line-height: 1;
  letter-spacing: -0.16px;
}

.swatch__meta {
  margin: 8px 0 0;
  color: var(--ink-50);
  font-weight: 400;
  font-size: var(--type-footer);
  line-height: 1.2;
}

.type-matrix {
  display: flex;
  flex-direction: column;
}

.type-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: var(--col-gap);
  padding: 64px 0 80px;
  border-top: 1px solid var(--hairline);
}

.type-row__sample {
  grid-column: 1 / 4;
  min-width: 0;
}

.type-row__spec {
  grid-column: 4;
  margin: 0;
  color: var(--ink-50);
  font-weight: 400;
  font-size: var(--type-footer);
  line-height: 1.35;
}

.type-row__spec strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 600;
  font-size: var(--type-label);
  line-height: 1;
  letter-spacing: -0.16px;
}

.type-row--display .type-row__sample {
  grid-column: 1 / -1;
}

.type-row--display .type-row__spec {
  grid-column: 1 / 3;
  margin-top: 32px;
}

.type-sample--display {
  margin: 0;
  font-weight: 600;
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.type-sample--headline {
  margin: 0;
  max-width: 16ch;
  font-weight: 600;
  font-size: var(--type-headline);
  line-height: 0.95;
  letter-spacing: -0.42px;
}

.type-sample--body {
  margin: 0;
  max-width: var(--measure);
  font-weight: 500;
  font-size: var(--type-body);
  line-height: 1.04;
}

.type-sample--news {
  margin: 0;
  max-width: 22ch;
  font-weight: 600;
  font-size: var(--type-news);
  line-height: 1.04;
}

.type-sample--label {
  margin: 0;
  font-weight: 600;
  font-size: var(--type-label);
  line-height: 1;
  letter-spacing: -0.16px;
}

.type-sample--footer {
  margin: 0;
  font-weight: 400;
  font-size: var(--type-footer);
  line-height: 1.1;
}

.type-sample--micro {
  margin: 0;
  font-weight: 500;
  font-size: var(--type-micro);
  line-height: 1.15;
  text-transform: uppercase;
}

@media (max-width: 799px) {
  .swatches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px var(--col-gap);
  }

  .type-row,
  .type-row--display .type-row__sample,
  .type-row--display .type-row__spec,
  .type-row__sample,
  .type-row__spec {
    display: block;
    grid-column: auto;
  }

  .type-row__spec {
    margin-top: 24px;
  }
}

/* Local 4-col overlay: press G or add ?grid */
.grid-debug {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 100%;
  pointer-events: none;
  display: none;
  padding-block: 0;
}

html.is-debug-grid .grid-debug {
  display: block;
}

.grid-debug .grid-4 {
  height: 100%;
}

.grid-debug span {
  display: block;
  height: 100%;
  background: rgba(140, 60, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(140, 60, 255, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-split-rise],
  .split-line > span,
  .reveal,
  .nav,
  .nav__links,
  .nav__links a,
  .nav-word,
  .nav__menu,
  .boot-word,
  .footer-peek,
  .hero-media,
  .intro__title {
    opacity: 1;
    filter: none;
    transform: none;
    visibility: visible;
    width: 100%;
  }
}
