@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/BricolageGrotesque-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src: url("../fonts/Syne-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --ink: #101010;
  --paper: #f3efe4;
  --paper-bright: #fffdf6;
  --signal: #ff5a36;
  --acid: #d8ff43;
  --violet: #9877ff;
  --plum: #7d4867;
  --pink: #ff9fc7;
  --sky: #6adff2;
  --line: rgb(16 16 16 / 24%);
  --header-height: 5.25rem;
  --gutter: clamp(1rem, 3.5vw, 4rem);
  --max-width: 100rem;
  --font-main: "Bricolage Grotesque", Arial, sans-serif;
  --font-wild: "Syne", Arial Black, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-main);
  font-size: 1rem;
  font-variation-settings: "opsz" 24, "wdth" 92;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

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

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

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 0.2rem solid var(--acid);
  outline-offset: 0.2rem;
  box-shadow: 0 0 0 0.28rem var(--ink);
}

section[id],
footer[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--acid);
  border: 0.12rem solid var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
}

.container {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.65rem;
  height: 0.65rem;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.25rem;
  padding: 0.8rem 1.15rem;
  color: var(--paper-bright);
  background: var(--ink);
  border: 0.12rem solid var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s var(--ease);
}

.button:hover {
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-0.18rem);
}

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

.button--light:hover {
  color: var(--paper-bright);
  background: var(--ink);
}

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

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

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--paper-bright);
  background: var(--ink);
  border-bottom: 0.08rem solid rgb(255 255 255 / 16%);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  gap: 2rem;
  align-items: center;
  width: min(100%, var(--max-width));
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.72rem;
  color: var(--paper-bright);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: lowercase;
}

.brand__logo-shell {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: transparent;
  border-radius: 50%;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__name {
  font-size: 1.08rem;
  letter-spacing: -0.035em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2.25rem);
}

.site-nav a {
  position: relative;
  padding-block: 0.6rem;
  color: rgb(255 253 246 / 78%);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 0.12rem;
  content: "";
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--paper-bright);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__cta {
  justify-self: end;
  min-height: 2.65rem;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.site-header__cta:hover {
  color: var(--ink);
  background: var(--paper-bright);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 4.6rem;
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  color: var(--paper-bright);
  background: transparent;
  border: 0.1rem solid rgb(255 255 255 / 42%);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Home hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(2rem, 6vh, 5rem));
  padding-bottom: clamp(7rem, 14vh, 10rem);
  overflow: hidden;
  background-color: var(--signal);
  background-image:
    linear-gradient(rgb(16 16 16 / 9%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(16 16 16 / 9%) 1px, transparent 1px);
  background-size: clamp(2.5rem, 6vw, 6rem) clamp(2.5rem, 6vw, 6rem);
}

.hero__logo-watermark {
  position: absolute;
  top: 15%;
  right: -7vw;
  width: clamp(17rem, 34vw, 34rem);
  height: auto;
  opacity: 0.12;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
  transform: rotate(-11deg);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--gutter);
  text-align: center;
}

.hero__eyebrow {
  margin-bottom: clamp(1.4rem, 3vw, 2.5rem);
}

.hero__title {
  margin: 0;
  font-size: clamp(5rem, 15.8vw, 15.5rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.73;
  text-transform: uppercase;
}

.hero__line {
  display: block;
}

.hero__line--wild {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  padding-right: 0.05em;
  font-family: var(--font-wild);
  font-size: 0.84em;
  font-weight: 800;
  letter-spacing: -0.14em;
}

.hero__line--wild > span {
  display: inline-block;
  transform-origin: center bottom;
}

.hero__line--wild > span:nth-child(1) {
  transform: rotate(-5deg) skewX(-7deg) translateY(0.02em);
}

.hero__line--wild > span:nth-child(2) {
  transform: rotate(2deg) scaleY(0.88) translateY(-0.01em);
}

.hero__line--wild > span:nth-child(3) {
  transform: rotate(-2deg) skewX(8deg) scaleY(1.03);
}

.hero__line--wild > span:nth-child(4) {
  transform: rotate(4deg) scaleY(0.92) translateY(0.02em);
}

.hero__line--wild > span:nth-child(5) {
  transform: rotate(-3deg) skewX(-5deg);
}

.hero__line--wild > span:nth-child(6) {
  transform: rotate(3deg) scaleY(0.9) translateY(0.03em);
}

.hero__lede {
  max-width: 58ch;
  margin: clamp(2rem, 5vw, 3.5rem) auto 0;
  font-size: clamp(1.08rem, 1.65vw, 1.45rem);
  font-weight: 600;
  line-height: 1.35;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.marquee {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--ink);
  border-top: 0.1rem solid var(--ink);
  border-bottom: 0.1rem solid var(--ink);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex: none;
  gap: 1.1rem;
  padding: 1rem 0.55rem;
  font-family: var(--font-wild);
  font-size: clamp(0.92rem, 1.4vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.marquee__group span::after {
  margin-left: 1.1rem;
  color: var(--acid);
  content: "●";
  font-size: 0.65em;
}

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

/* Shared sections */
.section {
  padding-block: clamp(5rem, 10vw, 10rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(9rem, 0.65fr) minmax(0, 2fr);
  gap: clamp(2rem, 6vw, 8rem);
  align-items: start;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.section-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 6.6vw, 7rem);
  font-weight: 750;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.section-heading__copy {
  max-width: 50ch;
  margin-top: 1.2rem;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

/* Services */
.services {
  color: var(--paper-bright);
  background: var(--ink);
}

.services .section-heading h2 {
  max-width: 15ch;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 0.12rem solid var(--paper-bright);
  border-left: 0.12rem solid var(--paper-bright);
}

.service-feature {
  position: relative;
  min-height: clamp(26rem, 47vw, 44rem);
  padding: clamp(1.5rem, 4vw, 4rem);
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
  border-right: 0.12rem solid var(--paper-bright);
  border-bottom: 0.12rem solid var(--paper-bright);
  text-decoration: none;
}

.service-feature:nth-child(2) {
  background: var(--violet);
}

.service-feature::before {
  position: absolute;
  right: -11%;
  bottom: -21%;
  width: 65%;
  aspect-ratio: 1;
  content: "";
  border: clamp(1rem, 2.5vw, 2.5rem) solid var(--ink);
  border-radius: 50%;
  transition: transform 0.55s var(--ease);
}

.service-feature:hover::before {
  transform: rotate(28deg) scale(1.08);
}

.service-feature__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-feature h3 {
  position: relative;
  z-index: 1;
  max-width: 8ch;
  margin: clamp(4rem, 10vw, 9rem) 0 1.5rem;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.service-feature__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 36rem;
}

.service-feature__tags span,
.keyword,
.keywords span {
  padding: 0.45rem 0.65rem;
  border: 0.1rem solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1;
  text-transform: uppercase;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
  border-left: 0.12rem solid var(--paper-bright);
}

.service-card {
  position: relative;
  min-height: 23rem;
  padding: 1.5rem;
  overflow: hidden;
  background: var(--paper-bright);
  border-right: 0.12rem solid var(--paper-bright);
  border-bottom: 0.12rem solid var(--paper-bright);
}

.service-card:nth-child(2) {
  background: var(--pink);
}

.service-card:nth-child(3) {
  background: var(--signal);
}

.service-card:nth-child(4) {
  background: var(--sky);
}

.service-card__number {
  font-family: var(--font-wild);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-card h3 {
  position: absolute;
  right: 1.5rem;
  bottom: 1.4rem;
  left: 1.5rem;
  z-index: 2;
  margin: 0;
  font-size: clamp(2rem, 3.35vw, 3.65rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.service-card__micro {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  max-width: 11rem;
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.service-card::after {
  position: absolute;
  top: 27%;
  left: 50%;
  width: 7rem;
  height: 7rem;
  content: "";
  background: var(--ink);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: border-radius 0.35s var(--ease), transform 0.35s var(--ease);
}

.service-card:nth-child(2)::after {
  width: 8rem;
  height: 4rem;
  border-radius: 0;
  transform: translateX(-50%) rotate(-8deg);
}

.service-card:nth-child(3)::after {
  background: transparent;
  border: 1rem solid var(--ink);
}

.service-card:nth-child(4)::after {
  width: 8.5rem;
  height: 8.5rem;
  background: repeating-conic-gradient(var(--ink) 0 12deg, transparent 12deg 28deg);
}

.service-card:hover::after {
  border-radius: 0;
  transform: translateX(-50%) rotate(12deg) scale(1.08);
}

/* Studio statement */
.studio-statement {
  color: var(--ink);
  background: var(--paper);
}

.statement {
  max-width: 15ch;
  margin-bottom: clamp(4rem, 9vw, 8rem);
  font-size: clamp(3.3rem, 8.3vw, 8.7rem);
  font-weight: 750;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.statement em {
  color: var(--plum);
  font-family: var(--font-wild);
  font-style: normal;
  font-weight: 800;
}

.studio-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 7rem);
  max-width: 76rem;
  margin: calc(clamp(4rem, 9vw, 8rem) * -0.55) 0 clamp(3rem, 7vw, 6rem) auto;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.studio-copy-grid p {
  margin-bottom: 0;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  min-height: 36rem;
  border-top: 0.12rem solid var(--ink);
  border-left: 0.12rem solid var(--ink);
}

.studio-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 34rem;
  padding: clamp(1.25rem, 3vw, 2.75rem);
  overflow: hidden;
  border-right: 0.12rem solid var(--ink);
  border-bottom: 0.12rem solid var(--ink);
}

.studio-panel:nth-child(1) {
  color: var(--paper-bright);
  background: var(--plum);
}

.studio-panel:nth-child(2) {
  background: var(--acid);
}

.studio-panel:nth-child(3) {
  background: var(--ink);
  color: var(--paper-bright);
}

.studio-panel__label {
  position: relative;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-panel strong {
  position: relative;
  z-index: 2;
  max-width: 8ch;
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.studio-panel__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58%;
  aspect-ratio: 1;
  border: clamp(1rem, 2vw, 2rem) solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.studio-panel:nth-child(1) .studio-panel__shape {
  opacity: 0.38;
}

.studio-panel:nth-child(2) .studio-panel__shape {
  width: 68%;
  aspect-ratio: 0.52;
  color: var(--plum);
  border-radius: 999px;
  opacity: 0.5;
  transform: translate(-50%, -50%) rotate(19deg);
}

.studio-panel:nth-child(3) .studio-panel__shape {
  width: 80%;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 0.65rem,
    var(--signal) 0.65rem 1rem
  );
  border: 0;
  border-radius: 0;
  clip-path: polygon(0 45%, 10% 18%, 20% 82%, 30% 32%, 40% 70%, 50% 8%, 60% 88%, 70% 28%, 80% 74%, 90% 40%, 100% 55%, 100% 62%, 90% 48%, 80% 82%, 70% 36%, 60% 96%, 50% 16%, 40% 78%, 30% 40%, 20% 90%, 10% 26%, 0 52%);
}

/* Approach */
.approach {
  background: var(--paper-bright);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 0.12rem solid var(--ink);
  border-left: 0.12rem solid var(--ink);
}

.approach-card {
  display: flex;
  flex-direction: column;
  min-height: 29rem;
  padding: 1.4rem;
  border-right: 0.12rem solid var(--ink);
  border-bottom: 0.12rem solid var(--ink);
}

.approach-card:nth-child(2) {
  background: var(--acid);
}

.approach-card:nth-child(3) {
  background: var(--violet);
}

.approach-card:nth-child(4) {
  background: var(--pink);
}

.approach-card:nth-child(5) {
  color: var(--paper-bright);
  background: var(--ink);
}

.approach-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.approach-card h3 {
  margin: auto 0 1.2rem;
  font-family: var(--font-wild);
  font-size: clamp(1.35rem, 1.85vw, 2.2rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 0.93;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.approach-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

/* Equipment */
.equipment {
  color: var(--paper-bright);
  background: var(--ink);
}

.equipment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 0.1rem solid rgb(255 255 255 / 28%);
}

.equipment-list li {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-block: clamp(1rem, 2.1vw, 2rem);
  border-bottom: 0.1rem solid rgb(255 255 255 / 28%);
}

.equipment-list__number {
  color: var(--acid);
  font-family: var(--font-wild);
  font-size: 0.76rem;
  font-weight: 700;
}

.equipment-list strong {
  font-size: clamp(2.4rem, 6.7vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.equipment-list__dot {
  width: clamp(1.7rem, 3vw, 3rem);
  aspect-ratio: 1;
  background: var(--signal);
  border-radius: 50%;
  transition: border-radius 0.25s ease, transform 0.25s ease;
}

.equipment-list li:hover .equipment-list__dot {
  border-radius: 0;
  transform: rotate(45deg);
}

/* Contact + footer */
.contact {
  color: var(--ink);
  background: var(--acid);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.contact__copy {
  min-width: 0;
}

.contact h2 {
  max-width: 8ch;
  margin-bottom: 1.8rem;
  font-size: clamp(4rem, 10.5vw, 11rem);
  font-weight: 780;
  letter-spacing: -0.085em;
  line-height: 0.78;
}

.contact__intro {
  max-width: 50ch;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
}

.contact__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
}

.contact__email {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(1.25rem, 2.15vw, 2.15rem);
  font-weight: 750;
}

.contact address {
  font-style: normal;
  line-height: 1.55;
}

.contact__social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  min-width: 0;
  gap: 1.2rem;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  background: var(--paper-bright);
  border: 0.12rem solid var(--ink);
  box-shadow: 0.65rem 0.65rem 0 var(--ink);
}

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

.contact-form__field {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.contact-form__field--wide {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form__required {
  justify-self: end;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: rgb(255 253 246 / 72%);
  border: 0.12rem solid var(--ink);
  border-radius: 0;
  font: inherit;
  font-size: 1rem;
  line-height: 1.35;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input {
  min-height: 3.5rem;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgb(16 16 16 / 58%);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  background: var(--paper-bright);
  box-shadow: 0 0 0 0.2rem var(--signal);
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.contact-form__note,
.contact-form__status {
  max-width: 52ch;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
}

.contact-form__status {
  font-weight: 700;
}

.contact-form__note {
  color: rgb(16 16 16 / 68%);
}

.contact-form__status a {
  color: currentColor;
}

.site-footer {
  padding-block: clamp(3rem, 6vw, 6rem) 2rem;
  color: var(--paper-bright);
  background: var(--ink);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(10rem, 0.4fr));
  gap: clamp(2.5rem, 6vw, 7rem);
  padding-bottom: clamp(3rem, 7vw, 7rem);
}

.site-footer__statement {
  max-width: 34ch;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 550;
}

.site-footer__identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.site-footer__identity h2 {
  margin-bottom: 0;
}

.site-footer__logo {
  flex: 0 0 auto;
  width: clamp(3.8rem, 5vw, 5.2rem);
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 50%;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 1.1rem;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: rgb(255 253 246 / 82%);
}

.site-footer__brand {
  padding-block: 0.08em;
  overflow: hidden;
  font-size: clamp(4.9rem, 13.7vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.73;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  color: rgb(255 253 246 / 54%);
  border-top: 0.08rem solid rgb(255 255 255 / 22%);
  font-size: 0.78rem;
}

/* Service pages */
.page-recording {
  --page-accent: var(--acid);
  --page-accent-2: var(--sky);
}

.page-mixing {
  --page-accent: var(--violet);
  --page-accent-2: var(--pink);
}

.service-hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  padding-top: calc(var(--header-height) + clamp(2.5rem, 7vh, 6rem));
  padding-bottom: clamp(4rem, 8vw, 8rem);
  overflow: hidden;
  background: var(--page-accent);
}

.service-hero::after {
  position: absolute;
  right: -12%;
  bottom: -34%;
  width: clamp(18rem, 48vw, 49rem);
  aspect-ratio: 1;
  content: "";
  background: repeating-conic-gradient(var(--ink) 0 9deg, transparent 9deg 22deg);
  border-radius: 50%;
  opacity: 0.16;
  animation: slow-spin 28s linear infinite;
}

.service-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.service-hero h1 {
  max-width: 8ch;
  margin-bottom: 0;
  font-size: clamp(4.2rem, 12.7vw, 13rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.76;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.service-hero h1 span {
  display: block;
}

.service-hero h1 .wild {
  font-family: var(--font-wild);
  font-size: 0.72em;
  letter-spacing: -0.08em;
}

.page-recording .service-hero h1 .wild {
  font-size: 0.53em;
}

.service-hero__copy {
  padding-bottom: 0.7rem;
}

.service-hero__copy p {
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  font-weight: 600;
  line-height: 1.35;
}

.service-hero__copy .button {
  margin-top: 0.8rem;
}

.keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.service-statement {
  color: var(--paper-bright);
  background: var(--ink);
}

.service-statement__grid {
  display: grid;
  grid-template-columns: minmax(10rem, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 8vw, 10rem);
}

.service-statement blockquote {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(3rem, 7.4vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.service-statement blockquote em {
  color: var(--page-accent);
  font-family: var(--font-wild);
  font-style: normal;
}

.process {
  background: var(--paper-bright);
}

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

.process .approach-card:nth-child(2) {
  background: var(--page-accent);
}

.process .approach-card:nth-child(3) {
  background: var(--page-accent-2);
}

.process .approach-card:nth-child(4) {
  background: var(--paper);
}

.signal-section {
  padding-block: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  color: var(--ink);
  background: var(--page-accent);
  border-top: 0.12rem solid var(--ink);
  border-bottom: 0.12rem solid var(--ink);
}

.signal-section__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 26s linear infinite reverse;
}

.signal-section__group {
  display: flex;
  flex: none;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  padding-inline: clamp(0.7rem, 1.5vw, 1.5rem);
  font-family: var(--font-wild);
  font-size: clamp(2.3rem, 6vw, 6rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.85;
  text-transform: uppercase;
}

.signal-section__group span::after {
  margin-left: clamp(1rem, 3vw, 3rem);
  content: "↗";
  font-family: var(--font-main);
}

.service-next {
  color: var(--ink);
  background: var(--page-accent-2);
}

.service-next a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  text-decoration: none;
}

.service-next__label {
  display: block;
  margin-bottom: 1.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-next strong {
  display: block;
  font-size: clamp(4rem, 11vw, 11rem);
  font-weight: 780;
  letter-spacing: -0.085em;
  line-height: 0.77;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.service-next__arrow {
  display: grid;
  place-items: center;
  width: clamp(4rem, 8vw, 8rem);
  aspect-ratio: 1;
  background: var(--ink);
  color: var(--paper-bright);
  border-radius: 50%;
  font-size: clamp(1.6rem, 3vw, 3rem);
  transition: transform 0.35s var(--ease);
}

.service-next a:hover .service-next__arrow {
  transform: rotate(45deg) scale(1.07);
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Progressive reveal */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .diagonal-arrow:not(.service-next__arrow) {
    display: inline-block;
    flex: 0 0 auto;
    width: 0.9rem;
    height: 0.9rem;
    background: currentColor;
    clip-path: polygon(36% 0, 100% 0, 100% 64%, 81% 64%, 81% 31%, 14% 98%, 1% 85%, 68% 18%, 36% 18%);
    font-size: 0;
    line-height: 0;
    vertical-align: -0.05rem;
  }

  .service-next__arrow.diagonal-arrow {
    font-size: 0;
  }

  .service-next__arrow.diagonal-arrow::before {
    width: 34%;
    aspect-ratio: 1;
    content: "";
    background: currentColor;
    clip-path: polygon(36% 0, 100% 0, 100% 64%, 81% 64%, 81% 31%, 14% 98%, 1% 85%, 68% 18%, 36% 18%);
  }

  .signal-section__group span::after {
    display: inline-block;
    width: 0.68em;
    height: 0.68em;
    content: "";
    background: currentColor;
    clip-path: polygon(36% 0, 100% 0, 100% 64%, 81% 64%, 81% 31%, 14% 98%, 1% 85%, 68% 18%, 36% 18%);
    vertical-align: 0.01em;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1rem var(--gutter) 3rem;
    overflow-y: auto;
    color: var(--paper-bright);
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 0.24s ease, transform 0.24s var(--ease), visibility 0.24s;
  }

  .menu-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 1.1rem 0;
    border-bottom: 0.08rem solid rgb(255 255 255 / 22%);
    font-size: clamp(2rem, 7vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1;
  }

  .site-nav a::after {
    display: none;
  }

  .site-header__cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

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

  .approach-grid,
  .process .approach-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .approach-card:nth-child(4),
  .approach-card:nth-child(5) {
    min-height: 25rem;
  }
}

@media (max-width: 800px) {
  :root {
    --header-height: 4.5rem;
  }

  .brand__name {
    font-size: 1rem;
  }

  .hero {
    min-height: 56rem;
    padding-top: calc(var(--header-height) + 4rem);
  }

  .hero__logo-watermark {
    top: 17%;
    right: -30%;
    width: 21rem;
    opacity: 0.09;
  }

  .hero__title {
    font-size: clamp(4.55rem, 23vw, 8rem);
    line-height: 0.76;
  }

  .hero__line--wild {
    font-size: 0.59em;
  }

  .hero__lede {
    max-width: 42ch;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .section-heading h2 {
    max-width: 12ch;
  }

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

  .service-feature {
    min-height: 34rem;
  }

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

  .studio-copy-grid {
    grid-template-columns: 1fr;
    margin-top: -1rem;
  }

  .studio-panel {
    min-height: 28rem;
  }

  .approach-grid,
  .process .approach-grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .approach-grid::-webkit-scrollbar {
    display: none;
  }

  .approach-card {
    flex: 0 0 min(82vw, 23rem);
    min-height: 27rem;
    scroll-snap-align: start;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  .contact__details {
    margin-top: 2.25rem;
  }

  .contact-form {
    box-shadow: 0.4rem 0.4rem 0 var(--ink);
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__statement {
    grid-column: 1 / -1;
  }

  .service-hero {
    min-height: 52rem;
  }

  .service-hero__inner {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .service-hero h1 {
    font-size: clamp(4rem, 18vw, 8rem);
  }

  .service-hero__copy {
    max-width: 34rem;
  }

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

@media (max-width: 540px) {
  .site-header__inner {
    gap: 0.75rem;
  }

  .brand__logo-shell {
    width: 2.45rem;
    height: 2.45rem;
  }

  .hero {
    min-height: 48rem;
  }

  .hero__title {
    font-size: clamp(4rem, 22.5vw, 6.2rem);
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    flex: 1 1 100%;
  }

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

  .service-card {
    min-height: 20rem;
  }

  .equipment-list li {
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  }

  .equipment-list strong {
    font-size: clamp(2.25rem, 13vw, 4.4rem);
  }

  .contact h2 {
    font-size: clamp(3.8rem, 19vw, 6.5rem);
  }

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

  .contact-form {
    padding: 1rem;
  }

  .contact-form__field--wide {
    grid-column: auto;
  }

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

  .contact-form__submit {
    width: 100%;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__statement {
    grid-column: auto;
  }

  .site-footer__brand {
    font-size: clamp(2.5rem, 13.8vw, 4.6rem);
    letter-spacing: -0.085em;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .service-hero h1 {
    font-size: clamp(3.65rem, 17.7vw, 5.4rem);
  }

  .service-next a {
    grid-template-columns: 1fr;
  }

  .service-next strong {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .service-next__arrow {
    justify-self: end;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
