@font-face {
  font-family: "Didot Itoko";
  src: url("/fonts/didot-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Didot Itoko";
  src: url("/fonts/didot-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Next Itoko";
  src: url("/fonts/avenir-next-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --burgundy: #762723;
  --terracotta: #c95f35;
  --paper: #efe9e1;
  --sand: #e2dbd2;
  --mustard: #e2a437;
  --forest: #3d473a;
  --petrol: #314f62;
  --ink: #1e1e1c;
  --signal: var(--forest);
  --blue: var(--petrol);
  --acid: var(--mustard);
}

/* Conversation-led homepage */
.itoko-home {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}
.conversation-header {
  position: relative;
  inset: auto;
  height: 76px;
  padding: 20px 2vw;
  background: var(--paper);
  border-bottom: 1px solid rgba(30, 30, 28, 0.32);
}
.conversation-header nav {
  gap: 34px;
}
.conversation-header nav a {
  position: relative;
}
.conversation-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--burgundy);
  transition: right 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.conversation-header nav a:hover::after {
  right: 0;
}

.capability-band {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 12px 0 11px;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid rgba(30, 30, 28, 0.32);
  font:
    800 clamp(15px, 1.45vw, 24px) / 1 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.capability-track,
.capability-sequence,
.capability-item {
  display: flex;
  align-items: center;
  min-width: max-content;
}
.capability-track {
  animation: ticker 38s linear infinite;
}
.capability-separator {
  flex: 0 0 auto;
  width: 0.72em;
  height: 0.72em;
  margin: 0 0.58em;
  background: var(--burgundy);
  -webkit-mask: url("/brand/itoko-isotipo.png") center/contain no-repeat;
  mask: url("/brand/itoko-isotipo.png") center/contain no-repeat;
}

.brand-conversation {
  background: var(--paper);
  color: var(--ink);
}
.conversation-meta {
  display: flex;
  justify-content: space-between;
  margin: 0 2vw;
  padding: 15px 0 0;
  border-top: 1px solid var(--ink);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.conversation-meta span:last-child {
  color: var(--petrol);
}
.conversation-opening {
  display: grid;
  grid-template-columns: minmax(0, 3fr) 1fr;
  gap: 5vw;
  min-height: calc(100svh - 118px);
  align-items: end;
  padding: 6svh 2vw 5svh;
}
.conversation-opening h1 {
  grid-column: 1/-1;
  max-width: none;
  margin: 0;
  font:
    700 min(11.7vw, 18.5svh) / 0.78 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.12em;
}
.conversation-opening h1 > .reveal-line:first-child {
  color: var(--ink);
  font-style: normal;
  padding-left: 0;
}
.conversation-opening h1 > em.reveal-line {
  display: block;
  color: var(--forest);
  font-style: italic;
  font-weight: 400;
  padding-left: 13vw;
}
.conversation-opening h1 .reveal-line > span {
  color: inherit;
  font-style: inherit;
  padding-left: 0;
}
.conversation-opening > p {
  grid-column: 2;
  max-width: 390px;
  margin: 0;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.45;
}

.conversation-examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(30, 30, 28, 0.4);
  border-bottom: 1px solid rgba(30, 30, 28, 0.4);
}
.conversation-examples article {
  min-height: 54vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 3vw 3vw;
}
.conversation-examples article:first-child {
  border-right: 1px solid rgba(30, 30, 28, 0.4);
}
.conversation-examples article > span {
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 800;
}
.conversation-examples article:nth-child(2) > span {
  color: var(--petrol);
}
.conversation-examples article p {
  max-width: 720px;
  margin: auto 0 0;
  font:
    700 clamp(32px, 3.1vw, 56px) / 1 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.035em;
}
.conversation-examples article strong {
  display: block;
  margin-top: 0.3em;
  color: var(--burgundy);
  font-style: italic;
  font-weight: 400;
}
.conversation-examples article:nth-child(2) strong {
  color: var(--petrol);
}

.conversation-turn {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 5vw;
  align-items: end;
  padding: 8vw 3vw 5vw;
}
.conversation-turn p {
  margin: 0;
}
.conversation-turn p:first-child {
  grid-row: 1/-1;
  align-self: end;
  font:
    700 clamp(52px, 6.3vw, 108px) / 0.86 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.06em;
}
.conversation-turn p:nth-child(2) {
  max-width: 520px;
  font-size: clamp(15px, 1.35vw, 21px);
  line-height: 1.5;
}
.conversation-turn > strong {
  padding-top: 20px;
  border-top: 3px solid var(--burgundy);
  color: var(--burgundy);
  font:
    italic 400 clamp(28px, 2.8vw, 46px) / 1 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
}

.project-showcase {
  padding: 28px 2vw 2vw;
  background: var(--sand);
  color: var(--ink);
  border-top: 6px solid var(--petrol);
}
.project-intro {
  min-height: 68vh;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4vw;
  align-items: end;
  padding-bottom: 4vw;
}
.project-intro > span {
  align-self: start;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.project-intro h2 {
  margin: 0;
  font:
    700 clamp(58px, 7.3vw, 125px) / 0.82 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.065em;
}
.project-intro h2 em {
  display: block;
  color: var(--burgundy);
  font-style: italic;
  font-weight: 400;
}
.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--ink);
}
.project-tile {
  --tile-accent: var(--burgundy);
  position: relative;
  min-height: 52vw;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.project-tile.project-tall {
  --tile-accent: var(--petrol);
}
.project-tile.project-standard {
  --tile-accent: var(--terracotta);
}
.project-tile.project-lead {
  grid-column: 1/-1;
  min-height: 58vw;
}
.project-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.35s ease;
}
.project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 45%);
}
.project-tile::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: var(--tile-accent);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.project-tile:hover img {
  transform: scale(1.035);
  filter: saturate(1.12);
}
.project-tile:hover::before {
  opacity: 0.18;
}
.project-tile-meta {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 0.55fr 2fr 0.55fr;
  gap: 20px;
  align-items: end;
}
.project-tile-meta > span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-tile-meta > span:last-child {
  text-align: right;
}
.project-tile-meta strong {
  font:
    400 clamp(28px, 3.7vw, 60px) / 0.9 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.045em;
}
.project-case-link {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: baseline;
  padding: 26px 0 18px;
  border-bottom: 1px solid var(--ink);
}
.project-case-link > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-case-link > span:last-child {
  color: var(--burgundy);
  font-size: 22px;
  transition: transform 0.3s ease;
}
.project-case-link strong {
  font:
    400 clamp(30px, 4vw, 62px) / 1 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
}
.project-case-link:hover > span:last-child {
  transform: translate(5px, -5px);
}

.closing-conversation {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 26px 3vw 0;
  background: var(--forest);
  color: var(--paper);
  border-top: 7px solid var(--burgundy);
}
.closing-meta {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(239, 233, 225, 0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.closing-conversation h2 {
  max-width: 1500px;
  margin: 8vw 0 6vw;
  font:
    700 clamp(68px, 9.5vw, 165px) / 0.79 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.075em;
}
.closing-conversation h2 em {
  display: block;
  color: var(--sand);
  font-style: italic;
  font-weight: 400;
}
.closing-copy {
  width: min(700px, 46vw);
  margin-left: auto;
}
.closing-copy p {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.35vw, 21px);
  line-height: 1.48;
}
.closing-link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 5vw;
  padding: 0 0 12px;
  border-bottom: 2px solid var(--paper);
  font:
    400 clamp(34px, 5vw, 82px) / 1 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
}
.closing-link span:last-child {
  color: var(--terracotta);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.closing-link:hover span:last-child {
  transform: translate(7px, -7px);
}
.conversation-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: end;
  margin: auto -3vw 0;
  padding: 7vw 3vw 26px;
  background: var(--forest);
  color: var(--paper);
  border-top: 0;
}
.conversation-footer > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.conversation-footer > div:nth-child(2) {
  justify-content: flex-end;
}
.conversation-footer small {
  grid-column: 1/-1;
  padding-top: 16px;
  border-top: 1px solid rgba(239, 233, 225, 0.45);
  color: var(--terracotta);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-align: right;
}

/* Motion is progressively enhanced: content remains visible without JavaScript. */
.reveal-line {
  display: block;
  overflow: hidden;
}
.reveal-line > span {
  display: block;
}
.motion-ready [data-reveal]:not([data-reveal="lines"]):not([data-reveal="project"]) {
  opacity: 0;
  transform: translate3d(0, 28px, 0) rotate(var(--reveal-rotate, 0deg));
  transition:
    opacity 0.7s ease var(--reveal-delay, 0ms),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}
.motion-ready [data-reveal]:not([data-reveal="lines"]):not([data-reveal="project"]).is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(var(--reveal-rotate, 0deg));
}
.motion-ready [data-reveal="lines"] .reveal-line > span {
  transform: translate3d(0, 112%, 0);
  transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}
.motion-ready [data-reveal="lines"].is-visible .reveal-line > span {
  transform: translate3d(0, 0, 0);
}
.motion-ready [data-reveal="lines"] .reveal-line:nth-child(2) > span {
  transition-delay: 110ms;
}
.motion-ready [data-reveal="project"] {
  opacity: 0.2;
  clip-path: inset(0 0 12% 0);
  transform: translate3d(0, 34px, 0) scale(0.992);
  transition:
    opacity 0.65s ease var(--reveal-delay, 0ms),
    clip-path 1s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}
.motion-ready [data-reveal="project"].is-visible {
  opacity: 1;
  clip-path: inset(0);
  transform: translate3d(0, 0, 0) scale(1);
}
.reveal-delay-1 {
  --reveal-delay: 110ms;
}
.reveal-delay-2 {
  --reveal-delay: 220ms;
}

@media (max-width: 760px) {
  .conversation-header {
    height: 68px;
    padding: 18px;
  }
  .conversation-header nav {
    gap: 18px;
  }
  .conversation-header nav a {
    display: block;
    font-size: 10px;
  }
  .capability-band {
    font-size: 14px;
    padding: 10px 0 9px;
  }
  .conversation-meta {
    margin: 0 18px;
    padding-top: 11px;
  }
  .conversation-opening {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 105px);
    padding: 10svh 18px 32px;
  }
  .conversation-opening h1 {
    grid-column: auto;
    width: 100%;
    font-size: 18vw;
    line-height: 0.84;
    text-align: left;
  }
  .conversation-opening h1 > em.reveal-line {
    padding-left: 0;
    text-align: left;
  }
  .conversation-opening > p {
    grid-column: auto;
    max-width: 75%;
    margin-left: auto;
    font-size: 16px;
  }
  .conversation-examples {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 18px 30px;
    border: 0;
    background: var(--paper);
  }
  .conversation-examples article {
    min-height: 78vw;
    padding: 20px 20px 26px;
    border-radius: 2px;
    color: var(--paper);
    box-shadow: 0 12px 28px rgba(30, 30, 28, 0.12);
    transform: rotate(var(--reveal-rotate));
    transition:
      filter 0.2s ease,
      box-shadow 0.25s ease,
      transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
  }
  .conversation-examples article:first-child {
    --reveal-rotate: -1.1deg;
    border: 0;
    background: var(--burgundy);
  }
  .conversation-examples article:nth-child(2) {
    --reveal-rotate: 1.1deg;
    background: var(--petrol);
  }
  .conversation-examples article:active {
    --reveal-rotate: 0deg;
    filter: brightness(1.08);
    box-shadow: 0 7px 16px rgba(30, 30, 28, 0.17);
  }
  .conversation-examples article > span,
  .conversation-examples article:nth-child(2) > span,
  .conversation-examples article strong,
  .conversation-examples article:nth-child(2) strong {
    color: var(--paper);
  }
  .conversation-examples article p {
    font-size: 9.2vw;
  }
  .conversation-turn {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 54px;
    padding: 90px 18px 70px;
  }
  .conversation-turn p:first-child {
    grid-row: auto;
    font-size: 13vw;
  }
  .conversation-turn p:nth-child(2) {
    max-width: 86%;
    margin-left: auto;
    font-size: 15px;
  }
  .conversation-turn > strong {
    font-size: 9vw;
  }
  .project-showcase {
    padding: 20px 18px 18px;
  }
  .project-intro {
    min-height: 64vh;
    grid-template-columns: 1fr;
    padding-bottom: 42px;
  }
  .project-intro h2 {
    font-size: 14vw;
  }
  .project-gallery {
    grid-template-columns: 1fr;
    margin: 0 -18px;
  }
  .project-tile,
  .project-tile.project-lead {
    grid-column: auto;
    min-height: 108vw;
  }
  .project-tile-meta {
    grid-template-columns: 1fr;
    gap: 8px;
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .project-tile-meta > span:last-child {
    text-align: left;
  }
  .project-tile-meta strong {
    font-size: 10vw;
  }
  .project-case-link {
    grid-template-columns: 1fr auto;
    gap: 15px;
    padding-top: 24px;
  }
  .project-case-link > span:first-child {
    grid-column: 1/-1;
  }
  .project-case-link strong {
    font-size: 8vw;
  }
  .closing-conversation {
    min-height: 100svh;
    padding: 20px 18px 0;
  }
  .closing-conversation h2 {
    margin: 22vw 0 16vw;
    font-size: 16vw;
    line-height: 0.88;
  }
  .closing-conversation h2 .reveal-line {
    padding-bottom: 0.16em;
    margin-bottom: -0.16em;
  }
  .closing-copy {
    width: 88%;
    margin-left: auto;
  }
  .closing-copy p {
    font-size: 15px;
  }
  .closing-link {
    margin-top: 18vw;
    font-size: 9vw;
  }
  .conversation-footer {
    grid-template-columns: 1fr;
    margin: auto -18px 0;
    padding: 90px 18px 22px;
  }
  .conversation-footer > div,
  .conversation-footer > div:nth-child(2) {
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .capability-track {
    animation: none;
  }
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next Itoko", "Avenir Next", Arial, sans-serif;
  font-weight: 600;
  font-synthesis: none;
}
a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  color: var(--ink);
  border-bottom: 1px solid rgba(30, 30, 28, 0.32);
}
.wordmark {
  display: block;
  width: fit-content;
  line-height: 0;
}
.wordmark img {
  display: block;
  width: auto;
  height: 34px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
}
nav a {
  transition: opacity 0.2s ease;
}
nav a:hover {
  opacity: 0.62;
}
.nav-cta {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.hero-lab {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  width: 100%;
  height: 100svh;
  min-height: 0;
  padding: clamp(76px, 7.7svh, 92px) 2vw 0;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}
.hero-lab-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 13px;
  border-top: 1px solid var(--ink);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-lab-top span:nth-child(2) {
  text-align: center;
}
.hero-lab-top span:last-child {
  text-align: right;
}
.hero-lab-title {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  font:
    800 min(18.5vw, 25svh) / 0.65 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  letter-spacing: -0.095em;
  white-space: nowrap;
}
.hero-lab-title > span {
  display: block;
  color: inherit;
  font-style: normal;
  padding-left: 0;
}
.hero-lab-title > span:first-child {
  align-self: end;
  padding-top: 0;
}
.hero-lab-title .matter {
  grid-column: 1/-1;
  align-self: start;
  justify-self: end;
  margin-top: -3.5svh;
}
.hero-lab-title .dot {
  display: inline;
  color: var(--terracotta);
  font-style: normal;
  padding: 0;
}
.hero-lab-bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 4vw;
  align-items: end;
  padding: 0 0 clamp(18px, 2.7svh, 32px);
}
.brand-path {
  display: flex;
  gap: 8px;
}
.brand-path > span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font:
    700 9px/1 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  text-transform: uppercase;
}
.brand-path small {
  color: var(--signal);
  font-size: 7px;
}
.hero-lab-bottom > p {
  max-width: 420px;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}
.hero-lab-bottom > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-lab-bottom > a span {
  color: var(--signal);
  font-size: 18px;
}
.hero-lab-ticker {
  display: flex;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: clamp(11px, 1.1vw, 16px) 0 clamp(10px, 1vw, 14px);
  background: var(--forest);
  color: var(--paper);
  font:
    800 clamp(17px, 2vw, 31px) / 0.95 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.hero-lab-ticker-track {
  display: flex;
  min-width: max-content;
  animation: ticker 32s linear infinite;
}
.hero-lab-ticker-track span {
  display: block;
  min-width: max-content;
}
@keyframes ticker {
  to {
    transform: translateX(-100%);
  }
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 57% 43%;
  position: relative;
  overflow: hidden;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 132px 4vw 7vh 3vw;
}
.eyebrow {
  margin: 0 0 auto;
  color: var(--signal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  max-width: 920px;
  margin: 0 0 28px;
  font:
    400 clamp(66px, 8.6vw, 148px) / 0.78 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.075em;
}
h1 span {
  display: block;
  color: var(--signal);
  font-style: italic;
  padding-left: 6vw;
}
.hero-intro {
  width: min(520px, 90%);
  margin: 0 0 30px;
  color: rgba(239, 233, 225, 0.76);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.45;
}
.primary-link {
  width: fit-content;
  display: flex;
  gap: 42px;
  align-items: center;
  border-bottom: 1px solid var(--paper);
  padding: 0 0 8px;
  font-size: 13px;
}
.primary-link span {
  color: var(--signal);
  font-size: 18px;
}
.hero-visual {
  margin: 0;
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 30, 28, 0.22), transparent 30%),
    linear-gradient(0deg, rgba(30, 30, 28, 0.45), transparent 30%);
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.04);
}
.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-index {
  position: absolute;
  left: 56%;
  bottom: 20px;
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.statement {
  min-height: 75vh;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 50px;
  align-items: end;
  padding: 8vw 3vw 5vw;
  background: var(--paper);
  color: var(--ink);
}
.statement > p {
  margin: 0;
  max-width: 1050px;
  font:
    400 clamp(54px, 7.4vw, 124px) / 0.86 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.065em;
}
.statement-note {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  font-size: 13px;
}
.statement-note strong {
  color: var(--forest);
  font:
    italic 400 29px/1 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
}

.section-kicker {
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(30, 30, 28, 0.34);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-kicker.light {
  border-color: rgba(30, 30, 28, 0.36);
}
.disciplines {
  padding: 30px 3vw 8vw;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(30, 30, 28, 0.18);
}
.discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
}
.discipline {
  min-height: 330px;
  padding: 20px 3vw 30px 20px;
  border: 1px solid rgba(30, 30, 28, 0.24);
  margin-left: -1px;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.discipline + .discipline {
  padding-left: 3vw;
}
.discipline:last-child {
  border-right: 0;
}
.discipline:nth-child(1):hover {
  background: var(--sand);
  color: var(--ink);
  transform: translateY(-12px) rotate(-1deg);
}
.discipline:nth-child(2):hover {
  background: var(--blue);
  color: white;
  transform: translateY(-12px) rotate(1deg);
}
.discipline:nth-child(3):hover {
  background: var(--forest);
  color: var(--paper);
  transform: translateY(-12px) rotate(-1deg);
}
.discipline:hover p {
  color: currentColor;
}
.discipline-number {
  display: block;
  color: var(--signal);
  font-size: 11px;
  margin-bottom: 80px;
}
.discipline h2 {
  margin: 0 0 18px;
  font:
    400 clamp(42px, 5vw, 80px) / 0.9 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.055em;
}
.discipline p {
  max-width: 340px;
  margin: 0;
  color: rgba(30, 30, 28, 0.66);
  font-size: 13px;
  line-height: 1.5;
}
.giant-line {
  margin: 8vw 0 0;
  font:
    400 clamp(58px, 9vw, 150px) / 0.82 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.07em;
}
.giant-line em {
  color: var(--forest);
  font-weight: 400;
}

.work-index {
  padding: 30px 2vw 2vw;
  background: var(--paper);
  color: var(--ink);
}
.work-index-head {
  display: grid;
  grid-template-columns: 0.75fr 2fr 1fr;
  gap: 4vw;
  align-items: end;
  min-height: 55vh;
  padding-bottom: 4vw;
}
.work-index-head > div {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.work-index-head > div span {
  color: var(--signal);
}
.work-index-head h2 {
  margin: 0;
  font:
    800 clamp(76px, 11vw, 175px) / 0.72 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}
.work-index-head h2 em {
  display: inline-block;
  color: var(--signal);
  font:
    italic 400 1.05em/0.7 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  text-transform: none;
  transform: rotate(-3deg);
}
.work-index-head > p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}
.work-filters {
  display: flex;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow-x: auto;
}
.work-filters button {
  flex: 1 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 13px 14px;
  border: 0;
  border-right: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font:
    700 9px/1 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}
.work-filters button:last-child {
  border-right: 0;
}
.work-filters button span {
  color: var(--signal);
  font-size: 7px;
}
.work-filters button.active,
.work-filters button:hover {
  background: var(--ink);
  color: var(--paper);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 2px;
  background: var(--ink);
}
.work-card {
  position: relative;
  min-height: 48vw;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.work-card.wide {
  grid-column: 1/-1;
  min-height: 55vw;
}
.work-card.tall {
  min-height: 65vw;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.35s ease;
}
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 42%);
}
.work-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.25);
}
.work-card-meta {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.5fr;
  gap: 20px;
  align-items: end;
}
.work-card-meta > span {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.work-card-meta > span:last-child {
  text-align: right;
}
.work-card-meta strong {
  font:
    400 clamp(28px, 4vw, 65px) / 0.9 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.04em;
}
.work-card-open {
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  transform: scale(0) rotate(-12deg);
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.3);
}
.work-card:hover .work-card-open {
  transform: scale(1) rotate(5deg);
}
.case-gateway {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: end;
  min-height: 52vh;
  padding: 5vw 0 2vw;
  border-bottom: 1px solid var(--ink);
}
.case-gateway > span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.case-gateway > span:last-child {
  text-align: right;
}
.case-gateway strong {
  text-align: center;
  color: var(--signal);
  font:
    italic 400 clamp(100px, 18vw, 280px) / 0.65 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.09em;
  transition: transform 0.3s ease;
}
.case-gateway:hover strong {
  transform: scale(1.05) rotate(-2deg);
}

.impact {
  position: relative;
  min-height: 100vh;
  padding: 7vw 3vw 4vw;
  overflow: hidden;
  background: var(--sand);
  color: var(--ink);
}
.impact-badge {
  position: absolute;
  right: -5vw;
  top: 4vw;
  width: 22vw;
  height: 22vw;
  border: 1px solid rgba(61, 71, 58, 0.55);
  border-radius: 50%;
  background: transparent;
  color: var(--forest);
  display: grid;
  place-items: center;
  animation: spin 18s linear infinite;
}
.impact-badge span {
  width: 70%;
  text-align: center;
  font:
    800 clamp(12px, 1.6vw, 24px) / 1.2 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.impact-copy {
  display: grid;
  grid-template-columns: 0.6fr 2fr 1fr;
  gap: 4vw;
  align-items: end;
  padding-right: 10vw;
}
.impact-copy > span {
  align-self: start;
  color: var(--forest);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.impact-copy h2 {
  margin: 0;
  font:
    800 clamp(58px, 8.4vw, 135px) / 0.76 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}
.impact-copy h2 em {
  color: var(--forest);
  font:
    italic 400 1em/0.8 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  text-transform: none;
}
.impact-copy > p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}
.impact-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10vw;
  border-top: 1px solid rgba(30, 30, 28, 0.45);
}
.impact-outcomes > div {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 15px 18px 18px;
  border-right: 1px solid rgba(30, 30, 28, 0.3);
  transition:
    background 0.25s,
    color 0.25s;
}
.impact-outcomes > div:hover {
  background: var(--forest);
  color: var(--paper);
}
.impact-outcomes > div:last-child {
  border-right: 0;
}
.impact-outcomes span {
  color: var(--forest);
  font-size: 9px;
}
.impact-outcomes > div:hover span {
  color: var(--paper);
}
.impact-outcomes strong {
  margin-top: auto;
  font:
    400 clamp(30px, 3vw, 50px) / 1 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
}
.impact-outcomes p {
  margin: 10px 0 0;
  font-size: 10px;
  opacity: 0.7;
}

.featured {
  background: var(--paper);
  color: var(--ink);
  padding: 28px 3vw 32px;
}
.featured-link {
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: 72vh;
  padding-top: 24px;
}
.featured-title {
  display: flex;
  flex-direction: column;
  padding: 16px 4vw 22px 0;
}
.featured-title p {
  margin: 0 auto 0 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.featured-title h2 {
  margin: auto 0 0;
  font:
    400 clamp(82px, 11vw, 190px) / 0.72 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.09em;
}
.featured-title > span {
  max-width: 310px;
  margin-top: 28px;
  font:
    italic 400 25px/1.1 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
}
.featured-media {
  position: relative;
  overflow: hidden;
}
.featured-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.featured-link:hover .featured-media img {
  transform: scale(1.025);
}
.case-arrow {
  position: absolute;
  right: 20px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--signal);
  color: var(--paper);
  font-size: 25px;
}
.project-chapters {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(30, 30, 28, 0.3);
  margin-top: 20px;
  padding-top: 14px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.method {
  padding: 9vw 3vw 4vw;
  background: var(--forest);
  color: var(--paper);
}
.method .eyebrow {
  color: var(--sand);
}
.method-intro {
  display: grid;
  grid-template-columns: 1fr 2.4fr 1fr;
  gap: 4vw;
  align-items: end;
}
.method-intro .eyebrow {
  align-self: start;
}
.method-intro h2 {
  margin: 0;
  font:
    400 clamp(50px, 6.3vw, 105px) / 0.84 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.065em;
}
.method-intro h2 em {
  color: var(--sand);
  font-weight: 400;
}
.method-intro > p:last-child {
  margin: 0;
  color: rgba(239, 233, 225, 0.65);
  font-size: 13px;
  line-height: 1.5;
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0;
  margin: 9vw 0 0;
  border-top: 1px solid rgba(239, 233, 225, 0.35);
}
.steps li {
  display: flex;
  min-height: 175px;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 12px;
  border-right: 1px solid rgba(239, 233, 225, 0.2);
}
.steps li:last-child {
  border-right: 0;
}
.steps span {
  color: var(--sand);
  font:
    italic 24px/1 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
}
.steps strong {
  font-size: 11px;
  text-transform: uppercase;
}

.founding-offer {
  background: var(--paper);
  color: var(--ink);
  padding: 26px 3vw 7vw;
  border-top: 1px solid rgba(30, 30, 28, 0.3);
  border-bottom: 1px solid rgba(30, 30, 28, 0.3);
}
.offer-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(30, 30, 28, 0.4);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.offer-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8vw;
  padding-top: 7vw;
}
.offer-body h2 {
  margin: 0;
  font:
    400 clamp(58px, 8vw, 138px) / 0.79 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.075em;
}
.offer-body h2 em {
  color: var(--forest);
  font-weight: 400;
}
.offer-copy {
  max-width: 480px;
}
.offer-copy > p {
  font-size: 15px;
  line-height: 1.45;
}
.offer-copy .small {
  font-size: 11px;
  opacity: 0.7;
}
.selection-note {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(30, 30, 28, 0.45);
  border-bottom: 1px solid rgba(30, 30, 28, 0.45);
  margin: 34px 0 20px;
  padding: 16px 0;
}
.selection-note span {
  color: var(--forest);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.selection-note strong {
  font:
    400 19px/1.15 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
}
.dark-link {
  border-color: var(--ink);
  color: var(--ink);
  margin-top: 30px;
}
.dark-link span {
  color: var(--forest);
}

.documentary {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 82vh;
  background: var(--sand);
  color: var(--ink);
}
.documentary-image {
  overflow: hidden;
  margin: 2vw;
  transform: rotate(-1.2deg);
  box-shadow: 10px 12px 0 var(--forest);
}
.documentary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}
.documentary-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6vw 4vw;
}
.documentary-copy > span {
  color: var(--forest);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.documentary-copy h2 {
  margin: 6vw 0 28px;
  font:
    800 clamp(46px, 5vw, 82px) / 0.82 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
.documentary-copy p {
  max-width: 500px;
  color: rgba(30, 30, 28, 0.72);
  font-size: 13px;
  line-height: 1.5;
}
.film-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 7vw;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.film-label small {
  opacity: 0.55;
}
.play {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  padding-left: 3px;
  border: 1px solid var(--forest);
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-size: 12px;
  transition: transform 0.25s ease;
}
.film-label:hover .play {
  transform: rotate(12deg) scale(1.12);
}

.contact {
  min-height: 95vh;
  padding: 8vw 3vw 5vw;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.contact h2 {
  margin: auto 0 30px;
  font:
    400 clamp(82px, 14vw, 220px) / 0.74 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.085em;
}
.contact h2 em {
  color: var(--signal);
  font-weight: 400;
  padding-left: 13vw;
}
.contact > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 0 38px auto;
  font-size: 14px;
  line-height: 1.5;
}
.contact > a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
  font:
    400 clamp(28px, 4vw, 64px) / 1 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
}
.contact > a span {
  color: var(--signal);
}
footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding: 5vw 3vw 28px;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(30, 30, 28, 0.35);
}
.footer-brand {
  font:
    700 clamp(54px, 8vw, 120px) / 0.8 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.07em;
}
.footer-brand span {
  display: inline-block;
  margin-left: 10px;
  font:
    400 8px/1 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  letter-spacing: 0.04em;
}
footer > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.case-page {
  background: var(--paper);
  color: var(--ink);
}
.case-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  border-bottom: 1px solid rgba(30, 30, 28, 0.35);
}
.case-header > a:last-child {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.case-native-hero {
  position: relative;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.case-native-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-native-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 38%, rgba(0, 0, 0, 0.75));
}
.case-native-meta {
  position: absolute;
  z-index: 2;
  inset: 22px 3vw auto;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.case-native-title {
  position: absolute;
  z-index: 2;
  inset: auto 3vw 3vw;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4vw;
  align-items: end;
}
.case-native-title h1 {
  margin: 0;
  max-width: none;
  font:
    800 clamp(110px, 21vw, 330px) / 0.62 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  letter-spacing: -0.1em;
}
.case-native-title p {
  max-width: 420px;
  margin: 0 0 1vw;
  font:
    italic 400 clamp(22px, 2.7vw, 42px) / 1 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
}
.case-native-overview {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 5vw;
  align-items: end;
  padding: 7vw 3vw;
  border-bottom: 1px solid rgba(30, 30, 28, 0.3);
}
.case-native-overview span,
.case-native-story > span,
.case-native-solution span,
.identity-copy > span,
.native-media-label,
.experience-caption > span,
.case-native-film > div:last-child > span,
.next-case > span {
  display: block;
  color: var(--signal);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.case-native-overview p {
  max-width: 370px;
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.5;
}
.case-native-overview blockquote {
  margin: 0;
  text-align: right;
  font:
    800 clamp(58px, 8vw, 130px) / 0.7 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  letter-spacing: -0.075em;
}
.case-native-overview blockquote em {
  color: var(--signal);
  font:
    italic 400 1.05em/0.7 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
}
.case-native-story {
  display: grid;
  grid-template-columns: 0.45fr 2fr 1fr;
  gap: 4vw;
  align-items: end;
  padding: 11vw 3vw;
}
.case-native-story > span {
  align-self: start;
}
.case-native-story h2,
.case-native-solution h2 {
  margin: 0;
  font:
    400 clamp(55px, 7.5vw, 125px) / 0.82 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.07em;
}
.case-native-story h2 em,
.case-native-solution h2 em,
.identity-copy h2 em,
.case-native-quote em,
.case-native-film h2 em,
.case-native-results em {
  color: var(--signal);
  font-weight: 400;
}
.case-native-story > p,
.case-native-solution > p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.7;
}
.strategy-switch {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  background: var(--sand);
  color: var(--ink);
}
.strategy-switch > div {
  min-height: 38vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2vw;
  border-right: 1px solid var(--ink);
}
.strategy-switch > div:last-child {
  border-right: 0;
}
.strategy-switch span,
.strategy-switch small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.strategy-switch strong {
  font:
    800 clamp(45px, 6vw, 105px) / 0.78 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}
.strategy-arrow {
  display: grid;
  place-items: center;
  width: 6vw;
  background: var(--forest);
  color: var(--paper);
  font-size: clamp(24px, 4vw, 70px) !important;
}
.case-native-solution {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8vw;
  align-items: end;
  padding: 10vw 3vw;
  background: var(--blue);
  color: white;
}
.case-native-solution span {
  color: var(--sand);
  margin-bottom: 6vw;
}
.case-native-solution h2 em {
  color: var(--sand);
}
.identity-system {
  display: grid;
  grid-template-columns: 42% 58%;
  grid-template-rows: auto auto;
  background: var(--ink);
  color: var(--paper);
}
.identity-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 64vw;
  padding: 4vw 3vw;
}
.identity-copy h2 {
  margin: auto 0 28px;
  font:
    800 clamp(60px, 8vw, 125px) / 0.76 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}
.identity-copy h2 em {
  font:
    italic 400 1.05em/0.8 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  text-transform: none;
}
.identity-copy p {
  max-width: 410px;
  margin: 0;
  color: rgba(239, 233, 225, 0.66);
  font-size: 13px;
  line-height: 1.55;
}
.identity-system > img {
  width: 100%;
  height: 64vw;
  max-height: 980px;
  object-fit: cover;
  display: block;
}
.identity-tools {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 30vw;
  border-top: 1px solid rgba(239, 233, 225, 0.3);
}
.type-specimen {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 2vw 3vw;
  border-right: 1px solid rgba(239, 233, 225, 0.3);
  font:
    800 clamp(130px, 23vw, 350px) / 0.68 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  letter-spacing: -0.12em;
}
.type-specimen span {
  font:
    700 9px/1.35 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  letter-spacing: 0.08em;
}
.color-specimen {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.color-specimen i:nth-child(1) {
  background: var(--burgundy);
}
.color-specimen i:nth-child(2) {
  background: var(--terracotta);
}
.color-specimen i:nth-child(3) {
  background: var(--paper);
}
.color-specimen i:nth-child(4) {
  background: var(--mustard);
}
.color-specimen i:nth-child(5) {
  background: var(--forest);
}
.color-specimen i:nth-child(6) {
  background: var(--petrol);
}
.color-specimen i:nth-child(7) {
  background: var(--ink);
}
.case-native-media {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.case-native-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.case-native-media:hover > img {
  transform: scale(1.018);
}
.packaging-media {
  min-height: 85vw;
  padding: 8vw 3vw 3vw;
}
.packaging-media > img {
  height: 70vw;
  object-fit: cover;
}
.native-media-label {
  position: absolute;
  z-index: 2;
  inset: 2.5vw 3vw auto;
  display: flex;
  justify-content: space-between;
  color: var(--ink);
}
.case-native-quote {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 3vw;
  background: var(--forest);
  color: var(--paper);
}
.case-native-quote > span {
  margin-bottom: auto;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.case-native-quote p {
  max-width: 1250px;
  margin: auto 0 0;
  font:
    400 clamp(62px, 9vw, 150px) / 0.82 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.075em;
}
.case-native-quote em {
  color: var(--sand);
}
.experience-media {
  min-height: 100svh;
}
.experience-media > img {
  position: absolute;
  inset: 0;
  filter: saturate(1.08);
}
.experience-caption {
  position: absolute;
  z-index: 2;
  right: 3vw;
  bottom: 3vw;
  width: min(440px, 42vw);
  padding: 25px;
  background: var(--sand);
  color: var(--ink);
}
.experience-caption > span {
  color: var(--forest);
}
.experience-caption p {
  margin: 42px 0 0;
  font:
    italic 400 clamp(22px, 2.4vw, 38px) / 1.05 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
}
.case-native-film {
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 84vh;
  background: var(--ink);
  color: var(--paper);
}
.native-film-poster {
  position: relative;
  overflow: hidden;
}
.native-film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.68);
}
.native-film-poster > span {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  padding-left: 4px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  background: rgba(30, 30, 28, 0.3);
}
.case-native-film > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5vw 3vw;
}
.case-native-film h2 {
  margin: 8vw 0 30px;
  font:
    400 clamp(52px, 6vw, 100px) / 0.84 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.06em;
}
.case-native-film p {
  margin: 0;
  color: rgba(239, 233, 225, 0.66);
  font-size: 13px;
  line-height: 1.55;
}
.case-native-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 3vw;
  background: var(--sand);
  color: var(--ink);
}
.case-native-results > span {
  grid-column: 1/-1;
  margin-bottom: 8vw;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.case-native-results > div {
  min-height: 30vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--ink);
  margin-left: -1px;
}
.case-native-results strong {
  font:
    italic 400 34px/1 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  color: var(--signal);
}
.case-native-results p {
  margin: 0;
  font:
    400 clamp(35px, 4vw, 65px) / 0.9 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.05em;
}
.case-native-results em {
  color: var(--blue);
}
.next-case {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw 3vw;
}
.next-case h2 {
  margin: auto 0 20px;
  color: var(--signal);
  font:
    italic 400 clamp(120px, 22vw, 330px) / 0.64 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.1em;
}
.next-case p {
  max-width: 430px;
  margin: 0 0 40px auto;
  font-size: 14px;
  line-height: 1.5;
}
.next-case a {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
  font:
    400 clamp(28px, 4vw, 60px) / 1 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: reveal 0.8s ease-out both;
  }
  .hero-visual img {
    animation: imageIn 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }
  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
  }
  @keyframes imageIn {
    from {
      opacity: 0;
      transform: scale(1.04);
    }
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 18px;
  }
  .wordmark img {
    height: 30px;
  }
  nav a:not(.nav-cta) {
    display: none;
  }
  .hero-lab {
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    height: auto;
    min-height: 100svh;
    padding: 80px 18px 0;
  }
  .hero-lab-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-lab-top span:nth-child(2) {
    display: none;
  }
  .hero-lab-title {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 48svh;
    font-size: min(25vw, 16svh);
    line-height: 0.72;
  }
  .hero-lab-title > span:first-child {
    grid-column: 1/-1;
    align-self: end;
    padding-top: 0;
  }
  .hero-lab-title .matter {
    grid-column: 1/-1;
    margin-top: -2svh;
  }
  .hero-lab-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 22px;
  }
  .brand-path {
    flex-wrap: wrap;
  }
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 62vh auto;
    padding-top: 68px;
  }
  .hero-visual {
    grid-row: 1;
  }
  .hero-copy {
    grid-row: 2;
    padding: 32px 18px 44px;
  }
  .eyebrow {
    margin: 0 0 42px;
  }
  h1 {
    font-size: clamp(58px, 18vw, 88px);
  }
  h1 span {
    padding-left: 0;
  }
  .hero-index {
    display: none;
  }
  .statement {
    min-height: 70vh;
    grid-template-columns: 1fr;
    padding: 70px 18px 34px;
  }
  .statement > p {
    font-size: clamp(50px, 15vw, 78px);
  }
  .disciplines {
    padding: 24px 18px 70px;
  }
  .discipline-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }
  .discipline {
    min-height: auto;
    padding: 25px 0 40px !important;
    border-right: 0;
    border-bottom: 1px solid rgba(30, 30, 28, 0.24);
  }
  .discipline-number {
    margin-bottom: 34px;
  }
  .giant-line {
    margin-top: 70px;
    font-size: 17vw;
  }
  .work-index {
    padding: 60px 18px 18px;
  }
  .work-index-head {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 60px;
  }
  .work-index-head h2 {
    font-size: 22vw;
  }
  .work-filters {
    margin: 0 -18px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    margin-left: -18px;
    margin-right: -18px;
  }
  .work-card,
  .work-card.wide,
  .work-card.tall {
    grid-column: auto;
    min-height: 75vw;
  }
  .work-card-meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .work-card-meta > span:last-child {
    text-align: left;
  }
  .work-card-open {
    display: none;
  }
  .case-gateway {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .case-gateway strong {
    text-align: left;
    font-size: 31vw;
  }
  .case-gateway > span:last-child {
    text-align: left;
  }
  .impact {
    min-height: auto;
    padding: 80px 18px 30px;
  }
  .impact-badge {
    width: 42vw;
    height: 42vw;
    top: 24px;
    right: -12vw;
  }
  .impact-copy {
    grid-template-columns: 1fr;
    padding: 34vw 0 0;
  }
  .impact-copy h2 {
    font-size: 16vw;
  }
  .impact-outcomes {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }
  .impact-outcomes > div {
    min-height: 155px;
    border-right: 0;
    border-bottom: 1px solid rgba(30, 30, 28, 0.3);
  }
  .featured {
    padding: 24px 18px;
  }
  .featured-link {
    grid-template-columns: 1fr;
  }
  .featured-title {
    min-height: 330px;
    padding-right: 0;
  }
  .featured-media {
    min-height: 55vh;
  }
  .project-chapters {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .method {
    padding: 70px 18px 30px;
  }
  .method-intro {
    grid-template-columns: 1fr;
  }
  .method-intro h2 {
    font-size: 15vw;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    margin-top: 70px;
  }
  .steps li {
    min-height: 130px;
    border-bottom: 1px solid rgba(239, 233, 225, 0.2);
  }
  .offer-body {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }
  .offer-body h2 {
    font-size: 13vw;
  }
  .documentary {
    grid-template-columns: 1fr;
  }
  .documentary-image {
    min-height: 56vh;
    margin: 18px;
    box-shadow: 7px 8px 0 var(--forest);
  }
  .documentary-copy {
    padding: 60px 18px;
  }
  .documentary-copy h2 {
    font-size: 14vw;
  }
  .contact {
    padding: 70px 18px 30px;
  }
  .contact h2 {
    font-size: 20vw;
  }
  .contact h2 em {
    padding-left: 0;
  }
  .contact > p:not(.eyebrow) {
    margin-left: 0;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 50px 18px 24px;
  }
  .case-header {
    padding: 0 18px;
  }
  .case-native-hero {
    min-height: calc(100svh - 72px);
  }
  .case-native-meta {
    inset: 18px 18px auto;
  }
  .case-native-title {
    inset: auto 18px 22px;
    grid-template-columns: 1fr;
  }
  .case-native-title h1 {
    font-size: 29vw;
  }
  .case-native-title p {
    max-width: 82%;
    font-size: 24px;
  }
  .case-native-overview {
    grid-template-columns: 1fr;
    padding: 70px 18px;
  }
  .case-native-overview blockquote {
    margin-top: 45px;
    text-align: left;
    font-size: 19vw;
  }
  .case-native-story {
    grid-template-columns: 1fr;
    padding: 90px 18px;
  }
  .case-native-story h2,
  .case-native-solution h2 {
    font-size: 15vw;
  }
  .strategy-switch {
    grid-template-columns: 1fr;
  }
  .strategy-switch > div {
    min-height: 72vw;
    padding: 20px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }
  .strategy-switch strong {
    font-size: 18vw;
  }
  .strategy-arrow {
    width: 100%;
    height: 54px;
    transform: rotate(90deg);
  }
  .case-native-solution {
    grid-template-columns: 1fr;
    padding: 90px 18px;
  }
  .case-native-solution span {
    margin-bottom: 50px;
  }
  .identity-system {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .identity-copy {
    min-height: 110vw;
    padding: 70px 18px 45px;
  }
  .identity-copy h2 {
    font-size: 17vw;
  }
  .identity-system > img {
    height: 110vw;
  }
  .identity-tools {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .type-specimen {
    min-height: 74vw;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(239, 233, 225, 0.3);
    font-size: 42vw;
  }
  .color-specimen {
    min-height: 52vw;
  }
  .packaging-media {
    min-height: 110vw;
    padding: 75px 18px 18px;
  }
  .packaging-media > img {
    height: 92vw;
  }
  .native-media-label {
    inset: 24px 18px auto;
  }
  .case-native-quote {
    min-height: 70vh;
    padding: 70px 18px;
  }
  .case-native-quote p {
    font-size: 16vw;
  }
  .experience-media {
    min-height: 86svh;
  }
  .experience-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
  }
  .case-native-film {
    grid-template-columns: 1fr;
  }
  .native-film-poster {
    min-height: 58vh;
  }
  .case-native-film > div:last-child {
    padding: 70px 18px;
  }
  .case-native-film h2 {
    font-size: 15vw;
  }
  .case-native-results {
    grid-template-columns: 1fr;
    padding: 70px 18px 18px;
  }
  .case-native-results > span {
    margin-bottom: 55px;
  }
  .case-native-results > div {
    min-height: 62vw;
    margin: -1px 0 0;
  }
  .case-native-results p {
    font-size: 12vw;
  }
  .next-case {
    padding: 70px 18px;
  }
  .next-case h2 {
    font-size: 34vw;
  }
  .next-case p {
    margin-left: 0;
  }
}

/* Homepage overrides kept last so the project-page legacy rules cannot leak in. */
.site-header.conversation-header {
  position: relative;
  inset: auto;
  height: 76px;
  padding: 20px 2vw;
  background: var(--paper);
  border-bottom: 1px solid rgba(30, 30, 28, 0.32);
}
.conversation-footer > div:not(.footer-brand) {
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
.conversation-footer > div:nth-child(2):not(.footer-brand) {
  justify-content: flex-end;
}

@media (max-width: 760px) {
  .site-header.conversation-header {
    height: 68px;
    padding: 18px;
  }
  .site-header.conversation-header nav a:not(.nav-cta) {
    display: block;
  }
  .conversation-footer > div:not(.footer-brand),
  .conversation-footer > div:nth-child(2):not(.footer-brand) {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Interactive project-page prototype */
.project-prototype {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}
.workspace-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(239, 233, 225, 0.94);
  backdrop-filter: blur(12px);
}
.workspace-header > span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workspace-intro {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  align-items: end;
  padding: 22px 3vw 3vw;
}
.workspace-intro-meta {
  grid-column: 1/-1;
  align-self: start;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.workspace-intro-meta span:nth-child(2) {
  text-align: center;
}
.workspace-intro-meta span:last-child {
  text-align: right;
  color: var(--petrol);
}
.workspace-intro h1 {
  grid-column: 1/-1;
  margin: auto 0 2vw;
  max-width: none;
  font:
    700 clamp(88px, 13.5vw, 220px) / 0.72 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.11em;
}
.workspace-intro h1 em {
  display: block;
  padding-left: 17vw;
  color: var(--burgundy);
  font-style: italic;
  font-weight: 400;
}
.workspace-intro > p {
  grid-column: 8/11;
  max-width: 470px;
  margin: 0;
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.48;
}
.workspace-intro > a {
  grid-column: 11/-1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.workspace-intro > a span {
  color: var(--burgundy);
  font-size: 22px;
}
#mesa {
  scroll-margin-top: 72px;
}

.project-desk {
  position: relative;
  min-height: max(900px, 108svh);
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background-color: var(--sand);
  background-image:
    linear-gradient(rgba(30, 30, 28, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 30, 28, 0.11) 1px, transparent 1px);
  background-size: 34px 34px;
}
.workspace-guide {
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 0;
  background: rgba(30, 30, 28, 0.3);
  color: var(--paper);
  cursor: pointer;
  backdrop-filter: blur(1.5px);
  animation: workspace-guide-life 4s ease both;
}
.workspace-guide-content {
  width: min(360px, 72vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  text-shadow: 0 2px 22px rgba(30, 30, 28, 0.28);
}
.workspace-guide-content strong {
  font:
    700 clamp(28px, 3vw, 46px) / 0.9 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.045em;
}
.workspace-guide-content small {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.78;
}
.guide-gesture {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}
.guide-ring {
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  animation: guide-ring-pulse 1.35s ease-out infinite;
}
.guide-cursor {
  position: absolute;
  right: 0;
  bottom: 0;
  font:
    normal 700 27px/1 "Avenir Next Itoko",
    "Avenir Next",
    Arial,
    sans-serif;
  transform: rotate(-8deg);
  animation: guide-cursor-move 1.35s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
.guide-mobile,
.guide-tap {
  display: none;
}

@keyframes workspace-guide-life {
  0% {
    opacity: 0;
  }
  8%,
  82% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes guide-ring-pulse {
  0%,
  20% {
    opacity: 0.2;
    transform: scale(0.65);
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}
@keyframes guide-cursor-move {
  0%,
  18% {
    transform: translate(20px, 18px) rotate(-8deg);
  }
  48%,
  70% {
    transform: translate(0, 0) rotate(-8deg) scale(0.88);
  }
  100% {
    transform: translate(20px, 18px) rotate(-8deg);
  }
}
.desk-toolbar {
  position: absolute;
  z-index: 220;
  inset: 0 0 auto;
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 12px 2vw;
  background: rgba(239, 233, 225, 0.94);
  border-bottom: 1px solid var(--ink);
  backdrop-filter: blur(12px);
}
.desk-toolbar > div {
  display: flex;
  gap: 28px;
  align-items: baseline;
}
.desk-toolbar span,
.desk-toolbar p,
.desk-toolbar button {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.desk-toolbar strong {
  color: var(--burgundy);
  font-size: 11px;
}
.desk-toolbar p {
  margin: 0;
  text-align: center;
}
.desk-toolbar button {
  justify-self: end;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.desk-artifact {
  position: absolute;
  z-index: 1;
  margin: 0;
  padding: 10px 10px 28px;
  background: var(--paper);
  border: 1px solid rgba(30, 30, 28, 0.35);
  box-shadow: 7px 9px 20px rgba(30, 30, 28, 0.14);
}
.desk-artifact img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.desk-artifact figcaption {
  position: absolute;
  left: 10px;
  bottom: 8px;
  font-size: 7px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.artifact-packaging {
  left: 3vw;
  top: 13%;
  width: 43vw;
  height: 42vw;
  transform: rotate(-2.2deg);
}
.artifact-identity {
  right: 4vw;
  top: 10%;
  width: 29vw;
  height: 34vw;
  transform: rotate(2.7deg);
}
.artifact-experience {
  right: 3vw;
  bottom: 4%;
  width: 42vw;
  height: 29vw;
  transform: rotate(-1.3deg);
}
.desk-swatches {
  position: absolute;
  z-index: 2;
  left: 5vw;
  bottom: 7%;
  display: grid;
  grid-template-columns: repeat(4, 58px);
  transform: rotate(2deg);
  box-shadow: 5px 6px 14px rgba(30, 30, 28, 0.14);
}
.desk-swatches i {
  height: 58px;
}
.desk-swatches i:nth-child(1) {
  background: var(--burgundy);
}
.desk-swatches i:nth-child(2) {
  background: var(--terracotta);
}
.desk-swatches i:nth-child(3) {
  background: var(--petrol);
}
.desk-swatches i:nth-child(4) {
  background: var(--forest);
}

.workspace-card {
  position: absolute;
  width: min(520px, 40vw);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  opacity: 0;
  border: 1px solid rgba(30, 30, 28, 0.55);
  box-shadow: 12px 16px 34px rgba(30, 30, 28, 0.22);
  cursor: grab;
  touch-action: none;
  user-select: none;
  transition:
    left 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    top 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}
.workspace-card.is-ready {
  opacity: 1;
}
.workspace-card.is-dragging {
  cursor: grabbing;
  transition: box-shadow 0.15s ease;
  box-shadow: 18px 24px 45px rgba(30, 30, 28, 0.28);
}
.workspace-card:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}
.workspace-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
}
.workspace-card-head span,
.workspace-card small {
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.workspace-card-action {
  padding: 5px 0;
}
.workspace-card h3 {
  margin: auto 0 22px;
  font:
    700 clamp(42px, 4.5vw, 72px) / 0.78 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.07em;
}
.workspace-card h3 em {
  display: block;
  font-style: italic;
  font-weight: 400;
}
.workspace-card > p {
  max-width: 390px;
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.5;
}
.workspace-card > small {
  margin-top: auto;
  opacity: 0.6;
}
.card-paper {
  background: var(--paper);
  color: var(--ink);
}
.card-paper h3 em {
  color: var(--burgundy);
}
.card-burgundy {
  background: var(--burgundy);
  color: var(--paper);
}
.card-petrol {
  background: var(--petrol);
  color: var(--paper);
}
.card-mustard {
  background: var(--mustard);
  color: var(--ink);
}

.project-clean-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: var(--paper);
}
.clean-story-copy {
  grid-column: 1/-1;
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 4vw;
  align-items: end;
  padding: 4vw 3vw;
}
.clean-story-copy > span {
  align-self: start;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.clean-story-copy h2 {
  margin: 0;
  font:
    700 clamp(68px, 9vw, 150px) / 0.79 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.075em;
}
.clean-story-copy h2 em {
  display: block;
  color: var(--terracotta);
  font-style: italic;
  font-weight: 400;
}
.clean-story-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(239, 233, 225, 0.72);
}
.project-clean-story > img {
  width: 100%;
  height: 58vw;
  max-height: 900px;
  object-fit: cover;
  display: block;
}
.project-clean-story > img:last-child {
  border-left: 2px solid var(--ink);
}

.project-next-prototype {
  min-height: 95svh;
  display: flex;
  flex-direction: column;
  padding: 3vw;
  background: var(--paper);
}
.project-next-prototype > span {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--petrol);
}
.project-next-prototype h2 {
  margin: auto 0 5vw;
  font:
    700 clamp(78px, 12vw, 190px) / 0.75 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
  letter-spacing: -0.085em;
}
.project-next-prototype h2 em {
  display: block;
  padding-left: 13vw;
  color: var(--petrol);
  font-style: italic;
  font-weight: 400;
}
.project-next-prototype > a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
  font:
    700 clamp(28px, 4vw, 62px) / 1 "Didot Itoko",
    Didot,
    "Times New Roman",
    serif;
}
.project-next-prototype > a span {
  color: var(--burgundy);
}

@media (max-width: 760px) {
  .workspace-header > span {
    display: none;
  }
  .workspace-intro {
    min-height: calc(100svh - 68px);
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto auto;
    padding: 18px;
  }
  .workspace-intro-meta {
    grid-column: auto;
    grid-template-columns: 1fr auto;
    font-size: 7px;
  }
  .workspace-intro-meta span:nth-child(2) {
    display: none;
  }
  .workspace-intro h1 {
    grid-column: auto;
    margin: auto 0 22px;
    font-size: 19vw;
    line-height: 0.78;
  }
  .workspace-intro h1 em {
    padding-left: 0;
  }
  .workspace-intro > p {
    grid-column: auto;
    width: 82%;
    margin-left: auto;
    font-size: 15px;
  }
  .workspace-intro > a {
    grid-column: auto;
    margin-top: 34px;
    font-size: 9px;
  }
  .project-desk {
    min-height: 1120px;
    background-size: 24px 24px;
  }
  .workspace-guide {
    padding: 18px;
  }
  .workspace-guide-content {
    width: 48vw;
    max-width: 190px;
    gap: 12px;
  }
  .workspace-guide-content strong {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 0.92;
  }
  .guide-desktop,
  .guide-cursor {
    display: none;
  }
  .guide-mobile {
    display: block;
  }
  .guide-tap {
    position: absolute;
    display: block;
    font:
      700 7px/1 "Avenir Next Itoko",
      "Avenir Next",
      Arial,
      sans-serif;
    letter-spacing: 0.12em;
  }
  .guide-gesture {
    width: 48px;
    height: 48px;
  }
  .guide-ring {
    width: 32px;
    height: 32px;
  }
  .desk-toolbar {
    min-height: 58px;
    grid-template-columns: 1fr auto;
    padding: 10px 14px;
  }
  .desk-toolbar > div {
    gap: 14px;
  }
  .desk-toolbar p {
    display: none;
  }
  .desk-toolbar button {
    font-size: 7px;
  }
  .artifact-packaging {
    left: 7%;
    top: 10%;
    width: 84%;
    height: 64vw;
  }
  .artifact-identity {
    right: -7%;
    top: 43%;
    width: 64%;
    height: 71vw;
  }
  .artifact-experience {
    left: -5%;
    right: auto;
    bottom: 5%;
    width: 83%;
    height: 62vw;
  }
  .desk-swatches {
    left: auto;
    right: 12px;
    bottom: 10%;
    grid-template-columns: repeat(2, 42px);
  }
  .desk-swatches i {
    height: 42px;
  }
  .workspace-card {
    width: clamp(180px, 52vw, 240px);
    min-height: 270px;
    padding: 14px;
    box-shadow: 8px 11px 24px rgba(30, 30, 28, 0.22);
  }
  .workspace-card-head {
    padding-bottom: 9px;
  }
  .workspace-card-head span {
    font-size: 6px;
  }
  .workspace-card-action {
    font-size: 0;
  }
  .workspace-card-action::after {
    content: "↗";
    font-size: 14px;
  }
  .workspace-card h3 {
    margin-bottom: 16px;
    font-size: clamp(30px, 8.5vw, 42px);
    line-height: 0.8;
  }
  .workspace-card > p {
    margin-bottom: 18px;
    font-size: 10px;
    line-height: 1.45;
  }
  .workspace-card > small {
    font-size: 6px;
    line-height: 1.3;
  }
  .clean-story-copy {
    min-height: 78svh;
    grid-template-columns: 1fr;
    padding: 70px 18px 38px;
  }
  .clean-story-copy h2 {
    font-size: 16vw;
  }
  .clean-story-copy p {
    width: 85%;
    margin-left: auto;
  }
  .project-clean-story {
    grid-template-columns: 1fr;
  }
  .project-clean-story > img {
    height: 112vw;
  }
  .project-clean-story > img:last-child {
    border: 0;
    border-top: 2px solid var(--ink);
  }
  .project-next-prototype {
    min-height: 90svh;
    padding: 70px 18px 24px;
  }
  .project-next-prototype h2 {
    font-size: 18vw;
  }
  .project-next-prototype h2 em {
    padding-left: 0;
  }
  .project-next-prototype > a {
    font-size: 9vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workspace-card {
    transition: none;
  }
  .workspace-guide,
  .guide-ring,
  .guide-cursor {
    animation: none;
  }
}
