:root {
  --kkb-red: #d3505e;
  --kkb-red-deep: #8d2f3b;
  --kkb-mint: #7dbfab;
  --kkb-blue: #4b77ba;
  --kkb-lilac: #98a2d2;
  --kkb-yellow: #f4c851;
  --kkb-grey: #798688;
  --kkb-wine: #5e5052;
  --kkb-sky: #7cb7e9;
  --kkb-indigo: #656cab;
  --kkb-coral: #ba614c;
  --kkb-paper: #f3f2ee;
  --kkb-paper-cool: #e9eef0;
  --kkb-ink: #0d0e10;
  --kkb-line: rgba(13, 14, 16, 0.18);
}

.kkb-case {
  background: var(--kkb-paper);
  color: var(--kkb-ink);
}

.kkb-case img {
  height: auto;
}

.kkb-case .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.kkb-case .button {
  background: var(--kkb-red);
}

.kkb-case .button:hover {
  background: #bb3d4c;
}

.case-section {
  position: relative;
  padding-block: var(--section-space);
}

.case-section figure {
  margin: 0;
}

.case-section figcaption {
  margin-top: 11px;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-heading,
.context__grid,
.mark__header,
.identity__header,
.digital__header,
.wayfinding__header,
.implementation__header,
.editorial__header {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.section-heading .eyebrow,
.mark__header .eyebrow,
.identity__header .eyebrow,
.digital__header .eyebrow,
.wayfinding__header .eyebrow,
.implementation__header .eyebrow,
.editorial__header .eyebrow {
  grid-column: 1 / span 2;
  padding-top: 0.7em;
}

.section-heading h2,
.mark__header h2,
.identity__header h2,
.digital__header h2,
.wayfinding__header h2,
.implementation__header h2,
.editorial__header h2 {
  grid-column: 3 / span 8;
  max-width: 1180px;
}

.mark__header > p:last-child,
.identity__header > p:last-child,
.digital__header > p:last-child,
.wayfinding__header > p:last-child,
.implementation__header > p:last-child,
.editorial__header > p:last-child {
  grid-column: 11 / -1;
  align-self: end;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.5;
}

/* Hero */

.kkb-hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  color: var(--kkb-ink);
}

.kkb-hero > .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.kkb-hero__logo-stage {
  position: relative;
  width: clamp(220px, 28vw, 430px);
  aspect-ratio: 63.74 / 74.8;
  contain: layout paint size;
  cursor: default;
  touch-action: pan-y;
}

.kkb-hero__logo-stage canvas,
.kkb-hero__logo-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.kkb-hero__logo-stage canvas {
  opacity: 0;
  transition: opacity 360ms ease;
}

.kkb-hero__logo-fallback {
  object-fit: contain;
  transition: opacity 240ms ease;
}

.kkb-hero__logo-stage.is-ready canvas {
  opacity: 1;
}

.kkb-hero__logo-stage.is-ready .kkb-hero__logo-fallback {
  opacity: 0;
}

.kkb-hero__copy {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: clamp(24px, 3.2vh, 44px);
  padding-bottom: clamp(28px, 4vh, 54px);
  pointer-events: none;
}

.kkb-hero__copy-top,
.kkb-hero__copy-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.kkb-hero__copy-top p,
.kkb-hero__copy-top span {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.kkb-hero__copy-top span {
  justify-self: end;
}

.kkb-hero__copy-bottom {
  grid-row: 3;
  align-items: end;
}

.kkb-hero__copy-bottom > p {
  max-width: 570px;
  margin: 0;
  font-size: clamp(15px, 1.12vw, 19px);
  line-height: 1.42;
}

.kkb-hero__copy-meta {
  justify-self: start;
  display: grid;
  gap: 18px;
}

.kkb-hero__tags {
  display: flex;
  max-width: 540px;
  flex-wrap: wrap;
  gap: 8px;
}

.kkb-hero__tags span {
  padding: 7px 10px;
  border: 1px solid rgba(13, 14, 16, 0.34);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
}

.kkb-hero__copy-meta > a {
  width: max-content;
  color: inherit;
  font-size: 13px;
  text-underline-offset: 0.28em;
  pointer-events: auto;
}

/* Sticky index */

.case-index {
  position: relative;
  z-index: 70;
  top: auto;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  background: rgba(244, 243, 239, 0.94);
  border-bottom: 1px solid var(--kkb-line);
  backdrop-filter: blur(15px);
}

.case-index a {
  min-height: 58px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-right: 1px solid var(--kkb-line);
  color: rgba(13,14,16,0.58);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.case-index a:last-child {
  border-right: 0;
}

.case-index a span {
  color: var(--kkb-red);
}

.case-index a:is(:hover, :focus-visible),
.case-index a.is-active {
  background: #fff;
  color: var(--kkb-ink);
}

/* Context */

.context {
  background: var(--kkb-paper);
}

.context .section-heading {
  margin-bottom: clamp(64px, 8vw, 130px);
}

.context__lead {
  grid-column: 3 / span 5;
  margin-bottom: 0;
  font: 400 clamp(34px, 3.1vw, 54px)/1 var(--display);
  letter-spacing: -0.035em;
}

.context__copy {
  grid-column: 9 / -1;
  align-self: end;
  max-width: 470px;
}

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

.context__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(70px, 9vw, 140px);
  border-top: 1px solid var(--kkb-line);
  border-bottom: 1px solid var(--kkb-line);
}

.context__facts article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 24px 26px;
  border-right: 1px solid var(--kkb-line);
}

.context__facts article:last-child {
  border-right: 0;
}

.context__facts strong {
  font: 400 clamp(76px, 7vw, 124px)/0.8 var(--display);
  color: var(--kkb-red);
  letter-spacing: -0.06em;
}

.context__facts span {
  max-width: 270px;
  font-size: 13px;
}

/* Mark */

.mark {
  overflow: hidden;
  background: #fff;
}

.mark__header,
.identity__header,
.digital__header,
.wayfinding__header,
.implementation__header,
.editorial__header {
  margin-bottom: clamp(64px, 8vw, 126px);
}

.meaning {
  display: grid;
  grid-template-columns: 7fr 5fr;
  min-height: 690px;
  border: 1px solid var(--kkb-line);
}

.meaning__visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--kkb-paper-cool);
  transition: background 450ms ease;
}

.meaning__visual::before,
.meaning__visual::after,
.meaning__visual i {
  content: "";
  position: absolute;
  border: 1px solid rgba(13,14,16,0.16);
  border-radius: 50%;
}

.meaning__visual::before {
  width: min(66%, 520px);
  aspect-ratio: 1;
}

.meaning__visual::after {
  width: min(42%, 330px);
  aspect-ratio: 1;
}

.meaning__visual i {
  width: min(90%, 720px);
  aspect-ratio: 1;
}

.meaning__visual span {
  position: relative;
  z-index: 2;
  width: min(25%, 190px);
  display: grid;
  transition: opacity 320ms ease, transform 450ms cubic-bezier(.2,.7,.2,1), filter 450ms ease;
}

.meaning__symbol {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 1;
  transition: opacity 280ms ease;
}

.meaning__symbol--star {
  opacity: 0;
}

.meaning__visual > .meaning__human-image {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0;
  transition: opacity 450ms ease;
}

.meaning[data-state="star"] .meaning__symbol--logo {
  opacity: 0;
}

.meaning[data-state="star"] .meaning__symbol--star {
  opacity: 1;
}

.meaning[data-state="human"] .meaning__visual {
  background: #dfe9f8;
}

.meaning[data-state="human"] .meaning__visual span {
  opacity: 0;
  transform: scale(0.96);
  filter: none;
}

.meaning[data-state="human"] .meaning__human-image {
  opacity: 1;
}

.meaning__visual b {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 17px;
  font: 400 clamp(84px, 8vw, 140px)/0.8 var(--display);
  color: rgba(13,14,16,0.1);
}

.meaning__controls {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.meaning__controls button {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto 1fr;
  gap: 12px 18px;
  padding: 28px 32px;
  border: 0;
  border-bottom: 1px solid var(--kkb-line);
  background: #fff;
  color: var(--kkb-ink);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.meaning__controls button:last-child {
  border-bottom: 0;
}

.meaning__controls button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--kkb-red);
  transform: scaleY(0);
  transition: transform 220ms ease;
}

.meaning__controls button:hover,
.meaning__controls button.is-active {
  background: var(--kkb-red);
  color: #fff;
}

.meaning__controls button.is-active::after {
  transform: scaleY(1);
}

.meaning__controls button > span {
  grid-row: 1 / span 2;
  font-size: 11px;
}

.meaning__controls strong {
  align-self: end;
  font: 400 clamp(34px, 3vw, 53px)/0.92 var(--display);
  letter-spacing: -0.04em;
}

.meaning__controls small {
  align-self: start;
  max-width: 330px;
  color: inherit;
  font-size: 12px;
  opacity: 0.65;
}

.mark__lockups {
  margin-top: clamp(64px, 8vw, 120px) !important;
}

.mark__lockups img,
.mark__motion img {
  width: 100%;
  height: auto;
}

.mark__motion {
  width: min(100%, 1920px);
  margin: clamp(30px, 4vw, 64px) auto 0 !important;
  padding: var(--gutter);
  background: var(--kkb-red);
}

.mark__motion figcaption {
  color: rgba(255,255,255,0.72);
}

/* Identity */

.identity {
  background: var(--kkb-paper);
}

.palette {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  min-height: 230px;
  margin-bottom: clamp(76px, 9vw, 138px);
}

.palette span {
  display: flex;
  align-items: flex-end;
  padding: 12px;
  background: var(--c);
  color: #fff;
  transition: flex-grow 300ms ease, transform 300ms ease;
}

.palette span:hover {
  transform: translateY(-12px);
}

.palette b {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.identity-slider {
  position: relative;
}

.identity-slider__viewport {
  position: relative;
  aspect-ratio: 1.5;
  overflow: hidden;
  background: #e1e2df;
}

.identity-slider__viewport figure {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 440ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

.identity-slider__viewport figure.is-active {
  opacity: 1;
  transform: none;
}

.identity-slider__viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.identity-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--kkb-line);
  font-size: 11px;
}

.identity-slider__controls div {
  display: flex;
  gap: 8px;
}

.identity-slider__controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--kkb-line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.identity-slider__controls button:hover {
  background: var(--kkb-ink);
  color: #fff;
}

.applications-grid,
.digital-grid,
.wayfinding__renders,
.implementation__photos,
.editorial__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  margin-top: clamp(80px, 9vw, 145px);
}

.applications-grid img,
.digital-grid img,
.wayfinding__renders img,
.implementation__photos img,
.editorial__grid img {
  width: 100%;
}

/* Map and digital */

.digital {
  background: var(--kkb-red);
  color: #fff;
}

.digital .eyebrow {
  color: var(--kkb-yellow);
}

.campus-map {
  padding: clamp(18px, 2vw, 32px);
  background: #fff;
  color: var(--kkb-ink);
}

.campus-map img {
  width: 100%;
}

.campus-code {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 0;
  margin-top: clamp(80px, 9vw, 140px);
  background: var(--kkb-ink);
  color: #fff;
}

.campus-code__copy {
  min-height: 580px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 58px);
}

.campus-code__copy .eyebrow {
  margin-bottom: auto;
}

.campus-code__copy > strong {
  font: 400 clamp(116px, 11vw, 190px)/0.72 var(--display);
  color: var(--kkb-yellow);
}

.campus-code__copy h3 {
  max-width: 390px;
  margin: 28px 0 24px;
  font-size: clamp(40px, 4vw, 68px);
  line-height: 0.9;
}

.campus-code__copy > p:last-child {
  max-width: 380px;
  margin: 0;
  color: rgba(255,255,255,0.64);
  font-size: 14px;
}

.campus-code__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.campus-code__grid button {
  min-height: 190px;
  display: grid;
  place-items: center;
  border: 0;
  border-left: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  background: var(--c);
  color: #fff;
  cursor: pointer;
  transition: none;
}

.campus-code__grid span {
  font: 400 clamp(44px, 4.2vw, 72px)/1 var(--display);
  transform: scale(1);
  transition: transform 240ms cubic-bezier(.2,.75,.25,1);
}

.campus-code__grid button:hover span,
.campus-code__grid button.is-active span {
  transform: scale(1.28);
}

.digital-grid figure {
  background: #fff;
  color: var(--kkb-ink);
}

.digital-grid figcaption {
  padding: 0 16px 12px;
}

/* Wayfinding */

.wayfinding {
  overflow: hidden;
  background: #fff;
}

.wayfinding__palette,
.wayfinding__system,
.implementation__construction,
.implementation__map-fragment {
  margin-top: clamp(50px, 7vw, 110px) !important;
}

.wayfinding__palette img,
.wayfinding__system img,
.implementation__construction img,
.implementation__map-fragment img {
  width: 100%;
}

.wayfinding__system {
  width: min(100%, 1320px);
  margin-inline: auto !important;
}

.wayfinding__renders figure {
  padding: clamp(12px, 1.5vw, 22px);
  background: var(--kkb-paper-cool);
}

.wayfinding__panorama {
  width: min(100%, 1920px);
  margin: clamp(28px, 4vw, 60px) auto 0 !important;
  padding: 0 var(--gutter);
}

.wayfinding__panorama img {
  width: 100%;
  min-height: 190px;
  object-fit: cover;
}

/* Outdoor implementation */

.implementation {
  background: var(--kkb-paper-cool);
}

.implementation__lead-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.implementation__photos figure:nth-child(1),
.implementation__photos figure:nth-child(4) {
  grid-column: span 2;
}

.implementation__photos figure:nth-child(1) img,
.implementation__photos figure:nth-child(4) img {
  aspect-ratio: 1.65;
  object-fit: cover;
}

/* Editorial */

.editorial {
  background: var(--kkb-yellow);
}

.editorial__grid {
  align-items: start;
}

.editorial__grid figure {
  padding: clamp(16px, 2vw, 30px);
  background: var(--kkb-paper);
}

.editorial__grid img {
  height: min(64vw, 920px);
  object-fit: contain;
}

.editorial__grid figure:nth-child(2) {
  margin-top: clamp(80px, 10vw, 160px);
}

/* Result, credits, related */

.result {
  background: #fff;
}

.result .section-heading {
  margin-bottom: clamp(70px, 8vw, 126px);
}

.result__grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(80px, 10vw, 170px);
  padding-top: 32px;
  border-top: 1px solid var(--kkb-line);
}

.result__grid > div {
  font-size: clamp(20px, 1.6vw, 27px);
  line-height: 1.43;
}

.result__grid > div p:last-child {
  margin-bottom: 0;
}

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

.result__grid li {
  padding: 13px 0;
  border-top: 1px solid var(--kkb-line);
  font-size: 14px;
}

.result__grid li:last-child {
  border-bottom: 1px solid var(--kkb-line);
}

.credits {
  background: var(--kkb-red);
  color: #fff;
}

.credits__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(60px, 8vw, 140px);
}

.credits h2 {
  max-width: 650px;
  margin-top: 36px;
}

.credits__list article {
  display: grid;
  grid-template-columns: 3fr 5fr;
  gap: 30px;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.34);
}

.credits__list article:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.34);
}

.credits__list strong {
  font: 400 clamp(30px, 2.7vw, 46px)/0.96 var(--display);
}

.credits__list span {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.related {
  background: var(--kkb-paper);
}

.related__grid {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: clamp(60px, 8vw, 150px);
  align-items: center;
}

.related h2 {
  margin: 34px 0;
}

.related__grid > div > p:not(.eyebrow) {
  max-width: 460px;
}

.related__grid > a {
  position: relative;
  overflow: hidden;
  display: block;
  background: #dfe7ed;
  color: #fff;
}

.related__grid > a img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.related__grid > a:hover img {
  transform: scale(1.025);
}

.related__grid > a span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 9px 12px;
  background: rgba(8,8,10,0.82);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Contact */

.case-contact {
  position: relative;
  overflow: hidden;
  padding-top: var(--section-space);
  background:
    radial-gradient(circle at 93% 4%, rgba(211,80,94,0.23), transparent 34%),
    radial-gradient(circle at 35% 42%, rgba(244,200,81,0.10), transparent 42%),
    var(--black);
  color: #fff;
}

.case-contact .contact__main .eyebrow {
  color: var(--kkb-red);
}

.case-contact .gradient-text {
  --text-gradient: linear-gradient(104deg, #f3d06f 0%, #d3505e 100%);
}

.case-contact .contact__main .button {
  background: var(--kkb-red);
}

@media (max-width: 1199px) {
  .section-heading h2,
  .mark__header h2,
  .identity__header h2,
  .digital__header h2,
  .wayfinding__header h2,
  .implementation__header h2,
  .editorial__header h2 {
    grid-column: 3 / span 7;
  }

  .mark__header > p:last-child,
  .identity__header > p:last-child,
  .digital__header > p:last-child,
  .wayfinding__header > p:last-child,
  .implementation__header > p:last-child,
  .editorial__header > p:last-child {
    grid-column: 10 / -1;
  }

  .meaning {
    min-height: 570px;
  }

  .campus-code__grid button {
    min-height: 155px;
  }
}

@media (max-width: 959px) {
  .section-heading,
  .mark__header,
  .identity__header,
  .digital__header,
  .wayfinding__header,
  .implementation__header,
  .editorial__header {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .section-heading .eyebrow,
  .mark__header .eyebrow,
  .identity__header .eyebrow,
  .digital__header .eyebrow,
  .wayfinding__header .eyebrow,
  .implementation__header .eyebrow,
  .editorial__header .eyebrow {
    grid-column: 1 / span 2;
  }

  .section-heading h2,
  .mark__header h2,
  .identity__header h2,
  .digital__header h2,
  .wayfinding__header h2,
  .implementation__header h2,
  .editorial__header h2 {
    grid-column: 3 / -1;
  }

  .mark__header > p:last-child,
  .identity__header > p:last-child,
  .digital__header > p:last-child,
  .wayfinding__header > p:last-child,
  .implementation__header > p:last-child,
  .editorial__header > p:last-child {
    grid-column: 3 / span 5;
    margin-top: 22px;
  }

  .context__lead {
    grid-column: 1 / span 5;
  }

  .context__copy {
    grid-column: 6 / -1;
  }

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

  .meaning__visual {
    min-height: 540px;
  }

  .meaning__controls {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
  }

  .meaning__controls button {
    min-height: 230px;
    grid-template-columns: 1fr;
    border-right: 1px solid var(--kkb-line);
    border-bottom: 0;
  }

  .meaning__controls button:last-child {
    border-right: 0;
  }

  .meaning__controls button > span {
    grid-row: auto;
  }

  .palette {
    grid-template-columns: repeat(5, 1fr);
  }

  .palette span {
    min-height: 130px;
  }

  .campus-code {
    grid-template-columns: 1fr;
  }

  .campus-code__copy {
    min-height: 420px;
  }

  .campus-code__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .result__grid,
  .credits__grid,
  .related__grid {
    grid-template-columns: 1fr;
  }

  .credits__list {
    margin-top: 34px;
  }
}

@media (max-width: 767px) {
  .case-section {
    padding-block: 82px;
  }

  .case-section figcaption {
    margin-top: 8px;
    font-size: 8px;
  }

  .kkb-hero {
    min-height: min(760px, calc(100svh - var(--header-h)));
  }

  .kkb-hero__logo-stage {
    width: clamp(180px, 56vw, 260px);
  }

  .kkb-hero__copy {
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .kkb-hero__copy-top {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .kkb-hero__copy-top p,
  .kkb-hero__copy-top span {
    font-size: 8px;
  }

  .kkb-hero__copy-top p {
    max-width: 230px;
  }

  .kkb-hero__copy-bottom {
    display: block;
  }

  .kkb-hero__copy-bottom > p {
    max-width: 315px;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.38;
  }

  .kkb-hero__tags {
    display: none;
  }

  .kkb-hero__copy-meta {
    display: block;
  }

  .kkb-hero__copy-meta > a {
    font-size: 11px;
  }

  .case-index {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

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

  .case-index a {
    min-width: 118px;
    min-height: 48px;
    scroll-snap-align: start;
    font-size: 8px;
  }

  .section-heading,
  .mark__header,
  .identity__header,
  .digital__header,
  .wayfinding__header,
  .implementation__header,
  .editorial__header,
  .context__grid {
    display: block;
  }

  .section-heading .eyebrow,
  .mark__header .eyebrow,
  .identity__header .eyebrow,
  .digital__header .eyebrow,
  .wayfinding__header .eyebrow,
  .implementation__header .eyebrow,
  .editorial__header .eyebrow {
    margin-bottom: 26px;
  }

  .mark__header > p:last-child,
  .identity__header > p:last-child,
  .digital__header > p:last-child,
  .wayfinding__header > p:last-child,
  .implementation__header > p:last-child,
  .editorial__header > p:last-child {
    max-width: 520px;
    margin-top: 26px;
    font-size: 15px;
  }

  .context .section-heading,
  .mark__header,
  .identity__header,
  .digital__header,
  .wayfinding__header,
  .implementation__header,
  .editorial__header {
    margin-bottom: 62px;
  }

  .context__lead {
    margin-bottom: 36px;
    font-size: 35px;
  }

  .context__facts {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .context__facts article {
    min-height: 150px;
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--kkb-line);
  }

  .context__facts article:last-child {
    border-bottom: 0;
  }

  .meaning__visual {
    min-height: 410px;
  }

  .meaning__visual span {
    width: 27%;
  }

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

  .meaning__controls button {
    min-height: 0;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    padding: 22px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--kkb-line);
  }

  .meaning__controls button:last-child {
    border-bottom: 0;
  }

  .meaning__controls button > span {
    grid-row: 1 / span 2;
  }

  .meaning__controls strong {
    font-size: 34px;
  }

  .mark__lockups,
  .mark__motion {
    margin-top: 54px !important;
  }

  .mark__motion {
    padding: 18px;
  }

  .palette {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 72px;
  }

  .palette span {
    min-height: 105px;
  }

  .identity-slider__viewport {
    aspect-ratio: 1.05;
  }

  .identity-slider__viewport img {
    object-fit: contain;
    background: #dddeda;
  }

  .applications-grid,
  .digital-grid,
  .wayfinding__renders,
  .implementation__photos,
  .editorial__grid {
    grid-template-columns: 1fr;
    margin-top: 66px;
  }

  .campus-map {
    padding: 10px;
  }

  .campus-code {
    margin-top: 66px;
  }

  .campus-code__copy {
    min-height: 370px;
    padding: 24px 18px 30px;
  }

  .campus-code__copy > strong {
    font-size: 105px;
  }

  .campus-code__copy h3 {
    font-size: 45px;
  }

  .campus-code__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .campus-code__grid button {
    min-height: 112px;
  }

  .campus-code__grid span {
    font-size: 43px;
  }

  .wayfinding__palette,
  .wayfinding__system,
  .implementation__construction,
  .implementation__map-fragment {
    margin-top: 48px !important;
  }

  .wayfinding__panorama {
    padding: 0 18px;
  }

  .wayfinding__panorama img {
    min-height: 108px;
  }

  .implementation__photos figure:nth-child(1),
  .implementation__photos figure:nth-child(4) {
    grid-column: auto;
  }

  .implementation__photos figure:nth-child(1) img,
  .implementation__photos figure:nth-child(4) img {
    aspect-ratio: auto;
  }

  .editorial__grid figure:nth-child(2) {
    margin-top: 0;
  }

  .editorial__grid img {
    height: auto;
    max-height: 640px;
  }

  .result__grid,
  .credits__grid,
  .related__grid {
    gap: 54px;
  }

  .result__grid > div {
    font-size: 19px;
  }

  .credits__list article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .related h2 {
    margin-block: 26px;
  }

  .related__grid > a img {
    aspect-ratio: 1.25;
  }

  .case-contact .gradient-text {
    --text-gradient: linear-gradient(110deg, #f3d06f 0%, #d3505e 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .kkb-hero__logo-stage canvas,
  .meaning__visual,
  .meaning__visual span,
  .identity-slider__viewport figure,
  .related__grid > a img,
  .palette span,
  .campus-code__grid button {
    transition: none !important;
  }
}
