:root {
  --ink: #0A0A0B;
  --ink-2: #4E4B47;
  --ink-3: #8C8880;
  --paper: #ffffff;
  --tint: #FAFAF9;
  --sunken: #F4F3F1;
  --line: #E8E6E3;
  --line-2: #D6D3CE;
  --focus: #3B5F66;
  --display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --sans: "Google Sans", "Google Sans Text", "DM Sans", system-ui, sans-serif;
  --label: "Google Sans", "Google Sans Text", "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1rem/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 0.22em; }

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

.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 20px; top: 14px; z-index: 300;
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 999px;
}

.wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { margin: 0; font-family: var(--display); text-wrap: balance; }

h1 {
  font-size: clamp(2.125rem, 6.4vw, 3.375rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
  max-width: 20ch;
}

h2 {
  font-size: clamp(1.625rem, 4.6vw, 2.375rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.18;
  max-width: 18ch;
}

h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.prose, .lede, .case-body p { max-width: 62ch; }

.lede { font-size: 1.0625rem; color: var(--ink-2); }

.kicker {
  font-family: var(--label);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 300ms ease, backdrop-filter 300ms ease;
}
.masthead.is-condensed {
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 24px rgba(10, 10, 11, 0.06);
}
.masthead.is-condensed .masthead-inner { min-height: 58px; }
.masthead-inner { transition: min-height 300ms ease; }

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 66px;
  flex-wrap: wrap;
}

.mark {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1875rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.mark:hover { text-decoration: none; }

.nav-toggle {
  display: grid;
  place-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-right: -8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
}

.nav {
  display: none;
  width: 100%;
  padding-bottom: 14px;
}
.nav.is-open { display: flex; flex-direction: column; gap: 2px; }
.nav a {
  font-family: var(--display);
  padding: 9px 0;
  font-size: 0.9375rem;
  color: var(--ink-2);
  border-top: 1px solid var(--line);
}
.nav a[aria-current="page"] { color: var(--ink); }
.nav .nav-cta {
  align-self: start;
  margin-top: 12px;
  height: 42px;
  border: 0;
  color: #fff;
}
.nav .nav-cta[aria-current="page"] { color: #fff; }

.section { padding: 76px 0; }
.section.tint { background: var(--tint); }

.hero {
  padding: 92px 0 72px;
  background: var(--ink);
  color: #fff;
}
.hero h1 {
  font-size: clamp(2.5rem, 11.5vw, 5.75rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
  max-width: 14ch;
}
.hero-line {
  margin-top: 28px;
  max-width: 26ch;
  font-family: var(--display);
  font-size: clamp(1.1875rem, 3.1vw, 1.625rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.32;
}
.hero .lede { color: #C9C5BE; margin-top: 22px; }
.actions { margin-top: 34px; }

.page-head {
  padding: 60px 0 44px;
  border-bottom: 1px solid var(--line);
}
.page-head .lede { margin-top: 24px; }
.case-head { border-bottom: 0; }
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-bottom: 0;
  padding: 84px 0 64px;
}
.page-hero > .wrap { position: relative; z-index: 1; }
.page-hero .kicker { color: #B4B0A9; }
.page-hero .lede { color: #C9C5BE; }
.page-hero .hero-media img { width: 100%; height: 100%; object-fit: cover; }

.btn {
  font-family: var(--display);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 46px;
  padding: 0 6px 0 24px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background-color 160ms ease;
}
.btn:hover { background: var(--ink-2); text-decoration: none; }
.btn-badge {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}
.btn-badge svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}
.btn:hover .btn-badge svg { transform: translate(2px, -2px); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--sunken); }
.btn-light .btn-badge { background: var(--ink); color: #fff; }

.media {
  margin: 0;
  overflow: hidden;
  background: var(--sunken);
  border-radius: 20px;
}
.media img, .media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-16x9 { aspect-ratio: 16 / 9; }
.media-3x4 { aspect-ratio: 4 / 5; }
.media-4x5 { aspect-ratio: 4 / 5; }
.media-wide { aspect-ratio: 16 / 9; margin-top: 40px; }
.media-bleed {
  aspect-ratio: 16 / 10;
  border-radius: 0;
}
.three .media, .cases .media { margin-bottom: 20px; }
.split-media .media { margin-bottom: 26px; }
.tri { display: grid; gap: 28px; }
.tri .prose { max-width: 46ch; }
.tri h2 { margin-bottom: 4px; }
.tri-media .media { margin-bottom: 0; }

.hero { position: relative; overflow: hidden; }

.hero-editorial {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 128px 0 40px;
}
.hero-editorial .hero-scrim {
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.72) 0%, rgba(10, 10, 11, 0.34) 38%, rgba(10, 10, 11, 0.86) 100%);
}
.hero-grid { display: grid; gap: 40px; width: 100%; }
.hero-title {
  display: grid;
  margin: 0;
  max-width: none;
  font-size: clamp(3.25rem, 19vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-transform: uppercase;
}
.hl { display: block; overflow: hidden; }
.hl-2 { color: #E6E3DE; }
.hero-editorial .hero-line {
  margin: 0;
  max-width: 24ch;
  font-family: var(--display);
  font-size: clamp(1.0625rem, 4vw, 1.375rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #fff;
}
.hero-foot { display: grid; gap: 26px; justify-items: start; }
.hero-editorial .lede { margin: 0; max-width: 42ch; color: #C9C5BE; }
.hero-editorial .actions { margin: 0; }
.hero-note {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  max-width: 22ch;
}
.hero-note b {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.hero-note span {
  display: block;
  margin-top: 10px;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #C9C5BE;
}
.masthead-float {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: none;
  border-bottom: 0;
}
.masthead-float .mark, .masthead-float .nav a { color: #fff; }
.masthead-float .nav a.nav-cta, .masthead-float .nav a.nav-cta[aria-current="page"] { color: var(--ink); }
.masthead-float .nav-toggle span { background: #fff; }
.masthead-float .nav-cta { background: #fff; color: var(--ink); }
.masthead-float .nav-cta .btn-badge { background: var(--ink); color: #fff; }
.masthead-float.is-condensed {
  position: fixed;
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: none;
}
.masthead-float.is-condensed .nav a[aria-current="page"] { color: #fff; }
.masthead-float .nav { background: rgba(10, 10, 11, 0.92); }
.hero .wrap { position: relative; z-index: 1; }
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.62), rgba(10, 10, 11, 0.88));
}

.stats {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 34px;
}
.stats li { padding-top: 20px; border-top: 1px solid var(--line); }
.stats b {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.5rem, 8vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.stats span {
  display: block;
  margin-top: 14px;
  max-width: 24ch;
  font-size: 0.9375rem;
  color: var(--ink-2);
}

.split, .split-tight, .split-media { display: grid; gap: 28px; }
.approach-grid, .editorial-grid { gap: 36px; }
.editorial-grid .prose, .editorial-grid > div > p { max-width: 46ch; }
.editorial-grid .kicker { margin-bottom: 16px; }
.editorial-grid h2 { margin-bottom: 22px; }
.approach-grid .prose { max-width: 46ch; }
.approach-grid h2 { margin-bottom: 22px; }
.split h2 { margin-bottom: 4px; }

.three { display: grid; gap: 40px; margin-top: 44px; }
.three h3 { margin-bottom: 12px; }
.three p { color: var(--ink-2); max-width: 40ch; }

.band { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.band > .wrap { position: relative; z-index: 1; }
.band-media { position: absolute; inset: 0; }
.band-media img, .band-media video { width: 100%; height: 100%; object-fit: cover; }
.band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.88), rgba(10, 10, 11, 0.8));
}
.band h2 { color: #fff; }
.band .prose, .band p { color: #C9C5BE; }

.reasons { display: grid; gap: 34px; }
.reasons h3 { font-weight: 400; max-width: 22ch; }
.reasons p { margin-top: 10px; max-width: 44ch; }

.values { display: grid; gap: 54px; }
.values h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 14px; }
.values .media { margin-bottom: 32px; }
.values p { color: var(--ink-2); max-width: 56ch; }

.sub {
  margin: 34px 0 16px;
  font-family: var(--label);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.specs { list-style: none; margin: 0; padding: 0; }
.specs li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
  color: var(--ink-2);
}
.band .specs li { border-color: #2A2D32; }

.studies h2 { margin-bottom: 20px; }
.cases { display: grid; gap: 0; margin-top: 40px; }
.cases article { padding: 30px 0; }
.cases h3 { max-width: 30ch; font-weight: 400; }
.cases p { margin: 12px 0 0; color: var(--ink-2); max-width: 44ch; }
.more { margin-top: 18px; }
.more a {
  font-family: var(--display);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 3px;
}
.more a:hover { text-decoration: none; border-color: var(--ink); }

.legal-hero { padding-bottom: 56px; }
.legal-grid { display: grid; gap: 48px; }
.legal-index ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.legal-index li { border-top: 1px solid var(--line); }
.legal-index a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: baseline;
  padding: 12px 0;
  font-family: var(--display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 240ms ease;
}
.legal-index a:hover { color: var(--ink); text-decoration: none; }
.legal-index span { font-size: 0.75rem; color: var(--ink-3); }
.legal-block { padding-top: 40px; }
.legal-block + .legal-block { margin-top: 48px; border-top: 1px solid var(--line); }
.legal-num {
  margin-bottom: 14px;
  font-family: var(--label);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
.legal-block h2 { font-size: clamp(1.375rem, 3.6vw, 1.875rem); margin-bottom: 20px; max-width: 24ch; }
.legal-block p { max-width: 68ch; color: var(--ink-2); }
.legal-block .specs { margin: 22px 0 26px; }
.legal-block .specs li { max-width: 68ch; }
.case-body p { color: var(--ink-2); font-size: 1.0625rem; }
.case-body .media { margin-bottom: 34px; }
.case-body p:first-child { color: var(--ink); }

.partners {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 24px 32px;
}
.partners li { border-top: 0; }
.partners a { display: grid; place-items: center; padding: 0; }
.partners a:hover { text-decoration: none; }
.partner-text {
  font-family: var(--display);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  color: var(--ink-2);
  transition: color 260ms ease;
}
.partner-text:hover { color: var(--ink); }
.partners img {
  width: 100%;
  max-width: 150px;
  height: 54px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: opacity 300ms ease, filter 300ms ease;
}
.partners a:hover img { filter: grayscale(0); opacity: 1; }

.wide { max-width: 24ch; margin-bottom: 30px; }

.contact-rows {
  margin: 40px 0 0;
  padding: 0;
  background: none;
  border-radius: 0;
  border-top: 1px solid var(--line);
  font-style: normal;
}
.contact-rows p {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink) !important;
}
.contact-rows .details-name {
  font-size: 0.75rem;
  font-family: var(--label);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3) !important;
  margin-bottom: 0;
  padding-bottom: 14px;
}
.contact-rows .mail { border-bottom: 0; padding-top: 22px; }
.contact-rows .mail a {
  display: inline-block;
  font-size: clamp(1.125rem, 3.2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 4px;
  transition: border-color 260ms ease;
}
.contact-rows .mail a:hover { text-decoration: none; border-color: var(--ink); }
.confidence { margin-top: 28px; }
.details {
  font-style: normal;
  padding: 26px;
  background: var(--sunken);
  border-radius: 20px;
}
.details p { margin-bottom: 0.4em; color: var(--ink-2); }
.details-name { font-family: var(--display); font-weight: 500; font-size: 1.125rem; color: var(--ink) !important; margin-bottom: 14px; }
.confidence { color: var(--ink-3); font-size: 0.9375rem; }

.footer {
  background: var(--ink);
  color: #fff;
  padding-top: 66px;
  overflow: hidden;
}
.footer-grid { position: relative; z-index: 1; display: grid; gap: 36px; }
.footer-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.footer-addr { color: #B4B0A9; font-size: 0.9375rem; }
.footer-nav { display: grid; gap: 8px; align-content: start; }
.footer-nav a { color: #D6D3CE; font-size: 0.9375rem; }

.wordmark {
  position: relative;
  z-index: 0;
  pointer-events: none;
  max-width: 1440px;
  margin: 52px auto 24px;
  padding: 0 20px;
  font-family: var(--display);
  font-size: 23vw;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.8;
  text-transform: uppercase;
}

.footer-legal {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  border-top: 1px solid #2A2D32;
  padding-top: 20px;
  padding-bottom: 24px;
}
.legal-link { color: #D6D3CE; }
.legal-link:hover { color: #fff; }
.footer-legal p {
  font-family: var(--label);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B4B0A9;
}

@media (min-width: 700px) {
  .wrap { padding: 0 32px; }
  .skip:focus { left: 32px; }
  .section { padding: 104px 0; }
  .hero { padding: 132px 0 104px; }
  .hero-editorial { padding: 152px 0 56px; }
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    align-items: end;
    row-gap: 56px;
  }
  .hero-title { grid-column: 1 / 10; grid-row: 1; }
  .hl-2 { margin-left: 14%; }
  .hero-editorial .hero-line { grid-column: 8 / 13; grid-row: 2; justify-self: end; text-align: right; }
  .hero-foot { grid-column: 1 / 7; grid-row: 2; }
  .hero-note { grid-column: 9 / 13; grid-row: 3; justify-self: end; }
  .masthead-float .nav { background: none; }
  .page-head { padding: 88px 0 60px; }
  .page-hero { padding: 132px 0 96px; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .three { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
  .split-media { grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
  .approach, .editorial { padding: 132px 0; }
  .editorial-grid { grid-template-columns: 1.35fr 1fr; gap: 80px; align-items: center; }
  .editorial-grid.reverse { grid-template-columns: 1fr 1.35fr; }
  .editorial-grid .media-3x4 { aspect-ratio: 1 / 1; }
  .approach-grid { grid-template-columns: 1.35fr 1fr; gap: 80px; align-items: center; }
  .approach-grid .media-4x5 { aspect-ratio: 5 / 4; }
  .split-media .media { margin-bottom: 0; }
  .media-wide { aspect-ratio: 16 / 9; margin-top: 40px; }
.media-bleed { aspect-ratio: 21 / 9; }
  .tri { grid-template-columns: 1.35fr 1fr; column-gap: 80px; row-gap: 16px; align-items: center; }
  .tri-media { display: block; grid-column: 1; grid-row: 1 / span 2; }
  .tri > h2 { grid-column: 2; grid-row: 1; align-self: end; }
  .tri > div:not(.tri-media) { grid-column: 2; grid-row: 2; }
  .tri.reverse { grid-template-columns: 1fr 1.35fr; }
  .tri.reverse .tri-media { grid-column: 2; }
  .tri.reverse > h2, .tri.reverse > div:not(.tri-media) { grid-column: 1; }
  .tri .media-3x4 { aspect-ratio: 1 / 1; }
  .split-tight { grid-template-columns: 1.15fr 0.85fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1.4fr 0.6fr; }
  .wordmark { padding: 0 32px; }
  .cases { grid-template-columns: repeat(2, 1fr); column-gap: 56px; }
  .values { grid-template-columns: repeat(3, 1fr); gap: 44px; }
  .contact-rows { margin-top: 48px; }
  .partners { gap: 32px 48px; }
  .partners img { height: 64px; max-width: 180px; }
}

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .nav {
    display: flex;
    width: auto;
    gap: 30px;
    padding: 0;
  }
  .nav a { padding: 0; border: 0; }
  .nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 0.45em; }
  .nav { align-items: center; gap: 26px; }
  .nav .nav-cta { margin-top: 0; height: 40px; padding-left: 20px; }
  .nav .nav-cta[aria-current="page"] { text-decoration: none; }
  .masthead-inner { min-height: 76px; flex-wrap: nowrap; }
  .section { padding: 128px 0; }
  .hero { padding: 176px 0 128px; }
  .hero-editorial { padding: 176px 0 72px; min-height: 100svh; }
  .hero-grid { row-gap: 72px; }
  .hero-title { grid-column: 1 / 11; }
  .hl-2 { margin-left: 18%; }
  .hero-editorial .hero-line { grid-column: 9 / 13; grid-row: 1; align-self: end; padding-bottom: 0.6em; }
  .hero-foot { grid-column: 1 / 6; grid-row: 2; }
  .hero-note { grid-column: 9 / 13; grid-row: 2; align-self: end; }
  .reasons { grid-template-columns: repeat(2, 1fr); column-gap: 48px; row-gap: 44px; }
  .reasons .actions { grid-column: 1 / -1; margin-top: 6px; }
  .split { gap: 88px; }
  .split-media { gap: 80px; }
  .approach, .editorial { padding: 168px 0; }
  .editorial-grid { grid-template-columns: 1.4fr 1fr; gap: 120px; }
  .editorial-grid.reverse { grid-template-columns: 1fr 1.4fr; }
  .editorial-grid h2 { margin-bottom: 28px; }
  .editorial-grid .prose { font-size: 1.0625rem; line-height: 1.68; }
  .approach-grid { grid-template-columns: 1.4fr 1fr; gap: 120px; }
  .approach-grid h2 { margin-bottom: 28px; }
  .approach-grid .prose { font-size: 1.0625rem; line-height: 1.68; }
  .tri { column-gap: 120px; row-gap: 18px; }
  .tri .prose { font-size: 1.0625rem; line-height: 1.68; }
  .tri .sub { margin-top: 40px; }
  .case-body { max-width: 760px; margin-left: auto; margin-right: auto; }
  .legal-grid { grid-template-columns: 0.34fr 0.66fr; gap: 96px; align-items: start; }
  .legal-index { position: sticky; top: 108px; }
  .legal-block { padding-top: 0; }
  .legal-block + .legal-block { margin-top: 64px; padding-top: 56px; }
}

@media (min-width: 1280px) {
  .wrap { padding: 0 64px; }
  .wordmark { padding: 0 64px; }
  .skip:focus { left: 64px; }
}

.veil {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: flex-end;
  padding: 0 20px 8vh;
  background: var(--ink);
  clip-path: inset(0% 0% 0% 0%);
}
.sweep {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.42);
  pointer-events: none;
}
.veil span {
  font-family: var(--display);
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}
.draw {
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 1px;
  background: var(--line-2);
  transform-origin: center center;
}
.band .draw { background: #3A3D42; }
.stats li, .specs li, .cases article, .partners li { position: relative; }
.three article { will-change: transform; }
.three .media, .cases .media { position: relative; }
.hero-media img, .hero-media video, .band-media img, .band-media video { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 1ms !important; animation: none !important; }
  .veil { display: none; }
}

.mark img { display: block; width: auto; height: 24px; }
.masthead.is-condensed .mark img { height: 20px; }
.masthead-float .mark img { filter: invert(1); }
.footer-name img { display: block; width: auto; height: 22px; filter: invert(1); }
@media (min-width: 1024px) {
  .mark img { height: 30px; }
  .footer-name img { height: 26px; }
}

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 400;
  display: grid;
  gap: 16px;
  padding: 20px;
  background: var(--paper, #fff);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 18px;
  animation: cookie-in 640ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.cookie[hidden] { display: none; }
.cookie p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ink-2, #4E4B47);
  text-wrap: pretty;
}
.cookie-actions { display: flex; align-items: center; gap: 20px; }
.cookie .btn {
  height: 36px;
  font-size: 0.8125rem;
  padding: 0 20px;
  background: var(--ink);
  color: #fff;
}
.cookie .btn .btn-badge { width: 26px; height: 26px; background: #fff; color: var(--ink); }
.cookie .btn-ghost {
  height: auto;
  padding: 0;
  background: none;
  border: 0;
  color: var(--ink-2, #4E4B47);
  font-size: 0.8125rem;
  text-decoration: underline;
  text-underline-offset: 0.35em;
  text-decoration-thickness: 1px;
}
.cookie .btn-ghost:hover { color: var(--ink); background: none; }
@keyframes cookie-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
@media (min-width: 768px) {
  .cookie {
    left: 32px;
    right: auto;
    bottom: 32px;
    width: 360px;
    padding: 24px;
  }
}
@media (min-width: 1280px) {
  .cookie { left: 64px; bottom: 40px; }
}
