@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter+Tight:ital,wght@0,400;0,500;0,600&display=swap");

:root {
  --bg: #fff;
  --bg-soft: #f7f7f7;
  --bg-mid: #ececec;
  --ink: #2b2b2b;
  --hint: rgba(44, 42, 43, 0.52);
  --line: rgba(44, 42, 43, 0.16);
  --line-strong: rgba(44, 42, 43, 0.28);
  --red: #e41613;
  --overlay: #18181a;
  --white: #fff;
  --sans: "Inter Tight", "Schibsted Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Instrument Serif", "Times New Roman", serif;
  --fs: clamp(13px, 0.72vw, 15.5px);
  --header-h: clamp(96px, 5.5vw, 104px);
  --pad: clamp(1.1rem, 3.4vw, 3.4rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
  max-width: 100%;
}

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--sans);
  font-size: var(--fs);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
  letter-spacing: -0.01em;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}

@media (pointer: fine) {
  html,
  body,
  a,
  button,
  input,
  select,
  textarea,
  label {
    cursor: none !important;
  }
}

img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 1px solid var(--red); outline-offset: 3px; }
::selection { background: var(--red); color: #fff; }

section[id],
article[id],
.hero,
.contact,
.team,
.projects,
.showcase,
.statement {
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.wrap {
  width: min(1680px, 100%);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.eyebrow {
  color: var(--hint);
  font-size: 0.78em;
  letter-spacing: 0.01em;
}

.link-line {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding-bottom: 0.12em;
  transition: color 0.2s var(--ease);
}
.link-line .underline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  pointer-events: none;
  will-change: transform;
}
.link-line:hover { color: var(--red); }

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex: 0 0 auto;
}

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.55  0 0 0 0 0.55  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(43, 43, 43, 0.2);
}
.site-header.is-solid { background: #fff; }
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { display: grid; }

.header-inner {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  min-height: var(--header-h);
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.header-end {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  flex: 0 0 auto;
  min-height: var(--header-h);
}
.nav-lang {
  display: flex;
  align-items: center;
  padding: 0 clamp(1.6rem, 2.5vw, 2.9rem);
  font-size: clamp(12px, 0.75vw, 14px);
  letter-spacing: 0.04em;
  border-right: 1px solid rgba(43, 43, 43, 0.16);
}
.nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(15.5rem, 18vw);
  min-height: var(--header-h);
  padding: 0 1em;
  background: var(--ink);
  color: #fff;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.nav-cta:hover { background: #000; color: #fff; }

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.2rem 0 clamp(1.2rem, 2.5vw, 2.9rem);
  color: var(--ink);
  flex: 0 0 auto;
  min-height: var(--header-h);
}
.logo svg { width: 4.1rem; height: 2.45rem; }
.logo-type {
  display: grid;
  line-height: 1;
  letter-spacing: 0.22em;
  font-size: 1.02rem;
  font-weight: 500;
}
.logo-type b { font-weight: 500; letter-spacing: 0.28em; }
.logo-type span {
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  color: var(--hint);
  margin-top: 0.28rem;
}

.site-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: clamp(1.1rem, 1.5vw, 1.9rem);
  margin-left: auto;
  padding-right: clamp(0.85rem, 1.3vw, 1.5rem);
  flex: 0 1 auto;
  min-height: var(--header-h);
  max-width: min(52vw, 44rem);
}
.site-nav a,
.nav-drop > button {
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="page"],
.nav-drop > button:hover {
  border-bottom-color: var(--ink);
}

.nav-drop {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-drop > button::after {
  content: "";
  width: 0.38em;
  height: 0.38em;
  margin-left: 0.45em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-0.12em);
}
.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #fff;
  border: 1px solid rgb(0 0 0 / 0.08);
  padding: 0.7rem 0;
  z-index: 60;
}
.nav-drop.is-open .nav-drop-menu { display: grid; }
.nav-drop-menu a {
  padding: 0.65rem 1.1rem;
  border-bottom: 0;
  font-size: 0.95em;
  height: auto;
  min-height: 0;
  display: block;
}
.nav-drop-menu a:hover { color: var(--red); }

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0 clamp(1.2rem, 2.5vw, 2.9rem);
  min-width: 44px;
  min-height: var(--header-h);
  margin-left: auto;
  font-size: 1em;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: start;
  overflow: hidden;
  color: var(--ink);
}
.hero.hero--video {
  min-height: max(
    calc(100svh - var(--header-h)),
    calc(8vh + 100vw * 9 / 16)
  );
}
.hero-media {
  position: absolute;
  inset: 0;
  background: #fff;
  overflow: hidden;
  transform: none;
}
.hero-video {
  position: absolute;
  left: 0;
  right: 0;
  top: 8vh;
  width: 100%;
  height: calc(100vw * 9 / 16);
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}
.hero-media-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, transparent 70%, rgb(255 255 255 / 0.35) 100%);
}
.hero--video .hero-copy,
.hero--video .scroll-hint {
  text-shadow: none;
}
.hero--video .hero-copy h1,
.hero--video .hero-copy .hero-aside p,
.hero--video .hero-copy .link-line,
.hero--video .scroll-hint {
  color: var(--ink);
  mix-blend-mode: normal;
}
.hero-clouds {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 36% at 12% 92%, rgb(255 255 255 / 0.78), transparent 64%),
    radial-gradient(ellipse 50% 32% at 92% 88%, rgb(255 255 255 / 0.7), transparent 60%),
    linear-gradient(180deg, transparent 58%, rgb(255 255 255 / 0.82) 100%);
  will-change: transform;
}
.hero-brand { display: none; }
.hero-brand b { display: block; font-weight: 500; letter-spacing: 0.28em; font-size: 0.82rem; }
.hero-brand span { color: var(--hint); font-size: 0.58rem; letter-spacing: 0.4em; }

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(12rem, 0.85fr);
  align-items: start;
  gap: 2rem;
  padding: clamp(1.4rem, 3.5vh, 2.8rem) var(--pad) 6vh;
  width: min(1680px, 100%);
  margin-inline: auto;
  max-width: 100%;
  justify-self: stretch;
  min-height: calc(100svh - var(--header-h));
  box-sizing: border-box;
}
.hero h1 {
  font-weight: 500;
  font-size: clamp(3rem, 6.4vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  max-width: 100%;
  justify-self: start;
  align-self: start;
  text-align: left;
}
.hero h1 .line {
  display: block;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 0.08em;
  margin-left: 0;
}
.hero h1 .line-inner {
  display: block;
  will-change: transform;
  padding-bottom: 0.04em;
}
.hero h1 .line:nth-child(2),
.hero h1 .line:nth-child(3) {
  margin-left: 0;
}
.hero-fog {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  pointer-events: none;
}
.hero-aside {
  justify-self: end;
  align-self: center;
  max-width: 16rem;
  padding-bottom: 0;
}
.hero-aside p {
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  line-height: 1.28;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}
.hero-aside .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.scroll-hint {
  position: absolute;
  left: var(--pad);
  bottom: 1.6rem;
  z-index: 2;
  color: rgb(43 43 43 / 0.35);
  font-size: 0.78em;
}

/* Statement */
.statement {
  padding: 4.5vw 5vw 3.5vw;
  text-align: center;
}
.statement--loose {
  padding-top: 14vw;
  padding-bottom: 13vw;
}
.statement .eyebrow { margin-bottom: 1.2rem; }
.statement h2 {
  font-weight: 500;
  font-size: clamp(2rem, 3.75vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 18ch;
  margin-inline: auto;
}

.stats {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) 1.35fr;
  gap: clamp(2.5rem, 4vw, 5rem);
  padding: 6vw var(--pad) 7vw;
  width: min(1680px, 100%);
  margin-inline: auto;
  align-items: start;
  min-height: 0;
  position: relative;
}
.stats::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--bg-soft);
  z-index: -1;
}
.stats-copy {
  position: sticky;
  top: calc(var(--header-h) + 3vw);
  max-width: 24rem;
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
  line-height: 1.32;
  letter-spacing: -0.03em;
  padding-top: 0.4rem;
}
.stats-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.35rem;
  font-weight: 500;
}
.contact .stats-copy,
.contact-lead {
  position: static;
  max-width: 28rem;
  margin-bottom: 2rem;
}
.stats-copy .link-line {
  margin-top: 2rem;
  display: inline-flex;
  font-size: 0.95em;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.stat {
  border: 1px solid var(--line-strong);
  padding: clamp(1.6rem, 2.4vw, 2.2rem) clamp(1.3rem, 2vw, 1.8rem) clamp(1.4rem, 2vw, 1.7rem);
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
  margin-left: -1px;
  margin-top: -1px;
  background: #fff;
  position: relative;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.stat:nth-child(2) {
  margin-top: 5.5vw;
  min-height: 12.5rem;
}
.stat:nth-child(3) { min-height: 16rem; }
.stat:nth-child(4) { min-height: 14.5rem; }
.stat-index {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hint);
  font-weight: 500;
}
.stat b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(4.6rem, 8.5vw, 8.2rem);
  line-height: 0.82;
  color: var(--red);
  letter-spacing: -0.05em;
  display: block;
}
.stat span:not(.stat-index) {
  color: var(--ink);
  font-size: clamp(0.95rem, 1.15vw, 1.12rem);
  max-width: 14ch;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.stat--accent {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.stat--accent .stat-index { color: rgb(255 255 255 / 0.45); }
.stat--accent b { color: #fff; }
.stat--accent span:not(.stat-index) { color: rgb(255 255 255 / 0.82); }
@media (pointer: fine) {
  .stat:not(.stat--accent):hover {
    background: #fff;
    border-color: var(--ink);
    z-index: 1;
  }
  .stat--accent:hover {
    background: var(--red);
    border-color: var(--red);
  }
}

/* Showcase */
.showcase {
  background: transparent;
  height: auto;
  position: relative;
  padding: 2vw 0 3vw;
}
.showcase-inner {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
  max-height: none;
  width: min(1480px, calc(100% - 2 * var(--pad)));
  margin-inline: auto;
  padding: clamp(2rem, 3.2vh, 3.1rem) clamp(1.4rem, 2.6vw, 2.8rem);
  display: grid;
  grid-template-columns: 10.5rem minmax(0, 1fr) 8.2rem;
  gap: 1rem 1.4rem;
  align-items: center;
  overflow: hidden;
  background: #d8d8d8;
}
.showcase-stage h2,
.showcase-foot,
.showcase-meta {
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
}
.showcase-nav {
  display: grid;
  align-content: center;
  gap: 0.48rem;
  padding-top: 0;
}
.showcase-nav button {
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  color: rgb(43 43 43 / 0.38);
  font-size: 1em;
  line-height: 1.25;
  padding: 0.22rem 0;
}
.showcase-nav button.is-on { color: var(--ink); font-weight: 500; }
.showcase-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(11rem, 0.55fr);
  grid-template-rows: auto auto;
  align-items: center;
  align-content: center;
  column-gap: 1.6rem;
  row-gap: 1.25rem;
  min-height: 0;
}
.skill-mark {
  grid-column: 2;
  grid-row: 1 / -1;
  position: relative;
  width: min(100%, 17vw);
  height: min(36vh, 280px);
  max-height: 100%;
  pointer-events: none;
  z-index: 0;
  transform-origin: 50% 50%;
  justify-self: end;
  align-self: center;
}
.skill-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}
.showcase-stage h2 {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 500;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  max-width: 12ch;
  mix-blend-mode: multiply;
  color: var(--ink);
  padding-bottom: 0.18em;
}
.showcase-stage h2 span {
  display: block;
  padding-bottom: 0.12em;
}
.showcase-foot {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: end;
  gap: 1.2rem;
  margin-top: 0;
  align-self: start;
}
.showcase-foot p {
  max-width: 34rem;
  font-size: 1.08em;
  line-height: 1.35;
}
.showcase-foot .link-line { margin-top: 0.55rem; font-size: 1.05em; }
.showcase-meta {
  display: grid;
  gap: 1.25rem;
  text-align: right;
  align-content: center;
  padding-top: 0;
  font-size: 0.78em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.showcase-meta b {
  display: block;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  font-size: 1.2em;
  margin-top: 0.15rem;
}

/* Projects */
.projects {
  padding: 5vw var(--pad) 4vw;
  width: min(1680px, 100%);
  margin-inline: auto;
}
.projects-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.projects-head h2 {
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
}
.project-row {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  color: inherit;
  will-change: transform;
}
.project-row:has(.project-logo) {
  grid-template-columns: 2.8rem 7rem 1fr auto;
}
.project-row:last-of-type { border-bottom: 1px solid var(--line); }
.project-row:hover h3 { color: var(--red); }
.project-logo {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  border-radius: 0.45rem;
  background: var(--bg-soft);
}
.project-logo[src*="kerp-mark"] {
  background: #161616;
  padding: 0.28rem;
}
.project-row .tag {
  color: var(--hint);
  font-size: 0.82em;
}
.project-row h3 {
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: color 0.2s var(--ease);
}
.project-row p { color: var(--hint); max-width: 36rem; }
.project-row .go { font-size: 0.85em; }

.fan {
  padding: 10vw var(--pad) 9vw;
  text-align: center;
  overflow: hidden;
}
.fan h2 {
  font-weight: 500;
  font-size: clamp(2rem, 3.75vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 16ch;
  margin: 0 auto;
}
.fan h2 em { font-style: normal; color: var(--red); }
.fan-row {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 0.55vw;
  min-height: 24vw;
  padding-bottom: 1.5vw;
  perspective: 1200px;
}
.fan-card {
  width: 9.2vw;
  min-width: 5.4rem;
  aspect-ratio: 1;
  background: #e8e8e8;
  display: grid;
  align-content: space-between;
  padding: 0.7em;
  color: var(--hint);
  font-size: 0.72em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform-origin: 50% 120%;
  overflow: hidden;
  will-change: transform;
}
.fan-card img {
  width: 42%;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
}
.fan-card:nth-child(1) { transform: rotate(-36deg) translateY(5.2vw); }
.fan-card:nth-child(2) { transform: rotate(-24deg) translateY(2.8vw); }
.fan-card:nth-child(3) { transform: rotate(-12deg) translateY(0.8vw); }
.fan-card:nth-child(4) { transform: rotate(0deg) translateY(-0.6vw); }
.fan-card:nth-child(5) { transform: rotate(12deg) translateY(0.8vw); }
.fan-card:nth-child(6) { transform: rotate(24deg) translateY(2.8vw); }
.fan-card:nth-child(7) { transform: rotate(36deg) translateY(5.2vw); }
.fan p {
  max-width: 34em;
  margin: 2vw auto 0;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.team {
  padding: 0;
  width: 100%;
  background: var(--bg-soft);
}
.team-pin {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5vw 0 4.5vw;
  overflow: hidden;
  background: var(--bg-soft);
  pointer-events: auto;
}
.team .pin-spacer { pointer-events: none; }
.team-intro {
  text-align: center;
  padding: 0 var(--pad) 2.2vw;
}
.team-intro h2 {
  font-weight: 500;
  font-size: clamp(2rem, 3.75vw, 3.8rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  max-width: 18ch;
  margin-inline: auto;
}
.team-drag {
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}
.team-drag:active { cursor: grabbing; }
.team-drag .person { cursor: pointer; }
.team-row {
  display: flex;
  gap: 0.45vw;
  width: max-content;
  padding-left: 8vw;
  padding-right: 8vw;
  will-change: transform;
}
.person {
  position: relative;
  color: inherit;
  overflow: hidden;
  width: 22vw;
  min-width: 15rem;
  flex: 0 0 auto;
}
.person-photo {
  aspect-ratio: 0.82;
  background: #efefef;
  display: grid;
  overflow: hidden;
  margin-bottom: 0;
  filter: grayscale(1);
  position: relative;
}
.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  position: absolute;
  inset: 0;
}
.person:nth-child(even) .person-photo { background: #e4e4e4; }
.person-overlay {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  z-index: 2;
  max-width: calc(100% - 1.5rem);
  padding: 0.55rem 0.7rem;
  background: rgb(255 255 255 / 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}
.person:hover .person-overlay {
  opacity: 1;
  transform: none;
}
.person:hover .person-photo { filter: grayscale(0); }
.person-overlay h3 {
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.person-overlay .role {
  color: var(--hint);
  margin-bottom: 0.25em;
  font-size: 0.82em;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 0.7rem;
}
.team-grid .person {
  width: auto;
  min-width: 0;
}
.team-grid .person-photo {
  margin-bottom: 0.85rem;
  place-items: center;
  padding-bottom: 0;
  font-size: 4.2rem;
  filter: grayscale(0.35);
}
.team-grid .person:hover .person-photo { filter: grayscale(0); }
.team-grid .person-overlay { display: none; }
.team-grid .person h3 {
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}
.team-grid .person .role { color: var(--hint); margin-top: 0.15rem; }

/* Contact */
.contact {
  padding: 4.5vw var(--pad) 4vw;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.contact-grid { position: relative; z-index: 1; }
.contact-grid > * {
  position: relative;
  z-index: 1;
}
.contact-form {
  background: #fff;
  padding: 0.35rem 0 0;
}
.contact h2 {
  font-weight: 500;
  font-size: clamp(3rem, 7vw, 6.4rem);
  letter-spacing: -0.05em;
  line-height: 0.86;
  margin-bottom: 1.4rem;
  max-width: 12ch;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3vw;
  width: min(1680px, 100%);
  margin-inline: auto;
}
.contact-facts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.4rem;
  border-top: 1px solid var(--line-strong);
  padding-top: 1.1rem;
}
.contact-facts h3 {
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  letter-spacing: -0.03em;
}
.contact-facts p { color: var(--hint); }
.contact-facts a:hover { color: var(--red); }
.contact-form {
  display: grid;
  gap: 0.85rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hint);
}
input, select, textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  padding: 0.7rem 0;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: -0.01em;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
textarea { min-height: 7.5rem; resize: vertical; }
.btn {
  appearance: none;
  border: 0;
  background: var(--overlay);
  color: #fff;
  padding: 0.95rem 1.4rem;
  cursor: pointer;
  width: fit-content;
  margin-top: 0.4rem;
}
.btn:hover { background: #000; }

.contact-art {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: min(46%, 640px);
  height: 62%;
  background:
    linear-gradient(135deg, transparent 42%, var(--bg-soft) 42.2%),
    url("../img/hero-landscape.jpg") center / cover no-repeat;
  filter: grayscale(1) contrast(1.1) brightness(1.15);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 86%);
  opacity: 0.34;
  pointer-events: none;
}

/* Footer */
.site-footer { background: var(--overlay); color: #d7d7d7; }
.footer-cta {
  padding: 8vw var(--pad) 5vw;
  width: min(1680px, 100%);
  margin-inline: auto;
}
.footer-cta h2 {
  font-weight: 500;
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
  max-width: 14ch;
  margin-bottom: 1.8em;
}
.footer-cta .nav-cta {
  display: inline-flex;
  width: auto;
  min-width: 11.5em;
  min-height: 3.2em;
  height: auto;
  background: #fff;
  color: var(--ink);
  font-size: inherit;
}
.footer-cta .nav-cta:hover { background: var(--red); color: #fff; }
.footer-base {
  border-top: 1px solid rgb(255 255 255 / 0.12);
  padding: 1.1rem var(--pad) 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82em;
}
.footer-base a { color: #bdbdbd; }
.footer-base a:hover { color: #fff; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.1rem; }

/* Inner pages */
.page-hero {
  padding: 6vw var(--pad) 3vw;
  width: min(1680px, 100%);
  margin-inline: auto;
}
.page-hero .logo-ghost {
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  margin-bottom: 6vh;
}
.page-hero h1 {
  font-weight: 500;
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  letter-spacing: -0.055em;
  line-height: 0.84;
  max-width: 12ch;
}
.page-hero h1.wide { max-width: 18ch; }
.page-lead {
  display: grid;
  grid-template-columns: minmax(18rem, 38rem);
  gap: 2rem;
  padding: 4vw var(--pad) 2vw;
  width: min(1680px, 100%);
  margin-inline: auto;
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.4rem var(--pad) 3.5rem;
  width: min(1680px, 100%);
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
.metric-row p { color: var(--hint); font-size: 0.78em; letter-spacing: 0.1em; text-transform: uppercase; }
.metric-row b {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.95rem;
}

.spread {
  padding: 5vw var(--pad);
  width: min(1680px, 100%);
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
.spread h2 {
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  max-width: 16ch;
  margin-bottom: 1.2rem;
}
.spread-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3vw;
}
.prose p + p { margin-top: 1rem; }
.prose { max-width: 42rem; line-height: 1.5; }

.ask-grid, .module-grid, .cards, .twin {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.ask-grid { grid-template-columns: 1fr 1fr; }
.module-grid, .cards.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.grid-2 { grid-template-columns: 1fr 1fr; }
.twin { grid-template-columns: 1fr 1fr; }
.ask, .solution, .step, .card {
  border-top: 1px solid var(--ink);
  padding: 0.9rem 0 0.4rem;
}
.ask b, .solution h3, .step h3 {
  display: block;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}
.muted, .card-index, .step-index { color: var(--hint); }
.flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0;
}
.flow span {
  border: 1px solid var(--line-strong);
  padding: 0.35rem 0.55rem;
  font-size: 0.78em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.flow span:not(:last-child)::after { content: " →"; color: var(--red); }
.shot-slot {
  min-height: 140px;
  border: 1px dashed var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--hint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72em;
}
.shot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-top: 1.4rem; }
.shot-grid.stack { grid-template-columns: 1fr; }
.shot-grid.phones { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.shot-grid.phones-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.shot {
  margin: 0;
  border: 1px solid var(--line);
  background: #f3f3f1;
  overflow: hidden;
}
.shot img {
  display: block;
  width: 100%;
  height: auto;
}
.shot figcaption {
  padding: 0.65rem 0.8rem 0.8rem;
  color: var(--hint);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
}
.close-line {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
  max-width: 12ch;
}
.product-lockup { display: flex; align-items: center; gap: 1rem; }
.product-mark { width: 52px; height: 52px; object-fit: contain; }

.dossier {
  width: 100%;
  border-collapse: collapse;
  max-width: 920px;
}
.dossier th, .dossier td {
  text-align: left;
  vertical-align: top;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.dossier th {
  width: 12rem;
  color: var(--hint);
  font-weight: 500;
  font-size: 0.82em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.note {
  margin-top: 1.4rem;
  color: var(--hint);
  border-left: 2px solid var(--red);
  padding-left: 0.9rem;
  max-width: 40rem;
}

.cv-layout {
  display: grid;
  grid-template-columns: minmax(11rem, 16.5rem) minmax(0, 1fr);
  gap: 2.4rem 3vw;
  align-items: start;
}
.cv-photo {
  aspect-ratio: 0.82;
  background: #efefef;
  overflow: hidden;
  width: 100%;
  max-width: 16.5rem;
  position: relative;
}
.cv-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  position: absolute;
  inset: 0;
}
.cv-layout .dossier { max-width: none; }
.cv-exp { margin-top: 1.6rem; }
.cv-exp article {
  border-top: 1px solid var(--ink);
  padding: 0.95rem 0 1.05rem;
}
.cv-exp h3 {
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
}
.cv-exp .when {
  color: var(--hint);
  font-size: 0.82em;
  margin-bottom: 0.55rem;
}
.cv-exp ul {
  margin: 0;
  padding-left: 1.1rem;
  max-width: 42rem;
  line-height: 1.5;
}
.cv-exp li + li { margin-top: 0.35rem; }
.dossier td a { color: inherit; }

.kerp-toc {
  position: sticky;
  top: var(--header-h);
  z-index: 24;
  display: flex;
  gap: 0.1rem;
  overflow-x: auto;
  padding: 0.55rem var(--pad);
  background: rgb(255 255 255 / 0.78);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}
.kerp-toc::-webkit-scrollbar { display: none; }
.kerp-toc a {
  flex: 0 0 auto;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hint);
  padding: 0.38rem 0.7rem;
  border: 1px solid transparent;
}
.kerp-toc a:hover,
.kerp-toc a:focus-visible {
  color: var(--ink);
  border-color: var(--line-strong);
}
.shot.ui {
  max-width: 42rem;
  width: 100%;
  margin-inline: auto;
}
.shot-grid:has(.shot.ui) {
  max-width: 64rem;
  margin-inline: auto;
}
.shot-grid.stack:has(.shot.ui) {
  max-width: 42rem;
}
.shot.ui img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top center;
  filter: contrast(1.05) saturate(0.92);
}
.shot-grid.trio { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.shot-grid.handset {
  grid-template-columns: repeat(4, minmax(0, 13rem));
  justify-content: center;
  max-width: 56rem;
  margin-inline: auto;
}
.shot-grid.handset .shot {
  max-width: 13rem;
  margin-inline: auto;
}
.spread-phone {
  display: grid;
  grid-template-columns: 13.5rem minmax(0, 1fr);
  gap: 2rem 2.8rem;
  align-items: center;
  margin-top: 1.8rem;
}
.spread-phone.is-flip {
  grid-template-columns: minmax(0, 1fr) 13.5rem;
}
.spread-phone.is-flip .shot { order: 2; }
.spread-phone .shot {
  max-width: 13.5rem;
  margin: 0;
}
.spread-phone .shot img {
  width: 100%;
  height: auto;
  display: block;
}
.spread-phone .copy h3 {
  font-weight: 500;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.spread-phone .copy p + p { margin-top: 0.75rem; }
.shot.bare {
  max-width: 22rem;
  margin-inline: auto;
  border: 0;
  background: transparent;
}
.shot.bare img { width: 100%; }
.mascot-art {
  width: min(22rem, 100%);
  height: auto;
  display: block;
  margin-inline: auto;
}
.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hint);
  margin-bottom: 0.55rem;
}
.op-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.4rem;
}
.op-grid p {
  border-top: 1px solid var(--line-strong);
  padding-top: 0.75rem;
  font-size: 0.92em;
  line-height: 1.4;
  color: var(--hint);
}
.op-grid b {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0.28rem;
}
.roadmap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.1rem;
}
.roadmap span {
  background: var(--bg-soft);
  padding: 0.38rem 0.65rem;
  font-size: 0.8em;
}

.related {
  padding: 4vw var(--pad) 6vw;
  width: min(1680px, 100%);
  margin-inline: auto;
}
.related h2 {
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -0.04em;
  margin-bottom: 1.4rem;
}

.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  white-space: nowrap;
}

.char {
  display: inline-block;
  will-change: opacity;
}

#site-cursor {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: darken;
}
.cursor-follow,
.cursor-view,
.cursor-drag {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: transform;
}
.cursor-follow {
  width: 8px;
  height: 8px;
}
.cursor-view,
.cursor-drag {
  width: 99px;
  height: 99px;
  display: none;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.cursor-view span,
.cursor-drag span {
  opacity: 0;
}

@media (pointer: coarse) {
  #site-cursor { display: none; }
}

@media (max-width: 1280px) and (min-width: 1101px) {
  .site-nav { gap: 1rem; }
  .site-nav a,
  .nav-drop > button { font-size: 15px; }
  .nav-cta { width: min(12.5rem, 16vw); font-size: 15px; }
  .nav-lang { padding: 0 1.1rem; }
  .logo-type { font-size: 0.88rem; }
}

@media (max-width: 1100px) {
  :root { --header-h: 72px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    display: none;
    position: absolute;
    inset: var(--header-h) 0 auto 0;
    background: rgb(255 255 255 / 0.72);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    flex-direction: column;
    align-items: stretch;
    padding: 0.4rem 0 1rem;
    border-bottom: 1px solid rgb(0 0 0 / 0.06);
    gap: 0;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a, .nav-drop > button {
    padding: 0.9rem var(--pad);
    border-bottom: 1px solid var(--line);
    text-align: left;
  }
  .nav-drop-menu { position: static; transform: none; border: 0; }
  .header-inner { display: flex; }
  .site-nav {
    position: absolute;
    inset: var(--header-h) 0 auto 0;
    margin-left: 0;
    max-width: none;
    padding-right: 0;
    justify-content: stretch;
  }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta { display: none; }
  .header-end { display: none; }
  .footer-cta .nav-cta { display: inline-flex; }
  .stat:nth-child(2) { margin-top: 0; }
  .stat:nth-child(3),
  .stat:nth-child(4) { min-height: 11rem; }
  .stat { min-height: 11rem; }
  .hero-copy, .stats, .showcase-inner, .contact-grid, .spread-grid, .page-lead, .metric-row, .spread-phone, .spread-phone.is-flip {
    grid-template-columns: 1fr;
  }
  .spread-phone.is-flip .shot { order: 0; }
  .stats { min-height: 0; padding-bottom: 10vw; padding-top: 10vw; }
  .stats-copy { position: static; max-width: 100%; }
  .hero-aside { justify-self: start; align-self: start; max-width: 100%; }
  .hero-copy { padding-top: 1.2rem; padding-bottom: 4rem; min-height: 0; }
  .nav-drop:hover .nav-drop-menu { display: none; }
  .nav-drop.is-open .nav-drop-menu,
  .nav-drop:focus-within .nav-drop-menu { display: grid; }
  .team-head h2 { text-align: left; }
  .fan-row { min-height: 48vw; gap: 0.2vw; }
  .fan-card { width: 12.2vw; min-width: 2.6rem; font-size: 0.52em; }
  .fan-card:nth-child(1) { transform: rotate(-18deg) translateY(3.2vw); }
  .fan-card:nth-child(2) { transform: rotate(-12deg) translateY(1.8vw); }
  .fan-card:nth-child(3) { transform: rotate(-6deg) translateY(0.6vw); }
  .fan-card:nth-child(4) { transform: rotate(0deg) translateY(-0.4vw); }
  .fan-card:nth-child(5) { transform: rotate(6deg) translateY(0.6vw); }
  .fan-card:nth-child(6) { transform: rotate(12deg) translateY(1.8vw); }
  .fan-card:nth-child(7) { transform: rotate(18deg) translateY(3.2vw); }
  .person { width: 56vw; }
  .person-overlay {
    opacity: 1;
    transform: none;
    background: rgb(255 255 255 / 0.9);
  }
  .contact-art { display: none; }
  .showcase { height: auto; padding: 0; }
  .showcase-inner {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    max-height: none;
    width: 100%;
    background: #d8d8d8;
    padding: 2rem var(--pad) 2.2rem;
  }
  .showcase-stage {
    grid-template-columns: minmax(0, 1fr) minmax(9rem, 34%);
    min-height: 0;
  }
  .skill-mark { width: min(100%, 28vw); height: min(22vh, 160px); }
  .project-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .project-row:has(.project-logo) {
    grid-template-columns: 2.8rem 1fr;
    gap: 0.55rem 1rem;
    align-items: start;
  }
  .project-row:has(.project-logo) .project-logo { grid-row: 1 / span 3; }
  .project-row:has(.project-logo) .tag,
  .project-row:has(.project-logo) div,
  .project-row:has(.project-logo) .go { grid-column: 2; }
  .team-grid, .module-grid, .cards.grid-3, .ask-grid, .twin, .shot-grid, .contact-facts, .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .cv-layout {
    grid-template-columns: minmax(10rem, 14rem) minmax(0, 1fr);
  }
  .op-grid, .shot-grid.trio { grid-template-columns: 1fr 1fr; }
  .shot-grid.handset { grid-template-columns: repeat(2, minmax(0, 13rem)); }
}

@media (max-width: 1100px) {
  .shot-grid.phones,
  .shot-grid.phones-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shot-grid.stack { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .team-grid, .module-grid, .cards.grid-3, .ask-grid, .twin, .shot-grid, .contact-facts, .form-row, .stat-grid {
    grid-template-columns: 1fr;
  }
  .cv-layout { grid-template-columns: 1fr; }
  .cv-photo { max-width: 16rem; }
  .shot-grid.phones,
  .shot-grid.phones-3 { grid-template-columns: 1fr 1fr; }
  .shot-grid.stack { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.5rem, 14vw, 3.5rem); max-width: 100%; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .hero, .showcase-inner { overflow-x: clip; }
  .op-grid { grid-template-columns: 1fr 1fr; }
  .shot-grid.trio { grid-template-columns: 1fr; }
}

