@font-face {
  font-family: "Helvetica Now Display";
  src: url("/assets/fonts/HelveticaNowDisplay-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Helvetica Now Display";
  src: url("/assets/fonts/HelveticaNowDisplay-Medium.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Helvetica Now Display";
  src: url("/assets/fonts/HelveticaNowDisplay-Bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  color-scheme: light;
  --canvas: oklch(0.976 0.006 70);
  --canvas-alt: oklch(0.953 0.008 70);
  --white: oklch(1 0 0);
  --ink: oklch(0.145 0.004 70);
  --ink-soft: oklch(0.43 0.007 70);
  --line: oklch(0.82 0.006 70);
  --line-dark: oklch(0.31 0.004 70);
  --dark: oklch(0.125 0.003 70);
  --dark-text: oklch(0.955 0.004 70);
  --dark-muted: oklch(0.69 0.004 70);
  --focus: oklch(0.58 0.18 255);
  --error: oklch(0.56 0.19 25);
  --font-sans: "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 112px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --section-space-y: 96px;
  --footer-space-y: 64px;
  --naming-tile: #e7e2de;
  --reveal-cover: #e7e2de;
  --space-5xl: 120px;
  --z-sticky: 20;
  --container-max: 1280px;
  --page-gutter: 32px;
  --content-width: min(var(--container-max), calc(100vw - (var(--page-gutter) * 2)));
  --container-wide: var(--content-width);
  --container: var(--content-width);
  --container-narrow: var(--content-width);
}

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

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

html.loader-active body {
  height: 100vh;
  overflow: hidden;
}

.site-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  overflow: hidden;
  place-items: center;
  background: var(--white);
  color: var(--ink);
  animation: loader-failsafe 0s 2.4s forwards;
  opacity: 1;
  transition: opacity 500ms var(--ease-reveal), visibility 0s 500ms;
}

.site-loader.is-exiting {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.site-loader-wordmark {
  display: grid;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-transform: uppercase;
}

.site-loader-line {
  display: block;
  overflow: clip;
  padding: 0.08em 0 0.12em;
}

.site-loader-line > span {
  display: block;
  animation: loader-wordmark-in 640ms var(--ease-reveal) 180ms both;
  transform: translateY(112%);
}

.site-loader-line + .site-loader-line > span {
  animation-delay: 250ms;
}

@keyframes loader-wordmark-in {
  to {
    transform: translateY(0);
  }
}

@keyframes loader-failsafe {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

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

.js .deferred-image {
  opacity: 0;
}

.js .deferred-image.is-image-ready {
  opacity: 1;
  transition: opacity 240ms var(--ease-out);
}

/* Motion is an enhancement: content is visible until the controller is ready. */
.reveal-line {
  display: block;
  overflow: clip;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.reveal-line-inner {
  display: block;
}

.motion-ready .reveal-heading .reveal-line-inner {
  transition: transform 860ms var(--ease-reveal);
  transition-delay: calc(var(--motion-delay, 0ms) + (var(--line-index, 0) * 84ms));
}

.motion-ready .reveal-heading:not(.is-motion-visible) .reveal-line-inner {
  transform: translateY(112%);
}

.motion-ready .motion-fade,
.motion-ready .motion-rise,
.motion-ready .motion-header {
  transition-duration: 680ms;
  transition-property: opacity, transform;
  transition-timing-function: var(--ease-reveal);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready .motion-fade:not(.is-motion-visible),
.motion-ready .motion-rise:not(.is-motion-visible),
.motion-ready .motion-header:not(.is-motion-visible) {
  opacity: 0;
}

.motion-ready .motion-fade:not(.is-motion-visible) {
  transform: translateY(10px);
}

.motion-ready .motion-rise:not(.is-motion-visible) {
  transform: translateY(16px);
}

.motion-ready .motion-header:not(.is-motion-visible) {
  transform: translateY(-16px);
}

.motion-ready .motion-image {
  position: relative;
  overflow: clip;
  isolation: isolate;
  --image-reveal-fill: var(--reveal-cover);
}

.motion-ready .motion-image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: var(--image-reveal-fill);
  clip-path: inset(0 0 100% 0);
  content: "";
  pointer-events: none;
  transition: clip-path 820ms var(--ease-reveal);
  transition-delay: var(--motion-delay, 0ms);
  will-change: clip-path;
}

.motion-ready .motion-image > img {
  position: relative;
  z-index: 2;
  clip-path: inset(0 0 100% 0);
  transform: scale(1.025);
  transition: clip-path 860ms var(--ease-reveal), transform 1000ms var(--ease-reveal);
  transition-delay: calc(var(--motion-delay, 0ms) + 120ms);
  will-change: clip-path, transform;
}

.motion-ready .motion-image.is-motion-visible::after,
.motion-ready .motion-image.is-motion-visible > img {
  clip-path: inset(0);
}

.motion-ready .motion-image.is-motion-visible::after {
  will-change: auto;
}

.motion-ready .motion-image.is-motion-visible > img {
  transform: scale(1);
  will-change: auto;
}

.motion-ready .motion-image-fade {
  opacity: 1;
  transition: opacity 680ms var(--ease-reveal);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready .motion-image-fade:not(.is-motion-visible) {
  opacity: 0;
}

.motion-ready .motion-item:not(.is-motion-visible),
.motion-ready .reveal-heading:not(.is-motion-visible) .reveal-line-inner {
  will-change: opacity, transform;
}

.motion-ready .motion-item.is-motion-visible,
.motion-ready .reveal-heading.is-motion-visible .reveal-line-inner {
  will-change: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

main:focus {
  outline: none;
}

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

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

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

.site-header {
  position: sticky;
  z-index: var(--z-sticky);
  top: 0;
  width: 100%;
  transform: translateY(0);
  background: var(--canvas);
  transition: transform 320ms var(--ease-out);
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 1px));
}

.site-header:focus-within {
  transform: translateY(0);
}

.site-header-inner {
  display: flex;
  width: var(--container-wide);
  min-height: var(--header-height);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand-wordmark {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.105em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(30px, 3.1vw, 62px);
}

.primary-nav a {
  display: inline-flex;
  min-height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:not(.nav-cta)::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 7px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  content: "";
  transition: transform 220ms var(--ease-out);
}

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

.primary-nav .nav-cta {
  min-height: 56px;
  padding: 16px 25px;
  border: 1px solid var(--ink);
  transition: background-color 220ms var(--ease-out), color 220ms var(--ease-out);
}

.primary-nav .nav-cta:hover {
  background: var(--ink);
  color: var(--canvas);
}

.eyebrow {
  margin: 0 0 35px;
  font-size: clamp(13px, 0.82vw, 13px);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

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

p {
  text-wrap: pretty;
}

.section-shell {
  width: var(--container);
  margin-inline: auto;
}

.hero {
  min-height: 1043px;
  padding-bottom: 38px;
}

.hero-grid {
  display: grid;
  width: var(--container-wide);
  min-height: 855px;
  margin: 0 auto;
  grid-template-columns: 51.5% 48.5%;
}

.hero-copy {
  display: flex;
  max-width: 660px;
  flex-direction: column;
  padding-top: 95px;
  padding-bottom: 81px;
}

.hero-copy h1 {
  margin: 0 0 40px;
  font-size: clamp(68px, 5vw, 70px);
  line-height: 0.99;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 625px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.17vw, 18px);
  line-height: 1.7;
}

.hero-copy > p:nth-of-type(2) {
  max-width: 520px;
}

.hero-copy > p:nth-of-type(3) {
  max-width: 480px;
  margin-top: 35px;
}

.button-row {
  display: flex;
  gap: 38px;
  margin-top: 38px;
}

.hero-copy .button-row {
  margin-top: auto;
}

.button {
  display: inline-flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 20px 32px;
  border: 0;
  border-radius: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 220ms var(--ease-out), color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.arrow-icon {
  display: inline-block;
  width: 28px;
  height: 21px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 24'%3E%3Cpath d='M2 12h26M19 3l9 9-9 9' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 24'%3E%3Cpath d='M2 12h26M19 3l9 9-9 9' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 220ms var(--ease-out);
}

.button:hover .arrow-icon,
.text-link:hover .arrow-icon {
  transform: translateX(7px);
}

.button-primary {
  min-width: 260px;
  background: var(--ink);
  color: var(--canvas);
}

.button-primary:hover {
  background: oklch(0.24 0.004 70);
}

.button-secondary {
  min-width: 312px;
  background: var(--canvas-alt);
  color: var(--ink);
}

.button-secondary:hover {
  background: oklch(0.91 0.008 70);
}

.hero-gallery {
  display: grid;
  align-content: start;
  padding-top: 39px;
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  grid-template-rows: auto auto;
  gap: 30px;
}

.hero-image {
  width: 100%;
  height: 358px;
}

.hero-image-wide {
  height: 347px;
  grid-column: 1 / -1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-wordmarks {
  width: var(--container-wide);
  margin: 53px auto 0;
}

.clarity-section {
  min-height: 0;
  background: var(--white);
}

.clarity-grid {
  display: grid;
  width: var(--container);
  padding: var(--section-space-y) 0;
  grid-template-columns: 66.4% 33.6%;
}

.clarity-section h2 {
  max-width: 1020px;
  margin: 55px 0 0;
  font-size: clamp(64px, 5vw, 70px);
  line-height: 1.18;
}

.clarity-second-line {
  margin: 68px 0 0;
  font-size: clamp(64px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.clarity-copy {
  max-width: 465px;
  padding-top: 98px;
}

.clarity-copy p {
  margin-bottom: 50px;
  font-size: clamp(19px, 1.35vw, 19px);
  line-height: 1.6;
}

.clarity-copy strong {
  font-weight: 600;
}

.clarity-copy .button {
  width: 100%;
  margin-top: 18px;
}

.work-section {
  min-height: 0;
  padding: var(--section-space-y) 0;
  background: var(--canvas-alt);
}

.work-heading-grid {
  display: grid;
  margin-bottom: 64px;
  grid-template-columns: 51% 49%;
  align-items: end;
}

.work-heading-grid h2 {
  margin: 9px 0 0;
  font-size: clamp(62px, 4.25vw, 62px);
  line-height: 1.01;
}

.work-heading-grid > p {
  max-width: 505px;
  margin: 0 0 4px 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.1vw, 18px);
  line-height: 1.56;
}

.naming-grid {
  display: grid;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  list-style: none;
}

.naming-grid li {
  overflow: hidden;
  background: var(--naming-tile);
  isolation: isolate;
}

.naming-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  mix-blend-mode: darken;
}

.work-footer-row {
  display: block;
  margin-top: 43px;
}

.name-list {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  list-style: none;
  white-space: nowrap;
}

.name-list li {
  flex: 0 0 auto;
}

.name-list li:not(:last-child)::after {
  margin-left: clamp(10px, 1vw, 18px);
  color: var(--ink-soft);
  content: "·";
}

.process-section {
  min-height: 0;
  padding: var(--section-space-y) 0;
  background: var(--white);
}

.process-section h2 {
  margin: 32px 0 73px;
  font-size: clamp(62px, 4vw, 62px);
  line-height: 1.02;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
}

.process-media,
.process-list img {
  width: 100%;
  aspect-ratio: 403 / 429;
}

.process-list img {
  object-fit: cover;
}

.step-number {
  margin: 43px 0 9px;
  font-size: 14px;
  font-weight: 700;
}

.process-list h3 {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(25px, 1.75vw, 25px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.process-list li > p:last-child {
  max-width: 360px;
  margin: 21px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1vw, 16px);
  line-height: 1.55;
}

.services-section {
  min-height: 0;
  padding: var(--section-space-y) 0;
  background: var(--white);
}

.services-shell {
  display: grid;
  width: var(--container-narrow);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 74px;
}

.services-intro {
  max-width: 640px;
}

.services-intro h2 {
  margin: 46px 0 48px;
  font-size: clamp(72px, 5.35vw, 74.9px);
  line-height: 1.08;
}

.services-intro > p:last-child {
  max-width: 600px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.28vw, 18px);
  line-height: 1.75;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  border-bottom: 1px solid var(--line);
}

.service-list a {
  display: grid;
  min-height: 201px;
  padding: 35px 0 38px;
  grid-template-columns: 54px 1fr 44px;
  gap: 20px;
  text-decoration: none;
}

.service-number {
  padding-top: 5px;
  font-size: 18px;
}

.service-list strong {
  display: block;
  margin-bottom: 15px;
  font-size: clamp(34px, 2.65vw, 37.1px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.service-list small {
  display: block;
  max-width: 520px;
  font-size: clamp(16px, 1.05vw, 16px);
  line-height: 1.6;
}

.service-arrow {
  width: 36px;
  height: 27px;
  margin-top: 3px;
}

.service-list a:hover .service-arrow {
  transform: translateX(7px);
}

.brands-section {
  min-height: 0;
  padding: var(--section-space-y) 0;
  background: oklch(0.925 0.01 70);
}

.brands-shell {
  width: var(--container);
  margin-inline: auto;
}

.brands-heading {
  display: grid;
  margin-bottom: 55px;
  grid-template-columns: 60% 40%;
  align-items: end;
}

.brands-heading .eyebrow {
  margin-bottom: 34px;
}

.brands-heading h2 {
  margin: 0;
  font-size: clamp(58px, 4.25vw, 59.5px);
  line-height: 1.02;
}

.brands-heading > p {
  max-width: 510px;
  margin: 0 0 3px 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.18vw, 18px);
  line-height: 1.55;
}

.brand-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl) var(--space-lg);
}

.brand-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
}

.brand-card-image {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
}

.brand-card-media {
  aspect-ratio: 1.7 / 1;
}

.brand-card-media .brand-card-image {
  height: 100%;
}

.brand-card-body {
  display: flex;
  min-height: 280px;
  flex: 1;
  flex-direction: column;
  padding: var(--space-lg) var(--space-xl) 0;
}

.brand-card-title {
  margin: 0 0 var(--space-sm);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.brand-card-description {
  max-width: 565px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.08vw, 16px);
  line-height: 1.55;
}

.brand-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.brand-card-tags li {
  padding: var(--space-xs) 14px;
  background: var(--canvas-alt);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-card-action {
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.brand-card-link {
  display: flex;
  min-height: 73px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

a.brand-card-link:hover .arrow-icon {
  transform: translateX(7px);
}

.brand-card-link.is-disabled {
  color: var(--ink-soft);
  cursor: not-allowed;
}

.brands-status,
.brands-noscript {
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.brands-status:empty {
  display: none;
}

.about-section {
  min-height: 0;
  padding: var(--section-space-y) 0;
  background: var(--canvas-alt);
}

.about-shell {
  display: grid;
  width: var(--container);
  margin: 0 auto;
  grid-template-columns: minmax(0, 41.7fr) minmax(0, 58.3fr);
  gap: 132px;
}

.about-portrait {
  position: relative;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
  overflow: hidden;
}

.about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  max-width: 650px;
  padding-top: 17px;
}

.about-copy h2 {
  margin: 44px 0 44px;
  font-size: clamp(60px, 4.7vw, 65.8px);
  line-height: 1.05;
  white-space: nowrap;
}

.about-prose p {
  margin-bottom: 35px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.28vw, 18px);
  line-height: 1.75;
}

.role-list {
  margin: 50px 0 55px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.role-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 23px;
}

.button-wide {
  width: 100%;
}

.about-copy .button-secondary {
  min-height: 84px;
  background: oklch(0.91 0.008 70);
}

.faq-section {
  min-height: 0;
  padding: var(--section-space-y) 0;
  background: var(--canvas);
}

.faq-shell {
  display: grid;
  width: var(--container);
  margin: 0 auto;
  grid-template-columns: 45% 1fr;
  gap: 20px;
}

.faq-intro h2 {
  margin: 46px 0 48px;
  font-size: clamp(58px, 3.7vw, 58px);
  line-height: 1.1;
}

.faq-intro > p:last-child {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.28vw, 19px);
  line-height: 1.65;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 112px;
  align-items: center;
  padding: 24px 22px;
  grid-template-columns: 1fr 24px;
  gap: 30px;
  cursor: pointer;
  font-size: clamp(24px, 1.75vw, 24.5px);
  letter-spacing: -0.025em;
  line-height: 1.25;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: currentColor;
  content: "";
  transition: transform 220ms var(--ease-out);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
  max-width: 760px;
  margin: 4px 22px 49px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.22vw, 18px);
  line-height: 1.72;
}

.contact-section {
  min-height: 0;
  padding: var(--section-space-y) 0;
  background: var(--dark);
  color: var(--dark-text);
}

.contact-shell {
  width: var(--container);
  margin: 0 auto;
}

.contact-heading h2 {
  margin: 38px 0 16px;
  font-size: clamp(60px, 4.65vw, 65.1px);
  line-height: 1.05;
}

.contact-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--dark-muted);
  font-size: clamp(18px, 1.2vw, 18px);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--dark-text);
  font-size: 20px;
}

.project-form {
  margin-top: 33px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.project-form h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.form-column {
  display: flex;
  flex-direction: column;
}

.field {
  display: flex;
  min-height: 81px;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 12px;
  border-bottom: 1px solid var(--dark-muted);
}

.field > span {
  display: block;
  margin-bottom: 3px;
  color: var(--dark-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--dark-text);
}

.field input {
  padding: 4px 0 7px;
}

.field select {
  padding: 5px 34px 7px 0;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--dark-text) 50%), linear-gradient(135deg, var(--dark-text) 50%, transparent 50%);
  background-position: calc(100% - 10px) 15px, calc(100% - 4px) 15px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.field select option {
  background: var(--dark);
  color: var(--dark-text);
}

.field select:invalid {
  color: transparent;
}

.field:focus-within {
  border-bottom-color: var(--dark-text);
}

.field:has(:user-invalid) {
  border-bottom-color: var(--error);
}

.field-textarea {
  min-height: 144px;
  margin-top: 24px;
  padding: 13px 0 0;
  border-bottom: 0;
}

.field-textarea textarea {
  min-height: 110px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--dark-muted);
  resize: vertical;
}

.field-textarea:focus-within textarea {
  border-color: var(--dark-text);
}

.form-submit {
  width: 100%;
  min-height: 77px;
  margin-top: 57px;
  justify-content: space-between;
  background: var(--canvas);
  color: var(--ink);
  cursor: pointer;
}

.form-submit:hover {
  background: var(--white);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-status {
  min-height: 28px;
  margin: 17px 0 0;
  color: var(--dark-muted);
}

.site-footer {
  min-height: 0;
  padding: var(--footer-space-y) 0;
  background: oklch(0.145 0.003 70);
  color: var(--dark-text);
}

.footer-shell {
  width: var(--container);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  min-height: 500px;
  grid-template-columns: 1.25fr 1fr 1.05fr 1.15fr;
  gap: 86px;
}

.footer-brand a {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.06;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-brand p {
  margin-top: 26px;
  color: var(--dark-muted);
  font-size: 22px;
}

.footer-main h2,
.footer-contact h2 {
  margin: 0 0 45px;
  color: var(--dark-muted);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-main nav a,
.footer-contact > a,
.footer-social > * {
  display: block;
  width: fit-content;
  margin-bottom: 25px;
  font-size: 21px;
  text-decoration: none;
}

.footer-contact > a {
  margin-bottom: 16px;
}

.footer-social {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--line-dark);
}

.owner-link-required {
  color: var(--dark-muted);
  cursor: not-allowed;
}

.footer-bottom {
  display: flex;
  min-height: 80px;
  align-items: end;
  gap: 68px;
  padding-top: 38px;
  border-top: 1px solid var(--line-dark);
  color: var(--dark-muted);
  font-size: 18px;
}

.footer-bottom p {
  margin: 0;
}

.footer-location {
  margin-left: auto !important;
}

.success-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: var(--dark);
  color: var(--dark-text);
}

.capture-mode .skip-link {
  display: none;
}

.success-page main {
  width: min(86vw, 900px);
  padding: 80px 0;
}

.success-page h1 {
  margin: 30px 0;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 1;
}

.success-page main > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 45px;
  color: var(--dark-muted);
  font-size: 23px;
  line-height: 1.65;
}

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

@media (min-width: 1601px) {
  :root {
    --section-space-y: 125px;
  }

  .hero {
    min-height: 0;
    padding-bottom: var(--space-xl);
  }

  .hero-grid {
    min-height: 620px;
  }

  .hero-copy {
    max-width: 560px;
    padding-top: 72px;
    padding-bottom: var(--space-md);
  }

  .hero-copy h1 {
    margin-bottom: 40px;
    font-size: 66px;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-bottom: var(--space-lg);
    font-size: 17px;
    line-height: 1.62;
  }

  .hero-copy > p:nth-of-type(2) {
    max-width: 440px;
  }

  .hero-copy > p:nth-of-type(3) {
    max-width: 430px;
    margin-top: var(--space-lg);
  }

  .hero-copy .button-row {
    gap: var(--space-lg);
    margin-top: auto;
  }

  .hero-copy .button {
    min-height: 56px;
    padding: 16px 26px;
  }

  .hero-copy .button-primary {
    min-width: 236px;
  }

  .hero-copy .button-secondary {
    min-width: 282px;
  }

  .hero-gallery {
    padding-top: var(--space-xl);
    gap: 18px;
  }

  .hero-image {
    height: 280px;
  }

  .hero-image-wide {
    height: 274px;
  }

  .client-wordmarks {
    margin-top: var(--space-2xl);
  }
}

@media (min-width: 1601px) and (min-height: 1000px) {
  .hero {
    padding-bottom: var(--space-3xl);
  }

  .client-wordmarks {
    margin-top: calc(var(--space-2xl) + var(--space-xl));
  }
}

@media (max-width: 1600px) {
  :root {
    --header-height: 92px;
  }

  body {
    font-size: 17px;
  }

  .site-header-inner {
    min-height: var(--header-height);
  }

  .primary-nav {
    gap: 30px;
  }

  .primary-nav a {
    font-size: 14px;
  }

  .primary-nav .nav-cta {
    min-height: 52px;
    padding: 14px 23px;
  }

  .hero {
    min-height: 0;
    padding-bottom: var(--space-xl);
  }

  .hero-grid {
    min-height: 620px;
  }

  .hero-copy {
    max-width: 560px;
    padding-top: 72px;
    padding-bottom: var(--space-md);
  }

  .hero-copy h1 {
    margin-bottom: 40px;
    font-size: 66px;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-bottom: var(--space-lg);
    font-size: 17px;
    line-height: 1.62;
  }

  .hero-copy > p:nth-of-type(2) {
    max-width: 440px;
  }

  .hero-copy > p:nth-of-type(3) {
    max-width: 430px;
    margin-top: var(--space-lg);
  }

  .button-row {
    gap: var(--space-lg);
    margin-top: 28px;
  }

  .hero-copy .button-row {
    margin-top: auto;
  }

  .button {
    min-height: 56px;
    padding: 16px 26px;
  }

  .button-primary {
    min-width: 236px;
  }

  .button-secondary {
    min-width: 282px;
  }

  .hero-gallery {
    padding-top: var(--space-xl);
    gap: 18px;
  }

  .hero-image {
    height: 280px;
  }

  .hero-image-wide {
    height: 274px;
  }

  .client-wordmarks {
    margin-top: var(--space-2xl);
  }

  .clarity-section {
    min-height: 0;
  }

  .clarity-grid {
    padding: var(--section-space-y) 0;
  }

  .clarity-section h2,
  .clarity-second-line {
    font-size: 64px;
  }

  .clarity-section h2 {
    margin-top: 40px;
  }

  .clarity-second-line {
    margin-top: 52px;
  }

  .clarity-copy {
    padding-top: 70px;
  }

  .clarity-copy p {
    margin-bottom: var(--space-xl);
    font-size: 18px;
    line-height: 1.55;
  }

  .clarity-copy .button {
    margin-top: var(--space-xs);
  }

  .work-section {
    min-height: 0;
    padding: var(--section-space-y) 0;
  }

  .work-heading-grid {
    margin-bottom: var(--space-2xl);
  }

  .work-heading-grid h2 {
    font-size: 56px;
  }

  .work-footer-row {
    margin-top: var(--space-xl);
  }

  .process-section {
    min-height: 0;
    padding: var(--section-space-y) 0;
  }

  .process-section h2 {
    margin: var(--space-lg) 0 var(--space-2xl);
    font-size: 56px;
  }

  .step-number {
    margin-top: 28px;
  }

  .process-list h3 {
    padding-bottom: var(--space-sm);
  }

  .process-list li > p:last-child {
    margin-top: var(--space-md);
  }

  .services-section {
    min-height: 0;
    padding: var(--section-space-y) 0;
  }

  .services-shell {
    gap: 80px;
  }

  .services-intro h2 {
    margin: var(--space-xl) 0 var(--space-xl);
    font-size: 64px;
  }

  .services-intro > p:last-child {
    font-size: 17px;
    line-height: 1.65;
  }

  .service-list a {
    min-height: 142px;
    padding: var(--space-lg) 0;
    grid-template-columns: 44px 1fr 36px;
    gap: var(--space-md);
  }

  .service-list strong {
    margin-bottom: var(--space-sm);
    font-size: 32px;
  }

  .service-list small {
    font-size: 15px;
    line-height: 1.5;
  }

  .brands-section {
    min-height: 0;
    padding: var(--section-space-y) 0;
  }

  .brands-heading {
    margin-bottom: var(--space-2xl);
  }

  .brands-heading h2 {
    font-size: 54px;
  }

  .brand-card-image {
    height: auto;
    aspect-ratio: 1.7 / 1;
  }

  .brand-card-body {
    min-height: 280px;
    padding: var(--space-lg) var(--space-xl) 0;
  }

  .brand-card-title {
    margin-bottom: var(--space-sm);
    font-size: 30px;
  }

  .brand-card-tags {
    gap: var(--space-sm);
    margin: 0 0 20px;
  }

  .brand-card-tags li {
    padding: var(--space-xs) 14px;
    font-size: 12px;
  }

  .brand-card-link {
    min-height: 62px;
  }

  .about-section {
    min-height: 0;
    padding: var(--section-space-y) 0;
  }

  .about-shell {
    gap: 80px;
  }

  .about-copy h2 {
    margin: var(--space-xl) 0;
    font-size: 56px;
    white-space: normal;
  }

  .about-prose p {
    margin-bottom: var(--space-lg);
    font-size: 17px;
    line-height: 1.58;
  }

  .role-list {
    margin: var(--space-xl) 0;
  }

  .role-list li {
    padding: var(--space-sm) 0;
    font-size: 20px;
  }

  .about-copy .button-secondary {
    min-height: 62px;
  }

  .faq-section {
    min-height: 0;
    padding: var(--section-space-y) 0;
  }

  .faq-intro h2 {
    margin: var(--space-xl) 0;
    font-size: 52px;
  }

  .faq-intro > p:last-child {
    font-size: 17px;
    line-height: 1.58;
  }

  .faq-list {
    margin-top: 40px;
  }

  .faq-list summary {
    min-height: 86px;
    padding: 18px 20px;
    font-size: 23px;
  }

  .faq-list details > p {
    margin: 0 20px 30px;
    font-size: 17px;
    line-height: 1.6;
  }

  .contact-section {
    min-height: 0;
    padding: var(--section-space-y) 0;
  }

  .contact-heading h2 {
    margin: 28px 0 var(--space-sm);
    font-size: 56px;
  }

  .contact-heading > p:not(.eyebrow) {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.58;
  }

  .project-form {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
  }

  .form-grid {
    gap: var(--space-3xl);
  }

  .field {
    min-height: 68px;
    padding-top: var(--space-xs);
  }

  .field-textarea {
    min-height: 122px;
    margin-top: var(--space-md);
  }

  .field-textarea textarea {
    min-height: 90px;
    margin-top: var(--space-xs);
  }

  .form-submit {
    min-height: 60px;
    margin-top: var(--space-xl);
  }

  .site-footer {
    min-height: 0;
    padding: var(--footer-space-y) 0;
  }

  .footer-main {
    min-height: 380px;
  }

  .footer-brand a {
    font-size: 39px;
  }

  .footer-main {
    gap: 50px;
  }

  .footer-main h2,
  .footer-contact h2 {
    margin-bottom: var(--space-xl);
  }

  .footer-main nav a,
  .footer-contact > a,
  .footer-social > * {
    margin-bottom: 20px;
    font-size: 19px;
  }

  .footer-social {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
  }

  .footer-bottom {
    min-height: 64px;
    padding-top: var(--space-xl);
    font-size: 16px;
  }
}

@media (max-width: 1280px) {
  .primary-nav {
    gap: 20px;
  }

  .primary-nav .nav-cta {
    padding-inline: 18px;
  }

  .hero-copy {
    padding-right: 42px;
  }

  .button-row {
    gap: 16px;
  }

  .button {
    padding-inline: 22px;
    font-size: 13px;
  }

  .button-primary,
  .button-secondary {
    min-width: 0;
  }

  .services-shell,
  .about-shell,
  .faq-shell {
    gap: 54px;
  }

  .service-list a {
    min-height: 176px;
  }

  .footer-main {
    gap: 30px;
  }

  .footer-main nav a,
  .footer-contact > a,
  .footer-social > * {
    font-size: 17px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .site-header.is-hidden {
    transform: translateY(0);
  }

  .site-loader {
    animation: loader-failsafe 0s 300ms forwards;
  }

  .site-loader-line > span {
    animation: none;
    transform: none;
  }

  .motion-image::after {
    display: none;
  }

  .motion-image > img {
    clip-path: inset(0) !important;
    transform: none !important;
  }

  .motion-item,
  .reveal-line-inner {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
