:root {
  --paper: #f2f3f1;
  --paper-deep: #e6e7e4;
  --paper-light: #f8f9f7;
  --ink: #112020;
  --ink-soft: #495552;
  --line: #82847f;
  --acid: #d9ff68;
  --coral: #b74334;
  --coral-bright: #f77b62;
  --lilac: #d8c8e5;
  --success: #2c6c42;
  --error: #a33f38;
  --font-sans: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
  --shadow: 10px 12px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--paper);
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  font-kerning: normal;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper-light);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out-expo);
}

.skip-link:focus {
  transform: translateY(0);
}

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.section-shell {
  width: min(100% - 64px, 1240px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(17, 32, 32, 0.14);
  background: var(--paper);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 64px, 1240px);
  height: 82px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  transform: rotate(-8deg);
}

.brand__text {
  display: grid;
  gap: 1px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand__text small {
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
}

.desktop-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out-expo);
}

.desktop-nav > a:not(.nav-cta):hover::after,
.desktop-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  color: var(--paper-light);
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  transition: color 180ms ease, background 180ms ease, transform 180ms var(--ease-out-quart);
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.eyebrow,
.section-label,
.page-hero__top,
.page-hero__bottom,
.hero-meta,
.closing-cta__top,
.archive-count,
.form-card__top {
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-bright);
  box-shadow: 0 0 0 4px rgba(247, 123, 98, 0.18);
}

.eyebrow--light {
  color: var(--paper-deep);
}

.section-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
}

.section-label span:first-child {
  color: var(--coral);
}

.section-label--light {
  color: var(--paper-deep);
  border-color: rgba(248, 249, 247, 0.25);
}

.section-label--light span:first-child {
  color: var(--acid);
}

.hero {
  display: flex;
  min-height: min(770px, calc(100svh - 82px));
  align-items: center;
  padding-block: clamp(72px, 9vw, 134px) clamp(80px, 10vw, 144px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: center;
  gap: clamp(38px, 7vw, 116px);
  width: 100%;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 11ch;
  margin-top: 32px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.hero-copy h1 em,
.hero-copy h1 span,
.page-hero h1 em,
.contact-hero h1 em,
h2 em {
  color: var(--coral);
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
}

.hero-copy h1 em,
.page-hero h1 em,
.contact-hero h1 em,
h2 em {
  font-size: 1.08em;
}

.hero-copy h1 span {
  display: block;
  max-width: 630px;
  margin-top: 16px;
  color: var(--ink);
  font-size: 0.51em;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-intro {
  max-width: 42ch;
  margin-top: 35px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms var(--ease-out-quart);
}

.button:hover {
  transform: translateY(-3px);
}

.button--dark {
  color: var(--paper-light);
  border-color: var(--ink);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: var(--acid);
}

.button--outline {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.button--outline:hover {
  background: var(--acid);
}

.button--large {
  min-height: 58px;
  padding-inline: 24px;
}

.button.is-loading {
  opacity: 0.6;
  cursor: progress;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  padding-block: 8px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, gap 180ms var(--ease-out-quart);
}

.text-link:hover {
  gap: 18px;
  color: var(--coral);
  border-color: var(--coral);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-3);
  margin-top: 62px;
}

.hero-meta span::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 9px 2px 0;
  content: "";
  border-radius: 50%;
  background: var(--ink-soft);
}

.hero-meta span:first-child::before {
  display: none;
}

.hero-art {
  position: relative;
  min-height: 560px;
}

.hero-art__index {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 0;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-frame {
  position: absolute;
  z-index: 1;
  top: 58px;
  right: 4%;
  width: min(100%, 540px);
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
  transition: transform 500ms var(--ease-out-expo), box-shadow 500ms var(--ease-out-expo);
}

.hero-frame:hover {
  box-shadow: 15px 17px 0 var(--ink);
  transform: rotate(0deg) translateY(-7px);
}

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

.hero-frame__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px 13px;
  color: var(--paper-light);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-frame__caption span:first-child {
  color: var(--acid);
}

.hero-note {
  position: absolute;
  z-index: 3;
  bottom: 42px;
  left: 1%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px 12px;
  border: 1px solid var(--ink);
  background: var(--coral-bright);
  transform: rotate(-5deg);
}

.hero-note span {
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.hero-note p {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-stamp {
  position: absolute;
  right: 2%;
  bottom: 10px;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  transform: rotate(12deg);
}

.hero-stamp::after {
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--ink);
  border-radius: inherit;
  content: "";
}

.hero-art__line {
  position: absolute;
  top: 50%;
  right: -12%;
  width: 105%;
  border-top: 1px solid var(--coral);
  transform: rotate(-19deg);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--paper-light);
  background: var(--ink);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding-block: 15px 14px;
  animation: marquee 28s linear infinite;
}

.marquee span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.marquee i {
  color: var(--acid);
  font-size: 1.2rem;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.intro {
  padding-block: clamp(88px, 10vw, 152px) clamp(72px, 8vw, 128px);
}

.work-section {
  padding-block: clamp(88px, 10vw, 152px) clamp(96px, 11vw, 168px);
}

.proof-section {
  padding-block: clamp(88px, 10vw, 152px) clamp(96px, 11vw, 168px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(44px, 9vw, 140px);
  padding-top: 45px;
}

.intro-grid h2,
.section-heading h2,
.proof-section h2,
.about-card h2,
.archive-cta h2,
.contact-aside h2 {
  max-width: 18ch;
  font-size: clamp(2.8rem, 5.5vw, 5.6rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.closing-cta h2 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 7.8vw, 5.9rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.intro-copy {
  align-self: end;
  max-width: 35ch;
  padding-bottom: 6px;
}

.intro-copy p,
.section-heading p,
.process-intro > p:last-child,
.about-card__content > p,
.page-hero__bottom p,
.contact-hero__grid p,
.contact-aside > p {
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.6;
}

.intro-copy .text-link {
  margin-top: 28px;
}

.stat-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 96px;
  border-top: 1px solid var(--line);
}

.stat-line div {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 17px;
}

.stat-line strong {
  font-size: clamp(2.3rem, 3.6vw, 3.55rem);
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.stat-line span {
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-5);
  padding-top: clamp(32px, 3.5vw, 48px);
}

.section-heading p {
  max-width: 43ch;
  margin-top: clamp(20px, 2vw, 28px);
}

.featured-work-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: clamp(28px, 4vw, 54px) 24px;
  margin-top: clamp(56px, 5.5vw, 80px);
}

.project-card {
  min-width: 0;
  grid-column: span 4;
}

.featured-work-grid .project-card:nth-child(1),
.featured-work-grid .project-card:nth-child(4),
.featured-work-grid .project-card:nth-child(6) {
  grid-column: span 7;
}

.featured-work-grid .project-card:nth-child(2),
.featured-work-grid .project-card:nth-child(3),
.featured-work-grid .project-card:nth-child(5) {
  grid-column: span 5;
}

.project-visual {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--paper-deep);
}

.project-visual figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease-out-expo), filter 650ms var(--ease-out-expo);
}

.project-overlay {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  color: var(--paper-light);
  border: 1px solid rgba(248, 249, 247, 0.35);
  background: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 250ms ease, transform 350ms var(--ease-out-expo);
}

.project-overlay span:last-child {
  color: var(--acid);
  font-size: 1rem;
}

.project-visual:hover img,
.project-visual:focus-visible img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.035);
}

.project-visual:hover .project-overlay,
.project-visual:focus-visible .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-body {
  position: relative;
  padding-top: 17px;
}

.project-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.project-number,
.project-platform,
.project-tags,
.project-detail-button,
.proof-card__source {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-number {
  color: var(--coral);
}

.project-platform {
  color: var(--ink-soft);
}

.project-title {
  margin-top: 8px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1;
}

.project-summary {
  max-width: 48ch;
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.project-outcome {
  max-width: 48ch;
  margin-top: var(--space-2);
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.45;
}

.project-outcome span {
  display: block;
  margin-bottom: 5px;
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-3);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--ink-soft);
}

.project-tags span {
  padding: 5px 7px 4px;
  border: 1px solid var(--line);
}

.project-detail-button {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 0.6rem;
  transition: color 180ms ease, border-color 180ms ease, gap 180ms var(--ease-out-quart);
}

.project-detail-button:hover {
  gap: 13px;
  color: var(--coral);
  border-color: var(--coral);
}

.case-study-section {
  padding-block: clamp(96px, 12vw, 168px);
  background: var(--paper-deep);
}

.case-study-list {
  display: grid;
  gap: clamp(var(--space-4), 3vw, 40px);
  margin-top: clamp(52px, 5.5vw, 76px);
}

.case-study-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 80px);
  padding: 24px;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.case-study-card:nth-child(even) {
  background: var(--lilac);
}

.case-study-visual {
  position: relative;
  display: block;
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--paper-deep);
}

.case-study-visual figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.case-study-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease-out-expo), filter 650ms var(--ease-out-expo);
}

.case-study-visual:hover img,
.case-study-visual:focus-visible img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.035);
}

.case-study-visual:hover .project-overlay,
.case-study-visual:focus-visible .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

.case-study-content {
  align-self: center;
  min-width: 0;
  padding-block: 10px;
}

.case-study-kicker {
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-study-content h3 {
  max-width: 14ch;
  margin-top: 24px;
  font-size: clamp(2.3rem, 4.4vw, 4.7rem);
  letter-spacing: -0.04em;
  line-height: 0.91;
}

.case-study-lead {
  max-width: 48ch;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.case-study-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px;
  margin-top: 32px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.case-study-facts > div:first-child {
  grid-column: 1 / -1;
}

.case-study-facts dt,
.case-study-outcome span {
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-study-facts dd {
  max-width: 34ch;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.case-study-outcome {
  display: grid;
  gap: 9px;
  margin-top: 31px;
  padding-top: 17px;
  border-top: 1px solid var(--ink);
}

.case-study-outcome strong {
  max-width: 20ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.case-study-content .project-detail-button {
  margin-top: 28px;
}

.process-section {
  overflow: hidden;
  color: var(--paper-light);
  background: var(--ink);
}

.process-section::before {
  display: block;
  height: 13px;
  content: "";
  background: var(--acid);
}

.process-section .section-shell {
  padding-block: clamp(84px, 10vw, 148px);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 150px);
  padding-top: 55px;
}

.process-intro h2 {
  max-width: 13ch;
  margin-top: 35px;
  font-size: clamp(2.8rem, 5.5vw, 5.6rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.process-intro h2 em {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 1.08em;
  font-weight: 700;
  font-style: normal;
}

.process-intro > p:last-child {
  max-width: 37ch;
  margin-top: 35px;
  color: var(--paper-deep);
}

.process-list {
  border-top: 1px solid rgba(248, 249, 247, 0.28);
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding-block: 25px 27px;
  border-bottom: 1px solid rgba(248, 249, 247, 0.28);
}

.process-list li > span {
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.process-list h3 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 0.95;
}

.process-list p {
  max-width: 45ch;
  margin-top: 10px;
  color: var(--paper-deep);
  font-size: 0.94rem;
  line-height: 1.5;
}

.proof-section {
  padding-bottom: clamp(96px, 11vw, 168px);
}

.section-heading--proof {
  padding-top: 45px;
}

.section-heading--proof p {
  max-width: 38ch;
  margin-top: 32px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: clamp(52px, 5vw, 72px);
}

.proof-card {
  position: relative;
  min-height: 330px;
  padding: 22px 22px 28px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.proof-card--featured {
  background: var(--ink);
  color: var(--paper-light);
}

.proof-card--featured .proof-card__source {
  color: var(--acid);
}

.proof-card--featured .proof-card__result {
  color: var(--paper-light);
}

.proof-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--acid);
  border-bottom: 1px solid var(--acid);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 180ms var(--ease-out-quart);
}

.proof-card__link:hover {
  gap: 13px;
}

.proof-card__source {
  color: var(--ink-soft);
}

.proof-card__result {
  max-width: 19ch;
  margin-top: 42px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.proof-card__mark {
  position: absolute;
  right: 22px;
  bottom: 24px;
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.about-section {
  padding-bottom: clamp(90px, 12vw, 170px);
}

.about-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1.55fr);
  min-height: 520px;
  overflow: hidden;
  color: var(--paper-light);
  background: var(--ink);
}

.about-card__word {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: var(--ink);
  background: var(--coral-bright);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-card__content {
  padding: clamp(34px, 6vw, 80px);
}

.about-card h2 {
  max-width: 18ch;
  margin-top: 48px;
  color: var(--paper-light);
}

.about-card h2 em {
  color: var(--acid);
  font-weight: 700;
  font-style: normal;
}

.about-card__content > p {
  max-width: 48ch;
  margin-top: 35px;
  color: var(--paper-deep);
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.skill-list span {
  padding: 7px 10px 6px;
  color: var(--paper-light);
  border: 1px solid rgba(248, 249, 247, 0.4);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.closing-cta {
  padding-block: clamp(72px, 10vw, 132px) clamp(80px, 10vw, 144px);
}

.closing-cta__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}

.closing-cta h2 {
  margin-top: 54px;
}

.closing-cta h2 em {
  color: var(--coral);
  font-weight: 700;
  font-style: normal;
}

.closing-cta > p {
  margin-top: 36px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.closing-cta .button {
  margin-top: 28px;
}

.site-footer {
  color: var(--paper-light);
  background: var(--ink);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 28px;
  width: min(100% - 64px, 1240px);
  min-height: 220px;
  margin-inline: auto;
  padding-block: 42px;
}

.footer-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--acid);
  border-radius: 50%;
  background: var(--acid);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.site-footer p {
  margin-top: 15px;
  color: var(--paper-deep);
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 24px;
  align-self: center;
  color: var(--paper-light);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--acid);
}

.footer-meta {
  justify-self: end;
  margin-top: 0;
  color: var(--paper-deep);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

/* Work archive */
.page-hero {
  padding-block: clamp(92px, 13vw, 180px) clamp(70px, 9vw, 124px);
}

.page-hero__top,
.page-hero__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.page-hero__top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 18ch;
  margin-top: 42px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.page-hero__bottom {
  align-items: end;
  margin-top: 72px;
}

.page-hero__bottom p {
  max-width: 43ch;
}

.page-hero__bottom span {
  flex: none;
}

.archive-section {
  padding-bottom: clamp(100px, 14vw, 200px);
}

.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 11px;
  color: var(--ink-soft);
  border: 1px solid transparent;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.filter-button span {
  color: var(--coral);
  font-size: 0.68rem;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--acid);
}

.archive-grid {
  margin-top: clamp(52px, 5vw, 72px);
}

.archive-grid .project-card {
  grid-column: span 4;
}

.archive-cta {
  padding-bottom: clamp(80px, 10vw, 144px);
}

.archive-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 25px;
  padding: 44px;
  border: 1px solid var(--ink);
  background: var(--coral-bright);
}

.archive-cta__inner > span {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archive-cta h2 {
  max-width: 18ch;
  font-size: clamp(2.8rem, 5.5vw, 5.6rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.archive-cta h2 em {
  color: var(--ink);
  font-weight: 700;
  font-style: normal;
}

/* Project details dialog */
.project-dialog {
  width: min(880px, calc(100% - 32px));
  max-height: min(760px, calc(100% - 32px));
  padding: 0;
  color: var(--paper-light);
  border: 1px solid var(--paper-light);
  background: var(--ink);
  box-shadow: 15px 18px 0 var(--coral-bright);
}

.project-dialog::backdrop {
  background: rgba(17, 32, 32, 0.72);
}

.project-dialog__inner {
  position: relative;
  overflow: auto;
  max-height: min(760px, calc(100vh - 32px));
  padding: clamp(28px, 5vw, 64px);
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--paper-light);
  border: 1px solid rgba(248, 249, 247, 0.4);
  border-radius: 50%;
  background: transparent;
  font-size: 1.65rem;
  line-height: 1;
}

.dialog-close:hover {
  color: var(--ink);
  background: var(--acid);
}

.dialog-kicker {
  color: var(--acid);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-dialog h2 {
  max-width: 18ch;
  margin-top: 25px;
  font-size: clamp(2.4rem, 4.5vw, 4.7rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.dialog-summary {
  max-width: 56ch;
  margin-top: 28px;
  color: var(--paper-deep);
  font-size: 1.02rem;
}

.dialog-proof {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin-top: 28px;
  padding-top: 18px;
  color: var(--paper-light);
  border-top: 1px solid rgba(248, 249, 247, 0.3);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.dialog-proof span {
  color: var(--acid);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.dialog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(248, 249, 247, 0.3);
}

.dialog-grid h3 {
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-grid p {
  margin-top: 10px;
  color: var(--paper-deep);
  font-size: 0.91rem;
  line-height: 1.55;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 40px;
}

.dialog-actions .button--outline {
  color: var(--paper-light);
  border-color: rgba(248, 249, 247, 0.45);
}

.dialog-actions .button--outline:hover {
  color: var(--ink);
}

/* Contact page */
.contact-hero {
  padding-block: clamp(92px, 12vw, 155px) clamp(78px, 10vw, 135px);
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  align-items: end;
  gap: 70px;
  margin-top: 54px;
}

.contact-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.contact-hero h1 em {
  display: inline;
}

.contact-hero__grid p {
  max-width: 47ch;
  margin-top: 38px;
}

.contact-orbit {
  position: relative;
  display: grid;
  width: 215px;
  height: 215px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: rotate(14deg);
}

.contact-orbit::before,
.contact-orbit::after {
  position: absolute;
  border: 1px solid var(--coral);
  border-radius: 50%;
  content: "";
}

.contact-orbit::before {
  inset: 23px -18px;
}

.contact-orbit::after {
  inset: -18px 23px;
  border-color: var(--acid);
}

.contact-orbit span {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 17px;
  color: var(--coral);
  font-size: 1.6rem;
}

.contact-orbit i {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
}

.contact-orbit b {
  position: absolute;
  bottom: 18px;
  left: 21px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  transform: rotate(-14deg);
}

.contact-section {
  padding-bottom: clamp(88px, 10vw, 148px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
}

.contact-aside h2 {
  margin-top: 43px;
}

.contact-aside > p {
  max-width: 38ch;
  margin-top: 28px;
}

.contact-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.contact-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-list li > span {
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.contact-list strong,
.contact-list small {
  display: block;
}

.contact-list strong {
  font-size: 0.96rem;
}

.contact-list small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.form-card {
  padding: clamp(24px, 5vw, 55px);
  border: 1px solid var(--ink);
  background: var(--paper-deep);
  box-shadow: 12px 13px 0 var(--coral-bright);
}

.form-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-row {
  padding-block: 22px 9px;
  border-bottom: 1px solid var(--line);
}

.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row label span {
  color: var(--coral);
}

.form-row input,
.form-row select,
.form-row textarea {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 4px 0 7px;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1.02rem;
}

.form-row select {
  cursor: pointer;
}

.form-row textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.5;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--ink-soft);
}

.form-row:focus-within {
  border-color: var(--ink);
}

.form-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-top: 25px;
}

.form-card__footer p {
  max-width: 30ch;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.form-status {
  min-height: 24px;
  margin-top: 17px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--error);
}

.contact-footer-note {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: clamp(80px, 9vw, 128px);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal-in 800ms var(--ease-out-expo) forwards;
}

.reveal--delay {
  animation-delay: 120ms;
}

@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1020px) {
  .hero-grid {
    gap: 45px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 6vw, 5.6rem);
  }

  .hero-art {
    min-height: 500px;
  }

  .featured-work-grid .project-card:nth-child(n),
  .archive-grid .project-card:nth-child(n) {
    grid-column: span 6;
  }

  .featured-work-grid .project-card:nth-child(3),
  .featured-work-grid .project-card:nth-child(6) {
    grid-column: span 6;
  }

  .process-layout,
  .contact-layout {
    gap: 55px;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .site-header__inner,
  .site-footer__inner {
    width: min(100% - 40px, 1240px);
  }

  .site-header__inner {
    height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 45px;
    height: 45px;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 16px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms var(--ease-out-quart);
  }

  .site-header.is-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding-inline: 20px;
    background: var(--paper);
    visibility: hidden;
    pointer-events: none;
    transition: max-height 350ms var(--ease-out-expo), padding-block 350ms var(--ease-out-expo), visibility 0s linear 0s;
  }

  .site-header.is-open .mobile-nav {
    max-height: 340px;
    padding-block: 10px 18px;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 350ms var(--ease-out-expo), padding-block 350ms var(--ease-out-expo), visibility 0s linear 0s;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    border-bottom: 1px solid var(--line);
    font-size: 1.2rem;
    letter-spacing: -0.03em;
  }

  .mobile-nav a span {
    color: var(--coral);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero {
    min-height: auto;
    padding-block: 70px 92px;
  }

  .hero-grid,
  .intro-grid,
  .process-layout,
  .contact-layout,
  .contact-hero__grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 70px;
  }

  .hero-copy h1 {
    margin-top: 25px;
    font-size: clamp(2.65rem, 12vw, 4.4rem);
  }

  .hero-intro {
    margin-top: 28px;
    font-size: 1rem;
  }

  .hero-meta {
    margin-top: 43px;
    line-height: 1.6;
  }

  .hero-art {
    min-height: min(500px, 112vw);
  }

  .hero-frame {
    top: 38px;
    right: 2%;
    width: 92%;
  }

  .hero-note {
    bottom: 23px;
  }

  .hero-stamp {
    right: -1%;
    bottom: 8px;
    width: 90px;
    height: 90px;
    font-size: 3rem;
  }

  .intro,
  .work-section,
  .proof-section {
    padding-block: 90px;
  }

  .intro-grid {
    gap: 33px;
    padding-top: 35px;
  }

  .intro-grid h2,
  .section-heading h2,
  .proof-section h2,
  .about-card h2,
  .archive-cta h2,
  .contact-aside h2 {
    font-size: clamp(2.65rem, 12vw, 4.4rem);
  }

  .stat-line {
    gap: 14px;
    margin-top: 66px;
  }

  .stat-line div {
    display: grid;
    gap: 9px;
  }

  .stat-line strong {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .stat-line span {
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .section-heading {
    display: grid;
    gap: 30px;
    padding-top: 35px;
  }

  .section-heading p {
    margin-top: 22px;
  }

  .featured-work-grid,
  .archive-grid {
    grid-template-columns: 1fr;
    gap: 49px;
    margin-top: 52px;
  }

  .case-study-section {
    padding-block: 90px;
  }

  .case-study-list {
    gap: 25px;
    margin-top: 52px;
  }

  .case-study-card {
    grid-template-columns: 1fr;
    gap: 27px;
    padding: 18px;
  }

  .case-study-content {
    padding-block: 0 5px;
  }

  .case-study-content h3 {
    max-width: 14ch;
    margin-top: 20px;
    font-size: clamp(2.3rem, 11vw, 4.2rem);
  }

  .case-study-facts {
    grid-template-columns: 1fr;
    gap: 19px;
    margin-top: 27px;
  }

  .case-study-facts > div:first-child {
    grid-column: auto;
  }

  .case-study-outcome {
    margin-top: 26px;
  }

  .case-study-outcome strong {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .featured-work-grid .project-card:nth-child(n),
  .archive-grid .project-card:nth-child(n) {
    grid-column: span 1;
  }

  .project-title {
    font-size: 1.65rem;
  }

  .process-section .section-shell {
    padding-block: 92px 98px;
  }

  .process-layout {
    gap: 55px;
    padding-top: 38px;
  }

  .process-intro h2 {
    margin-top: 28px;
    font-size: clamp(2.65rem, 12vw, 4.4rem);
  }

  .process-list li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding-block: 23px;
  }

  .process-list p {
    font-size: 0.9rem;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 19px;
    margin-top: 48px;
  }

  .proof-card {
    min-height: 265px;
  }

  .proof-card__result {
    max-width: 18ch;
    margin-top: 35px;
    font-size: 2.5rem;
  }

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

  .about-card__word {
    min-height: 110px;
    padding: 22px;
    writing-mode: initial;
    transform: none;
  }

  .about-card__content {
    padding: 35px 24px 42px;
  }

  .about-card h2 {
    margin-top: 34px;
  }

  .closing-cta__top,
  .page-hero__top,
  .page-hero__bottom,
  .contact-footer-note {
    align-items: start;
    flex-direction: column;
    gap: 11px;
  }

  .closing-cta h2 {
    margin-top: 45px;
    font-size: clamp(2.65rem, 12vw, 4.4rem);
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    min-height: 260px;
  }

  .footer-links {
    display: grid;
    justify-self: end;
    gap: 12px;
    text-align: right;
  }

  .footer-meta {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .page-hero {
    padding-block: 85px 80px;
  }

  .page-hero h1 {
    margin-top: 42px;
    font-size: clamp(2.65rem, 12vw, 4.4rem);
  }

  .page-hero__bottom {
    align-items: start;
    margin-top: 48px;
  }

  .archive-toolbar {
    display: grid;
    gap: 15px;
  }

  .filter-group {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 5px;
    scrollbar-width: none;
  }

  .filter-group::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: none;
  }

  .archive-count {
    font-size: 0.6rem;
  }

  .archive-cta__inner {
    display: grid;
    padding: 27px 22px 31px;
  }

  .archive-cta .button {
    justify-self: start;
  }

  .dialog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 37px;
  }

  .project-dialog h2 {
    font-size: clamp(2.3rem, 11vw, 4.2rem);
  }

  .contact-hero {
    padding-block: 85px 75px;
  }

  .contact-hero__grid {
    gap: 50px;
    margin-top: 44px;
  }

  .contact-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.4rem);
  }

  .contact-orbit {
    width: 170px;
    height: 170px;
    margin-left: auto;
    transform: rotate(14deg) scale(0.9);
    transform-origin: right center;
  }

  .contact-section {
    padding-bottom: 100px;
  }

  .contact-layout {
    gap: 70px;
  }

  .contact-aside h2 {
    margin-top: 35px;
  }

  .form-card {
    box-shadow: 7px 8px 0 var(--coral-bright);
  }

  .form-card__footer {
    align-items: start;
    flex-direction: column;
  }

  .form-card__footer .button {
    width: 100%;
  }
}

@media (pointer: coarse) {
  .button,
  .nav-cta,
  .filter-button,
  .project-detail-button {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Homepage: project wall in a quiet studio */
body[data-page="home"] .section-shell {
  width: min(100% - 64px, 1200px);
}

body[data-page="home"] .hero {
  display: block;
  min-height: 0;
  padding-block: clamp(46px, 5vw, 70px) clamp(42px, 4vw, 58px);
}

body[data-page="home"] .hero-copy {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

body[data-page="home"] .hero-kicker {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

body[data-page="home"] .hero-copy h1 {
  max-width: 11ch;
  margin: 18px auto 0;
  font-size: clamp(3.4rem, 7vw, 5.35rem);
  letter-spacing: -0.04em;
  line-height: 0.88;
}

body[data-page="home"] .hero-copy h1 em,
body[data-page="home"] h2 em {
  color: var(--coral);
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
}

body[data-page="home"] .hero-intro {
  max-width: 58ch;
  margin: 19px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.58;
  text-wrap: pretty;
}

body[data-page="home"] .hero-actions {
  justify-content: center;
  margin-top: 24px;
}

body[data-page="home"] .text-link {
  min-height: 44px;
  align-items: center;
}

body[data-page="home"] .hero-filmstrip {
  margin: clamp(34px, 4vw, 48px) 0 0;
}

body[data-page="home"] .hero-filmstrip__rail {
  display: flex;
  height: clamp(252px, 24vw, 330px);
  align-items: center;
  justify-content: center;
  padding-inline: 5%;
  isolation: isolate;
}

body[data-page="home"] .hero-filmstrip__card {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  overflow: hidden;
  width: clamp(170px, 18vw, 250px);
  margin-inline: -14px;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(17, 32, 32, 0.56);
  border-radius: 12px;
  background: var(--paper-deep);
  box-shadow: 0 7px 0 rgba(17, 32, 32, 0.12);
}

body[data-page="home"] .hero-filmstrip__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="home"] .hero-filmstrip__card--one { z-index: 5; transform: rotate(-11deg) translateY(8%); }
body[data-page="home"] .hero-filmstrip__card--two { z-index: 4; transform: rotate(-5deg) translateY(2%); }
body[data-page="home"] .hero-filmstrip__card--three { z-index: 3; transform: rotate(0deg); }
body[data-page="home"] .hero-filmstrip__card--four { z-index: 2; transform: rotate(5deg) translateY(2%); }
body[data-page="home"] .hero-filmstrip__card--five { z-index: 1; transform: rotate(11deg) translateY(8%); }

body[data-page="home"] .hero-filmstrip figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

body[data-page="home"] .trust-line {
  border-block: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

body[data-page="home"] .trust-line .section-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 84px;
}

body[data-page="home"] .trust-line p {
  max-width: 61ch;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.45;
}

body[data-page="home"] .trust-line a {
  display: inline-flex;
  flex: none;
  min-height: 44px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, gap 180ms var(--ease-out-quart);
  gap: 8px;
}

body[data-page="home"] .trust-line a:hover {
  gap: 13px;
  color: var(--coral);
  border-color: var(--coral);
}

body[data-page="home"] .value-paths {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(52px, 10vw, 150px);
  padding-block: clamp(90px, 12vw, 160px);
}

body[data-page="home"] .value-paths__intro h2,
body[data-page="home"] .process-intro h2 {
  max-width: 13ch;
  margin-top: 16px;
}

body[data-page="home"] .section-heading--home h2 {
  max-width: 18ch;
  margin-top: 16px;
}

body[data-page="home"] .value-paths__list {
  border-top: 1px solid var(--ink);
}

body[data-page="home"] .value-paths__list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: 20px;
  padding: 24px 0 27px;
  border-bottom: 1px solid var(--line);
}

body[data-page="home"] .value-paths h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

body[data-page="home"] .value-paths__list p {
  max-width: 48ch;
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  text-wrap: pretty;
}

body[data-page="home"] .work-section {
  padding-block: clamp(96px, 11vw, 160px);
  border-top: 1px solid var(--line);
}

body[data-page="home"] .case-study-section,
body[data-page="home"] .proof-section {
  padding-block: clamp(84px, 10vw, 142px);
}

body[data-page="home"] .section-heading--home {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(32px, 8vw, 115px);
  padding: 0;
}

body[data-page="home"] .section-heading--home > p {
  max-width: 47ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.58;
  text-wrap: pretty;
}

body[data-page="home"] .featured-work-grid {
  gap: clamp(44px, 5.5vw, 80px) clamp(32px, 3vw, 48px);
  margin-top: clamp(64px, 8vw, 104px);
}

body[data-page="home"] .featured-work-grid .project-card:nth-child(1),
body[data-page="home"] .featured-work-grid .project-card:nth-child(4),
body[data-page="home"] .featured-work-grid .project-card:nth-child(6) { grid-column: span 7; }

body[data-page="home"] .featured-work-grid .project-card:nth-child(2),
body[data-page="home"] .featured-work-grid .project-card:nth-child(3),
body[data-page="home"] .featured-work-grid .project-card:nth-child(5) { grid-column: span 5; }

body[data-page="home"] .featured-work-grid .project-card:nth-child(2) .project-summary,
body[data-page="home"] .featured-work-grid .project-card:nth-child(3) .project-summary,
body[data-page="home"] .featured-work-grid .project-card:nth-child(5) .project-summary {
  max-width: 36ch;
}

body[data-page="home"] .featured-work-grid .project-card:nth-child(2) .project-outcome,
body[data-page="home"] .featured-work-grid .project-card:nth-child(3) .project-outcome,
body[data-page="home"] .featured-work-grid .project-card:nth-child(5) .project-outcome {
  max-width: 36ch;
}

body[data-page="home"] .project-visual,
body[data-page="home"] .case-study-visual {
  border: 0;
  border-radius: 12px;
  background: var(--paper-deep);
}

body[data-page="home"] .project-overlay {
  right: 10px;
  bottom: 10px;
  left: auto;
  padding: 6px 10px 5px;
  border: 1px solid rgba(248, 249, 247, 0.5);
  border-radius: 999px;
  color: var(--paper-light);
  background: rgba(17, 32, 32, 0.62);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  opacity: 1;
  transform: none;
  transition: background 200ms ease, border-color 200ms ease;
}

body[data-page="home"] .project-visual:hover .project-overlay,
body[data-page="home"] .project-visual:focus-visible .project-overlay {
  background: var(--ink);
  border-color: rgba(248, 249, 247, 0.7);
}

body[data-page="home"] .project-overlay span:first-child { font-size: 0.62rem; }
body[data-page="home"] .project-overlay span:last-child { font-size: 0.82rem; }

body[data-page="home"] .project-body { padding-top: clamp(20px, 2vw, 28px); }
body[data-page="home"] .project-title { font-size: clamp(1.45rem, 2.2vw, 2rem); }
body[data-page="home"] .project-summary { color: var(--ink-soft); }
body[data-page="home"] .project-outcome { font-size: 0.9rem; }
body[data-page="home"] .project-footer { align-items: flex-end; }

body[data-page="home"] .work-section__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: clamp(56px, 7vw, 88px);
}

body[data-page="home"] .work-section__count {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

body[data-page="home"] .work-section__cta {
  margin-top: 0;
}

body[data-page="home"] .mid-cta {
  padding-block: clamp(64px, 8vw, 104px);
  color: var(--paper-light);
  background: var(--ink);
}

body[data-page="home"] .mid-cta__inner {
  display: block;
  max-width: 720px;
}

body[data-page="home"] .mid-cta h2 {
  max-width: 13ch;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

body[data-page="home"] .mid-cta h2 em,
body[data-page="home"] .process-intro h2 em { color: var(--acid); font-weight: 700; font-style: normal; }

body[data-page="home"] .button--light {
  margin-top: 28px;
  color: var(--ink);
  border-color: var(--acid);
  background: var(--acid);
}

body[data-page="home"] .button--light:hover { background: var(--paper-light); }

body[data-page="home"] .case-study-section { background: transparent; }

body[data-page="home"] .case-study-list {
  gap: clamp(62px, 9vw, 120px);
  margin-top: clamp(54px, 7vw, 90px);
}

body[data-page="home"] .case-study-card,
body[data-page="home"] .case-study-card:nth-child(even) {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 7vw, 100px);
  padding: 0;
  border: 0;
  background: transparent;
}

body[data-page="home"] .case-study-card:nth-child(even) .case-study-visual { order: 2; }

body[data-page="home"] .case-study-content { padding: 0; }
body[data-page="home"] .case-study-kicker { color: var(--coral); }
body[data-page="home"] .case-study-content h3 { max-width: 14ch; margin-top: 17px; font-size: clamp(2.3rem, 4.4vw, 4.7rem); letter-spacing: -0.04em; line-height: 0.91; }
body[data-page="home"] .case-study-lead { color: var(--ink-soft); }
body[data-page="home"] .case-study-facts { margin-top: 25px; }
body[data-page="home"] .case-study-facts dd { color: var(--ink-soft); }
body[data-page="home"] .case-study-outcome strong { max-width: 25ch; font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -0.03em; line-height: 1; }

body[data-page="home"] .process-section {
  border-top: 10px solid var(--acid);
  background: var(--ink);
}

body[data-page="home"] .process-section::before { display: none; }

body[data-page="home"] .process-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(55px, 11vw, 160px);
  padding-block: clamp(84px, 10vw, 138px);
}

body[data-page="home"] .process-intro h2 { color: var(--paper-light); }
body[data-page="home"] .process-intro > p:last-child { max-width: 47ch; color: var(--paper-deep); }
body[data-page="home"] .process-list li { padding-block: 25px; }
body[data-page="home"] .process-list li > span { color: var(--acid); }
body[data-page="home"] .process-list h3 { font-size: clamp(1.55rem, 2.5vw, 2.25rem); letter-spacing: -0.03em; }
body[data-page="home"] .process-list p { color: var(--paper-deep); }

body[data-page="home"] .proof-section { padding-bottom: clamp(84px, 10vw, 142px); }

body[data-page="home"] .proof-grid {
  gap: 0;
  margin-top: clamp(52px, 7vw, 88px);
  border-top: 1px solid var(--ink);
}

body[data-page="home"] .proof-card {
  min-height: 282px;
  padding: 23px 24px 30px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

body[data-page="home"] .proof-card + .proof-card { padding-left: 24px; border-left: 1px solid var(--line); }
body[data-page="home"] .proof-card--featured {
  background: var(--ink);
  color: var(--paper-light);
  padding: 26px 24px 32px;
}
body[data-page="home"] .proof-card--featured + .proof-card { padding-left: 24px; }
body[data-page="home"] .proof-card--featured .proof-card__source { color: var(--acid); }
body[data-page="home"] .proof-card--featured .proof-card__result { color: var(--paper-light); }
body[data-page="home"] .proof-card__source { color: var(--ink-soft); }
body[data-page="home"] .proof-card__result { max-width: 20ch; margin-top: 33px; font-size: clamp(1.8rem, 2.8vw, 2.7rem); letter-spacing: -0.03em; line-height: 1.02; }
body[data-page="home"] .proof-card__link { color: var(--acid); border-color: var(--acid); }

/* Reviews section */
.reviews-section {
  padding-block: clamp(84px, 10vw, 142px);
  border-top: 1px solid var(--line);
}

.reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(24px, 4vw, 64px);
}

.reviews-head h2 {
  max-width: 16ch;
  font-size: clamp(2.8rem, 5.5vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-wrap: balance;
}

.reviews-head h2 em {
  color: var(--coral);
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
}

.reviews-sub {
  max-width: 32ch;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.reviews-wall {
  margin-top: clamp(56px, 7vw, 96px);
  column-count: 3;
  column-gap: clamp(24px, 3vw, 40px);
}

.review {
  break-inside: avoid;
  margin: 0 0 clamp(24px, 3vw, 40px);
  padding: 0;
  position: relative;
}

.review__mark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.6;
  color: var(--coral);
  margin-bottom: 4px;
}

.review__quote {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.005em;
  color: var(--ink);
  text-wrap: pretty;
}

.review__attr {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review__name { color: var(--ink); font-weight: 600; }
.review__role { color: var(--ink-soft); }
.review__date { color: var(--coral); }

.review--lead {
  background: var(--ink);
  color: var(--paper-light);
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 36px) clamp(32px, 4vw, 48px);
  border-radius: 12px;
}

.review--lead .review__mark {
  color: var(--acid);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
}

.review--lead .review__quote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.015em;
  color: var(--paper-light);
}

.review--lead .review__attr {
  border-top-color: rgba(248, 249, 247, 0.18);
}

.review--lead .review__name { color: var(--paper-light); }
.review--lead .review__role { color: var(--paper-deep); }
.review--lead .review__date { color: var(--acid); }

.review--accent .review__mark {
  color: var(--coral-bright);
  font-size: clamp(3.5rem, 5.5vw, 5rem);
}

.review--accent .review__quote {
  font-size: 1rem;
}

@media (max-width: 980px) {
  .reviews-wall { column-count: 2; }
  .reviews-head { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 620px) {
  .reviews-wall { column-count: 1; }
  .review--lead .review__quote { font-size: clamp(1rem, 3.5vw, 1.2rem); }
}

body[data-page="home"] .closing-cta {
  padding-block: clamp(80px, 12vw, 160px);
  border-top: 1px solid var(--ink);
}

body[data-page="home"] .closing-cta h2 {
  max-width: 12ch;
}

body[data-page="home"] .closing-cta > p {
  max-width: 58ch;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.58;
}

body[data-page="home"] .closing-cta .button { margin-top: 28px; }

@media (max-width: 1020px) {
  body[data-page="home"] .value-paths,
  body[data-page="home"] .mid-cta__inner,
  body[data-page="home"] .process-layout { gap: 55px; }
  body[data-page="home"] .featured-work-grid .project-card:nth-child(n) { grid-column: span 6; }
  body[data-page="home"] .case-study-card,
  body[data-page="home"] .case-study-card:nth-child(even) { gap: 46px; }
}

@media (max-width: 760px) {
  body[data-page="home"] .section-shell { width: min(100% - 40px, 1200px); }
  body[data-page="home"] .site-header { background: var(--paper); }
  body[data-page="home"] .mobile-nav { background: var(--paper); }
  body[data-page="home"] .hero { padding-block: 52px 58px; }
  body[data-page="home"] .hero-copy { text-align: left; }
  body[data-page="home"] .hero-copy h1 { max-width: 8.7ch; margin-inline: 0; font-size: clamp(3.1rem, 14vw, 4.45rem); }
  body[data-page="home"] .hero-intro { margin-inline: 0; }
  body[data-page="home"] .hero-actions { justify-content: flex-start; gap: 16px 22px; }
  body[data-page="home"] .hero-filmstrip { margin-top: 42px; }
  body[data-page="home"] .hero-filmstrip__rail { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; height: auto; padding-inline: 0; }
  body[data-page="home"] .hero-filmstrip__card,
  body[data-page="home"] .hero-filmstrip__card--one,
  body[data-page="home"] .hero-filmstrip__card--two,
  body[data-page="home"] .hero-filmstrip__card--three,
  body[data-page="home"] .hero-filmstrip__card--four,
  body[data-page="home"] .hero-filmstrip__card--five { width: auto; margin-inline: 0; transform: none; }
  body[data-page="home"] .hero-filmstrip__card--one { grid-column: 1 / -1; aspect-ratio: 16 / 8; }
  body[data-page="home"] .hero-filmstrip__card--two { transform: rotate(-2deg); }
  body[data-page="home"] .hero-filmstrip__card--three { transform: rotate(2deg); }
  body[data-page="home"] .hero-filmstrip__card--four { transform: rotate(1deg); }
  body[data-page="home"] .hero-filmstrip__card--five { transform: rotate(-1deg); }
  body[data-page="home"] .hero-filmstrip figcaption { padding-top: 13px; font-size: 0.72rem; }
  body[data-page="home"] .trust-line .section-shell { display: block; min-height: 0; padding-block: 22px; }
  body[data-page="home"] .trust-line a { margin-top: 12px; }
  body[data-page="home"] .value-paths,
  body[data-page="home"] .section-heading--home,
  body[data-page="home"] .mid-cta__inner,
  body[data-page="home"] .case-study-card,
  body[data-page="home"] .case-study-card:nth-child(even),
  body[data-page="home"] .process-layout { grid-template-columns: 1fr; }
  body[data-page="home"] .value-paths { gap: 46px; padding-block: 82px; }
  body[data-page="home"] .value-paths__intro h2,
  body[data-page="home"] .section-heading--home h2,
  body[data-page="home"] .process-intro h2,
  body[data-page="home"] .closing-cta h2 { font-size: clamp(2.65rem, 12vw, 4.4rem); }
  body[data-page="home"] .section-heading--home { gap: 22px; }
  body[data-page="home"] .work-section,
  body[data-page="home"] .case-study-section,
  body[data-page="home"] .proof-section { padding-block: 82px; }
  body[data-page="home"] .featured-work-grid { gap: 48px; }
  body[data-page="home"] .featured-work-grid .project-card:nth-child(n) { grid-column: span 1; }
  body[data-page="home"] .work-section__foot { flex-direction: column; align-items: flex-start; gap: 20px; }
  body[data-page="home"] .project-overlay { padding: 8px 10px; }
  body[data-page="home"] .mid-cta { padding-block: 70px; }
  body[data-page="home"] .mid-cta__inner { gap: 27px; }
  body[data-page="home"] .mid-cta h2 { font-size: clamp(2.65rem, 12vw, 4.4rem); }
  body[data-page="home"] .case-study-list { gap: 78px; }
  body[data-page="home"] .case-study-card:nth-child(even) .case-study-visual { order: 0; }
  body[data-page="home"] .case-study-content h3 { font-size: clamp(2.3rem, 11vw, 4.2rem); }
  body[data-page="home"] .process-layout { gap: 46px; padding-block: 78px 84px; }
  body[data-page="home"] .proof-grid { grid-template-columns: 1fr; }
  body[data-page="home"] .proof-card { min-height: 0; padding: 23px 0 31px; }
  body[data-page="home"] .proof-card + .proof-card { padding-left: 0; border-left: 0; }
  body[data-page="home"] .proof-card--featured { padding: 26px 24px 32px; }
  body[data-page="home"] .proof-card__result { margin-top: 24px; font-size: clamp(1.8rem, 8.5vw, 2.5rem); }
}

@media (max-width: 390px) {
  body[data-page="home"] .hero-copy h1 { font-size: clamp(3rem, 14vw, 3.7rem); }
  body[data-page="home"] .hero-actions .button { width: 100%; }
  body[data-page="home"] .hero-filmstrip__rail { gap: 8px; }
}

@media (hover: none) {
  body[data-page="home"] .button:hover,
  body[data-page="home"] .nav-cta:hover { transform: none; }
  body[data-page="home"] .project-visual:hover img,
  body[data-page="home"] .case-study-visual:hover img { filter: none; transform: none; }
}
