:root {
  --orange: #f04408;
  --ink: #101010;
  --paper: #f4f1eb;
  --muted: #716d64;
  --line: rgba(16, 16, 16, 0.14);
  --panel: #fbfaf6;
  --acid: #d9ff4f;
  --font-body: "Suisse Int’l", "Suisse Intl", "Suisse International",
    "Helvetica Neue", Arial, sans-serif;
  --font-sans: "Suisse Int’l", "Suisse Intl", "Suisse International",
    "Helvetica Neue", Arial, sans-serif;
  --font-display: "Suisse Int’l", "Suisse Intl", "Suisse International",
    "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Space Mono", "SFMono-Regular", Consolas, "Liberation Mono",
    monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0;
  scroll-behavior: smooth;
  text-rendering: geometricPrecision;
}

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

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

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-feature-settings: "kern" 1;
  transition:
    background-color 420ms var(--ease),
    color 420ms var(--ease);
}

body.has-menu {
  overflow: hidden;
}

body.is-dark {
  --ink: #f4f1eb;
  --paper: #0d0d0d;
  --muted: #aaa49a;
  --line: rgba(244, 241, 235, 0.16);
  --panel: #181818;
}

body.work-page {
  --paper: #ebe7df;
  --panel: #ded9cf;
  background: var(--paper);
}

body.work-page.is-dark {
  --paper: #10100f;
  --muted: #aaa49a;
  --line: rgba(235, 231, 223, 0.15);
  --panel: #191816;
}

body.work-page::before {
  position: fixed;
  inset: 0;
  z-index: 41;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 16, 16, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 16, 0.025) 1px, transparent 1px);
  background-size:
    3px 3px,
    5px 5px;
  content: "";
  mix-blend-mode: multiply;
  opacity: 0.18;
}

body.work-page.is-dark::before {
  background-image:
    linear-gradient(rgba(235, 231, 223, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235, 231, 223, 0.045) 1px, transparent 1px);
  mix-blend-mode: screen;
  opacity: 0.14;
}

body.case-page {
  --paper: #ebe8e0;
  --panel: #f5f2ec;
  background: var(--paper);
}

body.case-page.is-dark {
  --paper: #10100f;
  --muted: #aaa49a;
  --line: rgba(235, 231, 223, 0.16);
  --panel: #181715;
}

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

button {
  color: inherit;
  font: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 0.22rem;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.split-word {
  display: inline-block;
  transform-origin: left bottom;
  will-change: transform, opacity;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(0.85rem, 1.5vw, 1.35rem);
  background: var(--paper);
  isolation: isolate;
  transition: background-color 420ms var(--ease);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto auto auto auto;
  align-items: start;
  gap: clamp(0.7rem, 2vw, 1.5rem);
  min-height: 3.25rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-mark {
  justify-self: start;
}

.brand-mark--logo {
  display: inline-flex;
  align-items: center;
  width: clamp(2.3rem, 3.4vw, 3.2rem);
  aspect-ratio: 1;
  transform-origin: 50% 85%;
}

.brand-mark--logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0.28rem 0.42rem rgba(16, 16, 16, 0.12));
  transform-origin: 50% 88%;
  will-change: transform;
}

.theme-button,
.sound-button,
.menu-button {
  border: 0;
  background: transparent;
  padding: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}

.brand-mark,
.theme-button,
.sound-button,
.service-nav a,
.talk-link,
.menu-button,
.scroll-cue,
.section-heading a,
.contact-section a {
  transition:
    color 220ms var(--ease),
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
}

.brand-mark:hover,
.theme-button:hover,
.sound-button:hover,
.service-nav a:hover,
.talk-link:hover,
.menu-button:hover,
.scroll-cue:hover,
.section-heading a:hover,
.contact-section a:hover {
  opacity: 0.62;
  transform: translateY(-0.08rem);
}

.brand-mark--logo:hover,
.brand-mark--logo.is-dancing {
  opacity: 1;
}

.brand-mark--logo:hover img,
.brand-mark--logo.is-dancing img {
  animation: mascot-dance 760ms var(--ease) both;
}

.theme-button,
.sound-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 1.9rem;
  padding-left: 1.65rem;
  overflow: visible;
  font-size: inherit;
  line-height: 1;
  white-space: nowrap;
}

.theme-button::before,
.sound-button::before,
.sound-button::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 4px;
  height: 4px;
  background: transparent;
  border-radius: 999rem;
  color: currentColor;
  content: "";
  image-rendering: pixelated;
  transform: translate(0, -10px);
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.theme-button:not([data-mode])::before,
.theme-button[data-mode="dark"]::before {
  box-shadow:
    8px 0 0 currentColor,
    4px 4px 0 currentColor,
    0 8px 0 currentColor,
    4px 12px 0 currentColor,
    8px 16px 0 currentColor;
}

.theme-button[data-mode="light"]::before {
  box-shadow:
    8px 0 0 currentColor,
    0 8px 0 currentColor,
    8px 8px 0 currentColor,
    16px 8px 0 currentColor,
    8px 16px 0 currentColor;
}

.sound-button::before {
  box-shadow:
    0 8px 0 currentColor,
    4px 4px 0 currentColor,
    4px 8px 0 currentColor,
    4px 12px 0 currentColor;
}

.sound-button:not([data-sound])::after,
.sound-button[data-sound="off"]::after {
  box-shadow:
    10px 4px 0 currentColor,
    14px 8px 0 currentColor,
    18px 12px 0 currentColor;
}

.sound-button[data-sound="on"] {
  color: var(--orange);
}

.sound-button[data-sound="on"]::after {
  box-shadow:
    10px 4px 0 currentColor,
    14px 8px 0 currentColor,
    10px 12px 0 currentColor;
  animation: pixel-signal 980ms var(--ease) infinite;
}

.service-nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 1.9rem;
}

.talk-link {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  min-height: 1.9rem;
  white-space: nowrap;
}

.menu-button {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: flex-end;
  min-height: 1.9rem;
}

.menu-button::before {
  content: "Menu";
}

.menu-button span {
  display: block;
  width: 0.78rem;
  height: 0.1rem;
  background: currentColor;
  transition: transform 260ms var(--ease);
}

.menu-button span:last-child {
  transform: rotate(90deg) translateX(-0.1rem);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg) translateX(0.19rem);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(135deg) translateX(0.16rem);
}

.location-strip {
  position: absolute;
  top: 5rem;
  right: clamp(0.85rem, 1.5vw, 1.35rem);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.25rem 1rem;
  max-width: min(28rem, 44vw);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: clamp(0.64rem, 0.9vw, 0.8rem);
  font-weight: 400;
  text-align: right;
  text-transform: uppercase;
}

.intro-copy {
  position: absolute;
  top: clamp(8rem, 26vh, 14rem);
  left: clamp(0.85rem, 6vw, 6rem);
  z-index: 3;
  width: min(18rem, 28vw);
}

.intro-copy p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 400;
  line-height: 1.05;
}

.sound-field {
  position: absolute;
  right: clamp(0.85rem, 4vw, 4rem);
  bottom: clamp(8rem, 21vh, 15rem);
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(10, 0.2rem);
  align-items: end;
  gap: 0.28rem;
  height: 6.4rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition:
    opacity 360ms var(--ease),
    transform 360ms var(--ease);
}

.sound-field span {
  display: block;
  height: calc(1.05rem + (var(--bar) * 0.55rem));
  background: currentColor;
  transform: scaleY(0.28);
  transform-origin: bottom center;
  animation: sound-bars 960ms ease-in-out infinite;
  animation-delay: calc(var(--bar) * -82ms);
  animation-play-state: paused;
}

body.has-sound .sound-field {
  opacity: 0.22;
  transform: translateY(0);
}

body.has-sound .sound-field span {
  animation-play-state: running;
}

.hero-title {
  align-self: end;
  z-index: 4;
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0 0 -0.03em;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 11rem);
  font-stretch: normal;
  font-weight: 500;
  line-height: 0.92;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media (min-width: 90rem) {
  .hero-title {
    font-size: clamp(3.5rem, 9vw, 11rem);
  }
}

.title-line {
  display: block;
  width: 100%;
  overflow: hidden;
}

.title-line > span {
  display: inline-block;
  white-space: nowrap;
}

.scroll-cue {
  position: absolute;
  right: clamp(0.85rem, 1.5vw, 1.35rem);
  bottom: 1rem;
  z-index: 5;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: grid;
  place-items: center;
  background: rgba(16, 16, 16, 0.92);
  color: #f4f0e8;
  padding: 1rem;
}

.menu-panel[hidden] {
  display: none;
}

.menu-panel__inner {
  display: grid;
  gap: 0.2rem;
  width: min(58rem, 100%);
}

.menu-panel__inner p {
  margin: 0 0 1rem;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
}

.menu-panel a {
  border-top: 1px solid rgba(244, 240, 232, 0.22);
  padding: 0.28em 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 9rem);
  font-stretch: normal;
  font-weight: 500;
  line-height: 0.92;
  text-transform: uppercase;
}

.manifesto,
.work-section,
.services-section,
.approach-section,
.contact-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 3vw, 3rem);
}

.section-kicker {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
}

.section-heading a {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 500;
  text-transform: uppercase;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(10rem, 0.32fr) 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  border-top: 1px solid var(--line);
}

.manifesto h2,
.approach-section h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 11rem);
  font-stretch: normal;
  font-weight: 500;
  line-height: 0.92;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.manifesto-list {
  grid-column: 2;
  display: grid;
  margin-top: clamp(2rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
}

.manifesto-list p {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 0;
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.manifesto-list p:nth-child(even) {
  font-weight: 500;
}

.logo-marquee {
  grid-column: 1 / -1;
  overflow: hidden;
  margin-top: clamp(2rem, 4.4vw, 4.2rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(0.7rem, 1.25vw, 1rem) 0;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 38s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

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

.logo-marquee__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(1rem, 2.8vw, 3rem);
  padding-right: clamp(1rem, 2.8vw, 3rem);
}

.logo-marquee__item {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: clamp(3.2rem, 5.8vw, 5.8rem);
  height: clamp(2.1rem, 3.7vw, 3.7rem);
  opacity: 0.76;
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
}

.logo-marquee__item:hover {
  opacity: 1;
  transform: translateY(-0.12rem) scale(1.035);
}

.logo-marquee__item img {
  display: block;
  max-width: 82%;
  max-height: 78%;
  object-fit: contain;
  filter: grayscale(1) brightness(0) contrast(1.18);
}

body.is-dark .logo-marquee__item img {
  filter: grayscale(1) brightness(0) invert(1) contrast(1.08);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.8rem;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 8.5rem);
  font-stretch: normal;
  font-weight: 500;
  line-height: 0.92;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.35rem);
}

.work-card {
  position: relative;
  display: grid;
  min-height: clamp(22rem, 44vw, 34rem);
  overflow: hidden;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--panel);
  padding: 1rem;
  isolation: isolate;
  transform-style: preserve-3d;
  will-change: transform;
}

.work-card::before {
  position: absolute;
  inset: 1rem;
  z-index: -1;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translateY(-18%) rotate(-10deg);
}

.work-card::after {
  position: absolute;
  right: -3rem;
  top: 3rem;
  z-index: -1;
  width: 17rem;
  height: 17rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.work-card__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.02);
  transition: transform 700ms var(--ease);
}

.work-card--image {
  background: #101010;
  color: #f4f1eb;
}

.work-card--image::before {
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.72)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.62), transparent 62%);
  transform: none;
}

.work-card--image::after {
  content: none;
}

.work-card--image:hover .work-card__media {
  transform: scale(1.06);
}

.work-card--digital::before {
  background: var(--acid);
}

.work-card--motion::before {
  background: #f4f0e8;
}

.work-card span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.work-card--image span {
  color: rgba(244, 241, 235, 0.74);
}

.work-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 3.6vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.work-hero {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(0.85rem, 1.5vw, 1.35rem);
  background:
    radial-gradient(circle at 72% 28%, rgba(240, 68, 8, 0.22), transparent 24rem),
    radial-gradient(circle at 24% 34%, rgba(217, 255, 79, 0.08), transparent 18rem),
    #050505;
  color: #f1eee8;
  isolation: isolate;
}

.work-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(241, 238, 232, 0.68) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(241, 238, 232, 0.28) 0 1px, transparent 1.3px);
  background-position:
    0 0,
    2.8rem 3.6rem;
  background-size:
    7.8rem 7.8rem,
    11rem 11rem;
  content: "";
  opacity: 0.34;
}

.work-hero::after {
  content: none;
}

.logo-space {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.logo-space::before,
.logo-space::after {
  position: absolute;
  border: 1px solid rgba(241, 238, 232, 0.13);
  border-radius: 50%;
  content: "";
  transform: rotate(-11deg);
}

.logo-space::before {
  left: 4%;
  top: 7%;
  width: 82vw;
  height: 62vh;
}

.logo-space::after {
  right: -14%;
  bottom: 3%;
  width: 58vw;
  height: 40vh;
}

.logo-planet {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(241, 238, 232, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.16), transparent 34%),
    rgba(241, 238, 232, 0.055);
  box-shadow:
    inset 0 0 1.2rem rgba(241, 238, 232, 0.07),
    0 0 1.5rem rgba(241, 238, 232, 0.1);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.28);
  will-change: transform, opacity;
}

.logo-planet::after {
  position: absolute;
  inset: -0.45rem;
  border: 1px solid rgba(241, 238, 232, 0.08);
  border-radius: 50%;
  content: "";
  transform: rotate(18deg) scaleX(1.22);
}

.logo-planet img {
  position: relative;
  z-index: 1;
  display: block;
  width: 72%;
  max-height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 0 0.65rem rgba(241, 238, 232, 0.22));
}

.logo-planet--06,
.logo-planet--07 {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.9), transparent 28%),
    #f1eee8;
  box-shadow:
    inset -0.45rem -0.55rem 1rem rgba(16, 16, 16, 0.08),
    0 0 2rem rgba(241, 238, 232, 0.18);
}

.logo-planet--06 img,
.logo-planet--07 img {
  width: 78%;
  max-height: 78%;
  filter: none;
}

.work-hero__eyebrow {
  position: absolute;
  left: 50%;
  top: calc(50% + clamp(6.8rem, 11vw, 10.4rem));
  z-index: 7;
  width: min(27rem, 82vw);
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  transform: translateX(-50%);
}

.work-hero__title {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: min(72rem, 92vw);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.9rem, 8.4vw, 8.8rem);
  font-stretch: normal;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.work-hero__title .title-line {
  text-align: center;
}

.work-hero__title .title-line > span {
  white-space: nowrap;
}

.gallery-section {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 8% 18%, rgba(16, 16, 16, 0.045), transparent 18rem),
    radial-gradient(circle at 92% 42%, rgba(16, 16, 16, 0.038), transparent 22rem),
    var(--paper);
  color: var(--ink);
}

body.is-dark .gallery-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(235, 231, 223, 0.08), transparent 20rem),
    radial-gradient(circle at 86% 44%, rgba(235, 231, 223, 0.055), transparent 22rem),
    var(--paper);
}

.editorial-gallery {
  min-height: 100svh;
  padding: clamp(7rem, 12vw, 12rem) clamp(1rem, 3vw, 3rem)
    clamp(4rem, 8vw, 8rem);
  isolation: isolate;
}

.editorial-gallery::before {
  position: absolute;
  left: clamp(1rem, 3vw, 3rem);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    rgba(16, 16, 16, 0),
    rgba(16, 16, 16, 0.16),
    rgba(16, 16, 16, 0)
  );
  content: "";
  opacity: 0.65;
}

body.is-dark .editorial-gallery::before {
  background: linear-gradient(
    rgba(235, 231, 223, 0),
    rgba(235, 231, 223, 0.18),
    rgba(235, 231, 223, 0)
  );
}

.editorial-intro,
.editorial-statement {
  position: relative;
  z-index: 2;
  width: min(78rem, 92vw);
  margin: 0 auto;
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(9rem, 0.3fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 6rem);
  min-height: 86svh;
  align-content: center;
}

.editorial-label,
.editorial-kicker,
.editorial-stat,
.vertical-label,
.editorial-meta {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 0.78vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.28;
  text-transform: uppercase;
}

.editorial-label {
  margin: 0;
}

.editorial-intro h2,
.editorial-statement h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.6rem, 12.4vw, 15rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.82;
  text-transform: lowercase;
}

.editorial-intro > p:last-child {
  grid-column: 2;
  max-width: 35rem;
  margin: clamp(1rem, 2vw, 1.8rem) 0 0 auto;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  font-weight: 300;
  line-height: 1.18;
}

.editorial-project {
  position: relative;
  z-index: 2;
  min-height: 112svh;
  width: min(100%, 96rem);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 9rem) 0;
}

.editorial-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #161616;
  color: #f1eee8;
  clip-path: inset(0);
  transform: translateZ(0);
  transition:
    opacity 420ms var(--ease),
    filter 420ms var(--ease);
  will-change: transform, opacity, filter;
}

.editorial-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.42)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 48%);
  content: "";
  opacity: 0.76;
  pointer-events: none;
}

.editorial-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) saturate(0.9) contrast(1.08);
  transform: scale(1.04);
  transition:
    filter 620ms var(--ease),
    transform 900ms var(--ease);
  will-change: transform, filter;
}

.editorial-image:hover img {
  filter: grayscale(0.04) saturate(0.96) contrast(1.12) brightness(1.06);
  transform: scale(1.075);
}

.editorial-image--portrait {
  width: min(42rem, 48vw);
  height: min(82svh, 58rem);
}

.editorial-image--landscape {
  width: min(74rem, 70vw);
  height: min(68svh, 42rem);
}

.editorial-image--crop {
  width: min(36rem, 42vw);
  height: min(76svh, 50rem);
}

.editorial-image--left {
  margin-left: clamp(-2rem, -3vw, -1rem);
}

.editorial-image--right {
  margin-left: auto;
  margin-right: clamp(-2rem, -3vw, -1rem);
}

.editorial-copy {
  position: relative;
  z-index: 3;
  width: min(38rem, 48vw);
  color: var(--ink);
  will-change: transform, opacity, filter;
}

.editorial-copy--right {
  margin: clamp(-18rem, -18vw, -10rem) 8vw 0 auto;
}

.editorial-copy--left {
  margin: clamp(-12rem, -13vw, -8rem) auto 0 5vw;
}

.editorial-copy--floating {
  margin: clamp(-15rem, -18vw, -9rem) 0 0 auto;
  padding-right: clamp(1rem, 12vw, 12rem);
}

.editorial-kicker {
  margin: 0 0 clamp(0.8rem, 1.6vw, 1.4rem);
}

.editorial-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.2vw, 7.4rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-transform: lowercase;
}

.editorial-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 2vw, 2rem);
  margin: clamp(1.6rem, 3vw, 3rem) 0 0;
}

.editorial-meta div {
  display: grid;
  gap: 0.3rem;
  border-top: 1px solid var(--line);
  padding-top: 0.65rem;
}

.editorial-meta dt,
.editorial-meta dd {
  margin: 0;
}

.editorial-meta dd {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(0.86rem, 1.1vw, 1rem);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.vertical-label {
  position: absolute;
  left: clamp(-0.3rem, 0.3vw, 0.4rem);
  top: 22%;
  z-index: 4;
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.editorial-stat {
  position: absolute;
  left: 18%;
  bottom: 16%;
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.editorial-project--wide {
  min-height: 105svh;
}

.editorial-project--detail {
  min-height: 118svh;
}

.editorial-project--detail .editorial-image img {
  object-position: 58% center;
}

.editorial-statement {
  min-height: 88svh;
  display: grid;
  align-content: center;
  justify-items: end;
}

.editorial-statement .editorial-label {
  width: min(31rem, 74vw);
  margin: 0 0 clamp(1rem, 2vw, 1.8rem);
}

.editorial-statement h2 {
  width: min(78rem, 90vw);
  text-align: right;
}

.work-page .contact-section {
  border-top: 0;
  background: #11100e;
  color: #ebe7df;
}

.work-page.is-dark .contact-section {
  background: #ebe7df;
  color: #11100e;
}

.work-page .contact-section p {
  color: rgba(235, 231, 223, 0.72);
}

.work-page.is-dark .contact-section p {
  color: rgba(17, 16, 14, 0.62);
}

.portfolio-reel {
  min-height: 240svh;
  overflow: clip;
  background: #e8e8e6;
  color: #111;
}

body.is-dark .portfolio-reel {
  background: #10100e;
  color: #f3f0ea;
}

.portfolio-reel > .site-header {
  position: absolute;
  top: clamp(0.85rem, 1.5vw, 1.35rem);
  left: clamp(0.85rem, 1.5vw, 1.35rem);
  right: clamp(0.85rem, 1.5vw, 1.35rem);
  z-index: 30;
  color: #101010;
}

body.is-dark .portfolio-reel > .site-header {
  color: #f3f0ea;
}

.portfolio-reel__pin {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 0;
}

.portfolio-reel__frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.76fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 5rem);
  width: 100%;
  min-height: 100svh;
  border: 0;
  border-radius: 0;
  padding: clamp(2rem, 5vw, 5.5rem) clamp(1rem, 5vw, 5.5rem);
  isolation: isolate;
}

.portfolio-reel__rail {
  position: absolute;
  left: clamp(0.7rem, 1.6vw, 1.5rem);
  top: clamp(1rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  display: grid;
  align-content: space-between;
  color: rgba(17, 17, 17, 0.44);
  font-family: var(--font-mono);
  font-size: clamp(0.45rem, 0.58vw, 0.58rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

body.is-dark .portfolio-reel__rail {
  color: rgba(243, 240, 234, 0.46);
}

.portfolio-reel__copy {
  position: relative;
  z-index: 5;
  align-self: center;
  padding-left: clamp(1.5rem, 3.2vw, 3rem);
}

.portfolio-reel__kicker {
  margin: 0 0 clamp(0.9rem, 1.5vw, 1.25rem);
  font-family: var(--font-mono);
  font-size: clamp(0.58rem, 0.72vw, 0.72rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-reel h2 {
  margin: 0 0 clamp(1.2rem, 2.2vw, 2rem);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: none;
}

.portfolio-index {
  display: grid;
  gap: 0.18rem;
  max-width: 29rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portfolio-index li {
  display: grid;
  grid-template-columns: minmax(0, auto) auto;
  align-items: baseline;
  justify-content: start;
  justify-items: start;
  gap: 0.55rem;
  color: #101010;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.85rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-align: left;
  transition:
    color 480ms var(--ease),
    opacity 480ms var(--ease),
    transform 480ms var(--ease);
}

body.is-dark .portfolio-index li {
  color: #f3f0ea;
}

.portfolio-index li.is-active {
  color: #080808;
  font-weight: 400;
  transform: none;
}

body.is-dark .portfolio-index li.is-active {
  color: #f3f0ea;
}

.portfolio-index small {
  color: #101010;
  font-family: var(--font-mono);
  font-size: clamp(0.48rem, 0.58vw, 0.62rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

body.is-dark .portfolio-index small {
  color: #f3f0ea;
}

.portfolio-index li:not(.is-active) small {
  opacity: 1;
}

.portfolio-index__link {
  display: contents;
}

.portfolio-index__link:focus-visible span {
  outline: 1px solid currentColor;
  outline-offset: 0.12em;
}

.portfolio-reel__media {
  position: absolute;
  right: clamp(1rem, 6vw, 7rem);
  top: 50%;
  z-index: 3;
  width: min(38vw, 34rem);
  aspect-ratio: 1;
  height: auto;
  overflow: hidden;
  transform: translateY(-50%);
  pointer-events: none;
}

.portfolio-reel__track {
  display: grid;
  gap: 0;
  padding: 0;
  will-change: transform;
}

.portfolio-reel__card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  overflow: hidden;
  border-radius: clamp(0.75rem, 1.3vw, 1.25rem);
  background: #cfcfcb;
  pointer-events: auto;
  transform: translateZ(0);
  transition:
    opacity 420ms var(--ease),
    filter 420ms var(--ease),
    transform 620ms var(--ease);
  will-change: transform, opacity, filter;
}

body.is-dark .portfolio-reel__card {
  background: #1d1c1a;
}

.portfolio-reel__card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 42%);
  content: "";
  opacity: 0.45;
}

.portfolio-reel__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.96);
  transform: scale(1.04);
  transition:
    filter 600ms var(--ease),
    transform 800ms var(--ease);
}

.portfolio-reel__card:hover {
  filter: brightness(1.05);
  transform: scale(1.012);
}

.portfolio-reel__card:hover img {
  filter: saturate(0.92) contrast(1.08) brightness(1.04);
  transform: scale(1.08);
}

.portfolio-reel__card--crop img {
  object-position: 54% 24%;
}

.portfolio-reel__card--tight img {
  object-position: 50% 12%;
}

.case-study {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(0.9rem, 1.55vw, 1.4rem) clamp(1rem, 3.2vw, 4rem)
    clamp(2.5rem, 5vw, 5rem);
  background: var(--paper);
}

.case-study .site-header {
  color: var(--ink);
}

.case-study__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(17rem, 0.62fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
}

.case-study__eyebrow,
.case-study__meta dt,
.case-study__nav a {
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 0.76vw, 0.76rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.case-study__eyebrow {
  margin: 0 0 clamp(1rem, 2vw, 1.8rem);
  color: var(--muted);
}

.case-study h1 {
  max-width: 7em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 9.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.case-study__summary {
  max-width: 33rem;
  margin: clamp(1.4rem, 2.4vw, 2.2rem) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 400;
  line-height: 1.18;
}

.case-study__image {
  margin: 0;
  overflow: hidden;
  border-radius: clamp(0.85rem, 1.2vw, 1.2rem);
  background: var(--panel);
  aspect-ratio: 1;
}

.case-study__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06);
}

.case-study__image--top img {
  object-position: 50% 16%;
}

.about-study__mark {
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.about-study__mark img {
  width: min(78%, 22rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1rem 1.4rem rgba(16, 16, 16, 0.12));
}

body.is-dark .about-study__mark img {
  filter: drop-shadow(0 1rem 1.4rem rgba(0, 0, 0, 0.35));
}

.about-study__layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.48fr);
  align-items: center;
}

.about-study__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
}

.about-study__portrait img {
  object-position: 50% 45%;
}

.about-study__portrait figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  border-radius: 999px;
  background: rgba(244, 241, 235, 0.84);
  color: #101010;
  padding: 0.5rem 0.65rem;
  font-family: var(--font-mono);
  font-size: clamp(0.55rem, 0.68vw, 0.68rem);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

body.is-dark .about-study__portrait figcaption {
  background: rgba(16, 16, 15, 0.74);
  color: #f4f1eb;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(10rem, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(1.5rem, 5vw, 6rem);
  padding: clamp(3.2rem, 7vw, 7rem) clamp(1rem, 3.2vw, 4rem);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.about-section__label {
  position: sticky;
  top: 1.1rem;
  align-self: start;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 0.76vw, 0.76rem);
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.about-section__body {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2.75rem);
}

.about-section h2 {
  max-width: 9em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.8vw, 6.25rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.about-copy {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
}

.about-copy p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.65vw, 1.62rem);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.18;
}

.about-principles,
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}

.about-principles article,
.about-services-grid article,
.about-stats div {
  border-top: 1px solid var(--line);
  padding-top: clamp(0.8rem, 1.4vw, 1.2rem);
}

.about-principles h3,
.about-services-grid h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.about-principles p,
.about-services-grid p,
.about-stats p {
  max-width: 24rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.88rem, 1.05vw, 1.02rem);
  line-height: 1.28;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.5rem);
}

.about-stats strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.2vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.85;
}

.about-stats span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(0.6rem, 0.75vw, 0.75rem);
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.about-client-list {
  display: grid;
  gap: 0;
  max-width: 48rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-client-list li {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  font-size: clamp(1.02rem, 1.5vw, 1.42rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.about-client-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.about-section__nav {
  max-width: 48rem;
}

.services-study__layout {
  grid-template-columns: minmax(0, 0.74fr) minmax(16rem, 0.46fr);
}

.services-study__panel {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 0.7rem;
  min-height: min(42rem, 58vh);
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), var(--line) 100%) 0 0 /
      20% 100%,
    linear-gradient(0deg, transparent calc(100% - 1px), var(--line) 100%) 0 0 /
      100% 20%,
    var(--panel);
}

.services-study__panel span {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 0.6rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: clamp(0.66rem, 0.76vw, 0.78rem);
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.services-details__main {
  display: grid;
  gap: clamp(1.5rem, 2.4vw, 2.6rem);
}

.services-page__list h3 {
  font-size: clamp(2.2rem, 5.6vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  text-transform: none;
}

.services-page__list article::before {
  background: var(--ink);
}

.services-page__list article:hover {
  color: var(--paper);
}

.services-page__list article:hover p {
  color: rgba(244, 240, 232, 0.72);
}

body.is-dark .services-page__list article::before {
  background: #f1ede5;
}

body.is-dark .services-page__list article:hover {
  color: #10100f;
}

body.is-dark .services-page__list article:hover p {
  color: rgba(16, 16, 15, 0.68);
}

.contact-study__layout {
  grid-template-columns: minmax(0, 0.58fr) minmax(20rem, 0.62fr);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: clamp(1rem, 1.7vw, 1.4rem);
  padding: clamp(1rem, 2.2vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--panel);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.7vw, 1.4rem);
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-form span,
.contact-form__footer p {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 0.76vw, 0.76rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  font-weight: 400;
  line-height: 1.2;
  outline: 0;
  padding: 0.2rem 0 0.68rem;
  transition:
    border-color 220ms var(--ease),
    color 220ms var(--ease);
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: currentColor;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
}

.contact-form__footer button {
  border: 1px solid currentColor;
  border-radius: 999rem;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 0.78vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 0.95rem 1.15rem;
  text-transform: uppercase;
  transition:
    background-color 220ms var(--ease),
    color 220ms var(--ease),
    transform 220ms var(--ease);
}

.contact-form__footer button:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-0.08rem);
}

.contact-form__footer p {
  max-width: 14rem;
  margin: 0;
  text-align: right;
}

body.is-dark .contact-form__footer button {
  background: #f1ede5;
  color: #10100f;
}

body.is-dark .contact-form__footer button:hover {
  background: transparent;
  color: var(--ink);
}

.case-details {
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(1.5rem, 5vw, 6rem);
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1rem, 3.2vw, 4rem);
  border-top: 1px solid var(--line);
}

.case-study__meta {
  display: grid;
  gap: 1.2rem;
  margin: 0;
}

.case-study__meta div {
  display: grid;
  gap: 0.35rem;
}

.case-study__meta dt {
  color: var(--muted);
}

.case-study__meta dd {
  margin: 0;
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  line-height: 1.2;
}

.case-details__copy {
  display: grid;
  gap: clamp(1.2rem, 2vw, 2rem);
}

.case-details__copy p {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(1.35rem, 2.25vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.case-study__nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.case-study__nav a {
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
}

.case-study__nav a:hover {
  opacity: 0.62;
  transform: translateY(-0.08rem);
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-list article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(12rem, 0.55fr) 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: clamp(1rem, 2.5vw, 2rem) 0;
  overflow: hidden;
  isolation: isolate;
  transition: color 220ms var(--ease);
}

.service-list article::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms var(--ease);
}

.service-list article:hover::before {
  transform: scaleX(1);
}

.service-list article:hover p {
  color: var(--ink);
}

.service-list h3,
.service-list p {
  margin: 0;
}

.service-list h3 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.service-list p {
  align-self: end;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.55rem);
  font-weight: 400;
  line-height: 1.15;
}

.approach-section {
  display: grid;
  grid-template-columns: minmax(10rem, 0.32fr) 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  border-top: 1px solid var(--line);
}

.approach-section > p:last-child {
  grid-column: 2;
  max-width: 40rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.18;
}

.contact-section {
  min-height: 88svh;
  display: grid;
  align-content: end;
  border-top: 1px solid var(--line);
  background: var(--orange);
  color: #101010;
}

.contact-section p {
  max-width: 48rem;
  margin: 1rem 0 2rem;
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
}

.contact-section a {
  justify-self: start;
  border-bottom: 0.12em solid currentColor;
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 500;
  text-transform: uppercase;
}

.home-page {
  --home-gutter: clamp(1rem, 3.2vw, 4rem);
  --home-section-space: clamp(3.5rem, 6.6vw, 6rem);
  --home-grid-small: minmax(10rem, 0.382fr);
  --home-grid-large: minmax(0, 0.618fr);
}

.home-page .hero {
  background: #e8e8e5;
  padding: clamp(0.9rem, 1.55vw, 1.4rem) var(--home-gutter);
}

body.is-dark.home-page .hero {
  background: #151513;
}

.hero-halftone {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.94;
  mix-blend-mode: multiply;
  pointer-events: none;
  contain: strict;
}

.hero-halftone__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

body.is-dark.home-page .hero-halftone {
  opacity: 0.72;
  mix-blend-mode: screen;
}

.home-page .site-header {
  font-size: clamp(0.68rem, 0.82vw, 0.78rem);
  font-weight: 400;
}

.home-page .theme-button,
.home-page .sound-button {
  font-family: var(--font-mono);
  font-size: clamp(0.6rem, 0.72vw, 0.7rem);
  font-weight: 400;
}

.home-page .intro-copy {
  left: var(--home-gutter);
  width: min(15rem, 26vw);
}

.home-page .intro-copy p {
  font-family: var(--font-mono);
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  line-height: 1.24;
}

.home-page .hero-title {
  max-width: min(88rem, 100%);
  font-size: clamp(2.8rem, 5.85vw, 6.6rem);
  font-weight: 400;
  line-height: 0.97;
}

.home-page .manifesto,
.home-page .work-section,
.home-page .services-section,
.home-page .approach-section,
.home-page .contact-section {
  padding: var(--home-section-space) var(--home-gutter);
}

.home-page .manifesto,
.home-page .approach-section {
  grid-template-columns: var(--home-grid-small) var(--home-grid-large);
  gap: clamp(1.6rem, 4.8vw, 5.2rem);
}

.home-page .manifesto h2,
.home-page .approach-section h2,
.home-page .contact-section h2 {
  max-width: 12.5em;
  font-size: clamp(2.15rem, 4.4vw, 4.9rem);
  font-weight: 400;
  line-height: 1;
}

.home-page .manifesto-list {
  margin-top: clamp(1.6rem, 3.2vw, 3rem);
}

.home-page .manifesto-list p {
  padding: 0.62rem 0;
  font-size: clamp(1.1rem, 2vw, 2.2rem);
  line-height: 1.16;
}

.home-page .section-heading {
  margin-bottom: clamp(1.2rem, 2.7vw, 2.4rem);
  padding-bottom: 0.7rem;
}

.home-page .section-heading h2 {
  font-size: clamp(1.8rem, 3.65vw, 4.15rem);
  font-weight: 400;
  line-height: 1;
}

.home-page .section-kicker,
.home-page .section-heading a,
.home-page .work-card span,
.home-page .scroll-cue {
  font-size: clamp(0.64rem, 0.76vw, 0.74rem);
}

.home-page .work-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.45vw, 1.25rem);
}

.home-page .work-card {
  min-height: clamp(15rem, 24vw, 21rem);
  padding: clamp(0.85rem, 1.25vw, 1.1rem);
}

.home-page .work-card h3 {
  font-size: clamp(1.15rem, 2vw, 2rem);
  line-height: 1.12;
}

.home-page .service-list article {
  grid-template-columns: var(--home-grid-small) var(--home-grid-large);
  padding: clamp(0.85rem, 1.9vw, 1.55rem) 0;
}

.home-page .service-list h3 {
  font-size: clamp(1.35rem, 2.85vw, 3.15rem);
  font-weight: 400;
  line-height: 1.08;
}

.home-page .service-list p,
.home-page .approach-section > p:last-child {
  max-width: 31rem;
  font-size: clamp(0.98rem, 1.35vw, 1.28rem);
  line-height: 1.28;
}

.home-page .contact-section {
  min-height: 72svh;
}

.home-page .contact-section p {
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.8vw, 1.7rem);
  line-height: 1.18;
}

.home-page .contact-section a {
  font-size: clamp(0.98rem, 1.35vw, 1.25rem);
}

@media (max-width: 58rem) {
  .site-header {
    grid-template-columns: 1fr auto auto auto;
  }

  .theme-button,
  .sound-button {
    display: inline-flex;
  }

  .home-page .theme-button,
  .home-page .sound-button {
    font-size: clamp(0.54rem, 2.1vw, 0.62rem);
  }

  .talk-link {
    display: none;
  }

  .service-nav {
    display: none;
  }

  .location-strip {
    left: 0.85rem;
    right: auto;
    max-width: 17rem;
    text-align: left;
  }

  .intro-copy {
    top: 9rem;
    left: auto;
    right: 0.85rem;
    width: 12rem;
  }

  .home-page .intro-copy {
    width: 10.5rem;
  }

  .home-page .intro-copy p {
    font-size: clamp(0.64rem, 2.45vw, 0.76rem);
    line-height: 1.28;
  }

  .sound-field {
    right: 0.85rem;
    bottom: 10rem;
    height: 4.4rem;
    grid-template-columns: repeat(8, 0.18rem);
  }

  .hero-title {
    font-size: clamp(3.5rem, 9vw, 11rem);
    line-height: 0.92;
  }

  .home-page .hero-title {
    font-size: clamp(2.45rem, 11vw, 4rem);
    line-height: 1;
  }

  .home-page .hero-halftone {
    opacity: 0.96;
  }

  body.is-dark.home-page .hero-halftone {
    opacity: 0.88;
  }

  .title-line > span {
    white-space: normal;
  }

  .manifesto,
  .approach-section {
    grid-template-columns: 1fr;
  }

  .manifesto h2 {
    font-size: clamp(3.5rem, 9vw, 11rem);
    line-height: 0.92;
  }

  .home-page .manifesto h2,
  .home-page .approach-section h2,
  .home-page .contact-section h2 {
    font-size: clamp(2rem, 8.8vw, 3.45rem);
    line-height: 1.02;
  }

  .home-page .manifesto,
  .home-page .approach-section {
    grid-template-columns: 1fr;
  }

  .manifesto-list,
  .approach-section > p:last-child {
    grid-column: auto;
  }

  .logo-marquee {
    margin-top: 2rem;
    padding: 0.65rem 0;
  }

  .logo-marquee__group {
    gap: 1.1rem;
    padding-right: 1.1rem;
  }

  .logo-marquee__item {
    width: clamp(2.8rem, 13vw, 4.2rem);
    height: clamp(2rem, 9vw, 3rem);
  }

  .home-page .manifesto-list p {
    font-size: clamp(1.08rem, 5vw, 1.85rem);
  }

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

  .home-page .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    min-height: 23rem;
  }

  .home-page .work-card {
    min-height: 20rem;
  }

  .case-study {
    min-height: auto;
    gap: 2.4rem;
    padding: 0.85rem 0.85rem 2.8rem;
  }

  .case-study__layout,
  .case-details {
    grid-template-columns: 1fr;
  }

  .case-study h1 {
    max-width: 6.5em;
    font-size: clamp(3rem, 15vw, 5.4rem);
    line-height: 0.9;
  }

  .case-study__summary {
    max-width: 24rem;
  }

  .case-study__image {
    width: 100%;
  }

  .about-study__layout,
  .about-section {
    grid-template-columns: 1fr;
  }

  .about-study__portrait {
    aspect-ratio: 1;
  }

  .about-study__portrait figcaption {
    left: 0.8rem;
    bottom: 0.8rem;
  }

  .about-section {
    gap: 1.6rem;
    padding: 3rem 0.85rem;
  }

  .about-section__label {
    position: static;
  }

  .about-section h2 {
    font-size: clamp(2.2rem, 12vw, 4.4rem);
    line-height: 0.92;
  }

  .about-copy p {
    font-size: clamp(1rem, 5.1vw, 1.45rem);
    line-height: 1.2;
  }

  .about-principles,
  .about-services-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-client-list li {
    font-size: clamp(1rem, 4.8vw, 1.35rem);
  }

  .services-study__panel {
    min-height: 20rem;
  }

  .contact-form__grid,
  .contact-study__layout {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1rem;
  }

  .contact-form__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form__footer p {
    max-width: 100%;
    text-align: left;
  }

  .case-details {
    gap: 2.4rem;
    padding: 2.8rem 0.85rem;
  }

  .case-study__nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-list article {
    grid-template-columns: 1fr;
  }

  .home-page .service-list article {
    grid-template-columns: 1fr;
  }

  .home-page .service-list h3 {
    font-size: clamp(1.45rem, 6.6vw, 2.55rem);
  }

  .services-page__list h3 {
    font-size: clamp(2.1rem, 12vw, 4.6rem);
  }

  .work-hero__eyebrow {
    top: calc(52% + 6rem);
    left: 50%;
    right: auto;
    width: min(18rem, 82vw);
    font-size: 0.95rem;
  }

  .work-hero__title {
    top: 52%;
    width: min(32rem, 92vw);
    font-size: clamp(3.1rem, 13vw, 4.8rem);
    line-height: 1;
  }

  .logo-space::before {
    left: -22%;
    top: 12%;
    width: 126vw;
    height: 48vh;
  }

  .logo-space::after {
    right: -52%;
    bottom: 8%;
    width: 104vw;
    height: 34vh;
  }

  .logo-planet {
    width: min(var(--size), 4.6rem);
  }

  .logo-planet--06,
  .logo-planet--07,
  .logo-planet--08,
  .logo-planet--14,
  .logo-planet--17 {
    width: min(var(--size), 5.4rem);
  }

  .editorial-gallery {
    padding: 5rem 0.85rem 3rem;
  }

  .editorial-gallery::before {
    left: 0.85rem;
  }

  .editorial-intro {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    min-height: 72svh;
    width: 100%;
  }

  .editorial-intro h2,
  .editorial-statement h2 {
    font-size: clamp(3.6rem, 16vw, 5.8rem);
    letter-spacing: -0.045em;
    line-height: 0.86;
  }

  .editorial-intro > p:last-child {
    grid-column: auto;
    margin: 0;
    max-width: 24rem;
    font-size: 1rem;
  }

  .editorial-project {
    min-height: auto;
    padding: 4.2rem 0;
  }

  .editorial-image--portrait,
  .editorial-image--landscape,
  .editorial-image--crop {
    width: calc(100vw - 1.7rem);
    height: 70svh;
  }

  .editorial-image--left,
  .editorial-image--right {
    margin-left: 0;
    margin-right: 0;
  }

  .editorial-copy,
  .editorial-copy--right,
  .editorial-copy--left,
  .editorial-copy--floating {
    width: min(100%, 28rem);
    margin: -5rem 0 0 auto;
    padding-right: 0;
  }

  .editorial-copy h3 {
    font-size: clamp(2.7rem, 13vw, 4.8rem);
    line-height: 0.9;
  }

  .editorial-meta {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .vertical-label,
  .editorial-stat {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    margin: 0 0 1rem;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .editorial-statement {
    min-height: 70svh;
    justify-items: start;
  }

  .editorial-statement h2 {
    width: 100%;
    text-align: left;
  }

  .portfolio-reel {
    min-height: 190svh;
  }

  .portfolio-reel__pin {
    padding: 0;
  }

  .portfolio-reel__frame {
    grid-template-columns: 1fr;
    align-items: end;
    width: 100%;
    min-height: 100svh;
    padding: 2rem 0.95rem 2rem 1.15rem;
    border: 0;
    border-radius: 0;
  }

  .portfolio-reel__copy {
    align-self: center;
    padding-left: 0;
    padding-right: 39%;
  }

  .portfolio-reel h2 {
    font-size: 1rem;
    margin-bottom: 0.9rem;
  }

  .portfolio-index {
    max-width: 15.8rem;
  }

  .portfolio-index li {
    grid-template-columns: 1fr;
    gap: 0.16rem;
    font-size: clamp(1.18rem, 6.1vw, 1.82rem);
    letter-spacing: -0.045em;
  }

  .portfolio-index small {
    font-size: 0.48rem;
  }

  .portfolio-reel__media {
    right: 0.95rem;
    width: 39%;
    aspect-ratio: 1;
    min-height: 0;
  }

  .portfolio-reel__card {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
  }
}

@media (max-width: 25rem) {
  .hero-title {
    font-size: clamp(3.5rem, 9vw, 11rem);
  }

  .manifesto h2 {
    font-size: clamp(3.5rem, 9vw, 11rem);
  }

  .intro-copy {
    width: 10rem;
  }
}

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

  .brand-mark--logo:hover img,
  .brand-mark--logo.is-dancing img {
    animation: none;
  }

  .sound-button[data-sound="on"]::after,
  .sound-field span {
    animation: none;
  }
}

@keyframes pixel-signal {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

@keyframes sound-bars {
  0%,
  100% {
    transform: scaleY(0.24);
  }

  50% {
    transform: scaleY(1);
  }
}

@keyframes mascot-dance {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  16% {
    transform: translateY(-0.45rem) rotate(-8deg) scale(1.03);
  }

  32% {
    transform: translateY(0.1rem) rotate(7deg) scale(0.99);
  }

  48% {
    transform: translateY(-0.35rem) rotate(-5deg) scale(1.04);
  }

  64% {
    transform: translateY(0.08rem) rotate(4deg) scale(1);
  }

  82% {
    transform: translateY(-0.18rem) rotate(-2deg) scale(1.02);
  }
}

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

  to {
    transform: translate3d(-50%, 0, 0);
  }
}
