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

@font-face {
  font-family: "Oswald Local";
  src: url("./assets/fonts/Oswald.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --text: #050505;
  --red: #d5102c;
  --link: #036933;
  --email-link: #1a59b7;
  --orange: #e85a0d;
  --mono: "Andale Mono Local", "Andale Mono", monospace;
  --display: "Oswald Local", Oswald, Impact, "Arial Black", sans-serif;
  --page-x: clamp(20px, 5.9vw, 120px);
  --page-top: clamp(14px, 2.55vw, 30px);
  --footer-bottom: clamp(14px, 2.6vw, 38px);
  --nav-safe: clamp(128px, 16svh, 206px);
  --footer-safe: clamp(112px, 15svh, 188px);
  --tagline-open-y: 0px;
  --body-copy-size: clamp(11px, 0.78vw, 15px);
  --body-copy-line: 1.28;
  --ease-snap: cubic-bezier(0.76, 0, 0.24, 1);
}

* {
  box-sizing: border-box;
}

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

html {
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  cursor: default;
  font-family: var(--mono);
  font-synthesis: none;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-user-select: none;
  user-select: none;
}

body * {
  cursor: default;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 30;
  border: 2px solid var(--text);
  pointer-events: none;
  content: "";
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button {
  font: inherit;
}

.visually-hidden {
  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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: var(--page-top) var(--page-x) 0;
  pointer-events: none;
}

body[data-active-screen="about"] .site-header {
  height: var(--nav-safe);
  background: var(--bg);
}

.brand-mark,
.main-nav a,
.header-actions a,
.header-actions button {
  pointer-events: auto;
}

a,
button,
[role="button"] {
  cursor: pointer;
}

.brand-mark {
  position: relative;
  display: block;
  width: clamp(22px, 2.3vw, 42px);
  aspect-ratio: 1 / 1.45;
  color: var(--text);
  animation: brand-color-cycle 7.5s steps(1, end) infinite;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
}

.brand-mark::after {
  position: absolute;
  inset: 0;
  display: none;
  background: currentColor;
  content: "";
  mask: url("./assets/logo_nav.svg") center / contain no-repeat;
  -webkit-mask: url("./assets/logo_nav.svg") center / contain no-repeat;
}

@supports ((-webkit-mask: url("")) or (mask: url(""))) {
  .brand-mark img {
    opacity: 0;
  }

  .brand-mark::after {
    display: block;
  }
}

.main-nav {
  display: grid;
  gap: clamp(8px, 1.35svh, 15px);
  justify-items: center;
  font-size: clamp(11px, 0.86vw, 16px);
  line-height: 1;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--red);
}

.header-actions {
  display: grid;
  gap: clamp(8px, 1.35svh, 15px);
  justify-self: end;
  justify-items: end;
  grid-template-rows: repeat(3, 1em);
  font-size: clamp(11px, 0.86vw, 16px);
  line-height: 1;
  pointer-events: none;
}

.header-actions > a {
  grid-row: 3;
}

.header-actions a,
.header-actions button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 1;
  text-decoration: none;
}

.header-actions a:hover,
.header-actions a:focus-visible,
.header-actions button:hover,
.header-actions button:focus-visible,
.language-switch button.is-active {
  color: var(--red);
  outline: none;
}

.language-switch {
  display: flex;
  gap: 0.55em;
  align-items: baseline;
}

.section-frame {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: grid;
  overflow: hidden;
  padding: var(--nav-safe) var(--page-x) var(--footer-safe);
  opacity: 0;
  pointer-events: none;
  transform: translateX(3.2vw);
  transition:
    opacity 160ms steps(2, jump-none),
    transform 300ms var(--ease-snap);
}

.section-frame.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero {
  place-items: center;
}

.hero-logo {
  --hero-open-y: clamp(112px, 12vw, 196px);
  --hero-credit-open-y: calc(var(--hero-open-y) + clamp(14px, 1.4vw, 26px));
  position: relative;
  display: grid;
  justify-items: end;
  width: min(72vw, 1060px);
  cursor: default;
}

.hero-mark {
  position: relative;
  width: 100%;
  aspect-ratio: 1058.85 / 172.92;
}

.hero-logo-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 260ms cubic-bezier(0.72, -0.18, 0.09, 1.28);
}

.logo-top {
  clip-path: inset(0 0 49.4% 0);
}

.logo-bottom {
  position: absolute;
  clip-path: inset(49.4% 0 0 0);
}

.hero-tagline-text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: flex;
  width: max-content;
  max-width: 90vw;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  font-size: clamp(18px, 2vw, 38px);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, calc(-50% + 18px)) scaleY(0.72);
  transition:
    opacity 110ms linear,
    transform 180ms cubic-bezier(0.72, -0.18, 0.09, 1.28);
}

.hero-logo.is-hovered .logo-top {
  transform: translateY(calc(-1 * var(--hero-open-y)));
}

.hero-logo.is-hovered .logo-bottom {
  transform: translateY(var(--hero-open-y));
}

.hero-logo.is-hovered .hero-tagline-text {
  opacity: 1;
  transform: translate(-50%, calc(-50% + var(--tagline-open-y))) scaleY(1);
}

.hero-credit {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  margin-top: clamp(12px, 1.35vw, 24px);
  pointer-events: none;
  line-height: 1;
  transform: translateY(0);
  transition: transform 260ms cubic-bezier(0.72, -0.18, 0.09, 1.28);
}

.hero-credit-by {
  display: inline-block;
  font-size: clamp(18px, 2.05vw, 36px);
  line-height: 1;
}

.hero-idea {
  display: block;
  width: clamp(110px, 14.2vw, 228px);
  height: auto;
  pointer-events: none;
}

.hero-logo.is-hovered .hero-credit {
  transform: translateY(var(--hero-credit-open-y));
}

.work {
  --case-size: min(38vw, calc(100svh - var(--nav-safe) - var(--footer-safe)), 620px);
  grid-template-columns: minmax(0, var(--case-size)) minmax(0, 1fr);
  grid-template-rows: var(--case-size);
  grid-template-areas: "media info";
  gap: clamp(34px, 7.6vw, 150px);
  align-content: center;
  align-items: stretch;
}

.work.is-entering .case-media {
  animation: media-kick 500ms cubic-bezier(0.72, -0.18, 0.09, 1.28);
}

.work.is-entering .case-info {
  animation: info-kick 500ms cubic-bezier(0.72, -0.18, 0.09, 1.28);
}

.case-media {
  position: relative;
  grid-area: media;
  width: 100%;
  height: 100%;
  border: 1px solid var(--text);
  cursor: pointer;
  overflow: hidden;
}

.case-media:hover,
.case-media:focus-visible {
  border-color: var(--red);
  outline: none;
}

.case-media.is-placeholder,
.case-media.is-placeholder *,
.case-info h1.is-placeholder,
.case-info h1.is-placeholder .case-title-hit,
.tag-case-title.is-placeholder {
  cursor: default;
}

.case-media.is-placeholder:hover,
.case-media.is-placeholder:focus-visible {
  border-color: var(--text);
}

.case-info h1.is-placeholder .case-title-hit.is-hot,
.case-info h1.is-placeholder .case-title-hit:focus-visible,
.tag-case-title.is-placeholder:hover,
.tag-case-title.is-placeholder:focus-visible {
  color: var(--text);
  outline: none;
}

.case-media *,
.brief-link * {
  cursor: pointer;
}

.case-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transform: translateX(100%);
}

.case-video.is-active {
  opacity: 1;
  transform: translateX(0);
}

.case-media.is-reeling .case-video.is-current {
  animation: reel-current 520ms var(--ease-snap) forwards;
}

.case-media.is-reeling .case-video.is-next {
  animation: reel-next 520ms var(--ease-snap) forwards;
}

.case-info {
  grid-area: info;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  height: 100%;
  justify-items: end;
  text-align: right;
  overflow: hidden;
}

.case-info.is-reeling .pixel-arrow {
  animation: reel-arrow 520ms var(--ease-snap);
}

.case-text {
  justify-self: end;
  width: min(100%, 570px);
  min-width: 0;
  transform: translateY(-0.34em);
  transition: opacity 90ms linear;
  will-change: opacity;
}

.case-text.is-swapping {
  opacity: 0;
}

.case-kicker {
  margin: 0 0 12px;
  opacity: 0;
  font-size: clamp(12px, 0.85vw, 16px);
}

.case-info h1 {
  max-width: 100%;
  margin: -0.18em 0 clamp(14px, 2.2vw, 28px);
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 154px);
  font-weight: 700;
  line-height: 0.76;
  cursor: default;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.case-title-hit {
  display: inline-block;
  cursor: default;
}

.case-title-hit.is-hot,
.case-title-hit:focus-visible {
  color: var(--red);
  cursor: pointer;
  outline: none;
}

.case-title-hit.is-hot * {
  cursor: pointer;
}

.case-info h1.is-two-line {
  font-size: clamp(56px, 7.7vw, 146px);
  line-height: 0.84;
}

.case-info h1.is-compact {
  font-size: clamp(38px, 5.15vw, 94px);
  line-height: 1.08;
}

.case-info p {
  margin: 0;
  font-size: clamp(13px, 1vw, 21px);
  line-height: 1.75;
}

.case-services {
  display: grid;
  justify-items: end;
  gap: 0.7em;
  font-size: clamp(13px, 1vw, 21px);
  line-height: 1;
  transform: translateX(0);
  transition: transform 220ms var(--ease-snap);
}

.case-services.is-hidden {
  transform: translateX(1.15rem);
  transition-duration: 0ms;
}

.case-tag {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  line-height: 1;
  text-align: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.case-tag:hover,
.case-tag:focus-visible {
  color: var(--link);
  outline: none;
}

.case-services .case-tag,
.case-info .case-tag,
.tag-heading h2,
.tag-case-title {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.pixel-arrow {
  --unit: clamp(13px, 1.55vw, 30px);
  align-self: end;
  justify-self: end;
  width: calc(var(--unit) * 11);
  height: calc(var(--unit) * 9);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition:
    color 80ms linear,
    transform 130ms steps(2, jump-none);
}

.pixel-arrow:hover,
.pixel-arrow:focus-visible {
  color: var(--red);
  transform: translateX(18px) skewX(-4deg);
  outline: none;
}

.pixel-arrow span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent url("./assets/arrow.svg?v=4") center / contain no-repeat;
}

.pixel-arrow span::after {
  position: absolute;
  inset: 0;
  display: none;
  background: currentColor;
  content: "";
  mask: url("./assets/arrow.svg?v=4") center / contain no-repeat;
  -webkit-mask: url("./assets/arrow.svg?v=4") center / contain no-repeat;
}

@supports ((-webkit-mask: url("")) or (mask: url(""))) {
  .pixel-arrow span {
    background-image: none;
  }

  .pixel-arrow span::after {
    display: block;
  }
}

.about {
  min-height: 0;
  grid-template-columns: minmax(0, 36vw) minmax(0, 1fr);
  gap: clamp(76px, 8vw, 150px);
  align-content: center;
  align-items: start;
}

.about-team {
  display: grid;
  width: min(100%, 680px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.35vw, 24px);
  align-items: start;
}

.about-person {
  --about-card-color: var(--red);
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.about-person.is-green {
  --about-card-color: var(--link);
}

.about-person.is-orange {
  --about-card-color: var(--orange);
}

.about-person.is-blue {
  --about-card-color: #1f5fbf;
}

.about-person.is-black {
  --about-card-color: #050505;
}

.about-person.is-black .about-card {
  color: var(--bg);
}

.about-person img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-card {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  min-height: 54%;
  max-height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  gap: clamp(10px, 1.1vw, 16px);
  padding: clamp(12px, 1.2vw, 18px);
  background: var(--about-card-color);
  color: #050505;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scaleY(0.94);
  transform-origin: top;
  transition:
    opacity 120ms linear,
    transform 180ms var(--ease-snap);
}

.about-card::-webkit-scrollbar {
  display: none;
}

.about-card strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: clamp(9px, 0.82vw, 14px);
  font-weight: 400;
  line-height: 1.1;
}

.about-card span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: clamp(7px, 0.66vw, 11px);
  line-height: 1.16;
}

.about-person:hover .about-card,
.about-person:focus-visible .about-card,
.about-person.is-open .about-card {
  opacity: 1;
  transform: translateY(0) scaleY(1);
}

.about-person:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 6px;
}

.about-cue {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  display: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--text);
  background: var(--bg);
  font-size: 14px;
  line-height: 1;
  text-align: center;
  transition: transform 160ms var(--ease-snap);
}

.about-person.is-open .about-cue {
  transform: rotate(45deg);
}

.about-copy {
  display: grid;
  justify-items: stretch;
  align-self: start;
  justify-self: stretch;
  max-width: min(980px, 100%);
  max-height: calc(100svh - var(--nav-safe) - var(--footer-safe) - 16px);
  overflow: visible;
  text-align: left;
}

.about-logo-crop {
  justify-self: end;
  width: min(100%, 560px);
  overflow: visible;
  margin: 0 0 clamp(44px, 5.2vw, 112px);
}

.about-logo {
  display: block;
  width: min(100%, 540px);
  height: auto;
  margin: 0;
}

.about-text {
  display: grid;
  justify-self: end;
  width: min(100%, 104ch);
  max-height: min(46svh, 520px);
  overflow: auto;
  padding-right: 2px;
  scrollbar-width: none;
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-line);
}

.about-text::-webkit-scrollbar {
  display: none;
}

.about-text p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  text-align: justify;
}

.about-intro {
  margin-bottom: clamp(12px, 1.4vw, 20px) !important;
}

.about-text-block {
  display: grid;
  gap: clamp(6px, 0.72vw, 10px);
  margin-top: clamp(10px, 1.15vw, 16px);
}

.about-text-block h2 {
  justify-self: start;
  margin: 0;
  font-family: var(--mono);
  font-size: 1em;
  font-weight: 400;
  line-height: inherit;
  color: #036933;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.about-text-block h2::before {
  content: "/ ";
  color: #036933;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.6em 1.2em;
  margin-top: clamp(14px, 1.7vw, 24px);
}

.about-links button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--link);
  cursor: pointer;
  font: inherit;
  font-size: inherit;
  line-height: inherit;
}

.about-links button:hover,
.about-links button:focus-visible {
  color: var(--red);
}

.what-we-do {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.product-slides {
  position: relative;
  z-index: 2;
  min-height: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

.product-slides::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.product-slide {
  --product-frame-h: min(640px, calc(100svh - var(--nav-safe) - var(--footer-safe) - clamp(28px, 5svh, 64px)));
  position: relative;
  display: grid;
  min-height: var(--product-frame-h);
  grid-template-columns: minmax(0, calc(var(--product-frame-h) * 0.748)) minmax(420px, 1fr);
  gap: clamp(48px, 11vw, 230px);
  align-content: center;
  align-items: start;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.product-media {
  position: relative;
  z-index: 2;
  width: min(100%, calc(var(--product-frame-h) * 0.748));
  height: var(--product-frame-h);
  aspect-ratio: 160 / 214;
  border: 1px solid var(--text);
  overflow: hidden;
}

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

.product-mascot {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: clamp(820px, 72vw, 1480px);
  height: auto;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.product-mascot.is-playing {
  opacity: 1;
}

.product-content {
  position: relative;
  z-index: 3;
  justify-self: end;
  max-width: min(680px, 40vw);
  text-align: left;
}

.product-counter {
  display: none;
  margin: 0 0 clamp(12px, 1.8svh, 22px);
  opacity: 0;
  font-size: clamp(12px, 0.9vw, 16px);
}

.product-content h1 {
  margin: 0 0 clamp(30px, 5.2svh, 58px);
  font-family: var(--display);
  font-size: clamp(62px, 6.3vw, 136px);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.product-subtitle {
  font-family: var(--mono);
  font-size: clamp(14px, 1.25vw, 22px);
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

.product-copy {
  display: grid;
  gap: clamp(18px, 2.6svh, 32px);
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-line);
  text-align: justify;
  text-align-last: left;
}

.product-copy p {
  margin: 0;
}

.tag-page {
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: clamp(38px, 7svh, 86px);
  padding-right: var(--page-x);
}

.tag-heading {
  display: flex;
  gap: 18px;
  align-items: baseline;
  color: var(--link);
  font-size: clamp(14px, 1.15vw, 21px);
  line-height: 1;
}

.tag-heading h2 {
  margin: 0;
  font: inherit;
}

.tag-list {
  --tag-meta-slot: clamp(12px, 1vw, 18px);
  --tag-title-gap: clamp(12px, 1.2vw, 20px);
  --tag-card-height: clamp(150px, 14vw, 230px);
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 0;
  max-height: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: minmax(var(--tag-card-height), auto);
  gap: clamp(40px, 5vw, 74px) clamp(34px, 5vw, 86px);
  align-content: start;
  align-items: start;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: clamp(18px, 3svh, 44px);
  scrollbar-width: none;
}

.tag-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.tag-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: var(--tag-meta-slot) auto;
  grid-template-areas:
    ". meta"
    "number title";
  column-gap: 20px;
  row-gap: var(--tag-title-gap);
  align-items: start;
  align-self: start;
}

.tag-item.is-wide {
  grid-column: span 2;
}

.tag-number {
  grid-area: number;
  padding-top: 0.09em;
  font-size: clamp(12px, 1vw, 18px);
  line-height: 1;
}

.tag-meta {
  grid-area: meta;
  display: flex;
  align-items: flex-start;
  height: var(--tag-meta-slot);
  color: #9a9a9a;
  font-size: clamp(10px, 0.78vw, 14px);
  line-height: 1;
}

.tag-case-title {
  grid-area: title;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 154px);
  font-weight: 700;
  line-height: 0.76;
  overflow-wrap: normal;
  text-align: left;
  text-wrap: balance;
  text-transform: uppercase;
}

.tag-case-title.is-two-line {
  font-size: clamp(48px, 5.1vw, 96px);
  line-height: 0.88;
}

.tag-case-title.is-compact {
  font-size: clamp(38px, 4.85vw, 86px);
  line-height: 1.08;
}

.tag-case-title:hover,
.tag-case-title:focus-visible {
  color: var(--red);
  outline: none;
}

.tag-preview {
  position: fixed;
  z-index: 12;
  width: clamp(170px, 18vw, 300px);
  aspect-ratio: 1;
  border: 1px solid var(--text);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
  transform-origin: 0 50%;
  transition:
    opacity 90ms linear,
    transform 140ms var(--ease-snap);
}

.tag-preview.is-visible {
  opacity: 1;
  transform: scale(1);
}

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

.tag-inline-preview {
  display: none;
  grid-area: preview;
  width: min(190px, 48vw);
  aspect-ratio: 1;
  border: 1px solid var(--text);
  overflow: hidden;
}

.tag-inline-preview video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-page {
  align-content: stretch;
  justify-items: stretch;
  padding-top: calc(var(--nav-safe) + clamp(2px, 1.6svh, 24px));
  padding-bottom: calc(var(--footer-safe) - clamp(16px, 2.4svh, 30px));
}

.case-scroll {
  min-height: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

.case-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.case-label {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-bottom: clamp(12px, 2svh, 24px);
  padding-bottom: clamp(8px, 1.2svh, 14px);
  background: var(--bg);
  color: #e85a0d;
  font-size: clamp(13px, 1.05vw, 18px);
  line-height: 1;
}

.case-back-link {
  display: inline-flex;
  gap: 14px;
  align-items: baseline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--email-link);
  cursor: pointer;
  font: inherit;
  line-height: 1;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.26em;
}

.case-back-link:hover,
.case-back-link:focus-visible {
  color: var(--link);
  outline: none;
}

.case-back-link * {
  cursor: pointer;
}

.case-label-separator {
  color: #e85a0d;
}

.case-label h2 {
  margin: 0;
  font: inherit;
}

.case-content {
  --case-story-h: max(430px, calc(100svh - var(--nav-safe) - var(--footer-safe) - 14px));
  --case-media-max-h: calc(var(--case-story-h) - clamp(12px, 2svh, 28px));
  display: grid;
  gap: clamp(16px, 2.8svh, 42px);
  padding-bottom: clamp(8px, 1.5vw, 22px);
}

.case-detail-section {
  display: grid;
  min-height: var(--case-story-h);
  align-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  gap: clamp(12px, 1.6vw, 24px);
  opacity: 0;
  transform: translateY(34px) scaleY(0.97);
  animation: case-section-in 620ms var(--ease-snap) forwards;
  animation-delay: calc(var(--case-section-index, 0) * 70ms);
}

.case-detail-section:nth-child(1) {
  --case-section-index: 0;
}

.case-detail-section:nth-child(2) {
  --case-section-index: 1;
}

.case-detail-section:nth-child(3) {
  --case-section-index: 2;
}

.case-detail-section:nth-child(4) {
  --case-section-index: 3;
}

.case-detail-section:nth-child(5) {
  --case-section-index: 4;
}

.case-detail-section:nth-child(6) {
  --case-section-index: 5;
}

.case-detail-section:nth-child(7) {
  --case-section-index: 6;
}

.case-detail-section:nth-child(8) {
  --case-section-index: 7;
}

.case-detail-section > .case-detail-grid {
  height: auto;
  min-height: 0;
}

.case-detail-media {
  position: relative;
  min-height: 180px;
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
}

.case-detail-media.has-media {
  min-height: 0;
  background: transparent;
}

.case-detail-media:not(.has-media) {
  border: 1px solid var(--text);
  background: #d9d9d9;
  overflow: hidden;
}

.case-detail-media::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(0, 0, 0, 0.04) 50% 50.1%, transparent 50.2%),
    linear-gradient(0deg, transparent 0 49.9%, rgba(0, 0, 0, 0.04) 50% 50.1%, transparent 50.2%);
  opacity: 0.32;
  pointer-events: none;
  content: "";
}

.case-detail-media.has-media::before {
  display: none;
}

.case-detail-media img,
.case-detail-media video {
  position: static;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid var(--text);
  object-fit: contain;
}

.case-detail-media video {
  position: static;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.case-detail-media.is-square {
  aspect-ratio: 1;
}

.case-detail-media.is-logo-card {
  aspect-ratio: 0.78;
}

.case-detail-media.is-poster {
  aspect-ratio: 4 / 5;
}

.case-detail-media.is-poster-tile {
  aspect-ratio: 4 / 5;
}

.case-detail-media.is-billboard {
  aspect-ratio: 1.337 / 1;
}

.case-detail-media.is-story-side {
  align-self: stretch;
  min-height: 0;
}

.case-detail-media.is-wide-card {
  aspect-ratio: 16 / 9;
}

.case-detail-media.is-hero {
  min-height: clamp(260px, 45svh, 610px);
}

.case-detail-media.is-tall {
  min-height: clamp(330px, 58svh, 720px);
}

.case-detail-media.is-wide {
  min-height: clamp(170px, 24svh, 300px);
}

.case-detail-media.is-stacked {
  min-height: clamp(170px, 24svh, 300px);
}

.case-detail-copy {
  max-width: min(52ch, 48vw);
  margin: 0;
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-line);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.case-detail-copy.is-case-story-copy {
  display: grid;
  gap: clamp(8px, 1.05svh, 14px);
  max-width: min(58ch, 34vw);
  max-height: calc(var(--case-story-h) - clamp(8px, 2svh, 20px));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: clamp(4px, 0.5vw, 8px);
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-line);
  scrollbar-width: none;
  text-align: left;
}

.case-detail-copy.is-case-story-copy::-webkit-scrollbar {
  display: none;
}

.case-detail-copy.is-case-story-copy h3,
.case-detail-copy.is-case-story-copy p {
  margin: 0;
}

.case-detail-copy.is-case-story-copy h3 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 58px);
  line-height: 0.9;
  text-transform: uppercase;
}

.case-detail-subtitle {
  font-weight: 700;
}

.case-detail-section.is-logo-intro {
  align-content: center;
}

.case-detail-grid {
  display: grid;
  gap: clamp(12px, 1.2vw, 22px);
  min-height: 0;
}

.case-detail-grid.is-logo-triptych,
.case-detail-grid.is-three-up,
.case-detail-grid.is-four-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.case-detail-grid.is-four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-detail-grid.is-poster-wall {
  grid-template-columns: minmax(0, 1.72fr) minmax(190px, 0.58fr);
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
}

.case-detail-grid.is-poster-set {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  align-content: stretch;
}

.case-detail-grid.is-web-pair {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
}

.case-detail-section.is-web-row .case-detail-media:first-child {
  background: var(--red);
}

.case-detail-section.is-logo-intro .case-detail-media,
.case-detail-section.is-attribute-row .case-detail-media,
.case-detail-section.is-carrier-row .case-detail-media,
.case-detail-section.is-merch-row .case-detail-media,
.case-detail-section.is-wide-billboard .case-detail-media,
.case-detail-section.is-final-billboard .case-detail-media,
.case-detail-grid.is-poster-set .case-detail-media,
.case-detail-grid.is-web-pair .case-detail-media,
.case-detail-media.is-story-side {
  width: 100%;
  max-height: var(--case-media-max-h);
}

.case-detail-section.is-logo-intro .case-detail-media,
.case-detail-section.is-attribute-row .case-detail-media,
.case-detail-section.is-carrier-row .case-detail-media,
.case-detail-section.is-merch-row .case-detail-media,
.case-detail-grid.is-poster-set .case-detail-media,
.case-detail-media.is-story-side {
  max-height: min(var(--case-media-max-h), 58svh);
}

.case-detail-section.is-final-billboard .case-detail-media {
  aspect-ratio: 2.357 / 1;
}

.case-detail-grid.is-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-detail-grid.is-mosaic {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: auto auto;
}

.case-detail-grid.is-mosaic .is-tall {
  grid-column: 2;
  grid-row: 1 / span 2;
}

@keyframes case-section-in {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(34px) scaleY(0.97);
  }

  100% {
    opacity: 1;
    clip-path: inset(0);
    transform: translateY(0) scaleY(1);
  }
}

.case-page.has-case-gallery .case-content {
  --case-story-h: max(500px, calc(100svh - var(--nav-safe) - var(--footer-safe) - 8px));
  gap: clamp(10px, 1.2svh, 18px);
  overflow: hidden;
}

.case-detail-section.is-gallery-story {
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 0.7fr);
  align-items: center;
  align-content: center;
  gap: clamp(20px, 3.6vw, 62px);
  overflow: hidden;
}

.case-detail-section.is-gallery-story .case-detail-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  max-width: min(35ch, 26vw);
}

.case-detail-section.is-gallery-story .case-gallery {
  grid-column: 2;
  grid-row: 1;
  justify-self: stretch;
  width: 100%;
}

.case-page.has-tetris-gallery .case-detail-section.is-gallery-story {
  align-items: start;
  min-height: var(--case-story-h);
}

.case-page.has-tetris-gallery .case-detail-section.is-gallery-story .case-detail-copy {
  position: sticky;
  top: clamp(8px, 1.8svh, 20px);
  align-self: start;
  padding-top: clamp(4px, 1svh, 12px);
}

.case-gallery {
  --focus-h: min(62svh, calc(var(--case-story-h) - 78px));
  --focus-w: min(50vw, calc(var(--focus-h) * 1.55));
  position: relative;
  display: grid;
  place-items: center;
  height: var(--focus-h);
  min-height: 390px;
  overflow: hidden;
  isolation: isolate;
}

.case-gallery.is-tetris-gallery {
  --tetris-gap: 0px;
  display: block;
  position: relative;
  height: var(--case-story-h);
  min-height: 0;
  max-height: var(--case-story-h);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0;
  scrollbar-width: none;
}

.case-gallery.is-tetris-gallery::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.case-gallery.is-tetris-gallery::-webkit-scrollbar-track {
  background: transparent;
}

.case-gallery.is-tetris-gallery::-webkit-scrollbar-thumb {
  background: var(--text);
}

.case-focus-stage {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1400px;
}

.case-gallery-item {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--focus-w);
  height: var(--focus-h);
  min-height: 0;
  overflow: visible;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 460ms var(--ease-snap),
    filter 160ms ease,
    transform 460ms var(--ease-snap);
}

.case-gallery.is-tetris-gallery .case-gallery-item {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 0;
  display: block;
  overflow: hidden;
  opacity: 1;
  transform: none;
  animation: none;
}

.case-tetris-spacer {
  display: block;
  width: 100%;
  height: var(--tetris-content-h, 100%);
  pointer-events: none;
}

.case-gallery.is-tetris-gallery .case-gallery-item:nth-child(1) { --tetris-i: 1; }
.case-gallery.is-tetris-gallery .case-gallery-item:nth-child(2) { --tetris-i: 2; }
.case-gallery.is-tetris-gallery .case-gallery-item:nth-child(3) { --tetris-i: 3; }
.case-gallery.is-tetris-gallery .case-gallery-item:nth-child(4) { --tetris-i: 4; }
.case-gallery.is-tetris-gallery .case-gallery-item:nth-child(5) { --tetris-i: 5; }
.case-gallery.is-tetris-gallery .case-gallery-item:nth-child(6) { --tetris-i: 6; }
.case-gallery.is-tetris-gallery .case-gallery-item:nth-child(7) { --tetris-i: 7; }
.case-gallery.is-tetris-gallery .case-gallery-item:nth-child(8) { --tetris-i: 8; }
.case-gallery.is-tetris-gallery .case-gallery-item:nth-child(9) { --tetris-i: 9; }
.case-gallery.is-tetris-gallery .case-gallery-item:nth-child(10) { --tetris-i: 10; }

.case-gallery.is-tetris-gallery .is-gallery-wide {
  grid-column: auto;
}

.case-gallery.is-tetris-gallery .is-gallery-logo {
  grid-column: auto;
}

.case-gallery.is-tetris-gallery .is-gallery-poster {
  grid-column: auto;
}

.case-gallery.is-tetris-gallery .is-gallery-card {
  grid-column: auto;
}

.case-gallery.is-tetris-gallery .case-gallery-item:hover,
.case-gallery.is-tetris-gallery .case-gallery-item:focus-visible {
  z-index: 2;
  filter: brightness(0.94);
  transform: translateY(0);
}

@keyframes tetris-item-in {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.case-focus-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: calc(10 - max(var(--offset), calc(var(--offset) * -1)));
  width: var(--focus-w);
  height: var(--focus-h);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform:
    translate(-50%, -50%)
    translateX(calc(var(--offset) * min(34vw, 500px)))
    translateY(calc(var(--offset) * -8%))
    scale(0.74)
    rotateY(0deg);
  transform-origin: center;
  transition:
    opacity 560ms var(--ease-snap),
    transform 640ms var(--ease-snap),
    filter 420ms ease;
  will-change: transform, opacity;
}

.case-focus-slide.is-active {
  z-index: 20;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) translateX(0) scale(1) rotateY(0deg);
}

.case-focus-slide.is-near {
  opacity: 0.7;
  pointer-events: auto;
  filter: grayscale(0.05) saturate(0.95);
  transform:
    translate(-50%, -50%)
    translateX(calc(var(--offset) * min(35vw, 520px)))
    translateY(calc(var(--offset) * -10%))
    scale(0.78)
    rotateY(0deg);
}

.case-focus-slide.is-far {
  opacity: 0.16;
  filter: grayscale(0.28);
  transform:
    translate(-50%, -50%)
    translateX(calc(var(--offset) * min(52vw, 720px)))
    translateY(calc(var(--offset) * -14%))
    scale(0.56)
    rotateY(0deg);
}

.case-focus-slide.is-hidden {
  opacity: 0;
  transform:
    translate(-50%, -50%)
    translateX(calc(var(--offset) * 58vw))
    translateY(calc(var(--offset) * -14%))
    scale(0.5);
}

.case-focus-item {
  border: 0;
  background: transparent;
}

.case-focus-slide.is-active .case-focus-item {
  box-shadow: 0 0 0 1px transparent;
}

.case-gallery-item:hover,
.case-gallery-item:focus-visible {
  filter: saturate(1.15);
}

.case-gallery-item img,
.case-gallery-item video {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  border: 1px solid var(--text);
  object-fit: contain;
}

.case-gallery .case-detail-media img,
.case-gallery .case-detail-media video {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  box-sizing: border-box;
  border: 1px solid var(--text);
  object-fit: contain !important;
}

.case-gallery.is-tetris-gallery .case-gallery-item img,
.case-gallery.is-tetris-gallery .case-gallery-item video,
.case-gallery.is-tetris-gallery .case-detail-media img,
.case-gallery.is-tetris-gallery .case-detail-media video {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  box-sizing: border-box;
  border: 0 !important;
  object-fit: contain !important;
}

.case-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.91);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.case-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.case-lightbox-inner {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.case-lightbox-media {
  display: block;
  width: auto;
  height: auto;
  max-width: min(92vw, 1500px);
  max-height: min(84svh, 920px);
  box-sizing: border-box;
  border: 1px solid var(--text);
  object-fit: contain;
  pointer-events: none;
}

.case-lightbox-close {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .case-gallery-item {
    transition: none;
  }
}

/* Final about viewport guardrails. Keep long copy between the fixed header and footer. */
.about-copy {
  max-height: calc(100svh - var(--nav-safe) - var(--footer-safe)) !important;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.about-copy::-webkit-scrollbar {
  display: none;
}

@media (max-width: 680px) {
  .about-copy {
    max-height: calc(100svh - var(--nav-safe) - var(--footer-safe) - clamp(150px, 30svh, 240px)) !important;
  }
}

/* Final viewport guardrails. Keep these rules last so later breakpoints cannot
   make a fixed section wider than the viewport or place content under chrome. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.section-frame {
  box-sizing: border-box;
  left: 0 !important;
  right: 0 !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  padding: var(--nav-safe) var(--page-x) var(--footer-safe) !important;
}

.about,
.what-we-do {
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  padding: var(--nav-safe) var(--page-x) var(--footer-safe) !important;
}

.about::-webkit-scrollbar,
.what-we-do::-webkit-scrollbar {
  display: none;
}

.about {
  grid-template-columns: minmax(0, 36vw) minmax(0, 1fr) !important;
  gap: clamp(28px, 6vw, 112px);
  align-content: start;
}

.about-team,
.about-copy,
.about-logo-crop,
.about-logo,
.about-text {
  min-width: 0;
  max-width: 100%;
}

.about-copy {
  overflow: visible;
  max-height: none;
}

.about-logo-crop {
  width: min(100%, 560px);
  margin-inline-start: auto;
  margin-inline-end: 0;
}

.about-logo {
  display: block;
  width: min(100%, 540px);
  height: auto;
  margin-inline-start: auto;
  margin-inline-end: 0;
}

.about-text {
  width: 100%;
  max-width: 104ch;
  overflow: visible;
}

.about-text-block h2 {
  font-size: inherit !important;
  line-height: inherit !important;
}

.site-footer {
  box-sizing: border-box;
  max-width: 100vw;
  overflow: hidden;
}

.tag-case-title,
.tag-item .tag-case-title,
.tag-list .tag-case-title,
.case-services a,
.case-info a {
  text-decoration-line: underline !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

@media (max-width: 680px) {
  .about {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(16px, 3svh, 28px);
  }

  .about-team {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: clamp(8px, 2.5vw, 14px);
    overflow: visible;
  }

  .about-person {
    min-width: 0;
  }

  .about-copy {
    display: grid;
    width: 100%;
    max-width: none;
    justify-items: stretch;
  }

  .about-logo-crop {
    width: min(78vw, 360px);
    margin-inline-start: auto;
    margin-inline-end: 0;
  }

  .about-text {
    width: 100%;
    max-width: none;
    overflow: visible;
    font-size: var(--body-copy-size) !important;
    line-height: var(--body-copy-line) !important;
  }

  .about-text-block h2 {
    font-size: var(--body-copy-size) !important;
    line-height: var(--body-copy-line) !important;
  }

  .what-we-do {
    padding-top: var(--nav-safe) !important;
    padding-bottom: var(--footer-safe) !important;
  }

  .product-slides {
    min-width: 0;
    width: 100%;
  }

  .product-slide,
  .product-content,
  .product-copy {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .about-team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-logo-crop {
    width: min(76vw, 300px);
  }
}

/* Absolute final viewport guardrails. Keep these after every breakpoint. */
.about,
.what-we-do {
  padding: var(--nav-safe) var(--page-x) var(--footer-safe) !important;
}

.about {
  min-height: 0;
  align-content: start;
  overflow-y: auto;
  scrollbar-width: none;
}

.about::-webkit-scrollbar {
  display: none;
}

.about-copy,
.about-team {
  min-width: 0;
}

.about-copy {
  max-height: none;
  overflow: visible;
}

.about-logo-crop {
  display: flex;
  justify-content: flex-end;
  width: min(100%, 560px);
  max-width: 100%;
  margin-inline-start: auto;
}

.about-logo {
  display: block;
  width: min(100%, 540px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.about-text {
  width: min(100%, 104ch);
  max-width: 100%;
  max-height: none;
  overflow: visible;
}

.about-text-block h2 {
  font-size: inherit;
  line-height: inherit;
}

.case-tag,
.tag-list .tag-case-title,
.tag-item .tag-case-title {
  text-decoration-line: underline !important;
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

@media (max-width: 680px) {
  .about {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(16px, 3svh, 26px);
  }

  .about-team {
    display: flex;
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    gap: clamp(8px, 2.5vw, 14px);
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .about-team::-webkit-scrollbar {
    display: none;
  }

  .about-person {
    flex: 0 0 clamp(104px, 28vw, 132px);
    scroll-snap-align: start;
  }

  .about-person {
    min-width: 0;
  }

  .about-copy {
    width: 100%;
    max-width: none;
    justify-items: stretch;
  }

  .about-logo-crop {
    width: min(78vw, 360px);
    margin-inline-start: auto;
    margin-inline-end: 0;
  }

  .about-text {
    width: 100%;
    max-width: none;
  }
}

/* Final viewport guardrails: header and footer already reserve the section area. */
@media (max-height: 840px) and (min-width: 681px) {
  :root {
    --nav-safe: clamp(160px, 27svh, 190px);
    --footer-safe: clamp(96px, 17svh, 120px);
  }

  .about {
    grid-template-columns: minmax(0, 34vw) minmax(0, 1fr);
    gap: clamp(32px, 5.5vw, 72px);
    align-content: start;
    padding: 0;
    overflow-y: auto;
    scrollbar-width: none;
  }

  .about::-webkit-scrollbar {
    display: none;
  }

  .about-team {
    width: 100%;
  }

  .about-copy {
    max-height: none;
  }

  .about-logo-crop {
    width: min(100%, 420px);
    margin-bottom: clamp(18px, 3svh, 30px);
  }

  .about-text {
    max-height: none;
  }

  .product-slide {
    --product-frame-h: min(500px, calc(100svh - var(--nav-safe) - var(--footer-safe) - 18px));
  }
}

@media (max-width: 680px) {
  .about {
    min-height: 0;
    height: 100%;
    padding: 0;
    overflow-y: auto;
    align-content: start;
  }

  .about-team,
  .about-copy {
    position: relative;
    z-index: 1;
  }

  .about-logo-crop {
    margin-top: clamp(6px, 1svh, 12px);
  }

  .what-we-do {
    padding: 0;
  }

  .product-slide {
    min-height: 100%;
  }
}

.case-tag,
.tag-list .tag-case-title {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

/* Last-pass layout rules: these intentionally come after every breakpoint. */
.about {
  min-height: 0;
  align-content: start;
  overflow-y: auto;
  padding: var(--nav-safe) var(--page-x) var(--footer-safe);
  scrollbar-width: none;
}

.about::-webkit-scrollbar {
  display: none;
}

.about-team,
.about-copy {
  min-width: 0;
}

.about-copy {
  max-height: none;
  overflow: visible;
}

.about-logo-crop {
  display: flex;
  justify-content: flex-end;
  width: min(100%, 560px);
  max-width: 100%;
  margin-inline-start: auto;
}

.about-logo {
  display: block;
  width: min(100%, 540px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.about-text {
  width: min(100%, 104ch);
  max-width: 100%;
  max-height: none;
  overflow: visible;
}

.about-text-block h2 {
  font-size: inherit;
  line-height: inherit;
}

.what-we-do {
  padding: var(--nav-safe) var(--page-x) var(--footer-safe) !important;
}

@media (max-width: 680px) {
  .about {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(16px, 3svh, 26px);
    padding: var(--nav-safe) var(--page-x) var(--footer-safe);
  }

  .about-team {
    display: grid;
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(8px, 2.5vw, 14px);
    overflow: visible;
    padding: 0;
  }

  .about-person {
    min-width: 0;
  }

  .about-copy {
    width: 100%;
    max-width: none;
    justify-items: stretch;
  }

  .about-logo-crop {
    width: min(78vw, 360px);
    margin-inline-start: auto;
    margin-inline-end: 0;
  }

  .about-text {
    width: 100%;
    max-width: none;
  }

  .product-slide {
    min-height: 100%;
  }
}

@media (max-height: 840px) and (min-width: 681px) {
  .about {
    grid-template-columns: minmax(0, 36vw) minmax(0, 1fr);
    gap: clamp(32px, 5.5vw, 72px);
  }

  .about-team {
    width: 100%;
  }

  .about-logo-crop {
    width: min(100%, 420px);
  }
}

.site-footer {
  position: fixed;
  inset: auto 0 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: end;
  padding: 0 var(--page-x) var(--footer-bottom);
  pointer-events: none;
}

.brief-link,
.email-block {
  pointer-events: auto;
}

.brief-link,
.email-block {
  display: grid;
  grid-template-rows: 14px 32px;
  gap: 0;
  font-size: clamp(11px, 0.76vw, 15px);
  line-height: 1;
}

.brief-link {
  width: max-content;
  max-width: 100%;
  cursor: pointer;
  text-decoration: none;
}

.brief-link:hover span:last-child,
.brief-link:focus-visible span:last-child {
  color: var(--red);
  outline: none;
}

.brief-link:hover span:last-child .heart,
.brief-link:focus-visible span:last-child .heart {
  transform: scale(1.18) rotate(-8deg);
}

.brief-link > span,
.email-block > span,
.email-block > a {
  display: flex;
  min-height: 14px;
  align-items: center;
}

.brief-link > span:last-child,
.email-block > a {
  align-self: stretch;
  align-items: center;
}

.heart {
  display: inline-block;
  width: 54px;
  height: 54px;
  margin-inline: -19px;
  object-fit: contain;
  transition: transform 140ms var(--ease-snap);
}

.email-block {
  justify-items: end;
  text-align: right;
}

.email-block a {
  color: var(--email-link);
}

@keyframes media-kick {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-16vw) scaleX(0.48);
  }

  100% {
    opacity: 1;
    clip-path: inset(0);
    transform: translateX(0) scaleX(1);
  }
}

@keyframes info-kick {
  0% {
    opacity: 0;
    transform: translateX(14vw) scaleX(0.82);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }
}

@keyframes brand-color-cycle {
  0%,
  100% {
    color: #050505;
  }

  20% {
    color: #036933;
  }

  40% {
    color: #1a59b7;
  }

  60% {
    color: #d5102c;
  }

  80% {
    color: #e85a0d;
  }
}

@keyframes reel-current {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 1;
    transform: translateX(-104%);
  }
}

@keyframes reel-next {
  from {
    opacity: 1;
    transform: translateX(104%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes reel-arrow {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(1.4rem);
  }
}

@media (min-width: 1500px) {
  :root {
    --tagline-open-y: clamp(14px, 1.2vw, 26px);
  }
}

@media (max-width: 980px) {
  :root {
    --page-top: clamp(12px, 2.8vw, 22px);
    --footer-bottom: clamp(12px, 2.8vw, 24px);
    --nav-safe: clamp(112px, 15svh, 162px);
    --footer-safe: clamp(104px, 14svh, 150px);
  }

  .site-header {
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(14px, 3vw, 32px);
  }

  .main-nav {
    justify-self: center;
    justify-items: center;
  }

  .header-actions {
    justify-self: end;
    grid-template-rows: repeat(3, 1em);
    gap: 8px;
    font-size: clamp(9px, 1.75vw, 12px);
  }

  .main-nav {
    gap: 8px;
    font-size: clamp(9px, 1.75vw, 12px);
  }

  .hero-logo {
    width: min(86vw, 720px);
  }

  .about {
    grid-template-columns: minmax(280px, 38vw) minmax(0, 1fr);
    gap: clamp(48px, 7vw, 112px);
  }

  .about-logo-crop {
    width: min(100%, 430px);
    margin-bottom: clamp(32px, 4.8vw, 72px);
  }

  .about-text {
    width: min(100%, 100ch);
    max-height: min(44svh, 440px);
  }

  .work {
    --case-size: min(48vw, calc(100svh - var(--nav-safe) - var(--footer-safe)), 460px);
    grid-template-columns: var(--case-size) minmax(0, 1fr);
    gap: clamp(22px, 5vw, 58px);
  }

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

  .product-slide {
    --product-frame-h: min(560px, calc(100svh - var(--nav-safe) - var(--footer-safe) - clamp(28px, 5svh, 58px)));
    grid-template-columns: minmax(0, calc(var(--product-frame-h) * 0.748)) minmax(320px, 1fr);
    gap: clamp(30px, 6vw, 82px);
  }

  .product-mascot {
    width: clamp(620px, 72vw, 940px);
  }

  .product-content {
    max-width: min(500px, 45vw);
  }

  .product-content h1 {
    font-size: clamp(46px, 6.5vw, 78px);
  }

  .case-detail-copy {
    max-width: min(52ch, 72vw);
  }

  .case-detail-section {
    min-height: var(--case-story-h);
  }

  .case-detail-grid.is-web-pair {
    grid-template-columns: 1fr;
  }

  .case-detail-grid.is-four-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-height: 840px) and (min-width: 681px) {
  :root {
    --nav-safe: clamp(112px, 22svh, 150px);
    --footer-safe: clamp(70px, 13svh, 92px);
  }

  .hero-logo {
    --hero-open-y: clamp(36px, 7svh, 64px);
    --hero-credit-open-y: calc(var(--hero-open-y) + clamp(8px, 1.6svh, 14px));
    width: min(58vw, calc((100svh - var(--nav-safe) - var(--footer-safe) - 64px) * 6.123));
    transform: translateY(calc(-1 * clamp(18px, 4svh, 28px)));
  }

  .hero-logo.is-hovered .logo-top {
    transform: translateY(calc(-1 * var(--hero-open-y)));
  }

  .hero-logo.is-hovered .logo-bottom {
    transform: translateY(var(--hero-open-y));
  }

  .hero-logo.is-hovered .hero-credit {
    transform: translateY(var(--hero-credit-open-y));
  }

  .hero-credit {
    margin-top: clamp(7px, 1.6svh, 12px);
  }

  .hero-credit-by {
    font-size: clamp(15px, 1.6vw, 28px);
  }

  .hero-idea {
    width: clamp(92px, 10vw, 164px);
  }

  .about-copy {
    max-height: calc(100svh - var(--nav-safe) - var(--footer-safe));
  }

  .about {
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
    gap: clamp(42px, 7vw, 96px);
    align-content: start;
    padding-top: clamp(14px, 3svh, 26px);
    padding-bottom: clamp(10px, 2svh, 20px);
  }

  .about-team {
    width: min(100%, 340px);
    gap: clamp(7px, 1.05vw, 12px);
  }

  .about-logo-crop {
    width: min(100%, 360px);
    margin-bottom: clamp(22px, 4.6svh, 42px);
  }

  .about-text {
    width: min(100%, 96ch);
    max-height: min(40svh, 270px);
  }

  .product-slide {
    --product-frame-h: min(500px, calc(100svh - var(--nav-safe) - var(--footer-safe) - 36px));
    align-content: center;
  }

  .about-text-block {
    gap: 5px;
    margin-top: 8px;
  }

  .about-text,
  .product-copy,
  .case-detail-copy,
  .case-detail-copy.is-case-story-copy {
    font-size: clamp(10px, 0.82vw, 12.5px);
    line-height: 1.22;
  }

  .about-text p,
  .product-copy,
  .case-detail-copy,
  .case-detail-copy.is-case-story-copy {
    text-align: left;
    text-align-last: left;
    word-spacing: normal;
  }

  .tag-page {
    gap: clamp(24px, 4svh, 46px);
  }

  .tag-list {
    --tag-card-height: clamp(126px, 12vw, 190px);
    gap: clamp(26px, 4vw, 52px) clamp(38px, 6vw, 94px);
  }

  .tag-case-title {
    font-size: clamp(48px, 6.7vw, 118px);
  }

  .tag-case-title.is-two-line {
    font-size: clamp(42px, 4.8vw, 82px);
  }

  .tag-case-title.is-compact {
    font-size: clamp(36px, 4.6vw, 76px);
  }
}

@media (max-width: 680px) {
  :root {
    --page-x: clamp(14px, 4.4vw, 24px);
    --page-top: 12px;
    --footer-bottom: 12px;
    --nav-safe: 104px;
    --footer-safe: 100px;
  }

  body::before {
    border-width: 1px;
  }

  .brand-mark {
    width: 22px;
  }

  .site-header {
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(8px, 2.8vw, 14px);
  }

  .header-actions {
    gap: 7px;
    align-self: start;
    justify-self: end;
    justify-items: end;
    grid-template-rows: repeat(3, 1em);
    font-size: clamp(7px, 2.05vw, 10px);
    line-height: 1;
  }

  .main-nav {
    gap: 7px;
    justify-self: center;
    justify-items: center;
    font-size: clamp(8px, 2.25vw, 10px);
  }

  .hero-logo {
    --hero-open-y: clamp(54px, 15vw, 82px);
    --hero-credit-open-y: var(--hero-open-y);
    width: min(90vw, 360px);
  }

  .hero-logo.is-hovered .logo-top {
    transform: translateY(calc(-1 * var(--hero-open-y)));
  }

  .hero-logo.is-hovered .logo-bottom {
    transform: translateY(var(--hero-open-y));
  }

  .hero-credit {
    right: 0;
    gap: 6px;
    margin-top: clamp(7px, 2vw, 10px);
  }

  .hero-credit-by {
    font-size: clamp(14px, 4vw, 18px);
  }

  .hero-idea {
    width: clamp(78px, 28vw, 116px);
  }

  .hero-logo.is-hovered .hero-credit {
    transform: translateY(var(--hero-credit-open-y));
  }

  .hero-tagline-text {
    font-size: clamp(14px, 4vw, 18px);
  }

  .about {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: clamp(12px, 2svh, 18px);
    align-items: stretch;
    overflow-y: auto;
    scrollbar-width: none;
    padding-top: calc(var(--nav-safe) - 22px);
    padding-bottom: var(--footer-safe);
  }

  .about::-webkit-scrollbar {
    display: none;
  }

  .about-team {
    display: flex;
    flex: 0 0 auto;
    width: min(100%, calc(100vw - (2 * var(--page-x))));
    max-width: none;
    gap: clamp(7px, 2vw, 10px);
    justify-self: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .about-team::-webkit-scrollbar {
    display: none;
  }

  .about-person {
    flex: 0 0 clamp(104px, 32vw, 132px);
    scroll-snap-align: start;
  }

  .about-person img {
    aspect-ratio: 3 / 4;
  }

  .about-card {
    inset: 0;
    min-height: 100%;
    max-height: 100%;
    gap: clamp(4px, 1vw, 6px);
    padding: clamp(6px, 1.6vw, 8px);
    scrollbar-width: none;
  }

  .about-card strong {
    font-size: clamp(7px, 1.9vw, 8.6px);
    line-height: 1;
  }

  .about-card span {
    font-size: clamp(5px, 1.36vw, 6.4px);
    line-height: 1.06;
  }

  .about-cue {
    display: grid;
    place-items: center;
    font-size: 8px;
    width: 16px;
    height: 16px;
  }

  .about-copy {
    flex: 0 0 auto;
    justify-self: stretch;
    justify-items: end;
    width: min(100%, calc(100vw - (2 * var(--page-x))));
    max-width: min(100%, calc(100vw - (2 * var(--page-x))));
    max-height: none;
    text-align: left;
  }

  .about-logo-crop {
    justify-self: end;
    width: min(54vw, 198px);
    margin-bottom: clamp(12px, 2svh, 18px);
  }

  .about-logo {
    width: 100%;
  }

  .about-text {
    width: 100%;
    max-width: 100%;
    max-height: none;
    overflow: visible;
    font-size: clamp(10px, 2.62vw, 11.6px);
    line-height: 1.22;
  }

  .about-text p {
    text-align: left;
    text-align-last: left;
    word-spacing: normal;
  }

  .about-text-block {
    gap: 5px;
    margin-top: 9px;
  }

  .product-copy,
  .case-detail-copy,
  .case-detail-copy.is-case-story-copy {
    font-size: clamp(10px, 2.62vw, 11.6px);
    line-height: 1.22;
  }

  .work {
    --case-size: min(70vw, 300px, calc(100svh - var(--nav-safe) - var(--footer-safe) - 118px));
    grid-template-columns: 1fr auto;
    grid-template-rows: var(--case-size) auto;
    grid-template-areas:
      "media media"
      "info info";
    gap: clamp(14px, 3.8svh, 24px);
    align-content: center;
    justify-items: stretch;
  }

  .case-media {
    width: var(--case-size);
    justify-self: center;
  }

  .case-info {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) minmax(48px, auto);
    grid-template-rows: auto;
    align-items: end;
    height: auto;
    text-align: left;
    overflow: hidden;
  }

  .case-text {
    justify-self: start;
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .case-info h1 {
    max-width: 100%;
    margin: -0.1em 0 10px;
    font-size: clamp(32px, 10.5vw, 52px);
    overflow-wrap: anywhere;
  }

  .case-info h1.is-two-line {
    font-size: clamp(30px, 9.6vw, 48px);
    line-height: 0.9;
  }

  .case-info h1.is-compact {
    font-size: clamp(22px, 7.4vw, 34px);
    line-height: 1.14;
  }

  .case-info p,
  .case-services {
    justify-items: start;
    gap: 0.45em;
    font-size: clamp(9px, 2.65vw, 11px);
    line-height: 1.35;
  }

  .pixel-arrow {
    --unit: clamp(4px, 1.45vw, 7px);
    transform: none;
  }

  .pixel-arrow:hover,
  .pixel-arrow:focus-visible {
    transform: translateX(8px) skewX(-4deg);
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .brief-link,
  .email-block {
    grid-template-rows: 12px 24px;
    font-size: clamp(7px, 2.15vw, 9px);
  }

  .heart {
    width: 30px;
    height: 30px;
    margin-inline: -10px;
  }

  .tag-page {
    gap: 28px;
    padding-right: var(--page-x);
  }

  .tag-list {
    --tag-meta-slot: 12px;
    --tag-title-gap: 8px;
    --tag-card-height: 82px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tag-item {
    grid-template-columns: 34px 1fr;
    column-gap: 14px;
  }

  .tag-item.is-wide {
    grid-column: auto;
  }

  .tag-number {
    padding-top: 0.1em;
  }

  .tag-case-title {
    font-size: clamp(32px, 10.5vw, 52px);
    overflow-wrap: break-word;
  }

  .tag-case-title.is-two-line {
    font-size: clamp(26px, 8.4vw, 40px);
    line-height: 0.92;
  }

  .tag-case-title.is-compact {
    font-size: clamp(22px, 7.4vw, 34px);
    line-height: 1.14;
  }

  .tag-preview {
    display: none;
    width: clamp(120px, 42vw, 180px);
  }

  .tag-item {
    grid-template-rows: var(--tag-meta-slot) auto auto;
    grid-template-areas:
      ". meta"
      "number title"
      ". preview";
  }

  .tag-inline-preview {
    display: block;
    width: min(188px, 58vw);
    margin-top: clamp(10px, 1.5svh, 16px);
  }

  .what-we-do {
    padding-top: calc(var(--nav-safe) + 4px);
    padding-bottom: calc(var(--footer-safe) - 8px);
  }

  .product-slide {
    --product-frame-h: clamp(176px, 34svh, 240px);
    min-height: calc(100svh - var(--nav-safe) - var(--footer-safe));
    grid-template-columns: minmax(104px, calc(var(--product-frame-h) * 0.748)) minmax(0, 1fr);
    grid-template-rows: var(--product-frame-h) auto;
    grid-template-areas:
      "media product-title"
      "copy copy";
    gap: clamp(12px, 2.6svh, 20px) clamp(14px, 4vw, 22px);
    align-content: start;
    align-items: start;
    padding-top: clamp(10px, 2svh, 16px);
  }

  .product-media {
    grid-area: media;
    width: calc(var(--product-frame-h) * 0.748);
    height: var(--product-frame-h);
    justify-self: start;
  }

  .product-mascot {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: clamp(560px, 168vw, 820px);
    transform: translate(-50%, -50%);
  }

  .product-content {
    display: contents;
    max-width: 100%;
  }

  .product-counter {
    display: none;
  }

  .product-content h1 {
    grid-area: product-title;
    margin: 0;
    max-width: 100%;
    font-size: clamp(24px, 7.8vw, 34px);
    line-height: 0.92;
    overflow-wrap: anywhere;
    text-align: left;
  }

  .product-subtitle {
    font-size: clamp(8px, 2.5vw, 11px);
  }

  .product-copy {
    grid-area: copy;
    gap: clamp(8px, 1.5svh, 11px);
    font-size: clamp(10px, 2.62vw, 11.6px);
    line-height: 1.22;
    text-align: left;
    text-align-last: left;
    word-spacing: normal;
  }

  .case-page {
    padding-top: calc(var(--nav-safe) + 10px);
    padding-bottom: calc(var(--footer-safe) - 18px);
  }

  .case-label {
    margin-bottom: 18px;
    font-size: clamp(11px, 3vw, 13px);
  }

  .case-content {
    --case-story-h: auto;
    gap: clamp(14px, 4svh, 28px);
  }

  .case-detail-section {
    height: auto;
    min-height: auto;
    gap: 12px;
    scroll-snap-align: none;
  }

  .case-detail-section > .case-detail-grid {
    height: auto;
  }

  .case-detail-grid.is-logo-triptych,
  .case-detail-grid.is-three-up,
  .case-detail-grid.is-web-pair {
    grid-template-columns: 1fr;
  }

  .case-detail-grid.is-four-up,
  .case-detail-grid.is-poster-set {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-detail-grid.is-poster-wall {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .case-detail-section.is-logo-intro .case-detail-media,
  .case-detail-section.is-attribute-row .case-detail-media,
  .case-detail-section.is-carrier-row .case-detail-media,
  .case-detail-section.is-merch-row .case-detail-media,
  .case-detail-section.is-wide-billboard .case-detail-media,
  .case-detail-section.is-final-billboard .case-detail-media,
  .case-detail-grid.is-poster-set .case-detail-media,
  .case-detail-grid.is-web-pair .case-detail-media,
  .case-detail-media.is-story-side {
    height: auto;
  }

  .case-detail-section.is-logo-intro .case-detail-media,
  .case-detail-section.is-attribute-row .case-detail-media,
  .case-detail-section.is-carrier-row .case-detail-media,
  .case-detail-section.is-merch-row .case-detail-media,
  .case-detail-media.is-story-side {
    aspect-ratio: 1;
  }

  .case-detail-media.is-hero,
  .case-detail-media.is-tall {
    min-height: clamp(210px, 35svh, 320px);
  }

  .case-detail-media.is-wide,
  .case-detail-media.is-stacked {
    min-height: clamp(130px, 24svh, 210px);
  }

  .case-detail-media.is-billboard,
  .case-detail-media.is-wide-card {
    aspect-ratio: 16 / 9;
  }

  .case-detail-media.is-poster {
    aspect-ratio: 4 / 5;
  }

  .case-detail-copy {
    max-width: 100%;
    font-size: clamp(10px, 2.62vw, 11.6px);
    line-height: 1.22;
    text-align: left;
    text-align-last: left;
    word-spacing: normal;
  }

  .case-detail-grid.is-two,
  .case-detail-grid.is-mosaic {
    grid-template-columns: 1fr;
  }

  .case-detail-grid.is-mosaic .is-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .case-page.has-case-gallery .case-content {
    --case-story-h: auto;
    overflow: visible;
  }

  .case-detail-section.is-gallery-story {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: clamp(12px, 2.2svh, 18px);
    overflow: hidden;
  }

  .case-detail-section.is-gallery-story .case-detail-copy,
  .case-detail-section.is-gallery-story .case-gallery {
    grid-column: 1;
    grid-row: auto;
  }

  .case-page.has-tetris-gallery .case-detail-section.is-gallery-story {
    min-height: auto;
    align-items: stretch;
  }

  .case-page.has-tetris-gallery .case-detail-section.is-gallery-story .case-detail-copy {
    position: static;
    padding-top: 0;
  }

  .case-gallery {
    --focus-h: clamp(330px, 52svh, 470px);
    --focus-w: min(84vw, calc(var(--focus-h) * 1.05));
    height: var(--focus-h);
    min-height: var(--focus-h);
    margin-right: 0;
    margin-left: 0;
  }

  .case-gallery.is-tetris-gallery {
    --tetris-gap: 0px;
    height: clamp(410px, 58svh, 560px);
    min-height: 0;
    max-height: clamp(410px, 58svh, 560px);
  }

  .case-focus-slide.is-near {
    transform:
      translate(-50%, -50%)
      translateX(calc(var(--offset) * 76vw))
      translateY(calc(var(--offset) * -8%))
      scale(0.74)
      rotateY(0deg);
  }

  .case-focus-slide.is-far {
    transform:
      translate(-50%, -50%)
      translateX(calc(var(--offset) * 88vw))
      translateY(calc(var(--offset) * -12%))
      scale(0.56)
      rotateY(0deg);
  }

  .case-page.has-case-gallery .case-detail-copy {
    max-width: 100%;
  }

  .case-detail-copy.is-case-story-copy {
    max-width: 100%;
    max-height: none;
    overflow: visible;
    padding-right: 0;
    gap: 7px;
    font-size: clamp(10px, 2.62vw, 11.6px);
    line-height: 1.22;
  }

  .case-detail-copy.is-case-story-copy h3 {
    font-size: clamp(28px, 10vw, 46px);
  }

  .case-lightbox {
    padding: 14px;
  }

  .case-lightbox-media {
    max-width: 94vw;
    max-height: 78svh;
  }
}

@media (hover: none) and (max-width: 680px) {
  .hero-logo,
  .hero-logo * {
    cursor: pointer;
  }

  .tag-preview {
    display: none;
  }

  .tag-item {
    grid-template-rows: var(--tag-meta-slot) auto auto;
    grid-template-areas:
      ". meta"
      "number title"
      ". preview";
  }

  .tag-inline-preview {
    display: block;
    margin-top: clamp(10px, 1.5svh, 16px);
  }

  .tag-case-title {
    -webkit-touch-callout: none;
  }
}

@media (max-width: 680px) {
  .tag-list {
    --tag-card-height: auto;
    gap: clamp(20px, 4svh, 32px);
  }

  .tag-inline-preview {
    width: min(188px, 58vw);
  }
}

@media (max-width: 380px), (max-width: 680px) and (max-height: 680px) {
  :root {
    --nav-safe: 110px;
    --footer-safe: 120px;
  }

  .hero-logo {
    --hero-open-y: clamp(42px, 11vw, 62px);
    --hero-credit-open-y: var(--hero-open-y);
    width: min(78vw, 300px);
  }

  .hero-logo.is-hovered .logo-top {
    transform: translateY(calc(-1 * var(--hero-open-y)));
  }

  .hero-logo.is-hovered .logo-bottom,
  .hero-logo.is-hovered .hero-credit {
    transform: translateY(var(--hero-open-y));
  }

  .work {
    --case-size: min(64vw, 216px, calc(100svh - var(--nav-safe) - var(--footer-safe) - 110px));
    gap: 12px;
  }

  .case-info h1 {
    font-size: clamp(28px, 10vw, 42px);
  }

  .pixel-arrow {
    --unit: 5px;
  }

  .site-footer {
    padding-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

/* Final responsive contract. This block intentionally stays last. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.section-frame {
  box-sizing: border-box;
  inset: 0 !important;
  width: auto !important;
  min-width: 0;
  max-width: none !important;
  padding: var(--nav-safe) var(--page-x) var(--footer-safe) !important;
}

.about,
.what-we-do {
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

.about::-webkit-scrollbar,
.what-we-do::-webkit-scrollbar,
.about-copy::-webkit-scrollbar {
  display: none;
}

.about {
  grid-template-columns: minmax(0, 36vw) minmax(0, 1fr) !important;
  align-content: start !important;
  align-items: start;
  gap: clamp(28px, 6vw, 112px);
}

.about-team,
.about-copy,
.about-logo-crop,
.about-logo,
.about-text,
.about-text-block,
.about-text-block p {
  min-width: 0;
  max-width: 100%;
}

.about-team {
  align-self: start;
}

.about-copy {
  align-self: start;
  justify-self: stretch;
  width: 100%;
  max-height: calc(100svh - var(--nav-safe) - var(--footer-safe)) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  overscroll-behavior: contain;
}

.about-logo-crop {
  width: min(100%, 560px);
  margin-inline-start: auto;
  margin-inline-end: 0;
  margin-bottom: clamp(24px, 4vw, 64px);
  overflow: visible;
}

.about-logo {
  display: block;
  width: min(100%, 540px);
  height: auto;
  margin-inline-start: auto;
  margin-inline-end: 0;
  object-fit: contain;
}

.about-text {
  width: 100%;
  max-width: 104ch;
  margin-inline-start: auto;
  margin-inline-end: 0;
  overflow: visible;
  font-size: var(--body-copy-size) !important;
  line-height: var(--body-copy-line) !important;
}

.about-text-block h2 {
  font-size: var(--body-copy-size) !important;
  line-height: var(--body-copy-line) !important;
}

.case-services a,
.case-tag,
.tag-case-title,
.tag-item .tag-case-title,
.tag-list .tag-case-title {
  text-decoration-line: underline !important;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

.site-footer {
  box-sizing: border-box;
  max-width: 100vw;
  overflow: hidden;
}

@media (max-width: 680px) {
  .about,
  .what-we-do {
    padding-top: var(--nav-safe) !important;
    padding-bottom: var(--footer-safe) !important;
  }

  .about {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(16px, 3svh, 26px);
  }

  .about-team {
    display: grid;
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(8px, 2.5vw, 14px);
    overflow: visible;
  }

  .about-copy {
    width: 100%;
    max-width: none;
    max-height: calc(100svh - var(--nav-safe) - var(--footer-safe) - clamp(150px, 30svh, 240px)) !important;
    overflow-y: auto !important;
  }

  .about-logo-crop {
    width: min(78vw, 360px);
    margin-inline-start: auto;
    margin-inline-end: 0;
    margin-bottom: clamp(16px, 3svh, 24px);
  }

  .about-text {
    width: 100%;
    max-width: none;
  }

  .about-text-block h2 {
    font-size: var(--body-copy-size) !important;
    line-height: var(--body-copy-line) !important;
  }
}

/* Keep the team strip compact on phones so the fixed footer always has room. */
@media (max-width: 680px) {
  .about-team {
    display: flex !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: none !important;
    gap: clamp(8px, 2.5vw, 14px) !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 2px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .about-team::-webkit-scrollbar {
    display: none;
  }

  .about-person {
    flex: 0 0 clamp(104px, 28vw, 132px) !important;
    width: auto !important;
    scroll-snap-align: start;
  }
}

/* Keep product slides separated and contained inside the safe page width. */
.product-slides {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-right: clamp(8px, 1.2vw, 24px);
}

.product-slide {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, calc(var(--product-frame-h) * 0.748)) minmax(0, 1fr);
}

.product-slide + .product-slide {
  margin-top: clamp(20px, 3svh, 48px);
}

.product-content,
.product-copy {
  min-width: 0;
  max-width: 100%;
}

.work,
.tag-page,
.case-page {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.case-info,
.case-text,
.case-services {
  min-width: 0;
  max-width: 100%;
}

/* Keep each product as a complete viewport-sized slide so the next one stays below the fold. */
.product-slide {
  min-height: 100%;
  align-content: center;
}

/* The role line in a team card stays anchored under the person's name. */
.about-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.about-card span {
  margin-top: auto;
}

/* Tags remain underlined; case names remain clean. */
.tag-case-title,
.tag-item .tag-case-title,
.tag-list .tag-case-title {
  text-decoration: none !important;
}

/* Long single-word case names always stay inside their tag card. */
.tag-case-title[data-case-slug="german"] {
  max-width: 100%;
  font-size: clamp(44px, 5vw, 96px);
  line-height: .82;
  letter-spacing: -.02em;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .tag-case-title[data-case-slug="german"] {
    font-size: clamp(30px, 10vw, 48px);
    line-height: .88;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* Team cards tease their color from below, then unfold on a real hover or tap. */
.about-person {
  overflow: hidden;
}

@keyframes about-card-peek {
  0%, 100% {
    transform: translateY(calc(100% - var(--about-peek))) scaleY(0.98);
  }
  50% {
    transform: translateY(calc(100% - var(--about-peek) - 4px)) scaleY(0.98);
  }
}

.about-card {
  --about-peek: clamp(12px, 1.8vw, 24px);
  opacity: 1;
  pointer-events: none;
  transform: translateY(calc(100% - var(--about-peek))) scaleY(0.98);
  animation: about-card-peek 2.8s var(--ease-snap) infinite;
}

.about-card strong,
.about-card span {
  opacity: 0;
  transition: opacity 120ms linear;
}

@media (hover: hover) and (pointer: fine) {
  .about-person:hover .about-card,
  .about-person:focus-visible .about-card,
  .about-person.is-open .about-card {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scaleY(1);
    animation: none;
  }

  .about-person:hover .about-card strong,
  .about-person:hover .about-card span,
  .about-person:focus-visible .about-card strong,
  .about-person:focus-visible .about-card span,
  .about-person.is-open .about-card strong,
  .about-person.is-open .about-card span {
    opacity: 1;
  }
}

@media (hover: none), (pointer: coarse) {
  .about-cue {
    display: none !important;
  }

  /* Some touch browsers keep :hover after a tap; keep that state as a peek. */
  .about-person:hover .about-card {
    opacity: 1;
    pointer-events: none;
    transform: translateY(calc(100% - var(--about-peek))) scaleY(0.98);
    animation: about-card-peek 2.8s var(--ease-snap) infinite;
  }

  .about-person:hover .about-card strong,
  .about-person:hover .about-card span {
    opacity: 0;
  }

  .about-person:focus-visible .about-card,
  .about-person.is-open .about-card {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scaleY(1);
    animation: none;
  }

  .about-person:focus-visible .about-card strong,
  .about-person:focus-visible .about-card span,
  .about-person.is-open .about-card strong,
  .about-person.is-open .about-card span {
    opacity: 1;
  }

  .about-card {
    --about-peek: clamp(10px, 2.6vw, 18px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-card {
    animation: none;
  }
}

/* 2026-07 responsive and performance pass */
.pixel-arrow {
  max-width: min(52vw, 100%);
  margin-right: 0;
  transform-origin: right center;
}

.pixel-arrow:hover,
.pixel-arrow:focus-visible {
  transform: translateX(-8px) skewX(-4deg);
}

.case-tag,
.case-services .case-tag,
.case-info .case-tag,
.tag-heading h2 {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  text-decoration: none !important;
  line-height: 1.12;
}

/* A case has one scroll surface: copy and imagery travel together. */
.case-scroll {
  overscroll-behavior-y: contain;
  scroll-snap-type: none;
}

.case-page.has-case-gallery .case-content {
  overflow: visible;
}

.case-detail-section,
.case-page.has-tetris-gallery .case-detail-section.is-gallery-story {
  min-height: auto;
  scroll-snap-align: none;
  overflow: visible;
}

.case-page.has-tetris-gallery .case-detail-section.is-gallery-story {
  align-items: start;
}

.case-detail-copy.is-case-story-copy {
  max-height: none;
  overflow: visible;
  overscroll-behavior: auto;
}

.case-gallery.is-tetris-gallery {
  height: var(--tetris-content-h, var(--case-story-h));
  min-height: var(--case-story-h);
  max-height: none;
  overflow: visible;
  overscroll-behavior: auto;
}

.team-scroll-hint {
  display: none;
}

/* About becomes a playful editorial composition instead of two rigid columns. */
.about {
  grid-template-columns: minmax(420px, 47vw) minmax(0, 1fr) !important;
  gap: clamp(38px, 5vw, 96px);
  align-items: start;
  overflow-y: auto !important;
}

.about-team {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 22px);
}

.about-person {
  width: 100%;
  transform: translateZ(0);
}

.about-person:nth-child(2),
.about-person:nth-child(4) {
  transform: translateY(clamp(24px, 3.2vw, 58px));
}

.about-person:nth-child(5) {
  grid-column: 1 / -1;
  width: calc(50% - clamp(6px, .6vw, 11px));
  justify-self: center;
  margin-top: clamp(22px, 3vw, 52px);
}

.about-person img {
  aspect-ratio: 4 / 5;
}

.about-card {
  min-height: 46%;
  max-height: 100%;
  overflow: hidden;
  padding: clamp(14px, 1.35vw, 22px);
  gap: clamp(10px, 1vw, 16px);
}

.about-card strong {
  font-size: clamp(11px, .92vw, 17px);
  line-height: 1.08;
}

.about-card span {
  font-size: clamp(9px, .7vw, 13px);
  line-height: 1.18;
}

.about-copy {
  max-height: none !important;
  overflow: visible !important;
}

.about-logo-crop {
  width: min(100%, 620px);
  margin-bottom: clamp(28px, 4vw, 72px);
  transform: rotate(-2deg);
  transform-origin: right center;
}

.about-text {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 18px);
  overflow: visible;
}

.about-intro {
  grid-column: 1 / -1;
  margin: 0 0 clamp(8px, 1vw, 16px) !important;
  padding: clamp(16px, 1.7vw, 28px);
  border: 1px solid var(--text);
  font-size: clamp(14px, 1.1vw, 21px) !important;
  line-height: 1.18 !important;
  text-align: left !important;
}

.about-text-block {
  align-content: start;
  min-height: clamp(150px, 13vw, 230px);
  margin: 0;
  padding: clamp(14px, 1.4vw, 22px);
  border: 1px solid var(--text);
  background: #fff;
}

.about-text-block:nth-of-type(2) {
  background: var(--red);
}

.about-text-block:nth-of-type(3) {
  background: var(--link);
}

.about-text-block:nth-of-type(4) {
  background: var(--orange);
}

.about-text-block:nth-of-type(5) {
  background: var(--email-link);
}

.about-text-block:nth-of-type(2),
.about-text-block:nth-of-type(3),
.about-text-block:nth-of-type(4),
.about-text-block:nth-of-type(5),
.about-text-block:nth-of-type(2) h2,
.about-text-block:nth-of-type(3) h2,
.about-text-block:nth-of-type(4) h2,
.about-text-block:nth-of-type(5) h2,
.about-text-block:nth-of-type(2) h2::before,
.about-text-block:nth-of-type(3) h2::before,
.about-text-block:nth-of-type(4) h2::before,
.about-text-block:nth-of-type(5) h2::before {
  color: #fff;
}

.about-text-block h2 {
  margin-bottom: auto;
}

.about-text-block p {
  margin-top: clamp(12px, 2vw, 34px);
  text-align: left;
}

.about-links {
  grid-column: 1 / -1;
  margin-top: clamp(8px, 1vw, 16px);
  padding-top: clamp(10px, 1vw, 18px);
  border-top: 1px solid var(--text);
}

@media (max-width: 980px) and (min-width: 681px) {
  .about {
    grid-template-columns: minmax(340px, 45vw) minmax(0, 1fr) !important;
  }

  .about-text {
    grid-template-columns: 1fr;
  }

  .about-intro,
  .about-links {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  .pixel-arrow {
    max-width: min(82px, 22vw);
  }

  .pixel-arrow:hover,
  .pixel-arrow:focus-visible {
    transform: translateX(-4px) skewX(-3deg);
  }

  .case-detail-section.is-gallery-story {
    display: block;
  }

  .case-detail-section.is-gallery-story .case-detail-copy,
  .case-detail-section.is-gallery-story .case-gallery {
    position: static !important;
    width: 100%;
    max-width: none;
  }

  .case-detail-section.is-gallery-story .case-detail-copy {
    margin-bottom: clamp(22px, 6vw, 36px);
  }

  .about {
    display: flex !important;
    gap: 12px;
    overflow-y: auto !important;
  }

  .team-scroll-hint {
    display: block;
    order: 0;
    margin: 0;
    color: var(--orange);
    font-size: clamp(10px, 2.8vw, 12px);
    text-decoration: underline;
    text-underline-offset: .25em;
  }

  .about-team {
    order: 1;
    display: flex !important;
    width: calc(100vw - (2 * var(--page-x))) !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 max(14vw, 48px) 8px 0;
    scroll-padding-inline: 0 max(14vw, 48px);
    scroll-snap-type: x mandatory;
  }

  .about-person,
  .about-person:nth-child(5) {
    flex: 0 0 min(68vw, 290px) !important;
    width: min(68vw, 290px) !important;
    margin: 0;
    transform: none;
    scroll-snap-align: start;
  }

  .about-person img {
    aspect-ratio: 4 / 5;
  }

  .about-card {
    padding: clamp(14px, 4vw, 20px);
  }

  .about-card strong {
    font-size: clamp(12px, 3.5vw, 16px);
  }

  .about-card span {
    font-size: clamp(9px, 2.65vw, 12px);
    line-height: 1.2;
  }

  .about-copy {
    order: 2;
    width: 100%;
    max-height: none !important;
    overflow: visible !important;
    margin-top: clamp(18px, 5vw, 34px);
  }

  .about-logo-crop {
    width: min(86vw, 380px);
    margin-bottom: 24px;
  }

  .about-text {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-intro,
  .about-links {
    grid-column: 1;
  }

  .about-text-block {
    min-height: 0;
    padding: 16px;
  }

  .about-text-block p {
    margin-top: 18px;
  }
}

/* About v2: one protected scroll area between the fixed header and footer. */
.about {
  display: block !important;
  min-height: 0 !important;
  overflow: hidden !important;
  padding: var(--nav-safe) var(--page-x) var(--footer-safe) !important;
}

.about-stage {
  display: grid;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  grid-template-columns: minmax(340px, 42vw) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 92px);
  align-items: start;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.about-stage::-webkit-scrollbar {
  display: none;
}

.about-team {
  display: grid !important;
  width: 100% !important;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(10px, 1vw, 18px) !important;
  align-items: start;
  overflow: visible !important;
  padding: 0 !important;
}

.about-person,
.about-person:nth-child(2),
.about-person:nth-child(4),
.about-person:nth-child(5) {
  width: 100% !important;
  min-width: 0;
  margin: 0 !important;
  transform: none !important;
}

.about-person:nth-child(5) {
  grid-column: auto;
  justify-self: stretch;
}

.about-person img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-card {
  min-height: 50%;
  max-height: 100%;
  padding: clamp(10px, 1vw, 16px);
  overflow: hidden;
}

.about-card strong {
  font-size: clamp(9px, .72vw, 13px);
}

.about-card span {
  font-size: clamp(7px, .58vw, 10.5px);
  line-height: 1.16;
}

.about-copy {
  display: grid;
  width: 100%;
  max-width: none;
  max-height: none !important;
  justify-items: stretch;
  overflow: visible !important;
}

.about-logo-crop {
  width: min(100%, 560px);
  margin: 0 0 clamp(28px, 3vw, 54px) auto;
  transform: none !important;
}

.about-logo {
  width: 100%;
  transform: none !important;
}

.about-text {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: visible;
}

.about-intro {
  grid-column: 1;
  margin: 0 0 clamp(20px, 2.4vw, 38px) !important;
  padding: 0 0 0 clamp(14px, 1.2vw, 22px);
  border: 0;
  border-left: 3px solid var(--orange);
  font-size: clamp(13px, .95vw, 18px) !important;
  line-height: 1.28 !important;
  text-align: left !important;
}

.about-text-block,
.about-text-block:nth-of-type(2),
.about-text-block:nth-of-type(3),
.about-text-block:nth-of-type(4),
.about-text-block:nth-of-type(5) {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(120px, .7fr) minmax(0, 2fr);
  gap: clamp(18px, 2vw, 34px);
  align-items: start;
  margin: 0;
  padding: clamp(14px, 1.25vw, 22px) 0;
  border: 0;
  border-top: 1px solid var(--text);
  background: transparent;
  color: var(--text);
}

.about-text-block h2,
.about-text-block:nth-of-type(2) h2,
.about-text-block:nth-of-type(3) h2,
.about-text-block:nth-of-type(4) h2,
.about-text-block:nth-of-type(5) h2,
.about-text-block h2::before,
.about-text-block:nth-of-type(2) h2::before,
.about-text-block:nth-of-type(3) h2::before,
.about-text-block:nth-of-type(4) h2::before,
.about-text-block:nth-of-type(5) h2::before {
  margin: 0;
  color: var(--link);
}

.about-text-block:nth-of-type(2) h2,
.about-text-block:nth-of-type(2) h2::before,
.about-text-block:nth-of-type(5) h2,
.about-text-block:nth-of-type(5) h2::before {
  color: var(--red);
}

.about-text-block:nth-of-type(3) h2,
.about-text-block:nth-of-type(3) h2::before,
.about-text-block:nth-of-type(6) h2,
.about-text-block:nth-of-type(6) h2::before {
  color: var(--email-link);
}

.about-text-block:nth-of-type(4) h2,
.about-text-block:nth-of-type(4) h2::before {
  color: var(--orange);
}

.about-text-block p {
  margin: 0;
  color: var(--text);
  text-align: left;
}

.about-links {
  grid-column: 1;
  margin: clamp(18px, 2vw, 30px) 0 0;
  padding: clamp(14px, 1.3vw, 22px) 0 2px;
  border-top: 1px solid var(--text);
}

.team-scroll-hint {
  display: none;
}

@media (max-width: 1100px) and (min-width: 761px) {
  .about-stage {
    grid-template-columns: minmax(300px, 40vw) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 54px);
  }

  .about-team {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .about-text-block {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 760px) {
  .about {
    display: block !important;
    padding: var(--nav-safe) var(--page-x) var(--footer-safe) !important;
    overflow: hidden !important;
  }

  .about-stage {
    display: flex;
    height: 100%;
    flex-direction: column;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .team-scroll-hint {
    display: block;
    flex: 0 0 auto;
    margin: 0 0 12px;
    color: var(--orange);
    font-size: clamp(10px, 2.8vw, 12px);
    text-decoration: underline;
    text-underline-offset: .25em;
  }

  .about-team {
    display: flex !important;
    flex: 0 0 auto;
    width: 100% !important;
    max-width: none;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 max(16vw, 56px) 10px 0 !important;
    scroll-padding-inline: 0 max(16vw, 56px);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .about-team::-webkit-scrollbar {
    display: none;
  }

  .about-person,
  .about-person:nth-child(2),
  .about-person:nth-child(4),
  .about-person:nth-child(5) {
    flex: 0 0 clamp(132px, 42vw, 174px) !important;
    width: clamp(132px, 42vw, 174px) !important;
    scroll-snap-align: start;
  }

  .about-cue {
    display: none !important;
    visibility: hidden !important;
  }

  .about-card {
    --about-peek: 10px;
    padding: 10px;
  }

  .about-card strong {
    font-size: clamp(9px, 2.55vw, 11px);
  }

  .about-card span {
    font-size: clamp(7px, 2vw, 9px);
  }

  .about-copy {
    flex: 0 0 auto;
    margin-top: clamp(26px, 7vw, 42px);
  }

  .about-logo-crop {
    width: min(78vw, 340px);
    margin: 0 0 24px auto;
    transform: none !important;
  }

  .about-intro {
    margin-bottom: 22px !important;
    padding-left: 12px;
    font-size: clamp(11px, 3vw, 14px) !important;
  }

  .about-text-block,
  .about-text-block:nth-of-type(2),
  .about-text-block:nth-of-type(3),
  .about-text-block:nth-of-type(4),
  .about-text-block:nth-of-type(5) {
    grid-template-columns: minmax(92px, .65fr) minmax(0, 1.65fr);
    gap: 14px;
    padding: 14px 0;
  }

  .about-text-block h2,
  .about-text-block p {
    font-size: clamp(9px, 2.55vw, 11px) !important;
    line-height: 1.24 !important;
  }

  .about-links {
    margin-top: 16px;
  }
}

@media (max-width: 390px) {
  .about-person,
  .about-person:nth-child(2),
  .about-person:nth-child(4),
  .about-person:nth-child(5) {
    flex-basis: 46vw !important;
    width: 46vw !important;
  }

  .about-text-block,
  .about-text-block:nth-of-type(2),
  .about-text-block:nth-of-type(3),
  .about-text-block:nth-of-type(4),
  .about-text-block:nth-of-type(5) {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* About text v4: straight grid, color only behind the questions. */
.about-intro {
  width: 100%;
  margin: 0 0 clamp(38px, 4vw, 68px) !important;
  padding: 0;
  border: 0;
  font-size: clamp(14px, 1.05vw, 20px) !important;
  line-height: 1.3 !important;
}

.about-text-block,
.about-text-block:nth-of-type(2),
.about-text-block:nth-of-type(3),
.about-text-block:nth-of-type(4),
.about-text-block:nth-of-type(5),
.about-text-block:nth-of-type(6) {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(150px, .62fr) minmax(0, 1.55fr);
  gap: clamp(22px, 2.8vw, 50px);
  align-items: start;
  margin: 0 0 clamp(26px, 3vw, 48px);
  padding: 0;
  border: 0;
  background: transparent;
}

.about-text-block h2,
.about-text-block:nth-of-type(2) h2,
.about-text-block:nth-of-type(3) h2,
.about-text-block:nth-of-type(4) h2,
.about-text-block:nth-of-type(5) h2,
.about-text-block:nth-of-type(6) h2 {
  grid-column: 1;
  justify-self: start;
  width: fit-content;
  margin: 0;
  padding: .42em .58em;
  background: var(--link);
  color: #fff;
  font-size: var(--body-copy-size) !important;
  line-height: 1.2 !important;
  text-decoration: none;
}

.about-text-block:nth-of-type(2) h2 {
  background: var(--red);
}

.about-text-block:nth-of-type(3) h2 {
  background: var(--email-link);
}

.about-text-block:nth-of-type(4) h2 {
  background: var(--orange);
}

.about-text-block:nth-of-type(5) h2 {
  background: var(--link);
}

.about-text-block:nth-of-type(6) h2 {
  background: var(--red);
}

.about-text-block h2::before,
.about-text-block:nth-of-type(2) h2::before,
.about-text-block:nth-of-type(3) h2::before,
.about-text-block:nth-of-type(4) h2::before,
.about-text-block:nth-of-type(5) h2::before,
.about-text-block:nth-of-type(6) h2::before {
  content: none;
}

.about-text-block p,
.about-text-block:nth-of-type(2) p,
.about-text-block:nth-of-type(3) p,
.about-text-block:nth-of-type(4) p,
.about-text-block:nth-of-type(5) p,
.about-text-block:nth-of-type(6) p {
  grid-column: 2;
  margin: 0 0 .75em;
  color: var(--text);
  text-align: left;
}

.about-links {
  width: 100%;
  margin: clamp(8px, 1vw, 16px) 0 0;
  padding: 0 0 clamp(8px, 1vw, 18px);
  border: 0;
}

@media (max-width: 1100px) {
  .about-text-block,
  .about-text-block:nth-of-type(2),
  .about-text-block:nth-of-type(3),
  .about-text-block:nth-of-type(4),
  .about-text-block:nth-of-type(5),
  .about-text-block:nth-of-type(6) {
    width: 100%;
    grid-template-columns: minmax(120px, .7fr) minmax(0, 1.5fr);
    gap: clamp(16px, 2.4vw, 30px);
    margin-left: 0;
  }
}

/* Final case content, breadcrumbs and About layout. */
.tag-heading {
  flex-wrap: wrap;
  gap: 14px;
}

.tag-back-link {
  display: inline-flex;
  gap: 14px;
  align-items: baseline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--email-link);
  cursor: pointer;
  font: inherit;
  line-height: 1;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .26em;
}

.tag-back-link:hover,
.tag-back-link:focus-visible {
  color: var(--red);
  outline: none;
}

.tag-heading-separator {
  color: var(--orange);
}

.case-detail-subtitle {
  display: block;
  width: auto;
  max-width: 100%;
  padding: 0;
  background: transparent;
  font-weight: 400;
  line-height: 1.28;
}

.case-detail-subtitle-label {
  display: inline;
  padding: .14em .32em;
  background: var(--red);
  color: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.case-detail-section.is-credits-section {
  display: block;
  min-height: 0;
  padding: clamp(34px, 5vw, 80px) 0 clamp(28px, 5vw, 72px);
  opacity: 1;
  transform: none;
  animation: none;
  scroll-snap-align: none;
}

.case-credits {
  display: grid;
  gap: clamp(26px, 3vw, 48px);
  width: 100%;
}

.case-credits h4,
.case-credits h5,
.case-credits p {
  margin: 0;
}

.case-credits h4 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 84px);
  font-weight: 700;
  line-height: .86;
  text-transform: uppercase;
}

.case-credit-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 245px), 1fr));
  gap: clamp(30px, 4vw, 68px);
  align-items: start;
}

.case-credit-group {
  display: grid;
  gap: .42em;
  min-width: 0;
}

.case-credit-group h5 {
  margin-bottom: .5em;
  font-size: 1em;
  text-transform: uppercase;
}

.case-credit-group p {
  font-size: var(--body-copy-size);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.case-project-gallery.is-german {
  gap: clamp(8px, .8vw, 14px);
  background: var(--bg);
  overflow: visible;
}

.case-project-gallery.is-german .case-project-media {
  --media-marker: var(--email-link);
  --media-marker-size: clamp(8px, .7vw, 12px);
  --media-marker-offset: calc(var(--media-marker-size) * -.55);
  isolation: isolate;
  overflow: visible !important;
}

.case-project-gallery.is-german .case-project-media:nth-child(2) {
  --media-marker: var(--orange);
}

.case-project-gallery.is-german .case-project-media:nth-child(3) {
  --media-marker: var(--link);
}

.case-project-gallery.is-german .case-project-media::before {
  position: absolute;
  inset: var(--media-marker-offset);
  z-index: 5;
  display: block;
  background:
    linear-gradient(var(--media-marker) 0 0) left top / var(--media-marker-size) var(--media-marker-size) no-repeat,
    linear-gradient(var(--media-marker) 0 0) right top / var(--media-marker-size) var(--media-marker-size) no-repeat,
    linear-gradient(var(--media-marker) 0 0) left bottom / var(--media-marker-size) var(--media-marker-size) no-repeat,
    linear-gradient(var(--media-marker) 0 0) right bottom / var(--media-marker-size) var(--media-marker-size) no-repeat;
  opacity: 1;
  pointer-events: none;
  content: "";
}

.about {
  display: block !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  padding: var(--nav-safe) var(--page-x) calc(var(--footer-safe) + 36px) !important;
  scrollbar-width: none;
}

.about-stage {
  display: grid !important;
  width: 100%;
  height: auto !important;
  min-height: 0;
  grid-template-columns: minmax(420px, .95fr) minmax(520px, 1.05fr);
  gap: clamp(54px, 7vw, 130px);
  align-items: start;
}

.about .team-scroll-hint {
  display: none;
}

.about .about-team {
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.15vw, 20px) !important;
  align-content: start;
  overflow: visible !important;
}

.about .about-person {
  width: 100% !important;
  min-width: 0;
  max-width: none;
}

.about .about-person img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about .about-copy,
.about .about-text {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 0;
  overflow: visible !important;
}

.about .about-logo-crop {
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 clamp(30px, 4vw, 66px) !important;
}

.about .about-logo {
  width: 100% !important;
  max-width: none !important;
}

.about .about-intro {
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 clamp(38px, 5vw, 76px) !important;
  text-align: left !important;
  text-align-last: left !important;
}

.about .about-text-block {
  display: grid !important;
  width: 100% !important;
  grid-template-columns: minmax(130px, 38%) minmax(0, 54%);
  gap: clamp(22px, 3vw, 54px) !important;
  align-items: start !important;
  margin: 0 0 clamp(28px, 3.2vw, 52px) !important;
}

.about .about-text-block h2 {
  grid-column: 1 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  text-align: right !important;
}

.about .about-answer {
  grid-column: 2 !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  margin: 0 !important;
  text-align: left !important;
}

.about .about-answer p {
  display: block !important;
  width: 100% !important;
  margin: 0 0 .8em !important;
  text-align: left !important;
  text-align-last: left !important;
}

.about .about-links {
  width: 100%;
  margin-top: clamp(16px, 2vw, 30px);
}

@media (max-width: 1100px) {
  .about-stage {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(48px, 7vw, 80px);
  }

  .about .about-team {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .about .about-logo-crop {
    width: min(100%, 760px) !important;
    margin-left: auto !important;
  }
}

@media (max-width: 680px) {
  .case-credit-groups {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-project-gallery.is-german {
    gap: 14px;
  }

  .about .team-scroll-hint {
    display: block;
    margin: 0 0 10px;
  }

  .about .about-team {
    display: flex !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x proximity;
  }

  .about .about-person {
    flex: 0 0 min(62vw, 220px) !important;
    scroll-snap-align: start;
  }

  .about .about-text-block {
    grid-template-columns: minmax(96px, 38%) minmax(0, 1fr);
    gap: 10px !important;
    margin-bottom: 28px !important;
  }

  .about .about-text-block h2 {
    font-size: clamp(9px, 2.55vw, 11px) !important;
  }
}

/* UKLON / GERMAN: frameless, glued media compositions. */
.case-detail-section.is-project-story {
  display: grid;
  min-height: 0;
  align-content: start;
  gap: clamp(22px, 3vw, 48px);
  padding-bottom: clamp(24px, 4vw, 64px);
  opacity: 1;
  transform: none;
  animation: none;
  scroll-snap-align: none;
}

.case-detail-copy.is-project-copy {
  display: grid;
  width: min(100%, 72ch);
  max-width: 72ch;
  gap: clamp(10px, 1.2vw, 18px);
  margin: 0;
}

.case-detail-copy.is-project-copy h3,
.case-detail-copy.is-project-copy p {
  margin: 0;
}

.case-detail-copy.is-project-copy h3 {
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 118px);
  font-weight: 700;
  line-height: .82;
  text-transform: uppercase;
}

.case-project-gallery {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  background: #000;
}

.case-project-gallery.is-count-1 {
  grid-template-columns: minmax(0, 1fr);
}

.case-project-gallery:not(.is-count-1) .case-project-media.is-primary {
  grid-column: 1 / -1;
}

.case-project-gallery .case-project-media {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.case-project-gallery .case-project-media::before {
  display: none;
}

.case-project-gallery .case-project-media video {
  position: absolute !important;
  inset: 0 !important;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  border: 0 !important;
  object-fit: cover !important;
}

.case-project-gallery.is-german {
  width: min(100%, 1215px, 112svh);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: start;
  background: transparent;
}

.case-project-gallery.is-german .case-project-media,
.case-project-gallery.is-german .case-project-media.is-primary {
  grid-column: auto;
  aspect-ratio: 9 / 16;
}

.case-project-gallery.is-german .case-project-media video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

@media (max-width: 760px) {
  .case-detail-section.is-project-story {
    gap: 24px;
    padding-bottom: 28px;
  }

  .case-detail-copy.is-project-copy {
    width: 100%;
    max-width: 100%;
    font-size: clamp(11px, 3vw, 13px);
    line-height: 1.3;
  }

  .case-detail-copy.is-project-copy h3 {
    font-size: clamp(40px, 15vw, 68px);
    line-height: .86;
  }

  .case-project-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-project-gallery .case-project-media,
  .case-project-gallery:not(.is-count-1) .case-project-media.is-primary {
    grid-column: 1;
  }

  .case-project-gallery.is-german {
    width: min(100%, 420px);
    grid-template-columns: minmax(0, 1fr);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .about-intro {
    width: 100%;
    margin: 0 0 32px !important;
    font-size: clamp(12px, 3.25vw, 15px) !important;
  }

  .about-text-block,
  .about-text-block:nth-of-type(2),
  .about-text-block:nth-of-type(3),
  .about-text-block:nth-of-type(4),
  .about-text-block:nth-of-type(5),
  .about-text-block:nth-of-type(6) {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 0 30px;
  }

  .about-text-block h2,
  .about-text-block:nth-of-type(2) h2,
  .about-text-block:nth-of-type(3) h2,
  .about-text-block:nth-of-type(4) h2,
  .about-text-block:nth-of-type(5) h2,
  .about-text-block:nth-of-type(6) h2,
  .about-text-block p,
  .about-text-block:nth-of-type(2) p,
  .about-text-block:nth-of-type(3) p,
  .about-text-block:nth-of-type(4) p,
  .about-text-block:nth-of-type(5) p,
  .about-text-block:nth-of-type(6) p {
    grid-column: 1;
  }

  .about-text-block h2,
  .about-text-block:nth-of-type(2) h2,
  .about-text-block:nth-of-type(3) h2,
  .about-text-block:nth-of-type(4) h2,
  .about-text-block:nth-of-type(5) h2,
  .about-text-block:nth-of-type(6) h2 {
    font-size: clamp(10px, 2.8vw, 12px) !important;
  }
}

/* About text v3: creativity comes only from editorial rhythm and spacing. */
.about-copy {
  overflow: visible !important;
}

.about-text {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: 1fr;
  gap: 0;
}

.about-intro {
  width: 88%;
  margin: 0 0 clamp(42px, 5vw, 84px) 12% !important;
  padding: 0;
  border: 0;
  font-size: clamp(15px, 1.25vw, 23px) !important;
  line-height: 1.25 !important;
  text-align: left !important;
}

.about-text-block,
.about-text-block:nth-of-type(2),
.about-text-block:nth-of-type(3),
.about-text-block:nth-of-type(4),
.about-text-block:nth-of-type(5) {
  display: grid;
  width: 72%;
  min-height: 0;
  grid-template-columns: minmax(110px, .62fr) minmax(0, 1.38fr);
  gap: clamp(18px, 2vw, 36px);
  align-items: start;
  margin: 0 0 clamp(38px, 4.5vw, 76px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
}

.about-text-block:nth-of-type(2) {
  width: 64%;
  margin-left: 36%;
}

.about-text-block:nth-of-type(3) {
  width: 68%;
  margin-left: 8%;
}

.about-text-block:nth-of-type(4) {
  width: 70%;
  margin-left: 30%;
}

.about-text-block:nth-of-type(5) {
  width: 66%;
  margin-left: 0;
}

.about-text-block:nth-of-type(6) {
  width: 68%;
  margin-left: 32%;
}

.about-text-block h2,
.about-text-block:nth-of-type(2) h2,
.about-text-block:nth-of-type(3) h2,
.about-text-block:nth-of-type(4) h2,
.about-text-block:nth-of-type(5) h2,
.about-text-block:nth-of-type(6) h2 {
  grid-column: 1;
  margin: 0;
  color: var(--text);
  text-decoration: none;
}

.about-text-block h2::before,
.about-text-block:nth-of-type(2) h2::before,
.about-text-block:nth-of-type(3) h2::before,
.about-text-block:nth-of-type(4) h2::before,
.about-text-block:nth-of-type(5) h2::before,
.about-text-block:nth-of-type(6) h2::before {
  content: none;
}

.about-text-block p {
  grid-column: 2;
  margin: 0 0 .75em;
  color: var(--text);
  text-align: left;
}

.about-text-block p:last-child {
  margin-bottom: 0;
}

.about-links {
  width: 70%;
  margin: 0 0 0 30%;
  padding: 0 0 clamp(8px, 1vw, 18px);
  border: 0;
}

@media (max-width: 1100px) and (min-width: 761px) {
  .about-intro {
    width: 92%;
    margin-left: 8% !important;
  }

  .about-text-block,
  .about-text-block:nth-of-type(2),
  .about-text-block:nth-of-type(3),
  .about-text-block:nth-of-type(4),
  .about-text-block:nth-of-type(5),
  .about-text-block:nth-of-type(6) {
    width: 86%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-text-block:nth-of-type(even) {
    margin-left: 14%;
  }

  .about-text-block:nth-of-type(odd) {
    margin-left: 0;
  }

  .about-text-block h2,
  .about-text-block p {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .about-intro {
    width: 92%;
    margin: 0 0 38px 8% !important;
    padding: 0;
    border: 0;
    font-size: clamp(13px, 3.7vw, 17px) !important;
  }

  .about-text-block,
  .about-text-block:nth-of-type(2),
  .about-text-block:nth-of-type(3),
  .about-text-block:nth-of-type(4),
  .about-text-block:nth-of-type(5),
  .about-text-block:nth-of-type(6) {
    width: 94%;
    grid-template-columns: minmax(82px, .58fr) minmax(0, 1.42fr);
    gap: 12px;
    margin-bottom: 34px;
  }

  .about-text-block:nth-of-type(even) {
    margin-left: 6%;
  }

  .about-text-block:nth-of-type(odd) {
    margin-left: 0;
  }

  .about-text-block h2,
  .about-text-block p {
    font-size: clamp(9px, 2.55vw, 11px) !important;
    line-height: 1.25 !important;
  }

  .about-links {
    width: 94%;
    margin-left: 6%;
    padding: 0 0 10px;
    border: 0;
  }
}

@media (max-width: 390px) {
  .about-text-block,
  .about-text-block:nth-of-type(2),
  .about-text-block:nth-of-type(3),
  .about-text-block:nth-of-type(4),
  .about-text-block:nth-of-type(5),
  .about-text-block:nth-of-type(6) {
    width: 94%;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-text-block h2,
  .about-text-block p {
    grid-column: 1;
  }
}

/* About text v6: question and answer rows use true space-between alignment. */
.about-text-block,
.about-text-block:nth-of-type(2),
.about-text-block:nth-of-type(3),
.about-text-block:nth-of-type(4),
.about-text-block:nth-of-type(5),
.about-text-block:nth-of-type(6) {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: clamp(28px, 4vw, 76px);
  margin: 0 0 clamp(24px, 2.8vw, 44px);
}

.about-text-block h2,
.about-text-block:nth-of-type(2) h2,
.about-text-block:nth-of-type(3) h2,
.about-text-block:nth-of-type(4) h2,
.about-text-block:nth-of-type(5) h2,
.about-text-block:nth-of-type(6) h2 {
  flex: 0 1 40%;
  width: auto;
  max-width: 40%;
  text-align: right;
}

.about-answer {
  flex: 0 1 54%;
  width: 54%;
  min-width: 0;
  margin: 0;
  text-align: left;
}

.about-answer p,
.about-text-block .about-answer p,
.about-text-block:nth-of-type(2) .about-answer p,
.about-text-block:nth-of-type(3) .about-answer p,
.about-text-block:nth-of-type(4) .about-answer p,
.about-text-block:nth-of-type(5) .about-answer p,
.about-text-block:nth-of-type(6) .about-answer p {
  display: block;
  width: 100%;
  margin: 0 0 .75em;
  text-align: left;
}

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

@media (max-width: 760px) {
  .about-text-block,
  .about-text-block:nth-of-type(2),
  .about-text-block:nth-of-type(3),
  .about-text-block:nth-of-type(4),
  .about-text-block:nth-of-type(5),
  .about-text-block:nth-of-type(6) {
    display: flex;
    column-gap: clamp(14px, 5vw, 26px);
  }

  .about-text-block h2,
  .about-text-block:nth-of-type(2) h2,
  .about-text-block:nth-of-type(3) h2,
  .about-text-block:nth-of-type(4) h2,
  .about-text-block:nth-of-type(5) h2,
  .about-text-block:nth-of-type(6) h2 {
    flex-basis: 39%;
    max-width: 39%;
    text-align: right;
  }

  .about-answer {
    flex-basis: 56%;
    width: 56%;
  }
}

/* Final responsive axis: questions start on the logo/intro line. */
.about-text-block h2,
.about-text-block:nth-of-type(2) h2,
.about-text-block:nth-of-type(3) h2,
.about-text-block:nth-of-type(4) h2,
.about-text-block:nth-of-type(5) h2,
.about-text-block:nth-of-type(6) h2 {
  flex: 0 1 38%;
  width: auto;
  max-width: 38%;
  text-align: left;
}

.about-answer {
  flex: 0 1 54%;
  width: 54%;
  margin-left: auto;
}

@media (max-width: 1100px) and (min-width: 761px) {
  .about-text-block h2,
  .about-text-block:nth-of-type(2) h2,
  .about-text-block:nth-of-type(3) h2,
  .about-text-block:nth-of-type(4) h2,
  .about-text-block:nth-of-type(5) h2,
  .about-text-block:nth-of-type(6) h2 {
    flex-basis: 36%;
    max-width: 36%;
  }

  .about-answer {
    flex-basis: 58%;
    width: 58%;
  }
}

@media (max-width: 760px) {
  .about-text-block,
  .about-text-block:nth-of-type(2),
  .about-text-block:nth-of-type(3),
  .about-text-block:nth-of-type(4),
  .about-text-block:nth-of-type(5),
  .about-text-block:nth-of-type(6) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-text-block h2,
  .about-text-block:nth-of-type(2) h2,
  .about-text-block:nth-of-type(3) h2,
  .about-text-block:nth-of-type(4) h2,
  .about-text-block:nth-of-type(5) h2,
  .about-text-block:nth-of-type(6) h2,
  .about-answer {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    text-align: left;
  }
}

/* About text v5: compact question highlights and strict edge alignment. */
.about-intro {
  width: 100%;
  margin: 0 0 clamp(34px, 4vw, 64px) !important;
  padding: 0;
  border: 0;
}

.about-text-block,
.about-text-block:nth-of-type(2),
.about-text-block:nth-of-type(3),
.about-text-block:nth-of-type(4),
.about-text-block:nth-of-type(5),
.about-text-block:nth-of-type(6) {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(135px, .72fr) minmax(0, 1.45fr);
  gap: clamp(18px, 2.5vw, 42px);
  align-items: start;
  margin: 0 0 clamp(24px, 2.8vw, 44px);
  padding: 0;
  border: 0;
  background: transparent;
}

.about-text-block h2,
.about-text-block:nth-of-type(2) h2,
.about-text-block:nth-of-type(3) h2,
.about-text-block:nth-of-type(4) h2,
.about-text-block:nth-of-type(5) h2,
.about-text-block:nth-of-type(6) h2 {
  grid-column: 1;
  justify-self: stretch;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  font-size: var(--body-copy-size) !important;
  line-height: 1.35 !important;
  text-align: right;
  text-decoration: none;
}

.about-question-label {
  display: inline;
  padding: .16em .25em;
  background: var(--link);
  color: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.about-text-block:nth-of-type(2) .about-question-label {
  background: var(--red);
}

.about-text-block:nth-of-type(3) .about-question-label {
  background: var(--email-link);
}

.about-text-block:nth-of-type(4) .about-question-label {
  background: var(--orange);
}

.about-text-block:nth-of-type(5) .about-question-label {
  background: var(--link);
}

.about-text-block:nth-of-type(6) .about-question-label {
  background: var(--red);
}

.about-text-block p,
.about-text-block:nth-of-type(2) p,
.about-text-block:nth-of-type(3) p,
.about-text-block:nth-of-type(4) p,
.about-text-block:nth-of-type(5) p,
.about-text-block:nth-of-type(6) p {
  grid-column: 2;
  margin: 0 0 .75em;
  color: var(--text);
  text-align: left;
}

.about-links {
  width: 100%;
  margin: clamp(8px, 1vw, 16px) 0 0;
  padding: 0 0 10px;
  border: 0;
}

@media (max-width: 760px) {
  .about-text-block,
  .about-text-block:nth-of-type(2),
  .about-text-block:nth-of-type(3),
  .about-text-block:nth-of-type(4),
  .about-text-block:nth-of-type(5),
  .about-text-block:nth-of-type(6) {
    width: 100%;
    grid-template-columns: minmax(96px, .8fr) minmax(0, 1.4fr);
    gap: 12px;
    margin: 0 0 28px;
  }

  .about-text-block h2,
  .about-text-block:nth-of-type(2) h2,
  .about-text-block:nth-of-type(3) h2,
  .about-text-block:nth-of-type(4) h2,
  .about-text-block:nth-of-type(5) h2,
  .about-text-block:nth-of-type(6) h2 {
    grid-column: 1;
    font-size: clamp(9px, 2.55vw, 11px) !important;
    text-align: right;
  }

  .about-text-block p,
  .about-text-block:nth-of-type(2) p,
  .about-text-block:nth-of-type(3) p,
  .about-text-block:nth-of-type(4) p,
  .about-text-block:nth-of-type(5) p,
  .about-text-block:nth-of-type(6) p {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 390px) {
  .about-text-block,
  .about-text-block:nth-of-type(2),
  .about-text-block:nth-of-type(3),
  .about-text-block:nth-of-type(4),
  .about-text-block:nth-of-type(5),
  .about-text-block:nth-of-type(6) {
    grid-template-columns: minmax(84px, .78fr) minmax(0, 1.32fr);
    gap: 10px;
  }
}

/* Final about row alignment. */
.about-text-block,
.about-text-block:nth-of-type(2),
.about-text-block:nth-of-type(3),
.about-text-block:nth-of-type(4),
.about-text-block:nth-of-type(5),
.about-text-block:nth-of-type(6) {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: clamp(28px, 4vw, 76px);
  margin-left: 0;
}

.about-text-block h2,
.about-text-block:nth-of-type(2) h2,
.about-text-block:nth-of-type(3) h2,
.about-text-block:nth-of-type(4) h2,
.about-text-block:nth-of-type(5) h2,
.about-text-block:nth-of-type(6) h2 {
  flex: 0 1 38%;
  width: auto;
  max-width: 38%;
  text-align: left;
}

.about-answer {
  flex: 0 1 54%;
  width: 54%;
  min-width: 0;
  margin-left: auto;
  text-align: left;
}

.about-answer p,
.about-text-block .about-answer p {
  display: block;
  width: 100%;
  margin: 0 0 .75em;
  text-align: left;
}

@media (max-width: 760px) {
  .about-text-block,
  .about-text-block:nth-of-type(2),
  .about-text-block:nth-of-type(3),
  .about-text-block:nth-of-type(4),
  .about-text-block:nth-of-type(5),
  .about-text-block:nth-of-type(6) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-text-block h2,
  .about-text-block:nth-of-type(2) h2,
  .about-text-block:nth-of-type(3) h2,
  .about-text-block:nth-of-type(4) h2,
  .about-text-block:nth-of-type(5) h2,
  .about-text-block:nth-of-type(6) h2 {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .about-answer {
    grid-column: 1;
    width: 100%;
    margin-left: 0;
  }
}

/* Arrow motion is always contained inside the work viewport. */
.case-info {
  padding-right: clamp(2px, .45vw, 8px);
  overflow: hidden;
}

.pixel-arrow {
  max-width: min(100%, calc(100vw - (2 * var(--page-x))));
  margin-right: 0;
  transform: translateX(0);
  transform-origin: right center;
}

.pixel-arrow:hover,
.pixel-arrow:focus-visible,
.pixel-arrow:active {
  transform: translateX(clamp(-8px, -.55vw, -4px)) skewX(-3deg);
  outline: none;
}

.case-info.is-reeling .pixel-arrow {
  animation: reel-arrow-safe 520ms var(--ease-snap);
}

@keyframes reel-arrow-safe {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(clamp(-12px, -.8vw, -6px));
  }
}

@media (max-width: 680px) {
  .case-info {
    padding-right: 4px;
  }

  .pixel-arrow {
    max-width: min(76px, 20vw);
  }

  .pixel-arrow:hover,
  .pixel-arrow:focus-visible,
  .pixel-arrow:active {
    transform: translateX(-4px) skewX(-2deg);
  }
}

/* 28 ОМБР: on compact screens the story copy always precedes the gallery. */
@media (max-width: 1100px) {
  .case-page.has-tetris-gallery .case-content {
    display: block;
    overflow: visible;
  }

  .case-page.has-tetris-gallery .case-detail-section.is-gallery-story {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .case-page.has-tetris-gallery .case-detail-section.is-gallery-story .case-detail-copy.is-case-story-copy {
    position: static !important;
    order: 0;
    display: grid !important;
    width: 100%;
    max-width: min(100%, 72ch);
    max-height: none;
    margin: 0 0 clamp(24px, 4vw, 46px);
    padding: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
  }

  .case-page.has-tetris-gallery .case-detail-section.is-gallery-story .case-gallery {
    position: relative;
    order: 1;
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 680px) {
  .case-page.has-tetris-gallery .case-detail-section.is-gallery-story .case-detail-copy.is-case-story-copy {
    margin-bottom: 28px;
    font-size: clamp(11px, 3vw, 13px);
    line-height: 1.3;
  }

  .case-page.has-tetris-gallery .case-detail-section.is-gallery-story .case-detail-copy.is-case-story-copy h3 {
    font-size: clamp(30px, 10vw, 48px);
    line-height: .92;
  }
}

/* Compact 28 ОМБР gallery: glued tetris, placed after the story copy. */
@media (max-width: 1100px) {
  .case-page.has-tetris-gallery .case-gallery.is-tetris-gallery {
    display: block !important;
    position: relative !important;
    height: var(--tetris-content-h, clamp(520px, 120vw, 980px)) !important;
    min-height: clamp(420px, 90vw, 760px) !important;
    max-height: none !important;
    margin: 0;
    padding: 0;
    overflow: visible !important;
  }

  .case-page.has-tetris-gallery .case-gallery.is-tetris-gallery .case-gallery-item {
    position: absolute !important;
    display: block;
    min-height: 0;
    overflow: hidden;
  }

  .case-page.has-tetris-gallery .case-gallery.is-tetris-gallery .case-gallery-item.is-gallery-wide {
    grid-column: auto;
  }

  .case-page.has-tetris-gallery .case-gallery.is-tetris-gallery .case-gallery-item img,
  .case-page.has-tetris-gallery .case-gallery.is-tetris-gallery .case-gallery-item video {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .case-page.has-tetris-gallery .case-tetris-spacer {
    display: block !important;
    width: 100%;
    height: var(--tetris-content-h, 100%);
  }
}

/* Definitive responsive About rules — kept last to prevent legacy overrides. */
.about {
  display: block !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  padding: var(--nav-safe) var(--page-x) calc(var(--footer-safe) + 36px) !important;
}

.about .about-stage {
  display: grid !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  grid-template-columns: minmax(420px, .95fr) minmax(520px, 1.05fr) !important;
  gap: clamp(54px, 7vw, 130px) !important;
  align-items: start !important;
  overflow: visible !important;
}

.about .team-scroll-hint {
  display: none !important;
}

.about .about-team {
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(10px, 1.15vw, 20px) !important;
  overflow: visible !important;
}

.about .about-person {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
}

.about .about-copy,
.about .about-text,
.about .about-intro {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 0 !important;
  overflow: visible !important;
}

.about .about-logo-crop,
.about .about-logo {
  width: 100% !important;
  max-width: none !important;
}

.about .about-logo-crop {
  margin: 0 0 clamp(30px, 4vw, 66px) !important;
}

.about .about-intro {
  margin: 0 0 clamp(38px, 5vw, 76px) !important;
  text-align: left !important;
  text-align-last: left !important;
}

.about .about-text-block,
.about .about-text-block:nth-of-type(2),
.about .about-text-block:nth-of-type(3),
.about .about-text-block:nth-of-type(4),
.about .about-text-block:nth-of-type(5),
.about .about-text-block:nth-of-type(6) {
  display: grid !important;
  width: 100% !important;
  grid-template-columns: minmax(130px, 38%) minmax(0, 54%) !important;
  gap: clamp(22px, 3vw, 54px) !important;
  align-items: start !important;
  margin: 0 0 clamp(28px, 3.2vw, 52px) !important;
}

.about .about-text-block h2,
.about .about-text-block:nth-of-type(n) h2 {
  grid-column: 1 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  text-align: right !important;
}

.about .about-answer {
  grid-column: 2 !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}

.about .about-answer p,
.about .about-text-block .about-answer p {
  display: block !important;
  width: 100% !important;
  margin: 0 0 .8em !important;
  text-align: left !important;
  text-align-last: left !important;
}

.case-project-gallery.is-german {
  gap: clamp(8px, .8vw, 14px);
  background: var(--bg);
  overflow: visible;
}

@media (max-width: 1100px) {
  .about .about-stage {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: clamp(48px, 7vw, 80px) !important;
  }

  .about .about-team {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .about .team-scroll-hint {
    display: block !important;
    margin: 0 0 10px !important;
  }

  .about .about-team {
    display: flex !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x proximity;
  }

  .about .about-person {
    flex: 0 0 min(62vw, 220px) !important;
    scroll-snap-align: start;
  }

  .about .about-text-block,
  .about .about-text-block:nth-of-type(n) {
    grid-template-columns: minmax(96px, 38%) minmax(0, 1fr) !important;
    gap: 10px !important;
    margin-bottom: 28px !important;
  }

  .about .about-text-block h2,
  .about .about-text-block:nth-of-type(n) h2 {
    font-size: clamp(9px, 2.55vw, 11px) !important;
  }
}

/* Final positioning corrections for the About copy and German media markers. */
.about {
  padding-bottom: calc(var(--footer-safe) + clamp(100px, 12svh, 180px)) !important;
  scroll-padding-bottom: calc(var(--footer-safe) + 80px);
}

.about .about-stage {
  padding-bottom: clamp(70px, 10svh, 140px) !important;
}

.about .about-text-block,
.about .about-text-block:nth-of-type(n) {
  justify-items: stretch !important;
  justify-content: space-between !important;
}

.about .about-text-block h2,
.about .about-text-block:nth-of-type(n) h2 {
  justify-self: start !important;
  text-align: left !important;
}

.about .about-question-label {
  display: inline !important;
  text-align: left !important;
}

body[data-active-screen="about"] .site-footer {
  padding-top: clamp(32px, 5svh, 64px);
  background: var(--bg);
}

.case-project-gallery.is-german {
  --german-marker-size: clamp(14px, 1.05vw, 20px);
  box-sizing: border-box !important;
  gap: clamp(44px, 3.2vw, 64px) !important;
  overflow: visible !important;
  padding: var(--german-marker-size) !important;
}

.case-project-gallery.is-german .case-project-media,
.case-project-gallery.is-german .case-project-media.is-primary {
  --media-marker-size: var(--german-marker-size);
  --media-marker-offset: calc(var(--media-marker-size) * -1);
  overflow: visible !important;
}

@media (max-width: 680px) {
  .about {
    padding-bottom: calc(var(--footer-safe) + 110px) !important;
  }

  .about .about-stage {
    padding-bottom: 80px !important;
  }

  .about .about-text-block h2,
  .about .about-text-block:nth-of-type(n) h2 {
    justify-self: start !important;
    text-align: left !important;
  }

  body[data-active-screen="about"] .site-footer {
    padding-top: 28px;
  }

  .case-project-gallery.is-german {
    --german-marker-size: 16px;
    gap: 48px !important;
    padding: var(--german-marker-size) !important;
  }
}
