@font-face {
  font-family: Whyte;
  src: url("assets/WhyteInktrap-Book.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-007F;
}

@font-face {
  font-family: StudioText;
  src: url("assets/HelveticaNowText-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("assets/MonaSans-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("assets/MonaSans-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --font-display: Whyte, StudioText, Arial, Helvetica, sans-serif;
  --font-text: StudioText, Arial, Helvetica, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --font-wordmark: "Mona Sans", StudioText, Arial, Helvetica, sans-serif;
  --ink: #111111;
  --paper: #ffffff;
  --warm: #f6f3ee;
  --white: #ffffff;
  --cream: #fffaf2;
  --ember: #ff5a1c;
  --gold: #c9a46a;
  --night: #171a22;
  --blueblack: #202738;
  --line: rgba(17, 17, 17, 0.18);
  --footer-bg: #ebe7df;
  --footer-ink: #101114;
  --footer-muted: rgba(16, 17, 20, 0.66);
  --footer-soft: rgba(16, 17, 20, 0.48);
  --footer-line: rgba(16, 17, 20, 0.16);
  --footer-reveal-bg: #ebe7df;
  --section-x: clamp(24px, 5vw, 104px);
  --section-x-slim: clamp(24px, 4vw, 82px);
  --section-y: clamp(96px, 12vh, 176px);
  --section-y-loose: clamp(128px, 15vh, 220px);
  --section-y-compact: clamp(68px, 8.5vh, 122px);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f4f0e8;
  --paper: #101114;
  --warm: #151619;
  --cream: #f4f0e8;
  --ember: #ff6b33;
  --gold: #d8b879;
  --night: #07080a;
  --blueblack: #111723;
  --line: rgba(244, 240, 232, 0.16);
  --footer-bg: #ebe7df;
  --footer-ink: #101114;
  --footer-muted: rgba(16, 17, 20, 0.66);
  --footer-soft: rgba(16, 17, 20, 0.48);
  --footer-line: rgba(16, 17, 20, 0.16);
  --footer-reveal-bg: #ebe7df;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: clip;
  overflow-y: auto;
  overscroll-behavior-y: auto;
  height: auto;
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--footer-bg);
  color: var(--ink);
  font-family: var(--font-text);
  letter-spacing: 0;
  line-height: 1.45;
  overflow: visible;
  overscroll-behavior-y: auto;
  min-height: 100vh;
  height: auto;
  position: static;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  --footer-progress: 0;
  --footer-shift: 0px;
  --footer-scale: 1;
  --footer-radius: 0px;
  --footer-inset: 0px;
  --footer-content-y: 0px;
  --footer-content-opacity: 1;
}

body::before {
  content: "";
  display: block;
  position: fixed;
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  z-index: 40;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: normal;
  background-image: url("assets/film-noise.png");
  background-position: 50%;
  background-repeat: repeat;
  background-size: 100px 100px;
  transform: translate3d(0, 0, 0);
  animation: film-grain 1s steps(2, end) infinite;
  will-change: transform;
}

html[data-theme] {
  overflow-y: auto;
  height: auto;
  touch-action: pan-y;
}

html[data-theme] body {
  overflow: visible;
  height: auto;
  touch-action: pan-y;
}

html[data-theme="dark"] body::before {
  opacity: 1;
  mix-blend-mode: normal;
}

.scroll-text-reveal {
  --scroll-text-distance: clamp(24px, 3vw, 56px);
  --scroll-text-blur: 9px;
  clip-path: inset(0 0 110% 0);
  opacity: 0;
  filter: blur(var(--scroll-text-blur));
  transform: translate3d(0, var(--scroll-text-distance), 0);
  transition:
    clip-path 1360ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 860ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1180ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1360ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--scroll-text-delay, 0ms);
  will-change: clip-path, opacity, filter, transform;
}

.scroll-text-reveal--strong {
  --scroll-text-distance: clamp(38px, 5vw, 96px);
  --scroll-text-blur: 12px;
}

.scroll-text-reveal--quiet {
  --scroll-text-distance: clamp(16px, 2vw, 34px);
  --scroll-text-blur: 6px;
}

.scroll-text-reveal.is-in-view {
  clip-path: inset(-0.22em -0.24em -0.3em -0.24em);
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.text-hover-reveal {
  --text-hover-accent: var(--ember);
  --text-hover-lift: -0.035em;
  position: relative;
  isolation: isolate;
}

.text-hover-reveal__label {
  position: relative;
  display: inline-block;
  transition:
    color 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.text-hover-reveal__hover {
  position: absolute;
  inset: -0.04em -0.03em -0.12em 0;
  z-index: 1;
  color: var(--text-hover-accent);
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 0.18em, 0);
  transition:
    clip-path 760ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: inherit;
}

@media (hover: hover) and (pointer: fine) {
  .text-hover-reveal:hover .text-hover-reveal__label,
  .text-hover-reveal:focus-visible .text-hover-reveal__label,
  a:hover .text-hover-reveal__label,
  a:focus-visible .text-hover-reveal__label {
    transform: translate3d(0, var(--text-hover-lift), 0);
  }

  .text-hover-reveal:hover .text-hover-reveal__hover,
  .text-hover-reveal:focus-visible .text-hover-reveal__hover,
  a:hover .text-hover-reveal__hover,
  a:focus-visible .text-hover-reveal__hover {
    clip-path: inset(-0.08em -0.05em -0.18em 0);
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }

  .text-hover-reveal--large {
    --text-hover-lift: -0.02em;
  }

  .text-hover-reveal--large .text-hover-reveal__hover {
    filter: blur(8px);
    transform: translate3d(0, 0.24em, 0);
    transition-duration: 920ms, 480ms, 920ms, 920ms;
  }

  .text-hover-reveal--quiet .text-hover-reveal__hover {
    filter: blur(3px);
    transform: translate3d(0, 0.12em, 0);
    transition-duration: 620ms, 360ms, 620ms, 620ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-text-reveal,
  .scroll-text-reveal.is-in-view {
    clip-path: none;
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .text-hover-reveal,
  .text-hover-reveal__label,
  .text-hover-reveal__hover {
    transform: none;
    transition: none;
  }
}

@keyframes film-grain {
  0% {
    transform: translate3d(0, 9rem, 0);
  }

  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }

  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }

  30% {
    transform: translate3d(9rem, -9rem, 0);
  }

  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }

  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }

  60% {
    transform: translate3d(2rem, 6rem, 0);
  }

  70% {
    transform: translate3d(7rem, -8rem, 0);
  }

  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }

  90% {
    transform: translate3d(6rem, -5rem, 0);
  }

  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}

@supports not (mix-blend-mode: overlay) {
  body::before {
    opacity: 1;
  }
}

@media (hover: hover) and (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: none !important;
  }

  .studio-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2147482000;
    width: 1px;
    height: 1px;
    pointer-events: none;
    opacity: 0;
    mix-blend-mode: difference;
    --cursor-scale: 1;
    transition: opacity 180ms ease;
  }

  .studio-cursor.is-visible {
    opacity: 1;
  }

  .studio-cursor-ring,
  .studio-cursor-dot {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 999px;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform, width, height, border-color, background-color;
  }

  .studio-cursor-ring {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0);
    transition:
      width 360ms cubic-bezier(0.19, 1, 0.22, 1),
      height 360ms cubic-bezier(0.19, 1, 0.22, 1),
      border-color 260ms ease,
      background-color 260ms ease;
  }

  .studio-cursor-dot {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.9);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      width 260ms cubic-bezier(0.19, 1, 0.22, 1),
      height 260ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .studio-cursor-label {
    color: #000000;
    font-family: var(--font-wordmark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(4px);
    transition:
      opacity 180ms ease,
      transform 260ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .studio-cursor.is-hover .studio-cursor-ring,
  .studio-cursor.is-view .studio-cursor-ring {
    border-color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.92);
  }

  .studio-cursor.is-hover .studio-cursor-ring {
    width: 70px;
    height: 70px;
  }

  .studio-cursor.is-view .studio-cursor-ring {
    width: 92px;
    height: 92px;
  }

  .studio-cursor.is-hover .studio-cursor-label,
  .studio-cursor.is-view .studio-cursor-label {
    opacity: 1;
    transform: translateY(0);
  }

  .studio-cursor.is-hover .studio-cursor-dot,
  .studio-cursor.is-view .studio-cursor-dot {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.2);
  }

  .studio-cursor.is-brush {
    mix-blend-mode: normal;
  }

  .studio-cursor.is-brush .studio-cursor-ring {
    width: 22px;
    height: 22px;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(5, 5, 5, 0.08);
  }

  .studio-cursor.is-brush .studio-cursor-dot {
    width: 6px;
    height: 6px;
    opacity: 1;
    background: var(--ember);
  }

  .studio-cursor.is-brush .studio-cursor-label {
    display: none;
  }

  .studio-cursor.is-text .studio-cursor-ring {
    width: 2px;
    height: 42px;
    border-color: rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0.95);
  }

  .studio-cursor.is-text .studio-cursor-dot {
    opacity: 0;
  }

  .studio-cursor.is-down {
    --cursor-scale: 0.86;
  }
}

@media (prefers-reduced-motion: reduce) {
  .studio-cursor {
    display: none;
  }
}

h1,
h2,
h3 {
  font-family: var(--font-wordmark);
  font-weight: 400;
  letter-spacing: 0;
}

main {
  overflow: visible;
}

.page-shell {
  position: relative;
  z-index: 2;
  overflow: visible;
  background: var(--paper);
  border-bottom-right-radius: var(--footer-radius);
  border-bottom-left-radius: var(--footer-radius);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform-origin: center bottom;
}

body.footer-is-visible .page-shell {
  clip-path: inset(0 var(--footer-inset) 0 var(--footer-inset) round 0 0 var(--footer-radius) var(--footer-radius));
  box-shadow: 0 28px 76px rgba(16, 17, 20, 0.1);
  transform: translate3d(0, var(--footer-shift), 0) scale(var(--footer-scale));
  will-change: border-radius, clip-path, transform;
}

.page-shell > section,
.footer-reveal-spacer {
  position: relative;
  z-index: 2;
}

.footer-reveal-spacer {
  --footer-reveal-delay: clamp(180px, 24svh, 320px);
  display: block;
  height: calc(110svh + var(--footer-reveal-delay));
  min-height: 860px;
  background:
    linear-gradient(
      180deg,
      var(--footer-reveal-bg) 0,
      var(--footer-reveal-bg) var(--footer-reveal-delay),
      transparent calc(var(--footer-reveal-delay) + 1px),
      transparent 100%
    );
  pointer-events: none;
}

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

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

button {
  font: inherit;
}

.brand-glyph {
  display: block;
  width: 1em;
  height: auto;
  flex: 0 0 auto;
}

.site-loader {
  --loader-ease-in: cubic-bezier(0.19, 1, 0.22, 1);
  --loader-ease-out: cubic-bezier(0.77, 0, 0.18, 1);
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  color: #111111;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 280ms var(--loader-ease-in);
}

.site-loader.is-intro {
  opacity: 1;
}

.loader-noise {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: 1;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.18' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23noiseFilter)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
  transition: opacity 420ms var(--loader-ease-in) 80ms;
}

.site-loader.is-intro .loader-noise {
  opacity: 0.075;
}

.loader-curtain {
  content: "";
  position: absolute;
  top: -24vh;
  right: -12vw;
  left: -12vw;
  z-index: 0;
  height: 178vh;
  border-bottom-right-radius: 50% 14%;
  border-bottom-left-radius: 50% 14%;
  background:
    linear-gradient(
      180deg,
      #f8f8f8 0%,
      #f8f8f8 72%,
      rgba(248, 248, 248, 0.96) 82%,
      rgba(248, 248, 248, 0.62) 93%,
      rgba(248, 248, 248, 0) 100%
    );
  opacity: 0;
  transform: translate3d(0, 12vh, 0) scaleY(1.08);
  transform-origin: center bottom;
  pointer-events: none;
  transition:
    opacity 380ms var(--loader-ease-in),
    transform 560ms var(--loader-ease-in);
  will-change: opacity, transform;
}

.site-loader.is-intro .loader-curtain {
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleY(1);
}

.site-loader.is-hidden {
  pointer-events: none;
}

.site-loader.is-hidden .loader-noise {
  opacity: 0;
}

.site-loader.is-hidden .loader-curtain {
  opacity: 1;
  transform: translate3d(0, -188vh, 0) scaleY(0.92);
  transition:
    opacity 420ms ease,
    transform 1680ms var(--loader-ease-out);
}

.loader-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100svh;
  padding: clamp(80px, 10vh, 128px) clamp(24px, 5vw, 96px) clamp(76px, 9vh, 120px);
}

.loader-quote {
  position: absolute;
  top: 50%;
  left: clamp(24px, 5vw, 86px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(350px, calc(100vw - 48px));
  margin: 0;
  color: #111111;
  text-align: left;
  opacity: 0;
  filter: blur(26px);
  transform: translate3d(-18px, calc(-50% + 14px), 0);
  transform-origin: left center;
  transition:
    opacity 420ms var(--loader-ease-in) 80ms,
    filter 480ms var(--loader-ease-in) 80ms,
    transform 520ms var(--loader-ease-in) 80ms;
  will-change: opacity, filter, transform;
}

.loader-quote span,
.loader-quote em {
  display: block;
  color: rgba(17, 17, 17, 0.52);
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 0.7vw, 0.78rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.loader-quote strong {
  display: block;
  max-width: none;
  margin: clamp(8px, 1.4vh, 14px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.42vw, 1.62rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  white-space: nowrap;
}

.loader-quote em {
  color: rgba(255, 90, 28, 0.88);
  font-family: var(--font-text);
  font-size: clamp(0.7rem, 0.82vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: none;
}

.site-loader.is-intro .loader-quote,
.site-loader.is-active .loader-quote {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, -50%, 0);
}

.site-loader.is-active.is-hidden .loader-quote {
  opacity: 0;
  filter: blur(18px);
  transform: translate3d(-18px, calc(-50% - 28px), 0) scale(0.98);
  transition:
    opacity 620ms cubic-bezier(0.33, 1, 0.68, 1),
    filter 820ms cubic-bezier(0.33, 1, 0.68, 1),
    transform 920ms cubic-bezier(0.33, 1, 0.68, 1);
}

.loader-section-label {
  position: absolute;
  right: clamp(24px, 5vw, 92px);
  bottom: clamp(26px, 5.2vh, 72px);
  z-index: 1;
  display: block;
  max-width: calc(100vw - clamp(48px, 10vw, 184px));
  color: #111111;
  text-align: right;
  opacity: 0;
  filter: blur(24px);
  transform: translate3d(0, 36px, 0) scale(0.96);
  transform-origin: right bottom;
  transition:
    opacity 420ms var(--loader-ease-in) 100ms,
    filter 480ms var(--loader-ease-in) 100ms,
    transform 520ms var(--loader-ease-in) 100ms;
  will-change: opacity, filter, transform;
}

.loader-section-label strong {
  display: block;
  max-width: 100%;
  color: rgba(17, 17, 17, 0.48);
  font-family: var(--font-wordmark);
  font-size: clamp(0.7rem, 0.86vw, 0.95rem);
  font-weight: 300;
  letter-spacing: 0.24em;
  line-height: 1;
  overflow: hidden;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-loader.is-intro .loader-section-label,
.site-loader.is-active .loader-section-label {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.site-loader.is-active.is-hidden .loader-section-label {
  opacity: 0;
  filter: blur(18px);
  transform: translate3d(0, -48px, 0) scale(0.98);
  transition:
    opacity 560ms cubic-bezier(0.33, 1, 0.68, 1),
    filter 760ms cubic-bezier(0.33, 1, 0.68, 1),
    transform 960ms cubic-bezier(0.33, 1, 0.68, 1);
}

.loader-mark {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #161616;
  transform: translate3d(0, 62px, 0) scale(0.72);
  opacity: 0;
  filter: blur(36px);
  transition:
    opacity 400ms var(--loader-ease-in) 70ms,
    filter 460ms var(--loader-ease-in) 70ms,
    transform 520ms var(--loader-ease-in) 70ms;
  z-index: 2;
}

.loader-glyph-stack {
  position: relative;
  width: clamp(190px, 22vw, 380px);
  aspect-ratio: 66 / 62;
  transform: translate3d(0, 34px, 0) scale(0.76);
  opacity: 0;
  filter: blur(30px);
  transition:
    opacity 400ms var(--loader-ease-in) 80ms,
    filter 460ms var(--loader-ease-in) 80ms,
    transform 520ms var(--loader-ease-in) 80ms;
}

.loader-glyph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #111111;
}

.loader-glyph-outline path {
  fill: transparent;
  stroke: rgba(17, 17, 17, 0.76);
  stroke-width: 1.15;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
  transition:
    stroke-dashoffset 620ms var(--loader-ease-in) 100ms,
    stroke 620ms ease;
}

.loader-glyph-fill {
  clip-path: inset(100% 0 0 0);
  opacity: 0.98;
  transition: opacity 520ms ease;
  will-change: clip-path;
}

.site-loader.is-intro .loader-mark,
.site-loader.is-intro .loader-glyph-stack {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.site-loader.is-intro .loader-glyph-outline path {
  stroke-dashoffset: 0;
}

.site-loader.is-active .loader-mark,
.site-loader.is-active .loader-glyph-stack {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.site-loader.is-active .loader-glyph-outline path {
  stroke-dashoffset: 0;
}

.site-loader.is-complete .loader-glyph-fill {
  clip-path: inset(0 0 0 0);
}

.site-loader.is-complete .loader-glyph-stack {
  transform: translate3d(0, -2px, 0) scale(1.018);
}

.site-loader.is-complete .loader-glyph-outline path {
  stroke: rgba(17, 17, 17, 0.34);
}

.loader-progress {
  margin-top: clamp(18px, 2.2vw, 30px);
  color: rgba(17, 17, 17, 0.62);
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 0.78vw, 0.9rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transform: translate3d(0, 10px, 0);
  opacity: 0;
  transition:
    opacity 320ms var(--loader-ease-in) 120ms,
    transform 380ms var(--loader-ease-in) 120ms;
}

.site-loader.is-intro .loader-progress,
.site-loader.is-active .loader-progress {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-loader.is-active.is-hidden .loader-mark {
  opacity: 0;
  filter: blur(22px);
  transform: translate3d(0, -42px, 0) scale(0.9);
  transition:
    opacity 620ms cubic-bezier(0.33, 1, 0.68, 1),
    filter 820ms cubic-bezier(0.33, 1, 0.68, 1),
    transform 920ms cubic-bezier(0.33, 1, 0.68, 1);
}

.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;
}

.site-nav {
  --nav-gutter: clamp(12px, 3.4vw, 54px);
  --nav-panel-height: clamp(104px, 12vw, 156px);
  --menu-tab-width: 158px;
  --menu-tab-height: 62px;
  --menu-reveal-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --menu-reveal-duration: 980ms;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.site-nav::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, var(--paper) var(--nav-gutter), transparent 0 calc(100% - var(--nav-gutter)), var(--paper) 0),
    linear-gradient(180deg, var(--paper) var(--nav-gutter), transparent 0 calc(100% - var(--nav-gutter)), var(--paper) 0);
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transform: translate3d(0, -18px, 0) scale(1.006);
  transition:
    clip-path var(--menu-reveal-duration) var(--menu-reveal-ease),
    opacity 560ms ease,
    transform var(--menu-reveal-duration) var(--menu-reveal-ease);
  pointer-events: none;
}

.site-nav.is-open::before {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.site-mark-link {
  position: absolute;
  z-index: 2;
  top: clamp(16px, 2.8vw, 44px);
  left: clamp(18px, 4.6vw, 78px);
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
  width: auto;
  min-height: 44px;
  padding: 0 4px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: none;
  pointer-events: auto;
  transform-origin: left center;
  transition:
    color 260ms ease,
    filter 420ms ease,
    opacity 760ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 860ms cubic-bezier(0.19, 1, 0.22, 1);
}

.is-brand-pending .site-mark-link {
  opacity: 0;
  filter: blur(18px);
  transform: translate3d(-14px, 18px, 0) scale(0.92);
}

.is-brand-revealed .site-mark-link {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.site-mark-link:hover {
  color: var(--ember);
  filter: drop-shadow(0 0 18px rgba(255, 90, 28, 0.22));
  transform: translate3d(0, -1px, 0) scale(1.01);
}

.site-mark-glyph {
  width: clamp(34px, 3.55vw, 58px);
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
  transform-origin: 50% 50%;
  transition:
    filter 360ms ease,
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.site-mark-link:hover .site-mark-glyph,
.site-mark-link:focus-visible .site-mark-glyph {
  filter: drop-shadow(0 0 20px rgba(255, 90, 28, 0.34));
  transform: rotate(-2deg) scale(1.045);
}

.site-mark-wordmark {
  display: grid;
  gap: 0;
  color: currentColor;
  font-family: var(--font-wordmark);
  font-size: clamp(0.82rem, 1.02vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(1px) scaleY(1.04);
  transform-origin: left center;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.site-mark-wordmark span {
  display: block;
}

.site-nav.is-open .site-mark-link {
  color: var(--ink);
  filter: none;
}

body[data-page="works"] .site-mark-link {
  color: var(--ink);
}

body[data-page="services"] .site-mark-link {
  color: var(--ink);
}

body[data-page="about"] .site-mark-link,
body[data-page="contact"] .site-mark-link,
body[data-page="faq"] .site-mark-link {
  color: var(--ink);
}

.nav-panel {
  position: fixed;
  z-index: 5;
  top: var(--nav-gutter);
  right: var(--nav-gutter);
  left: var(--nav-gutter);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: var(--nav-panel-height);
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transform: translate3d(0, calc(-100% - var(--nav-gutter) - 18px), 0);
  transition:
    clip-path var(--menu-reveal-duration) var(--menu-reveal-ease),
    transform var(--menu-reveal-duration) var(--menu-reveal-ease),
    box-shadow 520ms ease;
  clip-path: inset(0 0 100% 0);
  pointer-events: auto;
  will-change: transform, clip-path;
}

.site-nav.is-open .nav-panel {
  padding-right: 0;
  transform: translate3d(0, 0, 0);
  clip-path: inset(0 0 0 0);
}

.nav-item {
  --nav-main: var(--ink);
  --nav-hover: var(--ember);
  --nav-muted: rgba(17, 17, 17, 0.52);
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 28px clamp(18px, 2.2vw, 38px) 22px;
  overflow: hidden;
  border-left: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 15px;
  line-height: 1;
  isolation: isolate;
  transition: background 420ms cubic-bezier(0.8, 0, 0.2, 1);
}

.nav-item:first-child {
  border-left: 0;
}

.nav-item::before {
  content: "";
  position: absolute;
  top: 22px;
  left: clamp(18px, 2.2vw, 38px);
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.22;
  transform: scaleX(0.5);
  transform-origin: left center;
  transition:
    background 420ms cubic-bezier(0.8, 0, 0.2, 1),
    opacity 420ms cubic-bezier(0.8, 0, 0.2, 1),
    transform 420ms cubic-bezier(0.8, 0, 0.2, 1);
}

.nav-item:hover,
.nav-item:focus-visible {
  background: rgba(17, 17, 17, 0.035);
}

.nav-item:hover::before,
.nav-item:focus-visible::before,
.nav-item.active::before {
  background: var(--ember);
  opacity: 1;
  transform: scaleX(1);
}

.nav-item span {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-top: 10px;
  overflow: hidden;
  color: var(--nav-main);
  font-family: var(--font-wordmark);
  font-size: clamp(1.05rem, 1.38vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-item span[data-text] {
  color: transparent;
}

.nav-item span[data-text]::before,
.nav-item span[data-text]::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  color: var(--nav-main);
  transform: translate3d(0, 0, 0);
  transition:
    color 420ms cubic-bezier(0.8, 0, 0.2, 1),
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.nav-item span[data-text]::after {
  color: var(--nav-hover);
  opacity: 0;
  transform: translate3d(0, 112%, 0);
}

.nav-item:hover span[data-text]::before,
.nav-item:focus-visible span[data-text]::before {
  opacity: 0;
  transform: translate3d(0, -112%, 0);
}

.nav-item:hover span[data-text]::after,
.nav-item:focus-visible span[data-text]::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.nav-item.active span[data-text]::before {
  color: var(--ember);
}

.nav-item .nav-item-label-sizer {
  display: block;
  visibility: hidden;
}

.nav-item .nav-item-label-base,
.nav-item .nav-item-label-hover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--nav-main);
  will-change: transform;
  transition:
    color 420ms cubic-bezier(0.8, 0, 0.2, 1),
    transform 520ms cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-item .nav-item-label-hover {
  color: var(--nav-hover);
  opacity: 0;
  transform: translateY(-112%);
}

.nav-item:hover .nav-item-label-base,
.nav-item:focus-visible .nav-item-label-base {
  transform: translateY(112%);
}

.nav-item:hover .nav-item-label-hover,
.nav-item:focus-visible .nav-item-label-hover {
  opacity: 1;
  transform: translateY(0);
}

.nav-item.active .nav-item-label-base {
  color: var(--ember);
}

.nav-item .nav-item-label-sizer {
  visibility: visible;
}

.nav-item .nav-item-label-base,
.nav-item .nav-item-label-hover {
  display: none;
}

.nav-item strong {
  max-width: 100%;
  margin-top: 8px;
  color: var(--nav-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  transition:
    color 360ms ease,
    opacity 360ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-item:hover strong,
.nav-item:focus-visible strong {
  color: rgba(17, 17, 17, 0.7);
  opacity: 0.78;
  transform: none;
}

.nav-item.active strong {
  color: rgba(212, 86, 52, 0.72);
}

.menu-button {
  position: fixed;
  z-index: 6;
  top: 0;
  right: auto;
  left: 50%;
  display: grid;
  place-items: center;
  width: var(--menu-tab-width);
  height: var(--menu-tab-height);
  border: 0;
  border-radius: 0 0 28px 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
  cursor: pointer;
  pointer-events: auto;
  transition:
    top var(--menu-reveal-duration) var(--menu-reveal-ease),
    right var(--menu-reveal-duration) var(--menu-reveal-ease),
    left var(--menu-reveal-duration) var(--menu-reveal-ease),
    width 520ms ease,
    height 520ms ease,
    border-radius 520ms ease,
    background 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease,
    transform var(--menu-reveal-duration) var(--menu-reveal-ease);
  will-change: top, transform;
}

.site-nav.is-open .menu-button {
  top: calc(var(--nav-gutter) + var(--nav-panel-height) - 1px);
  right: auto;
  left: 50%;
  width: var(--menu-tab-width);
  height: var(--menu-tab-height);
  border: 0;
  border-radius: 0 0 28px 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 27px;
  height: 2px;
  background: var(--ink);
  transition: transform 260ms ease, opacity 260ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  top: 7px;
}

.site-nav.is-open .menu-icon {
  background: transparent;
}

.site-nav.is-open .menu-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.is-open .menu-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-talk-link {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 142px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  overflow: hidden;
  pointer-events: auto;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-talk-label {
  height: 1em;
  overflow: hidden;
}

.nav-talk-track {
  display: grid;
  gap: 0;
  transition: transform 320ms cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-talk-track span {
  display: block;
  line-height: 1;
}

.nav-talk-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ember);
}

.nav-talk-link:hover {
  transform: translateY(-1px);
  background: var(--ember);
  color: #ffffff;
}

.nav-talk-link:hover .nav-talk-track {
  transform: translateY(-50%);
}

.nav-talk-link:hover::after {
  background: currentColor;
}

.theme-toggle {
  --theme-toggle-bg: var(--ink);
  --theme-toggle-fg: var(--paper);
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 92px;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: var(--theme-toggle-bg);
  color: var(--theme-toggle-fg);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  overflow: hidden;
  pointer-events: auto;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  --theme-toggle-bg: var(--ember);
  --theme-toggle-fg: #ffffff;
  background: var(--theme-toggle-bg);
  color: #ffffff;
  opacity: 1;
  transform: translateY(-1px);
}

.theme-toggle-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.theme-toggle-aperture {
  position: relative;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  opacity: 0.9;
  transform: rotate(0deg);
  transition:
    opacity 180ms ease,
    transform 620ms cubic-bezier(0.2, 0.86, 0.2, 1);
}

.theme-toggle-aperture::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 2;
}

.theme-toggle-aperture::after {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: 3;
  border-radius: 50%;
  background: var(--theme-toggle-bg);
  transform: scale(1);
  transition:
    background 180ms ease,
    inset 620ms cubic-bezier(0.2, 0.86, 0.2, 1),
    transform 620ms cubic-bezier(0.2, 0.86, 0.2, 1);
}

.theme-toggle-aperture i {
  position: absolute;
  inset: -2px;
  z-index: 1;
  display: block;
  background: currentColor;
  clip-path: polygon(48% 50%, 102% 14%, 102% 61%, 60% 66%);
  opacity: 0.92;
  transform:
    rotate(calc(var(--blade-index) * 60deg))
    translate3d(0, -1px, 0)
    rotate(16deg);
  transform-origin: 50% 50%;
  transition:
    opacity 240ms ease,
    clip-path 620ms cubic-bezier(0.2, 0.86, 0.2, 1),
    transform 620ms cubic-bezier(0.2, 0.86, 0.2, 1);
  transition-delay: calc(var(--blade-index) * 18ms);
}

.theme-toggle:hover .theme-toggle-aperture,
.theme-toggle:focus-visible .theme-toggle-aperture {
  transform: rotate(34deg);
}

.theme-toggle:hover .theme-toggle-aperture i,
.theme-toggle:focus-visible .theme-toggle-aperture i {
  clip-path: polygon(38% 50%, 105% 8%, 105% 66%, 55% 78%);
  transform:
    rotate(calc(var(--blade-index) * 60deg))
    translate3d(0, -2px, 0)
    rotate(30deg);
}

.theme-toggle[data-aperture="closed"] .theme-toggle-aperture {
  transform: rotate(26deg);
}

.theme-toggle[data-aperture="closed"] .theme-toggle-aperture i {
  clip-path: polygon(56% 50%, 104% 21%, 104% 55%, 63% 58%);
  transform:
    rotate(calc(var(--blade-index) * 60deg))
    translate3d(0, 0, 0)
    rotate(44deg);
}

.theme-toggle[data-aperture="closed"] .theme-toggle-aperture::after {
  inset: 8px;
  transform: scale(0.58);
}

html[data-theme="dark"] .theme-toggle {
  --theme-toggle-bg: var(--ink);
  --theme-toggle-fg: #101114;
  border-color: rgba(244, 240, 232, 0.2);
  background: var(--theme-toggle-bg);
  color: var(--theme-toggle-fg);
}

html[data-theme="dark"] .theme-toggle:hover,
html[data-theme="dark"] .theme-toggle:focus-visible {
  --theme-toggle-bg: var(--ember);
  --theme-toggle-fg: #ffffff;
  border-color: rgba(255, 107, 51, 0.7);
  background: var(--theme-toggle-bg);
  color: var(--theme-toggle-fg);
}

html[data-theme="dark"] .nav-talk-link {
  border-color: rgba(244, 240, 232, 0.62);
  background: #f4f0e8;
  color: #101114;
  box-shadow:
    0 0 0 1px rgba(244, 240, 232, 0.18),
    0 14px 34px rgba(0, 0, 0, 0.36);
}

html[data-theme="dark"] .nav-talk-link:hover {
  background: var(--ember);
  color: #ffffff;
}

.site-nav.is-open .site-mark-link,
.site-nav.is-open .nav-talk-link,
.site-nav.is-open .theme-toggle {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

.cookie-consent {
  position: fixed;
  z-index: 90;
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(16px, 3vw, 42px);
  width: min(640px, calc(100vw - 32px));
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 4px;
  background: rgba(246, 243, 238, 0.96);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: auto;
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-consent.is-hiding {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  pointer-events: none;
}

.cookie-consent > span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.56);
}

.cookie-consent h2 {
  max-width: 12ch;
  margin: 0 0 14px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.86;
}

.cookie-consent p {
  max-width: 58ch;
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 15px;
  line-height: 1.45;
}

.cookie-consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.cookie-consent-links a,
.footer-privacy-button {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cookie-consent button {
  min-height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.cookie-consent-actions button,
.cookie-consent-save {
  padding: 0 18px;
}

.cookie-consent button:hover,
.cookie-consent button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.cookie-consent button.is-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.cookie-consent button.is-primary:hover,
.cookie-consent button.is-primary:focus-visible {
  background: var(--ember);
  border-color: var(--ember);
  color: #ffffff;
}

.cookie-consent-settings {
  display: grid;
  gap: 0;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 280ms ease,
    opacity 220ms ease;
}

.cookie-consent.is-settings-open > .cookie-consent-settings {
  max-height: 560px !important;
  margin-top: 22px !important;
  opacity: 1 !important;
}

.cookie-consent-option {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 16px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  cursor: pointer;
}

.cookie-consent-option span {
  display: grid;
  gap: 6px;
}

.cookie-consent-option strong {
  font-family: var(--font-wordmark);
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
}

.cookie-consent-option small {
  max-width: 48ch;
  color: rgba(17, 17, 17, 0.62);
  font-size: 13px;
  line-height: 1.35;
}

.cookie-consent-option input {
  position: absolute;
  right: 0;
  opacity: 0;
  pointer-events: none;
}

.cookie-consent-option i {
  position: relative;
  width: 48px;
  height: 26px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.05);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.cookie-consent-option i::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ink);
  transition:
    background 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-consent-option input:checked + i {
  border-color: var(--ink);
  background: var(--ink);
}

.cookie-consent-option input:checked + i::before {
  background: var(--paper);
  transform: translateX(22px);
}

.cookie-consent-option input:focus-visible + i {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

.cookie-consent-save {
  justify-self: start;
  margin-top: 14px;
}

.consent-embed {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: grid;
  place-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.04);
}

.consent-embed::before {
  content: attr(data-consent-placeholder);
  max-width: 38ch;
  padding: 28px;
  color: rgba(17, 17, 17, 0.62);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.consent-embed.is-unlocked::before {
  display: none;
}

.footer-privacy-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.footer-privacy-button:hover,
.footer-privacy-button:focus-visible {
  color: var(--footer-ink);
}

html[data-theme="dark"] .cookie-consent {
  border-color: rgba(244, 240, 232, 0.18);
  background: rgba(16, 17, 20, 0.96);
  color: var(--ink);
}

html[data-theme="dark"] .cookie-consent > span,
html[data-theme="dark"] .cookie-consent p,
html[data-theme="dark"] .cookie-consent-option small,
html[data-theme="dark"] .consent-embed::before {
  color: rgba(244, 240, 232, 0.68);
}

html[data-theme="dark"] .cookie-consent button {
  border-color: rgba(244, 240, 232, 0.24);
}

html[data-theme="dark"] .cookie-consent button:hover,
html[data-theme="dark"] .cookie-consent button:focus-visible,
html[data-theme="dark"] .cookie-consent button.is-primary {
  background: var(--ink);
  color: #101114;
}

html[data-theme="dark"] .cookie-consent-option,
html[data-theme="dark"] .consent-embed {
  border-color: rgba(244, 240, 232, 0.16);
}

html[data-theme="dark"] .cookie-consent-option i {
  border-color: rgba(244, 240, 232, 0.24);
  background: rgba(244, 240, 232, 0.08);
}

html[data-theme="dark"] .cookie-consent-option i::before {
  background: var(--ink);
}

html[data-theme="dark"] .cookie-consent-option input:checked + i {
  border-color: var(--ink);
  background: var(--ink);
}

html[data-theme="dark"] .cookie-consent-option input:checked + i::before {
  background: #101114;
}

.hero-sequence {
  min-height: 100svh;
  height: 100svh;
  background: #050505;
  touch-action: pan-y;
  overscroll-behavior-y: auto;
}

.hero-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #050505;
  color: var(--white);
  touch-action: pan-y;
  overscroll-behavior-y: auto;
}

.hero-sticky.is-scroll-fixed,
.home-client-sticky.is-scroll-fixed,
.home-video-process-sticky.is-scroll-fixed,
.about-hero-scrub-sticky.is-scroll-fixed {
  position: fixed;
  inset: 0 0 auto;
  z-index: 3;
  width: auto;
}

.hero-sticky.is-scroll-ended,
.home-client-sticky.is-scroll-ended,
.home-video-process-sticky.is-scroll-ended,
.about-hero-scrub-sticky.is-scroll-ended {
  position: absolute;
  inset: auto 0 0;
  width: auto;
}

.hero-frame,
.hero-frame-color,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-frame {
  z-index: 0;
  background-color: #050505;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
  filter: saturate(1.06) contrast(1.04) brightness(0.82);
  pointer-events: none;
  contain: paint;
}

.hero-scroll-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #050505;
  filter: saturate(1.04) contrast(1.06) brightness(0.8);
  pointer-events: none;
  contain: paint;
  will-change: contents;
}

.hero-frame-color {
  --hero-bg-brush-mask: radial-gradient(circle 0px at 50% 50%, #ffffff 0%, transparent 100%);
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
  filter: saturate(1.18) contrast(1.08) brightness(1.02);
  pointer-events: none;
  contain: paint;
  will-change: -webkit-mask-image, mask-image;
  -webkit-mask-image: var(--hero-bg-brush-mask);
  mask-image: var(--hero-bg-brush-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-shade {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.14) 45%, rgba(0, 0, 0, 0.72)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 46%);
}

.hero-brand {
  position: absolute;
  z-index: 5;
  top: clamp(72px, 11.5vh, 128px);
  display: none;
  align-items: center;
  gap: 18px;
  font-size: clamp(1rem, 1.58vw, 1.58rem);
  line-height: 1;
}

.studio-word {
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.hero-sticky h1 {
  position: relative;
  z-index: 3;
  width: min(90vw, 1320px);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 7.6vw, 8.9rem);
  font-weight: 400;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 34px 120px rgba(0, 0, 0, 0.52);
  transform: translateY(clamp(10px, 2.8vh, 38px));
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.hero-claim {
  position: absolute;
  z-index: 5;
  top: clamp(150px, 21vh, 230px);
  left: 50%;
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  margin: 0;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 0.78vw, 0.86rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.hero-caption,
.hero-note {
  position: absolute;
  z-index: 5;
  margin: 0;
  font-family: var(--font-mono);
  line-height: 1.12;
}

.hero-caption {
  right: 4.4vw;
  bottom: 4.2vh;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-note {
  left: 4.4vw;
  bottom: 4.2vh;
  max-width: 410px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.intro-block {
  min-height: 76svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-y-loose) var(--section-x);
  background: var(--white);
}

.intro-block p {
  width: min(1040px, 100%);
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 4.35rem);
  line-height: 1.12;
}

.intro-editorial {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 118px);
  align-items: start;
  justify-content: stretch;
  padding: var(--section-y-loose) var(--section-x-slim);
  border-bottom: 1px solid var(--line);
}

.intro-editorial > span,
.home-core-system header > span,
.home-core-grid a > span,
.home-keyword-rail {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.intro-editorial h2 {
  max-width: 1200px;
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 9.6rem);
  line-height: 0.9;
}

.intro-editorial p {
  width: min(820px, 100%);
  margin: clamp(34px, 4vh, 60px) 0 0 auto;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1.05rem, 1.35vw, 1.36rem);
  line-height: 1.58;
}

.home-core-system {
  padding: var(--section-y-loose) var(--section-x-slim);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.home-core-system header {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 118px);
  align-items: start;
  margin-bottom: clamp(46px, 7vh, 108px);
}

.home-core-system h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(2.75rem, 5.8vw, 7.4rem);
  line-height: 0.92;
}

.home-core-system header p {
  max-width: 780px;
  margin: clamp(28px, 3vw, 48px) 0 0 auto;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 1.22vw, 1.22rem);
  line-height: 1.58;
}

.home-core-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.home-core-grid a {
  min-width: 0;
  min-height: clamp(360px, 28vw, 540px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(26px, 3vw, 48px);
  padding: clamp(28px, 3.4vw, 58px);
  background: var(--white);
  color: inherit;
}

.home-core-grid h3 {
  max-width: 100%;
  margin: auto 0 0;
  font-size: clamp(1.52rem, 2.08vw, 3.05rem);
  line-height: 1;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.home-core-grid p {
  width: auto;
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(0.98rem, 1.08vw, 1.1rem);
  line-height: 1.5;
}

.home-core-grid a:hover h3 {
  color: var(--ember);
}

.home-keyword-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  justify-content: center;
  padding-top: clamp(38px, 6vh, 86px);
  color: rgba(17, 17, 17, 0.58);
}

.home-keyword-rail i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
}

.home-clarity-intro,
.home-service-map,
.home-featured-work,
.home-process-clarity,
.home-about-clarity {
  padding: var(--section-y-loose) var(--section-x-slim);
}

.home-clarity-intro {
  min-height: 86svh;
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 118px);
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.home-clarity-intro > span,
.home-proof-strip > span,
.home-service-map header > span,
.home-service-map article > span,
.home-featured-work header > span,
.home-featured-list span,
.home-process-clarity header > span,
.home-about-clarity > div > span,
.home-about-facts span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.home-clarity-intro h2 {
  max-width: 1360px;
  margin: 0;
  font-size: clamp(4rem, 8.4vw, 12.5rem);
  line-height: 0.86;
}

.home-clarity-intro p {
  width: min(760px, 100%);
  margin: clamp(34px, 4vh, 62px) 0 0 auto;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1.05rem, 1.32vw, 1.34rem);
  line-height: 1.58;
}

.home-action-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: clamp(30px, 4vh, 58px);
}

.home-action-row a,
.home-featured-all {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.home-action-row a:hover,
.home-featured-all:hover {
  color: var(--ember);
}

.home-proof-strip {
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 4vw, 84px);
  align-items: center;
  padding: clamp(32px, 5vh, 72px) var(--section-x-slim);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.home-proof-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-proof-strip li {
  font-size: clamp(1.25rem, 2.2vw, 2.9rem);
  line-height: 0.95;
}

.home-proof-strip p {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(0.98rem, 1.18vw, 1.15rem);
  line-height: 1.52;
}

.brand-experience {
  padding: var(--section-y) var(--section-x-slim);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.home-brand-experience,
.services-brand-experience,
.about-brand-experience {
  background: var(--paper);
}

.brand-experience-head {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 118px);
  align-items: start;
  margin-bottom: clamp(48px, 7vh, 104px);
}

.brand-experience-head > span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.brand-experience-head h2 {
  max-width: 1360px;
  margin: 0;
  font-size: clamp(3.2rem, 7.3vw, 10.8rem);
  line-height: 0.86;
}

.brand-experience-head p {
  width: min(720px, 100%);
  margin: clamp(30px, 4vh, 58px) 0 0 auto;
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(1rem, 1.24vw, 1.22rem);
  line-height: 1.56;
}

.brand-experience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-experience-grid article {
  min-height: clamp(300px, 26vw, 460px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(36px, 5vw, 76px);
  padding: clamp(30px, 3.6vw, 58px);
  border-right: 1px solid var(--line);
}

.brand-experience-grid article:last-child {
  border-right: 0;
}

.brand-experience-grid span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-experience-grid ul {
  display: grid;
  gap: clamp(10px, 1.2vw, 18px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-experience-grid li {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.15vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.brand-experience-grid a {
  color: inherit;
}

.brand-experience-grid a:hover {
  color: var(--ember);
}

.home-service-map {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.home-service-map header,
.home-process-clarity header {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 118px);
  align-items: start;
  margin-bottom: clamp(52px, 8vh, 112px);
}

.home-service-map h2,
.home-featured-work h2,
.home-process-clarity h2,
.home-about-clarity h2 {
  margin: 0;
  font-size: clamp(3.15rem, 6.4vw, 8.8rem);
  line-height: 0.92;
}

.home-service-map header p,
.home-process-clarity header p,
.home-about-clarity p {
  max-width: 740px;
  margin: clamp(26px, 3vw, 44px) 0 0 auto;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1.02rem, 1.22vw, 1.22rem);
  line-height: 1.58;
}

.home-service-map-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-service-map-grid article {
  min-height: clamp(430px, 30vw, 590px);
  display: flex;
  flex-direction: column;
  gap: clamp(26px, 3vw, 54px);
  padding: clamp(28px, 3.2vw, 58px);
  background: transparent;
  border-right: 1px solid var(--line);
}

.home-service-map-grid article:last-child {
  border-right: 0;
}

.home-service-map-grid h3 {
  margin: auto 0 0;
  font-size: clamp(2.2rem, 3.4vw, 5rem);
  line-height: 0.95;
}

.home-service-map-grid p {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 1.14vw, 1.15rem);
  line-height: 1.52;
}

.home-service-map-grid ul,
.home-featured-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-service-map-grid li + li {
  margin-top: 10px;
}

.home-service-map-grid a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: inherit;
  text-transform: uppercase;
}

.home-service-map-grid a:hover {
  color: var(--ember);
}

.home-featured-work {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.home-featured-work header {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 118px);
  align-items: end;
  margin-bottom: clamp(54px, 8vh, 118px);
}

.home-featured-work h2 {
  max-width: 1100px;
}

.home-featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: stretch;
}

.home-featured-layout .brush-feature {
  width: 100%;
  margin: 0;
}

.home-featured-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.home-featured-list a:not(.home-featured-all) {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: clamp(22px, 3vh, 36px) 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.home-featured-list strong {
  grid-column: 2;
  display: block;
  font-size: clamp(1.35rem, 1.72vw, 2.1rem);
  font-weight: 400;
  line-height: 1.05;
}

.home-featured-list small {
  grid-column: 2;
  display: block;
  margin-top: 8px;
  color: rgba(17, 17, 17, 0.62);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-featured-list span {
  grid-row: 1 / span 2;
  padding-top: 0.35em;
}

.home-featured-all {
  width: fit-content;
  margin-top: auto;
}

.home-process-clarity {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.home-about-clarity {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: clamp(44px, 6vw, 118px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 90, 28, 0.12), transparent 34%),
    var(--night);
  color: var(--white);
}

.home-about-clarity h2 {
  max-width: 1050px;
}

.home-about-clarity p {
  margin-left: 0;
  color: rgba(255, 255, 255, 0.72);
}

.home-about-facts {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.home-about-facts article {
  min-height: 190px;
  padding: clamp(24px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.055);
}

.home-about-facts span {
  display: block;
  margin-bottom: clamp(34px, 5vh, 68px);
  font-size: clamp(1.7rem, 3.2vw, 4.1rem);
  line-height: 0.9;
}

.home-about-facts p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.12vw, 1.12rem);
  line-height: 1.48;
}

.alien-statement,
.alien-client-strip,
.alien-reel,
.alien-services,
.alien-works,
.alien-process-about {
  padding: var(--section-y-loose) var(--section-x-slim);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.alien-statement {
  position: relative;
  overflow: hidden;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(52px, 6rem, 96px);
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 90, 28, 0.18), transparent 30rem),
    var(--paper);
}

.alien-statement-copy > span,
.alien-section-label span,
.alien-work-grid span,
.alien-process-list span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.alien-statement h2 {
  max-width: 14ch;
  margin: 28px 0 0;
  font-family: var(--font-display);
  font-size: 8.2rem;
  font-weight: 400;
  line-height: 0.84;
}

.alien-statement-support {
  align-self: end;
  padding-bottom: clamp(12px, 4rem, 70px);
}

.alien-statement-support p {
  max-width: 580px;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 1.24rem;
  line-height: 1.58;
}

.home-claim-statement {
  min-height: clamp(430px, 56svh, 610px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  align-items: end;
  padding-top: clamp(68px, 8vh, 112px);
  padding-bottom: clamp(64px, 8vh, 104px);
}

.home-claim-statement .alien-statement-copy > span {
  color: rgba(255, 90, 28, 0.86);
}

.home-claim-statement h2 {
  max-width: 11.5ch;
  margin-top: 22px;
  font-size: clamp(3.7rem, 6.6vw, 7.2rem);
  line-height: 0.9;
}

.home-claim-statement .alien-statement-support {
  align-self: end;
  padding-bottom: clamp(8px, 2vw, 28px);
}

.home-claim-statement .alien-statement-support p {
  max-width: 460px;
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  line-height: 1.48;
}

.home-claim-statement .alien-word-rails {
  bottom: clamp(20px, 3rem, 48px);
  opacity: 0.72;
}

.home-claim-statement .alien-word-rails span {
  font-size: clamp(2.9rem, 5.2vw, 5.9rem);
}

.home-studio-intro {
  min-height: clamp(440px, 58svh, 620px);
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.42fr);
  align-items: end;
  padding-top: clamp(72px, 8vh, 116px);
  padding-bottom: clamp(68px, 8vh, 112px);
}

.home-studio-intro h2 {
  max-width: 12ch;
  margin-top: 22px;
  font-size: clamp(3.7rem, 6.4vw, 7.4rem);
  line-height: 0.9;
}

.home-studio-intro .alien-statement-support {
  align-self: end;
  padding-bottom: clamp(8px, 2vw, 28px);
}

.home-studio-intro .alien-statement-support p {
  max-width: 500px;
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  line-height: 1.5;
}

.home-studio-intro .alien-word-rails {
  bottom: clamp(20px, 3rem, 48px);
  opacity: 0.66;
}

.home-studio-intro .alien-word-rails span {
  font-size: clamp(2.9rem, 5.2vw, 5.9rem);
}

.alien-pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.alien-pill-links a {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.alien-word-rails {
  position: absolute;
  right: -8rem;
  bottom: clamp(32px, 5rem, 90px);
  left: clamp(24px, 7rem, 130px);
  z-index: 0;
  display: grid;
  gap: 12px;
  pointer-events: none;
}

.alien-word-rails span {
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  padding: 0.06em 0.28em 0.12em;
  border-radius: 999px;
  background: rgba(255, 90, 28, 0.12);
  color: rgba(255, 90, 28, 0.2);
  font-family: var(--font-display);
  font-size: 7.5rem;
  line-height: 0.85;
  white-space: nowrap;
}

.alien-word-rails span:nth-child(2) {
  justify-self: center;
  background: rgba(244, 240, 232, 0.06);
  color: rgba(244, 240, 232, 0.12);
}

.alien-word-rails span:nth-child(3) {
  justify-self: end;
}

.alien-statement-copy,
.alien-statement-support {
  position: relative;
  z-index: 1;
}

.alien-client-strip {
  padding-top: clamp(52px, 6rem, 104px);
}

.home-client-scroll {
  --home-client-progress: 0;
  position: relative;
  min-height: 220svh;
  padding: 0;
  overflow: visible;
  background: #0c0d0c;
  border-bottom: 0;
}

.home-client-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  transform: none;
  perspective: 950px;
  perspective-origin: 50% 48%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px) top right / 10vw 1px no-repeat,
    #0c0d0c;
}

.home-client-label {
  position: absolute;
  z-index: 2;
  left: clamp(72px, 8.2vw, 156px);
  top: calc(50% - clamp(170px, 18vw, 230px));
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0 20px;
  background: #f7f4ee;
  color: #10100e;
  font-family: var(--font-mono);
  font-size: clamp(0.86rem, 1vw, 1rem);
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(247, 244, 238, 0.08);
  pointer-events: none;
  will-change: transform;
}

.home-client-track {
  width: 100%;
  overflow: visible;
  transform-style: preserve-3d;
}

.home-client-track ul {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(34px, 3.4vw, 62px);
  margin: 0;
  padding: 0 clamp(32px, 6vw, 108px);
  list-style: none;
  transform: translate3d(calc(var(--home-client-progress) * -42%), 0, 0);
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  will-change: transform;
}

.home-client-track li {
  --client-card-y: 0px;
  --client-card-z: 0px;
  --client-card-rotate-x: 0deg;
  --client-card-rotate-y: 0deg;
  --client-dyn-x: 0px;
  --client-dyn-y: 0px;
  --client-dyn-z: 0px;
  --client-dyn-rotate-x: 0deg;
  --client-dyn-rotate-y: 0deg;
  --client-dyn-scale: 1;
  --client-card-light: 0.012;
  --client-card-border: 0.15;
  --client-card-shadow: 0.24;
  width: clamp(250px, 20vw, 370px);
  aspect-ratio: 1.08 / 1;
  display: grid;
  place-items: center;
  padding: clamp(20px, 2.4vw, 40px);
  border: 1px solid rgba(247, 244, 238, var(--client-card-border));
  background:
    radial-gradient(circle at 50% 15%, rgba(247, 244, 238, calc(var(--client-card-light) * 1.35)), transparent 46%),
    rgba(255, 255, 255, var(--client-card-light));
  color: rgba(247, 244, 238, 0.92);
  text-align: center;
  transform-origin: 50% 50%;
  transform:
    translate3d(var(--client-dyn-x), calc(var(--client-card-y) + var(--client-dyn-y)), calc(var(--client-card-z) + var(--client-dyn-z)))
    rotateX(calc(var(--client-card-rotate-x) + var(--client-dyn-rotate-x)))
    rotateY(calc(var(--client-card-rotate-y) + var(--client-dyn-rotate-y)))
    scale(var(--client-dyn-scale));
  transform-style: preserve-3d;
  box-shadow: 0 38px 96px rgba(0, 0, 0, var(--client-card-shadow));
  will-change: transform;
}

.home-client-track li:nth-child(6n+1) {
  --client-card-y: -34px;
  --client-card-z: 86px;
  --client-card-rotate-x: 1deg;
  --client-card-rotate-y: -7deg;
}

.home-client-track li:nth-child(6n+2) {
  --client-card-y: 26px;
  --client-card-z: 24px;
  --client-card-rotate-x: -1deg;
  --client-card-rotate-y: 5deg;
}

.home-client-track li:nth-child(6n+3) {
  --client-card-y: -10px;
  --client-card-z: 132px;
  --client-card-rotate-x: 0.6deg;
  --client-card-rotate-y: -3deg;
}

.home-client-track li:nth-child(6n+4) {
  --client-card-y: 42px;
  --client-card-z: -34px;
  --client-card-rotate-x: -1deg;
  --client-card-rotate-y: 7deg;
}

.home-client-track li:nth-child(6n+5) {
  --client-card-y: -26px;
  --client-card-z: 54px;
  --client-card-rotate-x: 1deg;
  --client-card-rotate-y: 4deg;
}

.home-client-track li:nth-child(6n) {
  --client-card-y: 12px;
  --client-card-z: -70px;
  --client-card-rotate-x: -0.6deg;
  --client-card-rotate-y: -6deg;
}

.home-client-track li span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.2vw, 4.2rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  transform: translateZ(18px);
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.home-video-process {
  position: relative;
  min-height: 240svh;
  background: #050606;
  color: #f7f4ee;
  overflow: visible;
}

.home-video-process-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  transform: none;
}

.home-video-process-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.home-video-process-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.82) 0%, rgba(5, 6, 6, 0.52) 38%, rgba(5, 6, 6, 0.2) 68%, rgba(5, 6, 6, 0.58) 100%),
    linear-gradient(180deg, rgba(5, 6, 6, 0.74) 0%, transparent 28%, transparent 70%, rgba(5, 6, 6, 0.88) 100%);
}

.home-video-process-copy {
  width: min(760px, calc(100% - clamp(40px, 12vw, 180px)));
  margin-left: clamp(24px, 8vw, 140px);
  padding-top: clamp(34px, 6vh, 84px);
}

.home-video-process-copy > span {
  display: block;
  margin-bottom: clamp(18px, 2vw, 30px);
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 0.92vw, 0.96rem);
  line-height: 1;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.7);
}

.home-video-process-copy h2 {
  max-width: 7.8em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 11vw, 13.5rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
  color: #f8f3eb;
}

.home-video-process-copy p {
  max-width: 530px;
  margin: clamp(24px, 3vw, 46px) 0 0;
  font-size: clamp(1rem, 1.25vw, 1.3rem);
  line-height: 1.55;
  color: rgba(247, 244, 238, 0.76);
}

.home-video-process-meter {
  position: absolute;
  right: clamp(24px, 4.5vw, 72px);
  bottom: clamp(28px, 5vh, 72px);
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.74);
}

.home-video-process-meter i {
  position: relative;
  display: block;
  width: clamp(92px, 11vw, 170px);
  height: 1px;
  overflow: hidden;
  background: rgba(247, 244, 238, 0.24);
}

.home-video-process-meter i::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f7f4ee;
  transform: scaleX(var(--home-video-progress, 0));
  transform-origin: left center;
}

.alien-section-label {
  display: flex;
  gap: 14px;
  align-items: center;
}

.alien-section-label i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ember);
}

.alien-client-strip:not(.home-client-scroll) ul {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.alien-client-strip:not(.home-client-scroll) li {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: rgba(17, 17, 17, 0.7);
  font-family: var(--font-display);
  font-size: 1.72rem;
  line-height: 1;
  text-align: center;
}

.alien-client-strip:not(.home-client-scroll) li:nth-child(6n) {
  border-right: 0;
}

.alien-reel {
  padding-top: var(--section-y-compact);
  background: var(--white);
}

.alien-reel figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--night);
  aspect-ratio: 16 / 8.2;
}

.alien-reel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.alien-reel figcaption {
  position: absolute;
  inset: auto clamp(24px, 4rem, 70px) clamp(24px, 4rem, 70px);
  display: grid;
  gap: 10px;
  color: #fffaf2;
}

.alien-reel figcaption span,
.alien-work-grid div span {
  color: var(--ember);
  font-family: var(--font-wordmark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.alien-reel figcaption strong {
  max-width: 900px;
  font-family: var(--font-display);
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 0.88;
}

.alien-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.4rem, 34px);
  align-items: start;
  margin-bottom: clamp(58px, 7rem, 112px);
  border-top: 1px solid var(--line);
  padding-top: 42px;
}

.alien-section-head h2,
.alien-process-copy h2 {
  max-width: 1120px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 5.7rem;
  font-weight: 400;
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.alien-service-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.alien-service-columns article {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 3.5rem, 56px);
  border-right: 1px solid var(--line);
}

.alien-service-columns article:last-child {
  border-right: 0;
}

.alien-service-columns h3 {
  margin: 0 0 auto;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 0.94;
}

.alien-service-columns ul {
  display: grid;
  gap: 14px;
  margin: 54px 0 36px;
  padding: 0;
  list-style: none;
}

.alien-service-columns li,
.alien-process-copy p,
.alien-work-grid p {
  color: rgba(17, 17, 17, 0.68);
  font-size: 1.08rem;
  line-height: 1.5;
}

.alien-service-columns a {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid rgba(17, 17, 17, 0.28);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.035);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    transform 260ms ease;
}

.alien-service-columns a::after {
  content: "↘";
  font-family: var(--font-text);
  font-size: 1.05rem;
  line-height: 0.8;
  transform: translateY(-1px);
  transition: transform 260ms ease;
}

.alien-service-columns a:hover {
  border-color: #101114;
  background: #101114;
  color: #fffaf2;
  transform: translateY(-2px);
}

.alien-service-columns a:hover::after {
  transform: translate(3px, 2px);
}

.home-service-showcase .alien-section-head {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.4rem, 34px);
  margin-bottom: clamp(22px, 3.2rem, 48px);
}

.home-service-showcase .alien-section-label {
  min-width: max-content;
  overflow: visible;
  white-space: nowrap;
}

.home-service-showcase .alien-section-label i {
  flex: 0 0 16px;
  display: block;
  box-shadow: 0 0 0 1px rgba(231, 93, 38, 0.18);
}

.home-service-showcase .alien-section-head h2 {
  max-width: none;
  font-size: clamp(4.2rem, 10vw, 12rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.home-service-showcase .alien-service-columns {
  display: none;
}

.home-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-service-list {
  display: grid;
}

.home-service-row {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 54px;
  gap: clamp(18px, 3vw, 48px);
  align-items: center;
  min-height: clamp(132px, 13vw, 190px);
  padding: clamp(24px, 3vw, 42px) 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
  transition: color 320ms ease, padding-left 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-service-row:last-child {
  border-bottom: 0;
}

.home-service-row::before {
  content: "";
  position: absolute;
  inset: 0 calc(var(--section-x-slim) * -1) 0 0;
  z-index: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-service-row > * {
  position: relative;
  z-index: 1;
}

.home-service-row > span,
.home-service-row small {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.home-service-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.8vw, 7rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-service-row p {
  max-width: 680px;
  margin: 14px 0 12px;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.45;
  transition: color 320ms ease;
}

.home-service-row i {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 50%;
  justify-self: end;
  transition: border-color 320ms ease, background 320ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-service-row i::before,
.home-service-row i::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background: currentColor;
}

.home-service-row i::after {
  transform: rotate(90deg);
}

.home-service-row:hover,
.home-service-row:focus-visible {
  color: var(--paper);
  padding-left: clamp(16px, 2vw, 28px);
}

.home-service-row:hover::before,
.home-service-row:focus-visible::before {
  transform: scaleX(1);
}

.home-service-row:hover p,
.home-service-row:focus-visible p {
  color: rgba(247, 242, 232, 0.7);
}

.home-service-row:hover i,
.home-service-row:focus-visible i {
  border-color: rgba(247, 242, 232, 0.42);
  background: rgba(247, 242, 232, 0.08);
  transform: rotate(45deg);
}

.home-service-visual {
  position: sticky;
  top: clamp(88px, 12vh, 132px);
  min-height: 100%;
  height: clamp(520px, 66svh, 780px);
  margin: clamp(32px, 4vw, 58px) 0;
  overflow: hidden;
  background: #101114;
}

.home-service-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 520ms ease,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-service-visual img:first-child {
  opacity: 1;
  transform: scale(1);
}

.home-service-layout:has(.home-service-row:nth-child(2):is(:hover, :focus-visible)) .home-service-visual img,
.home-service-layout:has(.home-service-row:nth-child(3):is(:hover, :focus-visible)) .home-service-visual img,
.home-service-layout:has(.home-service-row:nth-child(4):is(:hover, :focus-visible)) .home-service-visual img,
.home-service-layout:has(.home-service-row:nth-child(5):is(:hover, :focus-visible)) .home-service-visual img {
  opacity: 0;
  transform: scale(1.04);
}

.home-service-layout:has(.home-service-row:nth-child(2):is(:hover, :focus-visible)) .home-service-visual img:nth-child(2),
.home-service-layout:has(.home-service-row:nth-child(3):is(:hover, :focus-visible)) .home-service-visual img:nth-child(3),
.home-service-layout:has(.home-service-row:nth-child(4):is(:hover, :focus-visible)) .home-service-visual img:nth-child(4),
.home-service-layout:has(.home-service-row:nth-child(5):is(:hover, :focus-visible)) .home-service-visual img:nth-child(5) {
  opacity: 1;
  transform: scale(1);
}

html[data-theme="dark"] .home-service-row p {
  color: rgba(247, 242, 232, 0.62);
}

html[data-theme="dark"] .home-service-row::before {
  background: #f7f2e8;
}

html[data-theme="dark"] .home-service-row i {
  border-color: rgba(247, 242, 232, 0.22);
}

html[data-theme="dark"] .home-service-row:hover,
html[data-theme="dark"] .home-service-row:focus-visible {
  color: #030304;
}

html[data-theme="dark"] .home-service-row:hover p,
html[data-theme="dark"] .home-service-row:focus-visible p {
  color: rgba(3, 3, 4, 0.68);
}

@media (max-width: 980px) {
  .home-service-layout {
    grid-template-columns: 1fr;
  }

  .home-service-visual {
    position: relative;
    top: auto;
    order: -1;
    height: clamp(320px, 62vw, 560px);
    margin: 0 0 clamp(18px, 4vw, 34px);
  }

  .home-service-row {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
  }
}

@media (max-width: 620px) {
  .home-service-showcase .alien-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-service-showcase .alien-section-head h2 {
    font-size: clamp(3.5rem, 17vw, 6.8rem);
  }

  .home-service-row {
    grid-template-columns: 1fr 42px;
    gap: 18px;
    min-height: 0;
  }

  .home-service-row > span {
    grid-column: 1 / -1;
  }

  .home-service-row h3 {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .home-service-row p {
    margin-top: 10px;
  }
}

.alien-text-link {
  width: fit-content;
  color: inherit;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.alien-text-link:hover,
.alien-pill-links a:hover,
.alien-work-grid a:hover h3,
.alien-process-list a:hover strong {
  color: var(--ember);
}

.alien-works {
  background: var(--white);
}

.alien-section-head.split {
  grid-template-columns: minmax(0, 1fr);
}

.alien-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4.5rem, 80px) clamp(24px, 4rem, 72px);
}

.alien-work-grid a {
  display: grid;
  gap: 22px;
  color: inherit;
}

.alien-work-grid figure {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  aspect-ratio: 1.25 / 1;
  background: var(--night);
}

.alien-work-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms ease;
}

.alien-work-grid a:hover img {
  transform: scale(1.045);
}

.alien-work-grid div {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.alien-work-grid h3 {
  grid-column: 2;
  margin: 0;
  font-family: var(--font-wordmark);
  font-size: clamp(1.75rem, 2.5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.alien-work-grid p {
  grid-column: 2;
  max-width: 640px;
  margin: 0;
}

.alien-works > .alien-text-link {
  display: block;
  margin-top: 58px;
}

.alien-process-about {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.46fr);
  gap: clamp(48px, 6rem, 118px);
  align-items: start;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 90, 28, 0.12), transparent 26rem),
    var(--paper);
}

.alien-process-copy p {
  max-width: 760px;
  margin: 36px 0 34px;
}

.alien-process-copy .alien-section-label {
  margin-bottom: 42px;
}

.alien-process-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.alien-process-list a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.alien-process-list strong {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 0.96;
}

.alien-process-list em {
  grid-column: 2;
  color: rgba(17, 17, 17, 0.68);
  font-style: normal;
  line-height: 1.5;
}

.alien-final-cta {
  display: grid;
  grid-template-columns: minmax(180px, 0.22fr) minmax(0, 1fr);
  gap: clamp(40px, 6rem, 112px);
  padding: var(--section-y-loose) var(--section-x-slim) var(--section-y);
  background: var(--night);
  color: var(--white);
  border-bottom: 1px solid var(--line);
}

.alien-final-cta h2 {
  max-width: 1080px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 6.3rem;
  font-weight: 400;
  line-height: 0.9;
}

.alien-final-cta p {
  max-width: 620px;
  margin: 34px 0 40px auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.16rem;
  line-height: 1.56;
}

.alien-final-link {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  color: #fffaf2;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.alien-final-link:hover {
  color: var(--ember);
}

.alien-social-line {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  margin-top: clamp(72px, 8rem, 132px);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.alien-social-line a {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.alien-social-line a:hover {
  color: var(--ember);
}

.is-pre-cinematic-cta {
  display: none !important;
}

.cinematic-page-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(840px, 94svh, 1120px);
  display: grid;
  align-content: start;
  padding: clamp(92px, 10vh, 138px) var(--section-x-slim) clamp(300px, 31vh, 430px);
  background:
    radial-gradient(circle at 11% 16%, rgba(255, 90, 28, 0.2), transparent 29rem),
    radial-gradient(circle at 86% 18%, rgba(255, 250, 242, 0.08), transparent 32rem),
    linear-gradient(180deg, #080611 0%, #05040b 100%);
  color: #fffaf2;
  border-top: 1px solid rgba(255, 250, 242, 0.08);
  border-bottom: 0;
}

.cinematic-page-cta::before {
  content: none;
}

.cinematic-page-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.04), transparent 24%, transparent 72%, rgba(255, 250, 242, 0.055));
  pointer-events: none;
}

.cinematic-cta-marquee {
  position: absolute;
  right: 0;
  bottom: clamp(58px, 7vh, 112px);
  left: 0;
  z-index: 1;
  overflow: hidden;
  color: rgba(255, 250, 242, 0.72);
  pointer-events: none;
}

.cinematic-cta-track {
  display: flex;
  width: max-content;
  animation: cinematicCtaMarquee 76s linear infinite;
  will-change: transform;
}

.cinematic-cta-track span {
  flex: 0 0 auto;
  padding-right: 0.28em;
  font-family: var(--font-display);
  font-size: clamp(5.8rem, 10.4vw, 12rem);
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
}

.cinematic-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1740px);
  margin: 0 auto;
  grid-template-columns: minmax(170px, 0.2fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 98px);
  align-items: start;
  min-height: auto;
}

.cinematic-cta-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(320px, 0.46fr);
  gap: clamp(34px, 5vw, 94px);
  align-items: start;
}

.cinematic-cta-copy h2 {
  grid-column: 1;
  grid-row: auto;
  max-width: 12.8ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 4.6vw, 5.8rem);
  font-weight: 400;
  line-height: 0.92;
}

.cinematic-cta-copy p {
  grid-column: 2;
  max-width: 560px;
  margin: clamp(10px, 1.6vh, 24px) 0 0;
  color: rgba(255, 250, 242, 0.7);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.58;
}

.cinematic-cta-action {
  grid-column: 2;
  display: grid;
  justify-items: start;
  gap: 14px;
  width: fit-content;
  margin: clamp(42px, 5vh, 72px) 0 0;
}

.cinematic-cta-action > span {
  color: rgba(255, 250, 242, 0.74);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.4;
  text-align: center;
}

.cinematic-cta-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2vw, 30px) clamp(20px, 2.4vw, 38px);
  justify-content: flex-start;
  margin-top: clamp(48px, 6vh, 88px);
}

.cinematic-cta-links a {
  display: inline-grid;
  place-items: center;
  min-height: clamp(76px, 7.4vw, 116px);
  padding: 0 clamp(34px, 3.2vw, 68px);
  border: 1px solid rgba(255, 250, 242, 0.82);
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.92);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.15vw, 3rem);
  text-transform: none;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    background 220ms ease;
}

.cinematic-cta-links a:hover {
  border-color: rgba(255, 90, 28, 0.7);
  color: var(--ember);
}

.cinematic-cta-links .cinematic-cta-primary {
  background: var(--warm);
  border-color: var(--warm);
  color: #101114;
}

.cinematic-cta-links .cinematic-cta-primary:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: #101114;
}

.nav-talk-link,
.inline-link,
.alien-pill-links a,
.alien-final-link,
.cinematic-cta-primary,
.cinematic-cta-links a,
.service-big-cta a,
.form-actions button,
.form-actions a {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58em;
  overflow: hidden;
  border-radius: 999px;
  line-height: 1;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.nav-talk-link::after,
.inline-link::after,
.alien-pill-links a::after,
.alien-final-link::after,
.cinematic-cta-primary::after,
.cinematic-cta-links a::after,
.service-big-cta a::after,
.form-actions button::after,
.form-actions a::after {
  content: "↘";
  display: inline-block;
  font-family: var(--font-text);
  font-size: 1.05em;
  line-height: 0.72;
  transform: translate3d(0, -0.02em, 0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-talk-link:hover,
.inline-link:hover,
.alien-pill-links a:hover,
.alien-final-link:hover,
.cinematic-cta-primary:hover,
.cinematic-cta-links a:hover,
.service-big-cta a:hover,
.form-actions button:hover,
.form-actions a:hover {
  transform: translateY(-1px);
}

.nav-talk-link:hover::after,
.inline-link:hover::after,
.alien-pill-links a:hover::after,
.alien-final-link:hover::after,
.cinematic-cta-primary:hover::after,
.cinematic-cta-links a:hover::after,
.service-big-cta a:hover::after,
.form-actions button:hover::after,
.form-actions a:hover::after {
  transform: translate3d(0.16em, 0.12em, 0);
}

.alien-final-link,
.service-big-cta a {
  min-height: 46px;
  padding: 0 18px 0 22px;
  border-color: rgba(255, 250, 242, 0.22);
  background: rgba(255, 250, 242, 0.02);
  color: rgba(255, 250, 242, 0.8);
}

.alien-final-link:hover,
.service-big-cta a:hover {
  border-color: var(--warm);
  background: var(--warm);
  color: #101114;
}

.cinematic-cta-links .cinematic-cta-primary {
  border-color: var(--warm);
  background: var(--warm);
  color: #101114;
}

.cinematic-cta-links .cinematic-cta-primary:hover {
  border-color: var(--ember);
  background: var(--ember);
  color: #101114;
}

.cinematic-cta-action .cinematic-cta-primary {
  min-height: clamp(60px, 4.6vw, 78px);
  padding: 0 clamp(28px, 3vw, 52px);
  border: 1px solid var(--warm);
  border-radius: 999px;
  background: var(--warm);
  color: #101114;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  font-family: var(--font-display);
  font-size: clamp(1.06rem, 1.34vw, 1.5rem);
  text-transform: none;
}

.cinematic-cta-action .cinematic-cta-primary:hover {
  border-color: var(--ember);
  background: var(--ember);
  color: #101114;
}

.alien-pill-links a,
.inline-link,
.form-actions a {
  min-height: 40px;
  padding: 0 16px 0 18px;
  border-color: rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.34);
}

.alien-pill-links a:hover,
.inline-link:hover,
.form-actions a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.form-actions button {
  min-height: 48px;
  padding: 0 20px 0 24px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.form-actions button:hover {
  border-color: var(--ember);
  background: var(--ember);
  color: #101114;
}

.nav-talk-link {
  padding-right: 14px;
}

@keyframes cinematicCtaMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

html[data-theme="dark"] .alien-statement-support p,
html[data-theme="dark"] .alien-client-strip li,
html[data-theme="dark"] .alien-service-columns li,
html[data-theme="dark"] .alien-process-copy p,
html[data-theme="dark"] .alien-work-grid p,
html[data-theme="dark"] .alien-process-list em {
  color: rgba(244, 240, 232, 0.68);
}

html[data-theme="dark"] .alien-reel,
html[data-theme="dark"] .alien-works {
  background: #101114;
}

html[data-theme="dark"] .alien-word-rails span {
  background: rgba(255, 107, 51, 0.12);
  color: rgba(255, 107, 51, 0.18);
}

html[data-theme="dark"] .alien-service-columns a {
  border-color: rgba(244, 240, 232, 0.46);
  background: rgba(244, 240, 232, 0.1);
  color: #fffaf2;
}

html[data-theme="dark"] .alien-service-columns a:hover {
  border-color: #fffaf2;
  background: #fffaf2;
  color: #101114;
}

html[data-theme="dark"] .cinematic-cta-links .cinematic-cta-primary,
html[data-theme="dark"] .cinematic-cta-action .cinematic-cta-primary {
  border-color: #f4f0e8;
  background: #f4f0e8;
  color: #101114;
  box-shadow:
    0 24px 74px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 250, 242, 0.16);
}

html[data-theme="dark"] .cinematic-cta-links .cinematic-cta-primary:hover,
html[data-theme="dark"] .cinematic-cta-action .cinematic-cta-primary:hover {
  border-color: var(--ember);
  background: var(--ember);
  color: #101114;
}

@media (max-width: 1120px) {
  .home-proof-strip,
  .brand-experience-grid,
  .alien-statement,
  .alien-service-columns,
  .alien-process-about,
  .alien-final-cta,
  .cinematic-cta-inner,
  .cinematic-cta-copy,
  .home-service-map-grid,
  .home-featured-layout,
  .home-about-clarity {
    grid-template-columns: 1fr;
  }

  .home-proof-strip p,
  .home-featured-all {
    margin-top: 18px;
  }

  .brand-experience-grid article {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-experience-grid article:last-child {
    border-bottom: 0;
  }

  .alien-statement {
    min-height: auto;
  }

  .alien-word-rails {
    position: relative;
    inset: auto;
    margin-top: 46px;
  }

  .alien-service-columns article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .alien-service-columns article:last-child {
    border-bottom: 0;
  }

  .alien-client-strip:not(.home-client-scroll) ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .alien-client-strip:not(.home-client-scroll) li:nth-child(6n) {
    border-right: 1px solid var(--line);
  }

  .alien-client-strip:not(.home-client-scroll) li:nth-child(3n) {
    border-right: 0;
  }

  .cinematic-cta-copy h2,
  .cinematic-cta-copy p,
  .cinematic-cta-action,
  .cinematic-cta-links {
    grid-column: auto;
    grid-row: auto;
  }

  .cinematic-cta-copy p {
    margin-top: clamp(32px, 5vh, 60px);
  }
}

@media (max-width: 900px) {
  .home-clarity-intro,
  .brand-experience-head,
  .alien-section-head,
  .alien-section-head.split,
  .alien-final-cta,
  .cinematic-cta-inner,
  .local-seo-grid,
  .home-service-map header,
  .home-featured-work header,
  .home-process-clarity header {
    grid-template-columns: 1fr;
  }

  .home-clarity-intro {
    min-height: auto;
    align-items: start;
  }

  .home-clarity-intro p,
  .brand-experience-head p,
  .home-service-map header p,
  .home-process-clarity header p {
    margin-left: 0;
  }

  .home-action-row {
    justify-content: flex-start;
  }

  .home-featured-list a:not(.home-featured-all) {
    grid-template-columns: 36px 1fr;
  }

  .alien-statement h2 {
    font-size: 5.2rem;
  }

  .home-claim-statement {
    min-height: auto;
    align-items: start;
    gap: 34px;
    padding-top: 84px;
    padding-bottom: 72px;
  }

  .home-claim-statement h2 {
    max-width: 10.5ch;
    font-size: clamp(4.1rem, 13vw, 6.2rem);
  }

  .home-claim-statement .alien-statement-support {
    padding-bottom: 0;
  }

  .home-studio-intro {
    min-height: auto;
    align-items: start;
    gap: 34px;
    padding-top: 84px;
    padding-bottom: 72px;
  }

  .home-studio-intro h2 {
    max-width: 11ch;
    font-size: clamp(3.7rem, 12vw, 5.8rem);
  }

  .home-studio-intro .alien-statement-support {
    padding-bottom: 0;
  }

  .alien-section-head h2,
  .alien-process-copy h2,
  .home-video-process-copy h2,
  .alien-final-cta h2,
  .alien-reel figcaption strong {
    font-size: 4.2rem;
  }

  .home-video-process {
    min-height: 220svh;
  }

  .home-video-process-copy {
    width: min(620px, calc(100% - 48px));
    margin-left: 24px;
  }

  .home-video-process-copy h2 {
    max-width: 8.2em;
    line-height: 0.9;
  }

  .home-video-process-copy p {
    max-width: 440px;
  }

  .home-video-process-meter {
    left: 24px;
    right: auto;
  }

  .home-client-track li {
    --client-card-y: 0px;
    --client-card-z: 0px;
    --client-card-rotate-x: 0deg;
    --client-card-rotate-y: 0deg;
  }

  .home-client-track li:nth-child(4n+1) {
    --client-card-y: -18px;
    --client-card-z: 42px;
    --client-card-rotate-y: -3deg;
  }

  .home-client-track li:nth-child(4n+2) {
    --client-card-y: 16px;
    --client-card-z: 12px;
    --client-card-rotate-y: 3deg;
  }

  .home-client-track li:nth-child(4n+3) {
    --client-card-y: -8px;
    --client-card-z: 58px;
    --client-card-rotate-y: -2deg;
  }

  .home-client-track li:nth-child(4n) {
    --client-card-y: 20px;
    --client-card-z: -18px;
    --client-card-rotate-y: 3deg;
  }

  .alien-work-grid {
    grid-template-columns: 1fr;
  }

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

  .alien-work-grid div {
    grid-template-columns: 1fr;
  }

  .alien-work-grid h3,
  .alien-work-grid p {
    grid-column: auto;
  }

  .cinematic-page-cta {
    min-height: clamp(820px, 100svh, 1040px);
    padding-top: clamp(110px, 13vh, 170px);
    padding-bottom: clamp(260px, 30vh, 360px);
  }

  .cinematic-cta-marquee {
    bottom: clamp(54px, 7vh, 94px);
  }

  .cinematic-cta-copy p {
    margin-left: 0;
  }

  .cinematic-cta-action {
    justify-items: start;
  }

  .cinematic-cta-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .home-clarity-intro,
  .brand-experience,
  .alien-statement,
  .alien-client-strip,
  .alien-reel,
  .alien-services,
  .alien-works,
  .alien-process-about,
  .alien-final-cta,
  .cinematic-page-cta,
  .home-service-map,
  .home-featured-work,
  .home-process-clarity,
  .home-about-clarity {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-clarity-intro h2,
  .brand-experience-head h2,
  .home-service-map h2,
  .home-featured-work h2,
  .home-process-clarity h2,
  .home-about-clarity h2 {
    font-size: clamp(3rem, 14vw, 5.7rem);
  }

  .home-service-map-grid h3 {
    font-size: clamp(2.15rem, 11vw, 4rem);
  }

  .alien-statement h2 {
    font-size: 3.75rem;
  }

  .home-claim-statement {
    padding-top: 68px;
    padding-bottom: 62px;
  }

  .home-claim-statement h2 {
    font-size: clamp(3.35rem, 16vw, 4.9rem);
  }

  .home-claim-statement .alien-statement-support p {
    font-size: 1rem;
  }

  .home-studio-intro {
    padding-top: 68px;
    padding-bottom: 62px;
  }

  .home-studio-intro h2 {
    font-size: clamp(3.1rem, 14vw, 4.6rem);
  }

  .home-studio-intro .alien-statement-support p {
    font-size: 1rem;
  }

  .alien-word-rails span {
    font-size: 3.45rem;
  }

  .alien-client-strip:not(.home-client-scroll) ul {
    grid-template-columns: 1fr 1fr;
  }

  .alien-client-strip:not(.home-client-scroll) li,
  .alien-client-strip:not(.home-client-scroll) li:nth-child(3n),
  .alien-client-strip:not(.home-client-scroll) li:nth-child(6n) {
    min-height: 86px;
    border-right: 1px solid var(--line);
  }

  .alien-client-strip:not(.home-client-scroll) li:nth-child(2n) {
    border-right: 0;
  }

  .alien-reel figure {
    aspect-ratio: 4 / 5;
  }

  .alien-section-head h2,
  .alien-process-copy h2,
  .alien-final-cta h2,
  .alien-reel figcaption strong {
    font-size: 3.1rem;
  }

  .cinematic-cta-track span {
    font-size: clamp(4.4rem, 24vw, 8rem);
  }

  .cinematic-cta-copy h2 {
    font-size: clamp(3.2rem, 16vw, 5.4rem);
  }

  .cinematic-cta-action {
    width: 100%;
  }

  .cinematic-cta-action .cinematic-cta-primary {
    max-width: 100%;
    min-height: 50px;
    padding: 0 20px;
    font-size: clamp(0.98rem, 4.3vw, 1.16rem);
    white-space: nowrap;
  }

  .cinematic-cta-links a {
    min-height: 42px;
    padding: 0 16px;
  }

  .alien-service-columns h3,
  .alien-work-grid h3,
  .alien-process-list strong {
    font-size: 2.35rem;
  }
}

.overview-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.overview-band article {
  min-height: 56svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 4.6vw, 76px);
  border-right: 1px solid var(--line);
}

.overview-band article:last-child {
  border-right: 0;
}

.overview-band span,
.section-kicker span,
.about-head span,
.services-head span,
.next-content span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  color: var(--ember);
}

.overview-band h2 {
  margin: auto 0 34px;
  font-size: clamp(1.65rem, 2.22vw, 2.95rem);
  font-weight: 400;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.overview-band p {
  max-width: 500px;
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.42;
}

.inline-link {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-height: 40px;
  margin-top: 24px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.inline-link:hover {
  color: var(--ember);
}

.inline-link.light {
  color: rgba(255, 255, 255, 0.88);
}

.inline-link.light:hover {
  color: var(--gold);
}

.works-strip {
  padding: var(--section-y-loose) 0 var(--section-y);
  background: var(--white);
}

.section-kicker {
  display: grid;
  grid-template-columns: 30vw 1fr;
  align-items: end;
  gap: 32px;
  padding: 0 var(--section-x-slim) clamp(64px, 7vh, 108px);
}

.section-kicker h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 7.45rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.brush-feature {
  display: block;
  width: min(1180px, 92vw);
  margin: 0 auto;
  color: inherit;
}

.brush-feature figure {
  position: relative;
  min-width: 0;
  margin: 0;
  height: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111111;
}

.brush-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brush-reveal {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: crosshair;
  isolation: isolate;
  transition: transform 500ms ease;
}

.brush-reveal img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.brush-bw {
  filter: grayscale(100%) contrast(1.08) brightness(0.88);
}

.brush-color {
  z-index: 2;
  pointer-events: none;
  filter: saturate(1.14) contrast(1.06);
  opacity: 1;
  -webkit-mask-image: var(--brush-mask, radial-gradient(circle 0px at 50% 50%, #ffffff 0%, transparent 100%));
  mask-image: var(--brush-mask, radial-gradient(circle 0px at 50% 50%, #ffffff 0%, transparent 100%));
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.brush-feature:hover .brush-reveal {
  transform: scale(1.045);
}

.brush-feature figcaption {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 22px;
  color: var(--white);
  font-size: clamp(1.1rem, 1.55vw, 1.55rem);
  line-height: 1.05;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
}

.brush-feature figcaption span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  color: var(--gold);
}

.project-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  width: min(1240px, calc(100% - (var(--section-x-slim) * 2)));
  margin: clamp(72px, 8vh, 118px) auto 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-list li {
  min-height: 108px;
  display: flex;
  align-items: center;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.18;
}

.project-list li:last-child {
  border-right: 0;
}

.project-list a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 78px;
}

.project-list a:hover {
  color: var(--ember);
}

.expertise-block {
  background: #030303;
  color: var(--white);
}

.expertise-block > h2 {
  margin: 0;
  padding: var(--section-y) var(--section-x) clamp(48px, 6vh, 88px);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5.6vw, 6rem);
  font-weight: 400;
  line-height: 0.94;
  color: rgba(255, 255, 255, 0.13);
}

.expertise-slide {
  min-height: 88svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--blueblack);
}

.expertise-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(54px, 7vh, 108px);
  padding: var(--section-y) var(--section-x-slim);
}

.expertise-copy p {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 3.55vw, 3.95rem);
  line-height: 1.12;
}

.expertise-copy span {
  color: var(--ember);
}

.expertise-copy small {
  max-width: 500px;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.42;
}

.expertise-visual {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: var(--night);
}

.expertise-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.66);
}

.expertise-visual img.contained-visual {
  object-fit: contain;
  padding: clamp(28px, 4vw, 72px);
  background:
    radial-gradient(circle at 68% 34%, rgba(255, 90, 28, 0.2), transparent 32%),
    linear-gradient(135deg, #0f1218, #232b3d);
  filter: saturate(0.9) brightness(0.78);
}

.mark {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mark-frame {
  width: 170px;
  height: 112px;
  border: 6px solid var(--white);
}

.mark-frame::after {
  content: "";
  position: absolute;
  left: 32px;
  right: -26px;
  bottom: -22px;
  height: 6px;
  background: var(--ember);
}

.mark-aperture {
  width: 220px;
  height: 220px;
  border-radius: 50%;
}

.mark-aperture i {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 6px;
  height: 34px;
  transform-origin: 50% 107px;
  background: var(--white);
}

.mark-aperture i:nth-child(1) { transform: rotate(210deg); background: var(--ember); }
.mark-aperture i:nth-child(2) { transform: rotate(225deg); }
.mark-aperture i:nth-child(3) { transform: rotate(240deg); }
.mark-aperture i:nth-child(4) { transform: rotate(255deg); }
.mark-aperture i:nth-child(5) { transform: rotate(270deg); }
.mark-aperture i:nth-child(6) { transform: rotate(285deg); }
.mark-aperture i:nth-child(7) { transform: rotate(300deg); }
.mark-aperture i:nth-child(8) { transform: rotate(315deg); }
.mark-aperture i:nth-child(9) { transform: rotate(330deg); }
.mark-aperture i:nth-child(10) { transform: rotate(345deg); }
.mark-aperture i:nth-child(11) { transform: rotate(0deg); }
.mark-aperture i:nth-child(12) { transform: rotate(15deg); }
.mark-aperture i:nth-child(13) { transform: rotate(30deg); }
.mark-aperture i:nth-child(14) { transform: rotate(45deg); }
.mark-aperture i:nth-child(15) { transform: rotate(60deg); }
.mark-aperture i:nth-child(16) { transform: rotate(75deg); }

.mark-bars {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 9px;
}

.mark-bars i {
  width: 7px;
  height: 120px;
  background: var(--white);
}

.mark-bars i:nth-child(4) {
  background: var(--ember);
}

.about-section {
  padding: var(--section-y-loose) var(--section-x);
  background: var(--white);
}

.about-head {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: var(--section-y-compact);
}

.about-head h2,
.services-head h2 {
  margin: 0;
  font-size: clamp(2.45rem, 4.65vw, 5.35rem);
  font-weight: 400;
  line-height: 1;
}

.about-head p,
.services-head p {
  grid-column: 2;
  max-width: 620px;
  margin: 18px 0 0;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.22;
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 92px);
  background: transparent;
  border: 0;
}

.bio-grid p {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.58;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: var(--section-y-compact) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-row span {
  padding: 28px 18px;
  text-align: center;
  color: var(--ember);
  font-size: clamp(1.4rem, 2.7vw, 3rem);
  line-height: 1;
  border-right: 1px solid var(--line);
}

.values-row span:last-child {
  border-right: 0;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 8vw, 132px);
}

.timeline-grid h3 {
  margin: 0 0 28px;
  font-size: clamp(1.7rem, 2.15vw, 2.55rem);
  font-weight: 400;
}

.timeline-grid ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline-grid li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-grid time {
  color: var(--ember);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}

.services-section {
  padding: var(--section-y-loose) var(--section-x) var(--section-y);
  background: var(--paper);
}

.services-head {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) 1fr;
  gap: 32px;
  margin-bottom: var(--section-y-compact);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  border: 0;
}

.service-grid article {
  min-height: 300px;
  padding: clamp(28px, 3.2vw, 52px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.42);
}

.service-grid h3,
.process-row h3 {
  margin: 0 0 24px;
  font-size: clamp(1.45rem, 1.75vw, 2.05rem);
  font-weight: 400;
  line-height: 1;
}

.service-grid p,
.process-row p {
  margin: 0;
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  line-height: 1.48;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
  margin-top: var(--section-y-compact);
  background: transparent;
}

.process-row article {
  min-height: 270px;
  padding: clamp(28px, 3.2vw, 52px);
  background: var(--night);
  color: var(--white);
}

.process-row span {
  display: block;
  margin-bottom: clamp(42px, 6vh, 86px);
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.equipment-line {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
}

.equipment-line p {
  margin: 0;
  padding: 22px;
  background: var(--white);
}

.equipment-line span {
  display: block;
  margin-bottom: 8px;
  color: var(--ember);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}

.next-up {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #050505;
  color: var(--white);
}

.next-up img,
.next-overlay {
  position: absolute;
  inset: 0;
}

.next-up img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.next-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(75, 27, 12, 0.55), rgba(0, 0, 0, 0.45)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 45%);
}

.next-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 92vw);
  text-align: center;
}

.next-content p {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.2vw, 6.5rem);
  line-height: 0.94;
}

.next-content a {
  display: inline-grid;
  place-items: center;
  min-width: 118px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.social-line {
  position: absolute;
  z-index: 2;
  left: 4vw;
  right: 4vw;
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer {
  position: fixed;
  inset: auto 0 0;
  z-index: 1;
  height: 100svh;
  min-height: 0;
  margin-top: 0;
  padding-top: clamp(76px, 7svh, 112px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: auto;
  --footer-bg: #ebe7df;
  --footer-ink: #101114;
  --footer-muted: rgba(16, 17, 20, 0.66);
  --footer-soft: rgba(16, 17, 20, 0.48);
  --footer-line: rgba(16, 17, 20, 0.16);
  background: var(--footer-bg);
  color: var(--footer-ink);
  border-top: 0;
  pointer-events: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(16, 17, 20, 0.28) transparent;
}

.site-footer a,
.site-footer button {
  pointer-events: auto;
}

body.js-ready .site-footer .footer-top,
body.js-ready .site-footer .footer-locations article,
body.js-ready .site-footer .footer-links nav,
body.js-ready .site-footer .footer-bottom {
  opacity: var(--footer-content-opacity);
  transform: translate3d(0, var(--footer-content-y), 0);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

body.footer-is-visible .site-footer {
  border-top-color: rgba(16, 17, 20, 0.08);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: clamp(26px, 3.2vw, 46px) var(--section-x-slim) clamp(22px, 2.7vw, 38px);
  border-bottom: 1px solid var(--footer-line);
}

.footer-mark {
  position: relative;
  display: inline-grid;
  align-items: center;
  justify-items: start;
  width: clamp(44px, 4.2vw, 68px);
  color: var(--footer-ink);
  line-height: 1;
  transition:
    color 240ms ease,
    opacity 240ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-mark:hover {
  color: var(--ember);
  opacity: 0.9;
  transform: translateY(-2px);
}

.footer-brand-glyph {
  width: 100%;
  color: currentColor;
}

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

.footer-top-link,
.footer-locations a {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58em;
  min-height: 42px;
  padding: 0 18px 0 20px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 20, 0.34);
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.1);
  color: rgba(16, 17, 20, 0.82);
  box-shadow: 0 12px 24px rgba(16, 17, 20, 0.06);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.footer-top-link {
  width: clamp(46px, 4vw, 62px);
  min-height: clamp(46px, 4vw, 62px);
  padding: 0;
  border-color: rgba(16, 17, 20, 0.2);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  font-size: 0;
}

.footer-top-link::before {
  content: "↑";
  display: inline-block;
  font-family: var(--font-text);
  font-size: clamp(1.2rem, 1.55vw, 1.65rem);
  line-height: 1;
  transform: translate3d(0, 0.04em, 0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-top-link::after,
.footer-locations a::after {
  content: "↘";
  display: inline-block;
  font-family: var(--font-text);
  font-size: 1.02em;
  line-height: 0.72;
  transform: translate3d(0, -0.02em, 0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-top-link::after {
  content: none;
}

.footer-locations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--footer-line);
}

.footer-locations article {
  min-height: 292px;
  padding: clamp(38px, 4vw, 64px) var(--section-x-slim) clamp(36px, 4vw, 58px);
  border-right: 1px solid var(--footer-line);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-locations article:last-child {
  border-right: 0;
}

.footer-locations article > span,
.footer-links h3 {
  color: var(--ember);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-locations h2 {
  margin: 0;
  color: var(--footer-ink);
  font-size: clamp(1.8rem, 2.8vw, 3.3rem);
  font-weight: 400;
  line-height: 0.98;
}

.footer-locations p,
.footer-locations address {
  margin: 0;
  max-width: 500px;
  color: var(--footer-muted);
  font-style: normal;
  font-size: 16px;
  line-height: 1.55;
}

.footer-locations address span {
  display: block;
}

.footer-locations a {
  align-self: flex-start;
  margin-top: auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--footer-line);
}

.footer-links nav {
  min-height: 310px;
  padding: 38px var(--section-x-slim) 42px;
  background: var(--footer-bg);
}

.footer-links h3 {
  margin: 0 0 28px;
}

.footer-links a {
  display: block;
  padding: 9px 0;
  color: var(--footer-muted);
  font-size: 15px;
  line-height: 1.34;
}

.footer-top-link:hover,
.footer-locations a:hover {
  border-color: #101114;
  background: #101114;
  color: #fffaf2;
  box-shadow: 0 14px 30px rgba(16, 17, 20, 0.16);
  transform: translateY(-1px);
}

.footer-top-link:hover::before {
  transform: translate3d(0, -0.12em, 0);
}

.footer-top-link:hover::after,
.footer-locations a:hover::after {
  transform: translate3d(0.16em, 0.12em, 0);
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--footer-ink);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 30px var(--section-x-slim);
  color: var(--footer-soft);
  font-size: 13px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

.footer-bottom span:last-child {
  text-align: right;
}

.page-hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background-color: #080908;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.44) 42%, rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.44) 42%, rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42vh;
  background: linear-gradient(0deg, var(--paper), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - (var(--section-x-slim) * 2)));
  padding: 24vh 0 11vh;
  margin: 0 var(--section-x-slim);
}

.page-hero-copy > span,
.directory-card > span,
.proof-card > span,
.copy-band span,
.work-card span,
.text-grid span,
.service-card > span,
.service-hub > a > span,
.capability-wall span,
.split-copy span,
.contact-card span,
.briefing-panel span,
.seo-link-band span,
.awards-band span {
  color: var(--ember);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.page-hero-copy h1 {
  max-width: 1040px;
  margin: 14px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.75vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
}

.page-hero-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 1.6vw, 1.55rem);
  line-height: 1.45;
}

.local-seo-section {
  padding: clamp(88px, 12vw, 156px) var(--section-x-slim);
  background: var(--paper);
}

.local-seo-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 110px);
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: clamp(34px, 5vw, 70px);
}

.local-seo-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.local-seo-kicker::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ember);
}

.local-seo-copy h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 7rem);
  font-weight: 400;
  line-height: 0.94;
}

.local-seo-copy p {
  max-width: 760px;
  margin: clamp(24px, 3.4vw, 46px) 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1.04rem, 1.35vw, 1.32rem);
  line-height: 1.55;
}

.local-seo-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(48px, 7vw, 92px);
  background: var(--line);
  border: 1px solid var(--line);
}

.local-seo-list article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 44px);
  background: var(--paper);
}

.local-seo-list span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.local-seo-list h3 {
  margin: 42px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 400;
  line-height: 0.96;
}

.local-seo-list p {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  line-height: 1.55;
}

.local-seo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(42px, 6vw, 78px);
}

.local-seo-cta a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: inherit;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.local-seo-cta a:first-child {
  border-color: var(--ember);
  background: var(--ember);
  color: #111;
}

.local-seo-page .site-footer {
  position: relative;
  inset: auto;
  z-index: 0;
  height: auto;
  min-height: auto;
  padding-top: 0;
}

.local-seo-page .site-footer .footer-bottom {
  min-height: 120px;
}

.home-directory {
  padding: 12vh 4vw 10vh;
  background: var(--paper);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
}

.directory-card {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  overflow: hidden;
  background: var(--warm);
  transition:
    transform 320ms ease,
    background 320ms ease;
}

.directory-card:hover {
  transform: translateY(-4px);
  background: var(--white);
}

.directory-card.feature-card {
  grid-column: span 2;
}

.directory-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--night);
}

.directory-card.feature-card img {
  aspect-ratio: 16 / 9;
}

.directory-card h3 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 4rem);
  font-weight: 400;
  line-height: 0.92;
}

.directory-card:not(.feature-card) h3 {
  font-size: clamp(1.8rem, 2vw, 2.75rem);
}

.directory-card p {
  margin: 0 0 12px;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.45;
}

.directory-card strong {
  margin-top: auto;
  color: var(--ink);
  font-weight: 400;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-card {
  min-height: 270px;
  padding: 34px 4vw;
  background: var(--warm);
}

.proof-card strong {
  display: block;
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 4rem);
  font-weight: 400;
  line-height: 0.9;
}

.proof-card p {
  margin: 18px 0 0;
  color: rgba(17, 17, 17, 0.62);
  line-height: 1.45;
}

.next-up {
  min-height: 62vh;
  display: grid;
  align-items: center;
  padding: 10vh 4vw;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.22)),
    url("assets/andreas-virtual-production.jpg") center / cover;
}

.next-up p {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 6.25rem);
  line-height: 0.94;
}

.next-up a,
.seo-link-band a,
.contact-card a,
.briefing-panel a {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  width: fit-content;
  margin-top: 28px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
}

.copy-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(54px, 8vw, 150px);
  align-items: start;
  padding: var(--section-y-loose) var(--section-x-slim);
  background: var(--paper);
}

.copy-band h2 {
  margin: 12px 0 0;
  max-width: 900px;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 3.9vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.copy-band p {
  margin: 0 0 22px;
  color: rgba(17, 17, 17, 0.7);
  font-size: clamp(1.02rem, 1.35vw, 1.35rem);
  line-height: 1.62;
}

.about-image-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 42px);
  align-items: end;
  padding: 0 var(--section-x-slim) var(--section-y-compact);
  background: var(--paper);
}

.about-image-strip figure {
  min-height: clamp(260px, 32vw, 620px);
  margin: 0;
  overflow: hidden;
  background: var(--line);
}

.about-image-strip figure:nth-child(2) {
  min-height: clamp(220px, 26vw, 520px);
  transform: translateY(clamp(20px, 3vw, 54px));
}

.about-image-strip figure:nth-child(3) {
  min-height: clamp(240px, 29vw, 560px);
}

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

body[data-page="about"] .page-shell {
  --about-grid: repeating-linear-gradient(90deg, rgba(18, 18, 18, 0.075) 0 1px, transparent 1px calc(100% / 10));
  --about-grid-dark: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.075) 0 1px, transparent 1px calc(100% / 10));
}

.about-overview {
  display: grid;
  grid-template-columns: minmax(170px, 0.22fr) minmax(0, 1fr) minmax(240px, 0.34fr);
  gap: clamp(34px, 5vw, 88px);
  align-items: start;
  padding: clamp(92px, 13vh, 160px) var(--section-x-slim) clamp(76px, 11vh, 132px);
  background: var(--white);
  background-image: var(--about-grid);
  border-bottom: 1px solid var(--line);
}

.about-dossier-main > span,
.about-status-split > div > span,
.about-ledger header span,
.about-education-grid span,
.about-brand-ledger header span,
.about-brand-ledger article span,
.about-skill-split > div:first-child > span,
.about-values-eyebrow span,
.about-awards-ledger header span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-availability {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
  padding-top: 8px;
  color: rgba(17, 17, 17, 0.72);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-availability i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #52c55a;
  box-shadow: 0 0 0 6px rgba(82, 197, 90, 0.14);
}

.about-overview h2 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(2.35rem, 3.6vw, 5.1rem);
  line-height: 0.98;
}

.about-dossier-main p {
  max-width: 780px;
  margin: clamp(30px, 4.5vh, 58px) 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1.04rem, 1.34vw, 1.32rem);
  line-height: 1.58;
}

.about-dossier-facts {
  padding-top: clamp(72px, 9vh, 130px);
}

.about-dossier-facts p {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(0.98rem, 1.12vw, 1.14rem);
  line-height: 1.6;
}

.about-dossier-facts dl {
  display: grid;
  margin: clamp(34px, 5vh, 60px) 0 0;
  border-top: 1px solid var(--line);
}

.about-dossier-facts dl div {
  display: grid;
  grid-template-columns: minmax(64px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.about-dossier-facts dt {
  color: var(--ember);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 3.7rem);
  line-height: 0.86;
}

.about-dossier-facts dd {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.98rem;
  line-height: 1.35;
}

.about-status-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 86vh;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-status-split figure {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--line);
}

.about-status-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-status-split > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--section-y) var(--section-x-slim);
}

.about-status-split h2,
.about-ledger h2,
.about-brand-ledger h2,
.about-skill-split h2,
.about-benefits h2,
.about-awards-ledger h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 2.85vw, 4rem);
  line-height: 1.02;
}

.about-status-split dl {
  display: grid;
  margin: clamp(44px, 6vh, 86px) 0 0;
  border-top: 1px solid var(--line);
}

.about-status-split dl div {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 52px);
  padding: clamp(22px, 3vw, 42px) 0;
  border-bottom: 1px solid var(--line);
}

.about-status-split dt {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.about-status-split dd {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.55;
}

.about-ledger,
.about-brand-ledger,
.about-awards-ledger {
  padding: var(--section-y-loose) var(--section-x-slim);
  background: var(--white);
  background-image: var(--about-grid);
  border-bottom: 1px solid var(--line);
}

.about-experience-ledger,
.about-awards-showcase {
  overflow: hidden;
}

.about-giant-word {
  margin: -0.08em 0 clamp(44px, 7vh, 100px);
  color: rgba(17, 17, 17, 0.07);
  font-family: var(--font-display);
  font-size: clamp(5.8rem, 18vw, 22rem);
  line-height: 0.75;
  white-space: nowrap;
}

.about-giant-word-light {
  color: rgba(255, 255, 255, 0.1);
}

.about-ledger header,
.about-brand-ledger header,
.about-awards-ledger header {
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 118px);
  align-items: start;
  margin-bottom: clamp(44px, 6vh, 96px);
}

.about-experience-ledger header,
.about-awards-showcase header {
  grid-template-columns: minmax(150px, 0.18fr) minmax(0, 0.82fr) minmax(180px, 0.24fr);
}

.about-ledger-count,
.about-award-count {
  display: grid;
  gap: 14px;
  justify-items: start;
  align-self: end;
}

.about-ledger-count strong,
.about-award-count strong {
  color: var(--ember);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.4vw, 6.8rem);
  line-height: 0.78;
  font-weight: 400;
}

.about-ledger-count span,
.about-award-count span {
  max-width: 220px;
  color: rgba(17, 17, 17, 0.58);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-ledger-list,
.about-brand-ledger > div,
.about-awards-ledger > div {
  border-top: 1px solid var(--line);
}

.about-ledger-list article,
.about-brand-ledger article,
.about-awards-ledger article {
  display: grid;
  grid-template-columns: minmax(130px, 0.2fr) minmax(280px, 0.5fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 4vw, 80px);
  align-items: start;
  padding: clamp(24px, 3.4vw, 48px) 0;
  border-bottom: 1px solid var(--line);
}

.about-ledger-list time,
.about-awards-ledger time {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.about-ledger-list h3 {
  margin: 0;
  font-size: clamp(1.3rem, 1.85vw, 2.35rem);
  line-height: 1.05;
}

.about-ledger-list p,
.about-brand-ledger p,
.about-awards-ledger p,
.about-education-grid p,
.about-skill-split p,
.about-benefit-list p {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(0.98rem, 1.16vw, 1.16rem);
  line-height: 1.55;
}

.about-education-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(36px, 5vh, 74px);
  background: var(--line);
  border: 1px solid var(--line);
}

.about-education-grid article {
  min-height: 230px;
  padding: clamp(28px, 4vw, 58px);
  background: var(--warm);
}

.about-education-grid p {
  margin-top: 20px;
}

.about-brand-ledger article {
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr);
}

.about-brand-ledger article p {
  max-width: 1180px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.35vw, 3.25rem);
  line-height: 1.06;
}

.about-brand-ledger a {
  color: inherit;
}

.about-brand-ledger a:hover {
  color: var(--ember);
}

.about-skill-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 6vw, 118px);
  padding: var(--section-y-loose) var(--section-x-slim);
  background:
    var(--about-grid),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8)),
    url("assets/andreas-services-red-camera.jpg") center / cover;
  background-blend-mode: multiply, normal, normal;
  border-bottom: 1px solid var(--line);
}

.about-skill-split > div:first-child {
  align-self: end;
}

.about-skill-split p {
  max-width: 680px;
  margin-top: clamp(28px, 4vh, 52px);
}

.about-specialty-list {
  display: grid;
  gap: 0;
  max-width: 780px;
  margin: clamp(34px, 5vh, 70px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.about-specialty-list li {
  padding: clamp(12px, 2vw, 24px) 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 4rem);
  line-height: 0.98;
}

.about-skill-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 70px);
}

.about-skill-columns article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.about-skill-columns h3 {
  margin: 0 0 clamp(26px, 3vw, 42px);
  font-size: clamp(1.35rem, 2vw, 2.65rem);
  line-height: 1;
}

.about-skill-columns ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.about-skill-columns li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(17, 17, 17, 0.72);
}

.about-benefits {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 14vh, 190px) var(--section-x-slim);
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-values-eyebrow {
  display: grid;
  grid-template-columns: minmax(150px, 0.2fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 96px);
  align-items: center;
  margin-bottom: clamp(38px, 5vh, 70px);
}

.about-values-eyebrow p {
  margin: 0;
  color: rgba(17, 17, 17, 0.54);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-values-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.34fr);
  gap: clamp(44px, 7vw, 132px);
  align-items: end;
  margin-bottom: clamp(52px, 7vh, 100px);
}

.about-values-lead h2 {
  max-width: 940px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 2.85vw, 4rem);
  line-height: 1.02;
}

.about-values-lead p {
  max-width: 470px;
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(1rem, 1.12vw, 1.14rem);
  line-height: 1.62;
}

.about-benefit-list {
  display: grid;
  margin-top: clamp(34px, 5vh, 68px);
}

.about-benefit-list article {
  display: grid;
  grid-template-columns: minmax(70px, 0.12fr) minmax(220px, 0.34fr) minmax(0, 0.54fr);
  gap: clamp(24px, 4vw, 82px);
  align-items: baseline;
  padding: clamp(24px, 3.4vw, 46px) 0;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.about-benefit-list article:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.about-benefit-list span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
}

.about-benefit-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.25vw, 3rem);
  line-height: 1.02;
}

.about-benefit-list p {
  max-width: 610px;
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.58;
}

.about-values-statement {
  max-width: 820px;
  margin: clamp(70px, 9vh, 124px) 0 0 auto;
}

.about-values-statement span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-values-statement p {
  max-width: 760px;
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.55vw, 3.25rem);
  line-height: 1.04;
}

.about-awards-ledger {
  color: var(--white);
  background: #090a0d;
  background-image: var(--about-grid-dark);
}

.about-awards-ledger h2 {
  color: var(--white);
}

.about-awards-ledger > div {
  border-color: rgba(255, 255, 255, 0.18);
}

.about-awards-ledger article {
  grid-template-columns: minmax(110px, 0.16fr) minmax(220px, 0.32fr) minmax(0, 1fr);
  align-items: start;
  border-color: rgba(255, 255, 255, 0.18);
}

.about-awards-ledger h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 1.95vw, 2.55rem);
  line-height: 1;
}

.about-awards-ledger p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.18vw, 1.2rem);
  line-height: 1.55;
}

.about-award-count span {
  color: rgba(255, 255, 255, 0.58);
}

.about-editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.52fr);
  gap: clamp(34px, 5.6vw, 108px);
  min-height: 100svh;
  padding: clamp(116px, 16vh, 190px) var(--section-x-slim) clamp(74px, 10vh, 136px);
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-editorial-kicker {
  grid-column: 1 / -1;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  color: rgba(17, 17, 17, 0.62);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-editorial-kicker span,
.about-manuscript aside span,
.about-story-panel span,
.about-profile-index header span,
.about-brand-radar header span,
.about-brand-rows span,
.about-brand-matrix > article > span,
.about-capability-chapter > div:first-child > span,
.about-awards-edit header span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-editorial-kicker p {
  margin: 0;
}

.about-name-stack {
  align-self: end;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(5.4rem, 15vw, 18rem);
  line-height: 0.72;
  text-transform: uppercase;
}

.about-name-stack span {
  display: block;
}

.about-editorial-copy {
  grid-column: 1;
  max-width: 840px;
  align-self: end;
}

.about-editorial-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 4.5vw, 6.3rem);
  line-height: 0.94;
}

.about-editorial-copy p {
  max-width: 620px;
  margin: clamp(28px, 4vh, 52px) 0 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(1.05rem, 1.32vw, 1.34rem);
  line-height: 1.58;
}

.about-editorial-hero figure {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: end;
  position: relative;
  height: clamp(430px, 63vh, 780px);
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.about-editorial-hero figure.about-editorial-video {
  background: #070908;
}

.about-editorial-hero img,
.about-editorial-hero video,
.about-visual-diary img,
.about-story-panel img,
.about-cinematic-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-editorial-hero video {
  display: block;
}

.about-editorial-hero img,
.about-editorial-hero video {
  object-position: center 36%;
}

.about-hero-scrub {
  position: relative;
  display: block;
  min-height: 210svh;
  padding: 0;
  overflow: visible;
  color: #f7f4ee;
  background: #050606;
  border-bottom: 0;
}

.about-hero-scrub-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: clamp(16px, 2.2vh, 30px);
  padding: clamp(112px, 15vh, 174px) var(--section-x-slim) clamp(74px, 10vh, 118px);
  overflow: hidden;
  isolation: isolate;
  transform: none;
}

.about-hero-scrub .about-editorial-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  margin: 0;
  background: #050606;
}

.about-hero-scrub .about-editorial-video video {
  object-position: center 42%;
  opacity: 0.9;
}

.about-hero-scrub-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.78) 0%, rgba(5, 6, 6, 0.45) 38%, rgba(5, 6, 6, 0.14) 68%, rgba(5, 6, 6, 0.48) 100%),
    linear-gradient(180deg, rgba(5, 6, 6, 0.62) 0%, rgba(5, 6, 6, 0.12) 34%, rgba(5, 6, 6, 0.18) 58%, rgba(5, 6, 6, 0.88) 100%);
}

.about-hero-scrub .about-editorial-kicker,
.about-hero-scrub .about-name-stack,
.about-hero-scrub .about-editorial-copy {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  max-width: min(1180px, 100%);
}

.about-hero-scrub .about-editorial-kicker {
  position: absolute;
  top: clamp(112px, 14vh, 160px);
  left: var(--section-x-slim);
  right: var(--section-x-slim);
  width: auto;
  max-width: none;
  justify-content: flex-start;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(247, 244, 238, 0.76);
}

.about-hero-scrub .about-name-stack {
  color: #f7f4ee;
  width: min(1120px, 100%);
  font-size: clamp(4.8rem, 12.6vw, 14.8rem);
  line-height: 0.78;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
}

.about-hero-scrub .about-editorial-copy {
  width: min(780px, 100%);
  max-width: min(780px, 100%);
}

.about-hero-scrub .about-editorial-copy h1 {
  max-width: 760px;
  font-size: clamp(2.05rem, 3.7vw, 5.15rem);
  line-height: 0.96;
  color: #f8f3eb;
  text-shadow: 0 12px 50px rgba(0, 0, 0, 0.28);
}

.about-hero-scrub .about-editorial-copy p {
  max-width: 610px;
  margin-top: clamp(18px, 2.7vh, 34px);
  color: rgba(247, 244, 238, 0.75);
}

.about-hero-scrub-meter {
  position: absolute;
  right: clamp(24px, 4.5vw, 72px);
  bottom: clamp(28px, 5vh, 72px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(247, 244, 238, 0.68);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-hero-scrub-meter i {
  position: relative;
  display: block;
  width: clamp(92px, 11vw, 170px);
  height: 1px;
  overflow: hidden;
  background: rgba(247, 244, 238, 0.24);
}

.about-hero-scrub-meter i::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f7f4ee;
  transform: scaleX(var(--about-hero-progress, 0));
  transform-origin: left center;
}

.about-manuscript {
  display: grid;
  grid-template-columns: minmax(170px, 0.24fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 140px);
  padding: var(--section-y-loose) var(--section-x-slim);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-manuscript aside {
  position: sticky;
  top: 118px;
  align-self: start;
}

.about-manuscript aside p {
  max-width: 180px;
  margin: 18px 0 0;
  color: rgba(17, 17, 17, 0.54);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-manuscript h2 {
  max-width: 1120px;
  margin: 0 0 clamp(44px, 7vh, 96px);
  font-size: clamp(2.7rem, 6.5vw, 9.4rem);
  line-height: 0.9;
}

.about-manuscript p {
  max-width: 860px;
  margin: 0 0 24px auto;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1.03rem, 1.26vw, 1.28rem);
  line-height: 1.65;
}

.about-manuscript .about-lead {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2.35rem);
  line-height: 1.24;
}

.about-visual-diary {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr 0.92fr 1fr;
  gap: clamp(14px, 2vw, 34px);
  align-items: end;
  padding: 0 var(--section-x-slim) var(--section-y);
  background: var(--white);
}

.about-visual-diary figure {
  position: relative;
  height: clamp(260px, 31vw, 610px);
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.about-visual-diary figure:nth-child(2) {
  height: clamp(220px, 24vw, 470px);
  transform: translateY(clamp(24px, 4vw, 74px));
}

.about-visual-diary figure:nth-child(3) {
  height: clamp(300px, 35vw, 680px);
}

.about-visual-diary figure:nth-child(1) img {
  object-position: center 42%;
}

.about-visual-diary figure:nth-child(2) img {
  object-position: center center;
}

.about-visual-diary figure:nth-child(3) img {
  object-position: center 58%;
}

.about-visual-diary figure:nth-child(4) img {
  object-position: center 44%;
}

.about-story-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  min-height: 88vh;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-story-panel figure {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.about-story-panel img {
  object-position: center 44%;
}

.about-story-panel > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-y-loose) var(--section-x-slim);
}

.about-story-panel h2,
.about-profile-index h2,
.about-exhibitions h2,
.about-brand-radar h2,
.about-capability-chapter h2,
.about-awards-edit h2 {
  margin: 14px 0 0;
  font-size: clamp(2.1rem, 3.35vw, 4.9rem);
  line-height: 0.98;
}

.about-story-panel p {
  max-width: 760px;
  margin: clamp(30px, 4vh, 50px) 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1.03rem, 1.22vw, 1.22rem);
  line-height: 1.65;
}

.about-profile-index,
.about-exhibitions,
.about-brand-radar,
.about-capability-chapter,
.about-awards-edit {
  padding: var(--section-y-loose) var(--section-x-slim);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-profile-index header,
.about-exhibitions header,
.about-brand-radar header,
.about-awards-edit header {
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 116px);
  align-items: start;
  margin-bottom: clamp(48px, 7vh, 104px);
}

.about-index-list,
.about-exhibition-list,
.about-brand-rows,
.about-awards-list {
  border-top: 1px solid var(--line);
}

.about-index-list article,
.about-exhibition-list article,
.about-brand-rows article,
.about-awards-list article {
  display: grid;
  grid-template-columns: minmax(130px, 0.18fr) minmax(240px, 0.38fr) minmax(0, 0.72fr);
  gap: clamp(22px, 4vw, 78px);
  padding: clamp(24px, 3.2vw, 46px) 0;
  border-bottom: 1px solid var(--line);
}

.about-index-list time,
.about-exhibition-list time,
.about-awards-list time {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.about-index-list h3,
.about-exhibition-list h3,
.about-awards-list h3 {
  margin: 0;
  font-size: clamp(1.28rem, 1.75vw, 2.24rem);
  line-height: 1.05;
}

.about-index-list p,
.about-exhibition-list p,
.about-brand-rows p,
.about-capability-chapter p,
.about-capability-lists li,
.about-awards-edit p,
.about-awards-list p {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(0.98rem, 1.14vw, 1.15rem);
  line-height: 1.58;
}

.about-brand-rows article {
  grid-template-columns: minmax(160px, 0.22fr) minmax(0, 1fr);
}

.about-brand-rows p {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.55vw, 3.5rem);
  line-height: 1.04;
}

.about-brand-rows a {
  color: inherit;
}

.about-brand-rows a:hover {
  color: var(--ember);
}

.about-brand-note {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(0.98rem, 1.12vw, 1.12rem);
  line-height: 1.58;
}

.about-cinematic-break {
  padding: 0 var(--section-x-slim) var(--section-y-loose);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-cinematic-break figure {
  position: relative;
  min-height: clamp(500px, 76vh, 920px);
  margin: 0;
  overflow: hidden;
  background: #171717;
}

.about-cinematic-break figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.about-cinematic-break img {
  object-position: center 55%;
}

.about-cinematic-break figcaption {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 58px);
  left: clamp(24px, 4vw, 58px);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.about-cinematic-break figcaption span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-cinematic-break figcaption strong {
  max-width: 520px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 4.1rem);
  font-weight: 400;
  line-height: 0.96;
  text-align: right;
}

.about-brand-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
}

.about-brand-matrix article {
  display: flex;
  min-height: clamp(210px, 18vw, 320px);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3.2vw, 48px);
  background: rgba(17, 17, 17, 0.035);
}

.about-brand-matrix article:nth-child(2n) {
  background: rgba(17, 17, 17, 0.052);
}

.about-brand-matrix p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 0.36em;
  margin: clamp(38px, 5.8vw, 86px) 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.16rem, 1.42vw, 2.12rem);
  line-height: 1.08;
}

.about-brand-matrix .brand-token {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  color: inherit;
  white-space: nowrap;
}

.about-brand-matrix .brand-token:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 1px;
  margin-left: 0.48em;
  background: rgba(17, 17, 17, 0.34);
  transform: rotate(-62deg) translateY(-0.08em);
  transform-origin: center;
}

.about-brand-matrix a.brand-token {
  color: inherit;
}

.about-brand-matrix a.brand-token:hover {
  color: var(--ember);
}

.works-brand-radar {
  padding-top: clamp(82px, 10vw, 150px);
  padding-bottom: clamp(88px, 11vw, 160px);
}

.works-brand-radar header {
  margin-bottom: clamp(38px, 5vw, 78px);
}

.works-brand-radar .about-brand-matrix article {
  min-height: clamp(170px, 15vw, 260px);
}

.works-brand-radar .about-brand-matrix p {
  margin-top: clamp(28px, 4vw, 62px);
  font-size: clamp(1.04rem, 1.22vw, 1.86rem);
}

.about-capability-chapter {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(44px, 6vw, 116px);
}

.about-capability-chapter > div:first-child {
  position: sticky;
  top: 116px;
  align-self: start;
}

.about-capability-chapter > div:first-child p {
  max-width: 620px;
  margin-top: clamp(30px, 4vh, 52px);
}

.about-capability-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 70px);
}

.about-capability-lists article {
  border-top: 1px solid var(--line);
}

.about-capability-lists h3 {
  margin: clamp(24px, 3vw, 40px) 0;
  font-size: clamp(1.35rem, 1.8vw, 2.3rem);
  line-height: 1;
}

.about-capability-lists ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.about-capability-lists li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.about-social-radar {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(44px, 7vw, 128px);
  padding: clamp(76px, 11vh, 148px) var(--section-x-slim);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.about-social-copy {
  position: sticky;
  top: 116px;
  align-self: start;
}

.about-social-copy > span,
.about-social-links span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-social-copy h2 {
  max-width: 860px;
  margin: clamp(26px, 4vw, 54px) 0 0;
  font-size: clamp(3rem, 7.4vw, 8.9rem);
  line-height: 0.9;
}

.about-social-copy p {
  max-width: 560px;
  margin: clamp(26px, 4vw, 54px) 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 1.18vw, 1.28rem);
  line-height: 1.55;
}

.about-social-links {
  display: grid;
  align-self: start;
  border-top: 1px solid var(--line);
}

.about-social-links a {
  display: grid;
  grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1fr) auto;
  align-items: baseline;
  gap: clamp(18px, 3vw, 52px);
  padding: clamp(20px, 2.4vw, 34px) 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.about-social-links a:hover {
  color: var(--ember);
}

.about-social-links strong {
  font-family: var(--font-wordmark);
  font-size: clamp(1.18rem, 1.5vw, 2.1rem);
  font-weight: 600;
  line-height: 1.08;
}

.about-social-links em {
  color: rgba(17, 17, 17, 0.48);
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.about-social-links a:hover em {
  color: currentColor;
}

.about-principles {
  padding: clamp(72px, 9vh, 118px) var(--section-x-slim) clamp(84px, 11vh, 148px);
  color: #f7f4ee;
  background: #1c1c1d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-principles-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(22px, 4vw, 72px);
  align-items: start;
  padding-top: clamp(28px, 5vh, 62px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-principles h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 7.8vw, 10.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.86;
}

.about-principles-head span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}

.about-principles-head strong {
  justify-self: end;
  color: rgba(247, 244, 238, 0.54);
  font-family: var(--font-mono);
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}

.about-principles-list {
  margin-top: clamp(88px, 13vh, 190px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-principles details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.about-principles summary {
  display: grid;
  grid-template-columns: minmax(54px, 0.16fr) minmax(0, 1fr) 46px;
  gap: clamp(20px, 4vw, 88px);
  align-items: center;
  min-height: clamp(78px, 8.8vh, 112px);
  list-style: none;
  color: rgba(247, 244, 238, 0.92);
  outline: 0;
  cursor: pointer;
}

.about-principles summary::-webkit-details-marker {
  display: none;
}

.about-principles summary:focus-visible {
  outline: 1px solid rgba(247, 244, 238, 0.42);
  outline-offset: -8px;
}

.about-principles summary span {
  color: rgba(247, 244, 238, 0.52);
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 1vw, 1.06rem);
  letter-spacing: 0.08em;
}

.about-principles summary strong {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 4.1rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: none;
}

.about-principles summary i {
  position: relative;
  width: 34px;
  height: 34px;
  justify-self: end;
}

.about-principles summary i::before,
.about-principles summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 280ms cubic-bezier(0.19, 1, 0.22, 1);
}

.about-principles summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.about-principles details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.about-principles details[open] summary strong,
.about-principles summary:hover strong {
  color: #ffffff;
}

.about-principles details p {
  max-width: 720px;
  margin: -8px 46px clamp(28px, 4vh, 50px) calc(16% + clamp(20px, 4vw, 88px));
  color: rgba(247, 244, 238, 0.68);
  font-family: var(--font-text);
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.66;
}

.about-awards-edit {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #090a0d;
}

.about-awards-word {
  margin: -0.08em 0 clamp(42px, 7vh, 96px);
  color: rgba(255, 255, 255, 0.11);
  font-family: var(--font-display);
  font-size: clamp(6rem, 19vw, 23rem);
  line-height: 0.72;
  white-space: nowrap;
}

.about-awards-edit header {
  grid-template-columns: minmax(150px, 0.2fr) minmax(0, 0.82fr) minmax(260px, 0.32fr);
}

.about-awards-edit h2,
.about-awards-list h3 {
  color: var(--white);
}

.about-awards-edit header p {
  align-self: end;
  color: rgba(255, 255, 255, 0.68);
}

.about-awards-list {
  border-color: rgba(255, 255, 255, 0.18);
}

.about-awards-list article {
  border-color: rgba(255, 255, 255, 0.18);
}

.about-awards-list p {
  color: rgba(255, 255, 255, 0.7);
}

html[data-theme="dark"] .about-editorial-hero,
html[data-theme="dark"] .about-manuscript,
html[data-theme="dark"] .about-visual-diary,
html[data-theme="dark"] .about-story-panel,
html[data-theme="dark"] .about-profile-index,
html[data-theme="dark"] .about-exhibitions,
html[data-theme="dark"] .about-cinematic-break,
html[data-theme="dark"] .about-brand-radar,
html[data-theme="dark"] .about-capability-chapter,
html[data-theme="dark"] .about-social-radar {
  color: var(--cream);
  background: #101114;
}

html[data-theme="dark"] .about-editorial-copy p,
html[data-theme="dark"] .about-editorial-kicker,
html[data-theme="dark"] .about-manuscript aside p,
html[data-theme="dark"] .about-manuscript p,
html[data-theme="dark"] .about-story-panel p,
html[data-theme="dark"] .about-index-list p,
html[data-theme="dark"] .about-exhibition-list p,
html[data-theme="dark"] .about-brand-note,
html[data-theme="dark"] .about-capability-chapter p,
html[data-theme="dark"] .about-social-copy p,
html[data-theme="dark"] .about-capability-lists li {
  color: rgba(244, 240, 232, 0.68);
}

html[data-theme="dark"] .about-name-stack,
html[data-theme="dark"] .about-brand-rows p,
html[data-theme="dark"] .about-brand-matrix p {
  color: var(--cream);
}

html[data-theme="dark"] .about-brand-matrix article {
  background: rgba(244, 240, 232, 0.07);
}

html[data-theme="dark"] .about-brand-matrix article:nth-child(2n) {
  background: rgba(244, 240, 232, 0.1);
}

html[data-theme="dark"] .about-brand-matrix .brand-token:not(:last-child)::after {
  background: rgba(244, 240, 232, 0.34);
}

html[data-theme="dark"] .about-social-links em {
  color: rgba(244, 240, 232, 0.5);
}

@media (max-width: 900px) {
  .about-editorial-hero,
  .about-manuscript,
  .about-story-panel,
  .about-profile-index header,
  .about-exhibitions header,
  .about-brand-radar header,
  .about-capability-chapter,
  .about-awards-edit header,
  .about-index-list article,
  .about-exhibition-list article,
  .about-brand-rows article,
  .about-awards-list article {
    grid-template-columns: 1fr;
  }

  .about-editorial-hero {
    min-height: auto;
    padding: 132px 24px 72px;
  }

  .about-editorial-hero > * {
    min-width: 0;
    max-width: calc(100vw - 48px);
  }

  .about-editorial-kicker {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-name-stack {
    font-size: clamp(4.6rem, 24vw, 9rem);
  }

  .about-editorial-copy,
  .about-editorial-hero figure {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .about-editorial-hero figure,
  .about-story-panel figure {
    min-height: 420px;
  }

  .about-editorial-copy h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 11vw, 3.35rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .about-hero-scrub {
    min-height: 190svh;
    padding: 0;
  }

  .about-hero-scrub > * {
    max-width: none;
  }

  .about-hero-scrub-sticky {
    height: 100svh;
    gap: 16px;
    padding: 132px 24px 66px;
  }

  .about-hero-scrub .about-editorial-kicker {
    top: 104px;
    right: 24px;
    left: 24px;
    flex-direction: column;
    gap: 8px;
    width: auto;
    max-width: calc(100vw - 48px);
  }

  .about-hero-scrub .about-name-stack {
    max-width: calc(100vw - 48px);
    font-size: clamp(3.7rem, 18vw, 7.1rem);
    line-height: 0.82;
  }

  .about-hero-scrub .about-editorial-copy,
  .about-hero-scrub .about-editorial-kicker {
    max-width: calc(100vw - 48px);
  }

  .about-hero-scrub .about-editorial-copy h1 {
    font-size: clamp(1.85rem, 8.4vw, 2.85rem);
    line-height: 1;
  }

  .about-hero-scrub .about-editorial-copy p {
    margin-top: 16px;
    font-size: clamp(0.96rem, 4.2vw, 1.12rem);
    line-height: 1.45;
  }

  .about-hero-scrub .about-editorial-video {
    width: 100%;
    max-width: none;
  }

  .about-hero-scrub .about-editorial-video video {
    object-position: center center;
  }

  .about-hero-scrub-meter {
    left: 24px;
    right: auto;
  }

  .about-brand-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-manuscript,
  .about-profile-index,
  .about-exhibitions,
  .about-cinematic-break,
  .about-brand-radar,
  .about-capability-chapter,
  .about-social-radar,
  .about-principles,
  .about-awards-edit {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-manuscript aside,
  .about-capability-chapter > div:first-child,
  .about-social-copy {
    position: static;
  }

  .about-manuscript h2 {
    font-size: clamp(3.1rem, 15vw, 7.1rem);
  }

  .about-manuscript p {
    margin-left: 0;
  }

  .about-visual-diary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .about-visual-diary figure,
  .about-visual-diary figure:nth-child(2),
  .about-visual-diary figure:nth-child(3) {
    min-height: 300px;
    transform: none;
  }

  .about-story-panel > div {
    padding: 72px 24px;
  }

  .about-cinematic-break figure {
    min-height: 560px;
  }

  .about-cinematic-break figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-cinematic-break figcaption strong {
    max-width: 620px;
    text-align: left;
  }

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

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

  .about-social-links a {
    grid-template-columns: minmax(92px, 0.28fr) minmax(0, 1fr);
  }

  .about-social-links em {
    grid-column: 2;
  }

  .about-principles-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-principles-head strong {
    justify-self: start;
  }

  .about-principles-list {
    margin-top: 64px;
  }

  .about-principles summary {
    grid-template-columns: 48px minmax(0, 1fr) 36px;
    gap: 16px;
  }

  .about-principles details p {
    margin-right: 0;
    margin-left: 64px;
  }

  .about-awards-word {
    font-size: clamp(4.8rem, 25vw, 10rem);
  }
}

@media (max-width: 560px) {
  .about-visual-diary {
    grid-template-columns: 1fr;
  }

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

  .about-visual-diary figure,
  .about-visual-diary figure:nth-child(2),
  .about-visual-diary figure:nth-child(3) {
    min-height: 360px;
  }

  .about-cinematic-break figure {
    min-height: 420px;
  }

  .about-social-links a {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .about-social-links em {
    grid-column: auto;
  }

  .about-principles {
    padding-top: 64px;
    padding-bottom: 78px;
  }

  .about-principles-head {
    padding-top: 28px;
  }

  .about-principles summary {
    grid-template-columns: 38px minmax(0, 1fr) 32px;
    min-height: 76px;
  }

  .about-principles summary i {
    width: 28px;
    height: 28px;
  }

  .about-principles summary i::before,
  .about-principles summary i::after {
    width: 24px;
  }

  .about-principles details p {
    margin: -2px 0 28px 54px;
  }
}

.project-section {
  padding: clamp(110px, 15vh, 176px) var(--section-x-slim);
  background: #ece7df;
}

.project-section.dark {
  color: var(--white);
  background: var(--night);
}

.project-section > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: clamp(44px, 7vw, 128px);
  align-items: end;
  margin-bottom: clamp(62px, 8vw, 118px);
}

.project-section > header h2,
.project-section > .section-kicker h2,
.service-hub h2,
.capability-wall h2,
.awards-band h2,
.contact-grid h2,
.briefing-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.45vw, 5.5rem);
  font-weight: 400;
  line-height: 0.94;
}

.project-section header p {
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.5;
}

.project-section.dark header p,
.project-section.dark .work-card p,
.capability-wall p,
.awards-band p {
  color: rgba(255, 255, 255, 0.68);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 46px);
}

.work-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--warm);
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: inherit;
}

.work-card:hover,
.text-tile:hover {
  background: var(--white);
}

.work-card:hover h2,
.work-card:hover h3,
.text-tile:hover h3 {
  color: var(--ember);
}

.work-card.large {
  grid-column: span 2;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  background: var(--night);
}

.work-card div {
  padding: 30px;
}

.work-card strong {
  display: inline-block;
  margin-top: 28px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.work-card h2,
.work-card h3,
.text-grid h3,
.service-card h3,
.split-copy h3,
.contact-card h3 {
  margin: 12px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.05vw, 2.75rem);
  font-weight: 400;
  line-height: 1;
}

.work-card.large h2 {
  font-size: clamp(2rem, 3.1vw, 4rem);
  line-height: 0.96;
}

.work-card p,
.text-grid p,
.service-card p,
.split-copy p,
.contact-card p,
.briefing-panel p {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.48;
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.text-grid article,
.text-grid .text-tile {
  min-height: 360px;
  display: block;
  padding: 34px 3vw;
  background: var(--paper);
  color: inherit;
}

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

.text-grid.compact article,
.text-grid.compact .text-tile {
  min-height: 230px;
  background: var(--warm);
}

.text-grid.compact h3 {
  font-size: clamp(1.35rem, 1.85vw, 2.25rem);
}

.project-video-showcase {
  display: grid;
  gap: clamp(42px, 5vw, 84px);
  padding: clamp(112px, 14vh, 176px) var(--section-x-slim);
  background: var(--warm);
  border-top: 1px solid var(--line);
}

.project-video-showcase > header {
  display: grid;
  grid-template-columns: minmax(120px, 0.24fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 92px);
  align-items: start;
  max-width: 1180px;
}

.project-video-showcase > header span,
.project-video-card p {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.project-video-showcase h2 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-ui);
  font-size: clamp(1.9rem, 3vw, 4rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
}

.project-video-showcase header p {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(1rem, 1.12vw, 1.2rem);
  line-height: 1.55;
}

.project-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 680px));
  justify-content: start;
  gap: clamp(34px, 4vw, 64px);
}

.project-video-card {
  display: grid;
  max-width: 680px;
  gap: 20px;
}

.project-video-frame {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
}

.project-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.project-video-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.45vw, 1.7rem);
  font-weight: 650;
  line-height: 1.12;
}

.project-video-card p {
  margin: 8px 0 0;
}

.project-depth {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(58px, 9vw, 164px);
  padding: clamp(112px, 15vh, 188px) var(--section-x-slim);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.project-depth-head {
  position: sticky;
  top: 112px;
  align-self: start;
}

.project-depth-head span,
.project-depth-grid span {
  color: var(--ember);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.project-depth-head h2 {
  margin: 18px 0 0;
  max-width: 520px;
  font-family: var(--font-ui);
  font-size: clamp(1.65rem, 2.2vw, 3rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: 0;
}

.project-depth-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.project-depth-grid article {
  display: grid;
  grid-template-columns: minmax(110px, 0.24fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 92px);
  padding: clamp(36px, 4.6vw, 68px) 0;
  border-bottom: 1px solid var(--line);
}

.project-depth-grid p {
  max-width: 920px;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1.03rem, 1.28vw, 1.28rem);
  line-height: 1.62;
}

.service-hub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 6vw, 108px) clamp(54px, 7vw, 132px);
  padding: var(--section-y-loose) var(--section-x-slim);
  background: var(--paper);
}

.service-hub > a {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 300px;
  padding-bottom: clamp(34px, 4vh, 58px);
  border-bottom: 1px solid var(--line);
}

.service-hub > a:hover h2 {
  color: var(--ember);
}

.service-hub > p {
  max-width: 760px;
  margin: 18px 0 46px;
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(1.02rem, 1.25vw, 1.25rem);
  line-height: 1.5;
}

.service-about-hero {
  padding: clamp(150px, 16vh, 240px) var(--section-x-slim) var(--section-y-compact);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.service-about-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 20rem);
  font-weight: 400;
  line-height: 0.82;
  text-align: center;
  text-transform: uppercase;
}

.service-about-intro {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 118px);
  padding: var(--section-y-loose) var(--section-x-slim) var(--section-y);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.service-redox-intro {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 118px);
  padding: var(--section-y-loose) var(--section-x-slim) var(--section-y);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.service-about-intro > span,
.service-redox-intro > span,
.service-approach header span,
.service-discipline-index span,
.service-discipline-details h3,
.service-big-cta > span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.service-about-intro h2,
.service-redox-intro h2 {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 7rem);
  line-height: 0.95;
}

.service-about-copy {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(34px, 5vw, 96px);
  padding-top: clamp(42px, 6vh, 88px);
  margin-top: clamp(38px, 5vh, 82px);
  border-top: 1px solid var(--line);
}

.service-about-copy ul,
.service-approach ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-about-copy li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2.4rem);
  line-height: 1.12;
}

.service-about-copy li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  background: currentColor;
}

.service-redox-intro p {
  max-width: 740px;
  margin: clamp(34px, 4vh, 58px) 0 0 auto;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  line-height: 1.6;
}

.service-about-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1.08rem, 1.45vw, 1.45rem);
  line-height: 1.52;
}

.service-about-copy .inline-link {
  margin-top: clamp(28px, 4vh, 48px);
}

.service-about-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.82fr 1.05fr 0.82fr 1.15fr;
  gap: 1px;
  padding: clamp(34px, 4vw, 70px) var(--section-x-slim);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.service-about-strip figure {
  min-height: clamp(180px, 20vw, 380px);
  margin: 0;
  overflow: hidden;
  background: var(--line);
}

.service-about-strip figure:nth-child(2),
.service-about-strip figure:nth-child(4) {
  transform: translateY(clamp(18px, 3vw, 48px));
}

.service-about-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-proficiency {
  display: grid;
  gap: 0;
  padding: var(--section-y-compact) var(--section-x-slim);
  background: var(--white);
}

.service-discipline-card {
  display: grid;
  grid-template-columns: minmax(78px, 0.16fr) minmax(280px, 0.62fr) minmax(360px, 0.82fr);
  grid-template-areas:
    "index main details"
    "meta meta meta";
  gap: clamp(30px, 4vw, 76px);
  align-items: start;
  padding: clamp(48px, 6vw, 96px) 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.service-discipline-card:last-child {
  border-bottom: 1px solid var(--line);
}

.service-discipline-index {
  grid-area: index;
}

.service-discipline-index strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 5.2rem);
  font-weight: 400;
  line-height: 0.9;
}

.service-discipline-index span {
  display: block;
  margin-top: clamp(16px, 2vw, 30px);
}

.service-discipline-main {
  grid-area: main;
}

.service-discipline-main h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 5.4rem);
  line-height: 0.94;
}

.service-discipline-main p {
  max-width: 660px;
  margin: clamp(24px, 3vw, 46px) 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 1.22vw, 1.22rem);
  line-height: 1.58;
}

.service-discipline-details {
  grid-area: details;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 52px);
}

.service-discipline-details h3 {
  padding-bottom: 14px;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.service-discipline-details ul {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-discipline-details li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(0.96rem, 1.04vw, 1.08rem);
  line-height: 1.35;
}

.service-discipline-meta {
  grid-area: meta;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding-top: clamp(26px, 3vw, 42px);
  border-top: 1px solid var(--line);
}

.service-discipline-meta span {
  color: rgba(17, 17, 17, 0.58);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.service-discipline-meta a {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.service-discipline-card:hover {
  background: transparent;
}

.service-discipline-card:hover h2,
.service-discipline-meta a:hover {
  color: var(--ember);
}

.service-proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-proof-band article {
  min-height: clamp(280px, 25vw, 420px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 4vw, 68px);
  background: transparent;
  border-right: 1px solid var(--line);
}

.service-proof-band article:last-child {
  border-right: 0;
}

.service-proof-band span {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.2vw, 8rem);
  line-height: 0.86;
}

.service-proof-band p {
  max-width: 360px;
  margin: clamp(42px, 6vh, 92px) 0 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.5;
}

.service-skill-system {
  padding: var(--section-y-loose) var(--section-x-slim);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.service-skill-system header {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 118px);
  align-items: start;
  margin-bottom: clamp(42px, 6vh, 90px);
}

.service-skill-system header > span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.service-skill-system h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 6.6rem);
  line-height: 0.95;
}

.service-skill-system header p {
  max-width: 760px;
  margin: clamp(28px, 3vw, 46px) 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1.05rem, 1.28vw, 1.28rem);
  line-height: 1.55;
}

.service-skill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-skill-grid article {
  min-height: clamp(360px, 30vw, 520px);
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 3.6vw, 58px);
  background: transparent;
  border-right: 1px solid var(--line);
}

.service-skill-grid article:last-child {
  border-right: 0;
}

.service-skill-grid h3 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(1.8rem, 2.7vw, 3.8rem);
  line-height: 0.98;
}

.service-skill-grid p {
  max-width: 380px;
  margin: 24px 0 clamp(34px, 4vw, 70px);
  color: rgba(17, 17, 17, 0.64);
  font-size: clamp(0.98rem, 1.05vw, 1.1rem);
  line-height: 1.5;
}

.service-skill-grid ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.service-skill-grid li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(0.94rem, 1vw, 1.05rem);
}

.service-skill-note {
  max-width: 1050px;
  margin: clamp(34px, 5vw, 74px) 0 0 auto;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.25vw, 4.4rem);
  line-height: 1;
}

.service-credential-board header > div {
  max-width: 1160px;
}

.service-credential-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-credential-grid article {
  min-height: clamp(420px, 36vw, 640px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(42px, 5vw, 86px);
  padding: clamp(28px, 3.6vw, 58px) clamp(24px, 3vw, 46px);
  border-right: 1px solid var(--line);
}

.service-credential-grid article:last-child {
  border-right: 0;
}

.service-credential-grid article > span,
.service-awards-head > span,
.service-awards-list article > span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.service-credential-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 2.65vw, 3.55rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
}

.service-credential-note {
  display: flex;
  justify-content: flex-end;
  padding-top: clamp(34px, 5vw, 74px);
}

.service-credential-note p {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.75vw, 3.85rem);
  line-height: 1;
}

.service-process {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  margin: 0;
  background: var(--paper);
}

.service-approach {
  padding: var(--section-y-loose) var(--section-x-slim);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.service-approach header {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 118px);
  align-items: start;
  margin-bottom: clamp(42px, 6vh, 90px);
}

.service-approach h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 6.6rem);
  line-height: 0.95;
}

.service-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-approach-grid article {
  min-height: clamp(330px, 30vw, 500px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(32px, 4vw, 66px);
  background: transparent;
  border-right: 1px solid var(--line);
}

.service-approach-grid article:last-child {
  border-right: 0;
}

.service-approach-grid article > div > span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
}

.service-approach-grid h3 {
  max-width: 460px;
  margin: 18px 0 0;
  font-size: clamp(2rem, 3.2vw, 4.35rem);
  line-height: 0.98;
}

.service-approach-grid ul {
  display: grid;
  gap: 12px;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 1.14vw, 1.16rem);
}

.service-approach-grid li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

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

.service-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--warm);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.service-card p {
  margin-bottom: 26px;
}

.service-card strong {
  margin-top: auto;
  font-weight: 400;
}

.process-row.multi {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 var(--section-x-slim);
  margin: var(--section-y-compact) 0;
}

.capability-wall {
  padding: var(--section-y-loose) var(--section-x-slim);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 26, 34, 0.92), rgba(23, 26, 34, 0.65)),
    url("assets/andreas-europapark.jpg") center / cover;
}

.capability-wall header {
  max-width: 930px;
  margin-bottom: 46px;
}

.capability-wall p {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.62;
}

.capability-wall ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.capability-wall li {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
}

.service-awards-ledger {
  padding: var(--section-y-loose) var(--section-x-slim);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-awards-head {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 118px);
  align-items: start;
  margin-bottom: clamp(38px, 5vw, 86px);
}

.service-awards-head h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 6.2rem);
  line-height: 0.96;
}

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

.service-awards-list article {
  display: grid;
  grid-template-columns: minmax(86px, 0.18fr) minmax(340px, 0.74fr) minmax(280px, 0.62fr);
  gap: clamp(26px, 4vw, 74px);
  align-items: baseline;
  padding: clamp(28px, 3.8vw, 58px) 0;
  border-bottom: 1px solid var(--line);
}

.service-awards-list h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 4.2rem);
  line-height: 0.98;
}

.service-awards-list p {
  max-width: 620px;
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(0.98rem, 1.12vw, 1.16rem);
  line-height: 1.52;
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 82vh;
  background: #ece7df;
}

.split-showcase img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8vh 4vw;
}

.split-copy h3 {
  max-width: 760px;
  font-size: clamp(2.2rem, 3.8vw, 5rem);
}

.awards-band {
  padding: var(--section-y-loose) var(--section-x-slim);
  color: var(--white);
  background: #090a0d;
}

.awards-band h2 {
  max-width: 980px;
  margin-top: 12px;
  line-height: 1;
}

.awards-band p {
  max-width: 780px;
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.25vw, 1.26rem);
  line-height: 1.5;
}

.awards-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 48px 0 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.awards-list li {
  min-height: 128px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.82);
  background: #10131a;
}

.seo-link-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-link-band > a {
  min-height: clamp(74px, 7vw, 112px);
  width: auto;
  margin-top: 0;
  justify-content: start;
  padding: 0 clamp(24px, 4vw, 64px);
  border: 0;
  border-radius: 0;
  background: var(--paper);
  line-height: 1.2;
}

.seo-link-band > a:hover {
  color: var(--ember);
}

.seo-link-band:not(:has(article)) {
  counter-reset: next-link;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 30px);
  padding: clamp(36px, 5vw, 82px) var(--section-x-slim);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-link-band:not(:has(article)) > a {
  counter-increment: next-link;
  position: relative;
  min-height: clamp(138px, 14vw, 210px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 42px);
  width: auto;
  margin: 0;
  padding: clamp(28px, 3.4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.44);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.35vw, 3.15rem);
  line-height: 1;
  text-align: left;
  text-transform: none;
}

.seo-link-band:not(:has(article)) > a::before {
  content: "0" counter(next-link);
  position: absolute;
  top: clamp(22px, 2vw, 34px);
  left: clamp(28px, 3.4vw, 56px);
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
}

.seo-link-band:not(:has(article)) > a::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(34px, 3vw, 46px);
  height: clamp(34px, 3vw, 46px);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-text);
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  line-height: 1;
}

.seo-link-band:not(:has(article)) > a:hover {
  background: var(--white);
  color: var(--ember);
}

.seo-link-band article {
  min-height: 330px;
  padding: 34px 3vw;
  background: var(--warm);
}

.service-big-cta {
  display: grid;
  align-content: end;
  min-height: clamp(620px, 78svh, 880px);
  padding: var(--section-y-loose) var(--section-x-slim);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.92), rgba(5, 6, 8, 0.36)),
    url("assets/andreas-djbobo.jpg") center / cover;
}

.service-big-cta h2 {
  max-width: 1220px;
  margin: 18px 0 0;
  font-size: clamp(3.2rem, 7vw, 8.8rem);
  line-height: 0.9;
}

.service-big-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(44px, 6vh, 86px);
}

.service-big-cta a {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  text-transform: uppercase;
}

.service-big-cta a:hover {
  color: var(--gold);
}

.seo-link-band h2,
.seo-link-band h3 {
  margin: 14px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 3.6rem);
  font-weight: 400;
  line-height: 0.94;
}

.seo-link-band p {
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.45;
}

.timeline-grid.page-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline-grid.page-timeline li {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  gap: 22px;
  padding: 30px 3vw;
  background: var(--warm);
}

.page-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.page-values span {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 3.5rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 4vw, 72px);
  padding: var(--section-y-compact) var(--section-x-slim);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.contact-card {
  min-height: auto;
  padding: 0 0 clamp(42px, 5vh, 72px);
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.contact-card h2 {
  max-width: 840px;
  overflow-wrap: anywhere;
  font-size: clamp(1.9rem, 2.85vw, 3.7rem);
  line-height: 1.02;
}

.contact-card address {
  margin-top: 34px;
  color: rgba(17, 17, 17, 0.7);
  font-style: normal;
  line-height: 1.6;
}

.contact-card address a {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.briefing-panel {
  min-height: 520px;
  padding: 8vh 4vw;
  background: var(--paper);
}

.briefing-panel ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.briefing-panel li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  color: rgba(17, 17, 17, 0.72);
}

.project-briefing {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 4vw, 72px);
  padding: var(--section-y-compact) var(--section-x-slim) var(--section-y);
  background: var(--paper);
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.briefing-form,
.briefing-summary {
  background: var(--warm);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
}

.briefing-form {
  padding: clamp(42px, 5vw, 76px);
}

.briefing-head {
  max-width: 940px;
  margin-bottom: 40px;
}

.briefing-head span,
.briefing-summary > span,
.field-line > span,
.briefing-form legend {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.briefing-head h2,
.briefing-summary h2 {
  margin: 12px 0 18px;
  font-size: clamp(2.1rem, 3.6vw, 4.4rem);
  line-height: 0.96;
}

.briefing-head p,
.briefing-summary p {
  max-width: 700px;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.5;
}

.briefing-form fieldset {
  padding: 0;
  margin: 0 0 40px;
  border: 0;
}

.briefing-form legend {
  margin-bottom: 12px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

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

.choice-grid.single-choice {
  grid-template-columns: 1fr;
}

.choice-card {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  font-size: 14px;
  line-height: 1.12;
}

.choice-card:has(input:checked) {
  border-color: var(--ember);
  background: rgba(255, 90, 28, 0.1);
  color: var(--ink);
}

.field-line {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.field-line input,
.field-line textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font: inherit;
}

.field-line input {
  height: 56px;
  padding: 0 16px;
}

.field-line textarea {
  resize: vertical;
  min-height: 150px;
  padding: 16px;
}

.field-line input:focus,
.field-line textarea:focus {
  outline: 2px solid rgba(255, 90, 28, 0.32);
  outline-offset: 2px;
}

.form-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.form-actions button,
.form-actions a {
  min-height: 48px;
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
}

.form-actions button {
  padding: 0 22px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.form-actions a {
  display: inline-grid;
  place-items: center;
  padding: 0 20px;
  border: 1px solid rgba(17, 17, 17, 0.28);
}

.briefing-summary {
  position: sticky;
  top: 0;
  min-height: min(100svh, 780px);
  align-self: start;
  padding: clamp(42px, 5vw, 76px);
}

.briefing-summary dl {
  display: grid;
  gap: 1px;
  margin: 38px 0 0;
  background: rgba(17, 17, 17, 0.14);
}

.briefing-summary dl div {
  padding: 18px;
  background: var(--paper);
}

.briefing-summary dt {
  margin-bottom: 8px;
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.briefing-summary dd {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.42;
}

.faq-section {
  padding: var(--section-y-loose) var(--section-x-slim);
  background: var(--paper);
}

.faq-intro {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 110px);
  margin-bottom: var(--section-y-compact);
}

.faq-intro span,
.faq-item span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.faq-intro h2 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 6rem);
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 96px);
  padding: clamp(36px, 5vw, 78px);
  background: var(--warm);
}

.faq-item h3 {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: clamp(1.65rem, 2.4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.05;
}

.faq-item p {
  max-width: 820px;
  margin: 0;
  color: rgba(17, 17, 17, 0.7);
  font-size: clamp(1.02rem, 1.25vw, 1.24rem);
  line-height: 1.62;
}

html[data-theme="dark"] body {
  background: var(--footer-reveal-bg);
}

html[data-theme="dark"] .page-shell {
  background: var(--paper);
}

html[data-theme="dark"] .nav-panel,
html[data-theme="dark"] .menu-button {
  background: rgba(16, 17, 20, 0.96);
}

html[data-theme="dark"] .site-nav::before {
  background:
    linear-gradient(90deg, var(--paper) clamp(12px, 3.4vw, 54px), transparent 0 calc(100% - clamp(12px, 3.4vw, 54px)), var(--paper) 0),
    linear-gradient(180deg, var(--paper) clamp(12px, 3.4vw, 54px), transparent 0 calc(100% - clamp(12px, 3.4vw, 54px)), var(--paper) 0);
}

html[data-theme="dark"] .site-nav.is-open .menu-button {
  border-color: rgba(244, 240, 232, 0.22);
  background: rgba(16, 17, 20, 0.92);
}

html[data-theme="dark"] .nav-item {
  --nav-main: var(--cream);
  --nav-hover: var(--ember);
  --nav-muted: rgba(244, 240, 232, 0.54);
  border-left-color: rgba(244, 240, 232, 0.1);
}

html[data-theme="dark"] .nav-item:hover,
html[data-theme="dark"] .nav-item:focus-visible {
  background: rgba(244, 240, 232, 0.05);
}

html[data-theme="dark"] .nav-item:hover strong,
html[data-theme="dark"] .nav-item:focus-visible strong {
  color: rgba(244, 240, 232, 0.78);
}

html[data-theme="dark"] .nav-item.active strong {
  color: rgba(212, 86, 52, 0.78);
}

html[data-theme="dark"] .nav-item strong,
html[data-theme="dark"] .intro-editorial p,
html[data-theme="dark"] .home-core-system header p,
html[data-theme="dark"] .home-core-grid p,
html[data-theme="dark"] .home-clarity-intro p,
html[data-theme="dark"] .home-proof-strip p,
html[data-theme="dark"] .brand-experience-head p,
html[data-theme="dark"] .home-service-map header p,
html[data-theme="dark"] .home-service-map-grid p,
html[data-theme="dark"] .home-featured-list small,
html[data-theme="dark"] .home-process-clarity header p,
html[data-theme="dark"] .directory-card p,
html[data-theme="dark"] .proof-card p,
html[data-theme="dark"] .copy-band p,
html[data-theme="dark"] .project-section header p,
html[data-theme="dark"] .work-card p,
html[data-theme="dark"] .work-card strong,
html[data-theme="dark"] .text-grid p,
html[data-theme="dark"] .project-depth-grid p,
html[data-theme="dark"] .service-card p,
html[data-theme="dark"] .service-hub > p,
html[data-theme="dark"] .service-about-copy p,
html[data-theme="dark"] .service-redox-intro p,
html[data-theme="dark"] .service-discipline-main p,
html[data-theme="dark"] .service-discipline-details li,
html[data-theme="dark"] .service-discipline-meta span,
html[data-theme="dark"] .service-proof-band p,
html[data-theme="dark"] .service-skill-system header p,
html[data-theme="dark"] .service-skill-grid p,
html[data-theme="dark"] .service-skill-grid li,
html[data-theme="dark"] .service-credential-note p,
html[data-theme="dark"] .service-awards-list p,
html[data-theme="dark"] .service-approach-grid ul,
html[data-theme="dark"] .split-copy p,
html[data-theme="dark"] .about-overview p,
html[data-theme="dark"] .about-dossier-facts dd,
html[data-theme="dark"] .about-status-split dd,
html[data-theme="dark"] .about-ledger-list p,
html[data-theme="dark"] .about-education-grid p,
html[data-theme="dark"] .about-brand-ledger p,
html[data-theme="dark"] .about-skill-split p,
html[data-theme="dark"] .about-skill-columns li,
html[data-theme="dark"] .about-values-eyebrow p,
html[data-theme="dark"] .about-values-lead p,
html[data-theme="dark"] .about-benefit-list p,
html[data-theme="dark"] .seo-link-band p,
html[data-theme="dark"] .contact-card p,
html[data-theme="dark"] .contact-card address,
html[data-theme="dark"] .briefing-panel p,
html[data-theme="dark"] .briefing-panel li,
html[data-theme="dark"] .briefing-head p,
html[data-theme="dark"] .briefing-summary p,
html[data-theme="dark"] .briefing-summary dd,
html[data-theme="dark"] .faq-item p,
html[data-theme="dark"] .bio-grid p,
html[data-theme="dark"] .service-grid p,
html[data-theme="dark"] .process-row p {
  color: rgba(244, 240, 232, 0.68);
}

html[data-theme="dark"] body[data-page="about"] .page-shell {
  --about-grid: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px calc(100% / 10));
  --about-grid-dark: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.085) 0 1px, transparent 1px calc(100% / 10));
}

html[data-theme="dark"] .about-availability,
html[data-theme="dark"] .about-dossier-facts p,
html[data-theme="dark"] .about-ledger-count span {
  color: rgba(244, 240, 232, 0.64);
}

html[data-theme="dark"] .about-giant-word {
  color: rgba(255, 255, 255, 0.085);
}

html[data-theme="dark"] .intro-block,
html[data-theme="dark"] .works-strip,
html[data-theme="dark"] .about-section,
html[data-theme="dark"] .home-core-grid a,
html[data-theme="dark"] .home-clarity-intro,
html[data-theme="dark"] .home-service-map,
html[data-theme="dark"] .home-process-clarity,
html[data-theme="dark"] .service-redox-intro,
html[data-theme="dark"] .service-about-hero,
html[data-theme="dark"] .service-about-intro,
html[data-theme="dark"] .service-about-strip,
html[data-theme="dark"] .about-image-strip,
html[data-theme="dark"] .about-overview,
html[data-theme="dark"] .about-status-split,
html[data-theme="dark"] .about-ledger,
html[data-theme="dark"] .about-brand-ledger,
html[data-theme="dark"] .about-benefits,
html[data-theme="dark"] .service-proficiency,
html[data-theme="dark"] .service-skill-system,
html[data-theme="dark"] .service-awards-ledger,
html[data-theme="dark"] .bio-grid p,
html[data-theme="dark"] .service-grid article,
html[data-theme="dark"] .equipment-line p,
html[data-theme="dark"] .project-depth,
html[data-theme="dark"] .text-grid article,
html[data-theme="dark"] .text-grid .text-tile,
html[data-theme="dark"] .briefing-panel {
  background: #101114;
}

html[data-theme="dark"] .about-overview,
html[data-theme="dark"] .about-ledger,
html[data-theme="dark"] .about-brand-ledger {
  background-image: var(--about-grid);
}

html[data-theme="dark"] .about-benefit-list h3,
html[data-theme="dark"] .about-values-lead h2,
html[data-theme="dark"] .about-values-statement p {
  color: var(--cream);
}

html[data-theme="dark"] .about-benefit-list article,
html[data-theme="dark"] .about-benefit-list article:last-child {
  border-color: rgba(255, 255, 255, 0.18);
}

html[data-theme="dark"] .project-depth,
html[data-theme="dark"] .project-depth-grid,
html[data-theme="dark"] .project-depth-grid article {
  border-color: rgba(244, 240, 232, 0.16);
}

html[data-theme="dark"] .overview-band,
html[data-theme="dark"] .home-core-system,
html[data-theme="dark"] .home-proof-strip,
html[data-theme="dark"] .brand-experience,
html[data-theme="dark"] .home-featured-work,
html[data-theme="dark"] .services-section,
html[data-theme="dark"] .faq-section,
html[data-theme="dark"] .seo-link-band:not(:has(article)),
html[data-theme="dark"] .redox-service-links,
html[data-theme="dark"] .project-section,
html[data-theme="dark"] .split-showcase {
  background: #121317;
}

html[data-theme="dark"] .directory-card,
html[data-theme="dark"] .directory-card:hover,
html[data-theme="dark"] .proof-card,
html[data-theme="dark"] .work-card,
html[data-theme="dark"] .work-card:hover,
html[data-theme="dark"] .about-education-grid article,
html[data-theme="dark"] .text-grid.compact article,
html[data-theme="dark"] .text-grid.compact .text-tile,
html[data-theme="dark"] .text-tile:hover,
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .seo-link-band article,
html[data-theme="dark"] .seo-link-band > a,
html[data-theme="dark"] .redox-service-links a,
html[data-theme="dark"] .timeline-grid.page-timeline li,
html[data-theme="dark"] .page-values span,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .briefing-form,
html[data-theme="dark"] .briefing-summary,
html[data-theme="dark"] .briefing-summary dl div,
html[data-theme="dark"] .faq-item {
  background: #17181c;
}

html[data-theme="dark"] .service-discipline-card:hover {
  background: transparent;
}

html[data-theme="dark"] .home-service-map-grid article,
html[data-theme="dark"] .brand-experience-grid article,
html[data-theme="dark"] .service-discipline-card,
html[data-theme="dark"] .service-approach-grid article,
html[data-theme="dark"] .service-proof-band article,
html[data-theme="dark"] .service-skill-grid article,
html[data-theme="dark"] .service-credential-grid article,
html[data-theme="dark"] .service-awards-list article {
  background: transparent;
}

html[data-theme="dark"] .about-skill-split {
  background:
    var(--about-grid),
    linear-gradient(90deg, rgba(16, 17, 20, 0.94), rgba(16, 17, 20, 0.78)),
    url("assets/andreas-services-red-camera.jpg") center / cover;
  background-blend-mode: multiply, normal, normal;
}

html[data-theme="dark"] .service-discipline-meta a {
  color: var(--cream);
}

html[data-theme="dark"] .choice-card,
html[data-theme="dark"] .field-line input,
html[data-theme="dark"] .field-line textarea {
  border-color: rgba(244, 240, 232, 0.2);
  background: rgba(244, 240, 232, 0.05);
  color: var(--ink);
}

html[data-theme="dark"] .choice-card:has(input:checked) {
  border-color: var(--ember);
  background: rgba(255, 107, 51, 0.14);
}

html[data-theme="dark"] .form-actions button {
  background: var(--ink);
  color: #101114;
}

html[data-theme="dark"] .form-actions a,
html[data-theme="dark"] .inline-link,
html[data-theme="dark"] .next-content a,
html[data-theme="dark"] .seo-link-band a,
html[data-theme="dark"] .contact-card a,
html[data-theme="dark"] .briefing-panel a {
  border-color: rgba(244, 240, 232, 0.35);
  color: var(--ink);
}

html[data-theme="dark"] .seo-link-band:not(:has(article)) > a {
  background: #f4f0e8;
  border-color: rgba(244, 240, 232, 0.72);
  color: #101114;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .seo-link-band:not(:has(article)) > a::before {
  color: var(--ember);
}

html[data-theme="dark"] .seo-link-band:not(:has(article)) > a:hover,
html[data-theme="dark"] .seo-link-band:not(:has(article)) > a:focus-visible {
  background: var(--ember);
  border-color: var(--ember);
  color: #ffffff;
}

html[data-theme="dark"] .footer-links nav {
  background: var(--footer-bg);
}

.nav-talk-link::after {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
}

.nav-talk-link {
  position: absolute;
  top: 14px;
  right: 142px;
  border-color: rgba(17, 17, 17, 0.2);
  background: #111111;
  color: #ffffff;
}

.nav-talk-link .nav-talk-label,
.nav-talk-link .nav-talk-track,
.nav-talk-link .nav-talk-track span {
  position: relative;
  z-index: 1;
  color: inherit;
}

.nav-talk-link .nav-talk-label {
  height: 1.08em;
  line-height: 1.08;
}

.nav-talk-link .nav-talk-track {
  grid-auto-rows: 1.08em;
  transform: translate3d(0, 0, 0);
}

.nav-talk-link .nav-talk-track span {
  display: flex;
  align-items: center;
  height: 1.08em;
  white-space: nowrap;
}

.nav-talk-link::after {
  content: "↘";
  position: relative;
  z-index: 1;
  color: inherit;
  font-family: var(--font-text);
  font-size: 1.05em;
  line-height: 0.72;
}

.nav-talk-link:hover,
.nav-talk-link:focus-visible {
  border-color: var(--ember);
  background: var(--ember);
  color: #ffffff;
}

.nav-talk-link:hover .nav-talk-track,
.nav-talk-link:focus-visible .nav-talk-track {
  transform: translate3d(0, -1.08em, 0);
}

html[data-theme="dark"] .nav-talk-link {
  border-color: rgba(244, 240, 232, 0.72);
  background: #f4f0e8;
  color: #101114;
}

html[data-theme="dark"] .nav-talk-link:hover,
html[data-theme="dark"] .nav-talk-link:focus-visible {
  border-color: var(--ember);
  background: var(--ember);
  color: #ffffff;
}

.inline-link,
.alien-pill-links a,
.form-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58em;
  min-height: 40px;
  padding: 0 16px 0 18px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  line-height: 1;
}

.form-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58em;
  min-height: 48px;
  padding: 0 20px 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
}

.inline-link:hover,
.alien-pill-links a:hover,
.form-actions a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.form-actions button:hover {
  border-color: var(--ember);
  background: var(--ember);
  color: #101114;
}

html[data-theme="dark"] .inline-link,
html[data-theme="dark"] .alien-pill-links a,
html[data-theme="dark"] .form-actions a {
  border-color: rgba(244, 240, 232, 0.22);
  background: rgba(244, 240, 232, 0.04);
}

html[data-theme="dark"] .inline-link:hover,
html[data-theme="dark"] .alien-pill-links a:hover,
html[data-theme="dark"] .form-actions a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #101114;
}

.works-redox-hero {
  display: grid;
  min-height: 100svh;
  padding: clamp(128px, 15vh, 190px) var(--section-x-slim) clamp(58px, 9vh, 96px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  place-items: center;
  align-content: center;
  gap: clamp(18px, 2.8vw, 38px);
}

.works-redox-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(7.2rem, 25vw, 31rem);
  font-weight: 400;
  line-height: 0.72;
  text-align: center;
  text-transform: uppercase;
}

.works-scroll-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(16, 17, 20, 0.64);
  font-family: var(--font-wordmark);
  font-size: clamp(0.74rem, 0.78vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 260ms ease,
    transform 320ms ease;
}

.works-scroll-cue i {
  position: relative;
  display: inline-block;
  width: 1px;
  height: 44px;
  background: currentColor;
  transform: translateY(2px);
  transform-origin: top center;
  opacity: 0.72;
  transition:
    height 320ms ease,
    opacity 260ms ease,
    transform 320ms ease;
}

.works-scroll-cue i::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: 0;
  width: 9px;
  height: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transform-origin: bottom right;
}

.works-scroll-cue:hover {
  color: var(--ember);
  transform: translateY(3px);
}

.works-scroll-cue:hover i {
  height: 54px;
  opacity: 1;
}

.works-redox-intro {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 110px);
  padding: var(--section-y) var(--section-x-slim) var(--section-y-loose);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.works-redox-intro > span,
.redox-index-head span,
.redox-awards-band span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.works-redox-intro h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.9rem, 5.4vw, 6.45rem);
  line-height: 0.96;
}

.works-redox-copy {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.55fr);
  gap: clamp(44px, 6vw, 110px);
  margin-top: clamp(54px, 7vh, 102px);
}

.works-redox-copy ul {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 0;
  margin: 0;
  list-style: none;
}

.works-redox-copy li::before {
  content: "+";
  margin-right: 10px;
}

.works-redox-copy a:hover {
  color: var(--ember);
}

.works-redox-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.5;
}

.works-view-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 72px);
  flex-wrap: wrap;
  padding: clamp(36px, 5vw, 84px) var(--section-x-slim) 0;
  background: var(--white);
}

.works-view-row p {
  margin: 0;
  color: rgba(17, 17, 17, 0.56);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.42;
  text-transform: uppercase;
}

.works-view-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.8vw, 22px);
  flex-wrap: wrap;
}

.works-photo-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(16, 17, 20, 0.18);
  border-radius: 999px;
  color: rgba(16, 17, 20, 0.76);
  font-family: var(--font-wordmark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transition:
    border-color 260ms ease,
    background 260ms ease,
    color 260ms ease,
    transform 260ms ease;
}

.works-photo-link::after {
  content: "↘";
  margin-left: 10px;
  font-size: 1.05em;
  line-height: 1;
}

.works-photo-link:hover {
  border-color: #101114;
  background: #101114;
  color: #ffffff;
  transform: translateY(-1px);
}

.works-view-toggle {
  --toggle-x: 0%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(76px, 1fr));
  width: min(244px, 52vw);
  min-height: 46px;
  padding: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: #101114;
  isolation: isolate;
}

.works-view-toggle::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 3px auto 3px 3px;
  width: calc(50% - 3px);
  border-radius: inherit;
  background: var(--white);
  transform: translate3d(var(--toggle-x), 0, 0);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.works-view-toggle[data-view="list"] {
  --toggle-x: 100%;
}

.works-view-toggle button {
  position: relative;
  z-index: 1;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-family: var(--font-wordmark);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.works-view-toggle button.active {
  color: #101114;
}

.works-view-toggle button:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 4px;
}

.redox-portfolio-grid {
  counter-reset: redox-project;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(72px, 7vw, 140px) clamp(34px, 3.6vw, 72px);
  padding: clamp(56px, 7vw, 120px) var(--section-x-slim) var(--section-y-loose);
  background: var(--white);
}

.works-discretion-note {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(28px, 5vw, 90px);
  padding: 0 var(--section-x-slim) clamp(76px, 8vw, 132px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.works-discretion-note span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.works-discretion-note p {
  max-width: 760px;
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: clamp(0.96rem, 1.05vw, 1.12rem);
  line-height: 1.55;
}

.redox-project-card {
  counter-increment: redox-project;
  position: relative;
  color: inherit;
}

.redox-project-card:nth-child(even) {
  margin-top: clamp(54px, 7vh, 106px);
}

.redox-project-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1.24 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--night);
}

.redox-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.redox-project-card:hover img {
  transform: scale(1.045);
}

.redox-project-card figure span {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  font-size: 13px;
  line-height: 1;
}

.redox-project-card div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.32fr);
  gap: clamp(22px, 3vw, 48px);
  align-items: start;
  margin-top: 28px;
}

.redox-project-card h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.5vw, 3.2rem);
  line-height: 0.98;
}

.redox-project-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: 14px;
  line-height: 1.4;
}

body[data-works-view="list"] .redox-portfolio-grid {
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: clamp(36px, 4vw, 70px);
}

body[data-works-view="list"] .redox-project-card {
  display: grid;
  grid-template-columns: minmax(142px, 0.24fr) minmax(0, 1fr) minmax(34px, auto);
  gap: clamp(22px, 4vw, 72px);
  align-items: center;
  min-height: clamp(128px, 12vw, 188px);
  padding: clamp(18px, 2.3vw, 34px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  isolation: isolate;
}

body[data-works-view="list"] .redox-project-card:last-child {
  border-bottom: 1px solid var(--line);
}

body[data-works-view="list"] .redox-project-card:nth-child(even) {
  margin-top: 0;
}

body[data-works-view="list"] .redox-project-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #101114;
  transform: translate3d(0, 101%, 0);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-works-view="list"] .redox-project-card::after {
  content: "↗";
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(36px, 3.6vw, 54px);
  height: clamp(36px, 3.6vw, 54px);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-text);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-works-view="list"] .redox-project-card:hover {
  color: #fffaf2;
}

body[data-works-view="list"] .redox-project-card:hover::before {
  transform: translate3d(0, 0, 0);
}

body[data-works-view="list"] .redox-project-card:hover::after {
  background: var(--warm);
  color: #101114;
  transform: translate3d(4px, -4px, 0);
}

body[data-works-view="list"] .redox-project-card figure {
  z-index: 1;
  aspect-ratio: 1.42 / 1;
  border-radius: 0;
}

body[data-works-view="list"] .redox-project-card figure span {
  display: none;
}

body[data-works-view="list"] .redox-project-card div {
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.36fr);
  gap: clamp(22px, 3vw, 54px);
  align-items: center;
  margin-top: 0;
}

body[data-works-view="list"] .redox-project-card h2 {
  display: flex;
  align-items: baseline;
  gap: clamp(18px, 2.4vw, 42px);
  font-size: clamp(1.7rem, 3.1vw, 4.6rem);
}

body[data-works-view="list"] .redox-project-card h2::before {
  content: counter(redox-project, decimal-leading-zero);
  flex: 0 0 auto;
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

body[data-works-view="list"] .redox-project-card p {
  max-width: 340px;
}

body[data-works-view="list"] .redox-project-card:hover p {
  color: rgba(255, 250, 242, 0.72);
}

.redox-index-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(52px, 7vw, 132px);
  padding: var(--section-y-loose) var(--section-x-slim);
  background: var(--warm);
  border-top: 1px solid var(--line);
}

.redox-index-section.soft {
  background: var(--paper);
}

.redox-index-head {
  position: sticky;
  top: 88px;
  align-self: start;
}

.redox-index-head h2 {
  margin: 18px 0 0;
  font-size: clamp(2.4rem, 4.2vw, 5.2rem);
  line-height: 0.94;
}

.redox-index-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.redox-index-list a {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: 24px;
  align-items: center;
  min-height: 118px;
  border-bottom: 1px solid var(--line);
}

.redox-index-list span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
}

.redox-index-list strong {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2.35rem);
  font-weight: 400;
  line-height: 1;
}

.redox-index-list em {
  color: rgba(17, 17, 17, 0.58);
  font-style: normal;
  line-height: 1.4;
}

.redox-index-list a:hover strong {
  color: var(--ember);
}

.redox-awards-band {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr) auto;
  gap: clamp(38px, 5vw, 98px);
  align-items: center;
  padding: var(--section-y) var(--section-x-slim);
  color: var(--white);
  background: #090a0d;
}

.redox-awards-band h2 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(2rem, 4.15vw, 5.4rem);
  line-height: 1;
}

.redox-awards-band a {
  display: inline-grid;
  place-items: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  text-transform: uppercase;
}

.redox-service-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
  padding: clamp(36px, 5vw, 82px) var(--section-x-slim);
  border-top: 1px solid var(--line);
  background: var(--paper);
  counter-reset: work-link;
}

.redox-service-links a {
  counter-increment: work-link;
  position: relative;
  min-height: clamp(138px, 13vw, 196px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(28px, 3vw, 48px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.1vw, 2.8rem);
  line-height: 1;
}

.redox-service-links a::before {
  content: "0" counter(work-link);
  position: absolute;
  top: clamp(22px, 2vw, 32px);
  left: clamp(28px, 3vw, 48px);
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
}

.redox-service-links a::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(34px, 3vw, 46px);
  height: clamp(34px, 3vw, 46px);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-text);
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
}

.redox-service-links a:hover {
  background: var(--white);
  color: var(--ember);
}

.redox-service-links a:last-child {
  border-right: 0;
}

.redox-service-links a:hover {
  color: var(--ember);
}

.photography-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(7px, 0.7vw, 13px);
  min-height: 100svh;
  padding: clamp(74px, 8vw, 128px) clamp(8px, 1.2vw, 18px) clamp(8px, 1.2vw, 18px);
  background: var(--white);
}

.photo-tile {
  position: relative;
  grid-column: span 3;
  aspect-ratio: 4 / 3;
  display: block;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  background: #101114;
  isolation: isolate;
}

.photo-tile-hero {
  grid-column: span 3;
  aspect-ratio: 4 / 3;
}

.photo-tile-wide {
  grid-column: span 3;
  aspect-ratio: 4 / 3;
}

.photo-tile-tall {
  grid-column: span 3;
  grid-row: auto;
  aspect-ratio: 4 / 3;
}

.photo-tile-square {
  grid-column: span 3;
  aspect-ratio: 4 / 3;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-focus, center);
  transform: scale(1.0001);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-focus-center {
  --photo-focus: center;
}

.photo-focus-left {
  --photo-focus: 28% 50%;
}

.photo-focus-face {
  --photo-focus: 52% 18%;
}

.photo-tile:hover img {
  transform: scale(1.035);
}

html[data-theme="dark"] .works-redox-hero,
html[data-theme="dark"] .works-redox-intro,
html[data-theme="dark"] .works-view-row,
html[data-theme="dark"] .redox-portfolio-grid,
html[data-theme="dark"] .works-discretion-note,
html[data-theme="dark"] .redox-service-links,
html[data-theme="dark"] .photography-wall {
  background: var(--paper);
}

html[data-theme="dark"] .works-scroll-cue {
  color: rgba(247, 242, 232, 0.68);
}

html[data-theme="dark"] .works-scroll-cue:hover {
  color: var(--ember);
}

html[data-theme="dark"] .works-photo-link {
  border-color: rgba(247, 242, 232, 0.28);
  color: rgba(247, 242, 232, 0.78);
}

html[data-theme="dark"] .works-photo-link:hover {
  border-color: #f7f2e8;
  background: #f7f2e8;
  color: #101114;
}

html[data-theme="dark"] .redox-index-section {
  background: #121317;
}

html[data-theme="dark"] .redox-index-section.soft {
  background: #17181c;
}

html[data-theme="dark"] .works-redox-copy p,
html[data-theme="dark"] .works-view-row p,
html[data-theme="dark"] .works-discretion-note p,
html[data-theme="dark"] .redox-project-card p,
html[data-theme="dark"] .redox-index-list em {
  color: rgba(244, 240, 232, 0.62);
}

html[data-theme="dark"] .works-redox-copy a,
html[data-theme="dark"] .project-list a,
html[data-theme="dark"] .redox-project-card,
html[data-theme="dark"] .redox-index-list a,
html[data-theme="dark"] .redox-service-links a {
  color: var(--ink);
}

html[data-theme="dark"] .redox-service-links a {
  border-color: rgba(244, 240, 232, 0.18);
  background: rgba(244, 240, 232, 0.045);
}

html[data-theme="dark"] .works-redox-copy a:hover,
html[data-theme="dark"] .project-list a:hover,
html[data-theme="dark"] .redox-index-list a:hover strong,
html[data-theme="dark"] .redox-service-links a:hover {
  color: var(--ember);
}

html[data-theme="dark"] .redox-project-card figure span {
  background: rgba(244, 240, 232, 0.92);
  color: #101114;
}

html[data-theme="dark"] .works-view-toggle::before {
  background: var(--cream);
}

html[data-theme="dark"] .works-view-toggle button.active {
  color: #101114;
}

@media (max-width: 1120px) {
  .site-nav {
    --nav-panel-height: 194px;
  }

  .nav-panel {
    height: var(--nav-panel-height);
    min-height: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photography-wall {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .photo-tile,
  .photo-tile-square,
  .photo-tile-hero,
  .photo-tile-wide,
  .photo-tile-tall {
    grid-column: span 4;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .service-grid,
  .service-grid.hub-grid,
  .home-core-grid,
  .directory-grid,
  .proof-band,
  .service-proof-band,
  .service-skill-grid,
  .service-credential-grid,
  .text-grid,
  .seo-link-band,
  .redox-service-links,
  .page-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  .page-shell {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    transform: none;
    clip-path: none;
  }

  .footer-reveal-spacer {
    display: none;
    height: 0;
  }

  .site-footer {
    position: relative;
    z-index: 2;
    height: auto;
    min-height: auto;
    padding-top: 0;
    overflow: visible;
    pointer-events: auto;
  }

  body.js-ready .site-footer .footer-top,
  body.js-ready .site-footer .footer-locations article,
  body.js-ready .site-footer .footer-links nav,
  body.js-ready .site-footer .footer-bottom {
    opacity: 1;
    transform: none;
  }

  .nav-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: calc(100svh - 24px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav.is-open .nav-panel {
    padding-top: 0;
    padding-bottom: var(--menu-tab-height);
    padding-right: 0;
  }

  .menu-button {
    width: 126px;
    height: 54px;
  }

  .site-nav.is-open .menu-button {
    top: calc(var(--nav-gutter) + var(--nav-panel-height) - 1px);
    right: auto;
    left: 50%;
    width: 126px;
    height: 54px;
    border-radius: 0 0 24px 24px;
    transform: translateX(-50%);
  }

  .hero-sequence {
    min-height: 100svh;
    height: 100svh;
  }

  .hero-brand {
    top: clamp(62px, 10vh, 92px);
    gap: 12px;
  }

  .hero-sticky h1 {
    width: min(92vw, 780px);
    font-size: clamp(3.2rem, 10.4vw, 6.2rem);
    line-height: 0.92;
    transform: translateY(clamp(18px, 3.8vh, 44px));
  }

  .hero-claim {
    top: clamp(128px, 18vh, 178px);
  }

  .hero-note {
    left: 24px;
    right: 24px;
    bottom: 76px;
    max-width: none;
  }

  .project-depth {
    grid-template-columns: 1fr;
  }

  .project-depth-head {
    position: static;
  }

  .hero-caption {
    right: 24px;
    bottom: 28px;
  }

  .intro-block {
    min-height: 76vh;
    align-items: flex-start;
    padding-top: 18vh;
  }

  .intro-block p {
    font-size: clamp(2.25rem, 9vw, 4.6rem);
  }

  .overview-band,
  .intro-editorial,
  .home-core-system header,
  .expertise-slide,
  .about-head,
  .about-overview,
  .about-status-split,
  .about-status-split dl div,
  .about-ledger header,
  .about-ledger-list article,
  .about-education-grid,
  .about-brand-ledger header,
  .about-brand-ledger article,
  .about-skill-split,
  .about-skill-columns,
  .about-values-eyebrow,
  .about-values-lead,
  .about-benefit-list article,
  .about-awards-ledger header,
  .about-awards-ledger article,
  .bio-grid,
  .timeline-grid,
  .timeline-grid.page-timeline,
  .service-hub,
  .service-about-intro,
  .service-about-copy,
  .service-redox-intro,
  .service-discipline-card,
  .service-discipline-details,
  .service-discipline-meta,
  .service-skill-system header,
  .service-awards-head,
  .service-awards-list article,
  .service-approach header,
  .service-approach-grid,
  .services-head,
  .process-row,
  .process-row.multi,
  .equipment-line,
  .copy-band,
  .project-section > header,
  .project-grid,
  .work-card.large,
  .split-showcase,
  .contact-grid,
  .project-briefing,
  .faq-intro,
  .faq-item,
  .works-redox-intro,
  .works-redox-copy,
  .works-discretion-note,
  .redox-portfolio-grid,
  .redox-index-section,
  .redox-index-list a,
  .redox-awards-band,
  .footer-locations,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .overview-band article {
    min-height: 46vh;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .overview-band article:last-child {
    border-bottom: 0;
  }

  .section-kicker {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .brush-feature {
    width: calc(100vw - 48px);
  }

  .brush-feature figure {
    aspect-ratio: 4 / 5;
  }

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

  .project-list li {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .expertise-copy {
    min-height: 58vh;
    gap: 12vh;
    padding: 18vh 6vw 7vh;
  }

  .expertise-copy p {
    font-size: clamp(2.65rem, 10vw, 4.8rem);
  }

  .expertise-visual {
    min-height: 58vh;
  }

  .about-head p,
  .services-head p {
    grid-column: auto;
  }

  .values-row {
    grid-template-columns: 1fr;
  }

  .values-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .values-row span:last-child {
    border-bottom: 0;
  }

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

  .works-redox-hero {
    min-height: 92svh;
    padding-top: clamp(112px, 14vh, 150px);
    padding-bottom: clamp(48px, 8vh, 78px);
  }

  .works-redox-hero h1 {
    font-size: clamp(4.8rem, 24vw, 11.4rem);
    line-height: 0.76;
  }

  .works-scroll-cue {
    gap: 12px;
    font-size: 0.74rem;
  }

  .works-scroll-cue i {
    height: 34px;
  }

  .works-view-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .works-view-actions {
    width: 100%;
    justify-content: space-between;
  }

  .redox-project-card:nth-child(even) {
    margin-top: 0;
  }

  .redox-index-head {
    position: static;
  }

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

  .directory-card,
  .directory-card.feature-card,
  .service-hub > a,
  .work-card.large {
    grid-column: auto;
  }

  .service-discipline-card {
    grid-template-areas:
      "index main"
      "details details"
      "meta meta";
    grid-template-columns: minmax(70px, 0.18fr) minmax(0, 1fr);
    padding: clamp(34px, 6vw, 64px);
  }

  .service-discipline-details {
    max-width: 920px;
  }

  .service-proof-band article {
    min-height: 260px;
  }

  .service-credential-grid article {
    border-bottom: 1px solid var(--line);
  }

  .service-credential-grid article:nth-child(2n) {
    border-right: 0;
  }

  .service-credential-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .about-status-split {
    min-height: auto;
  }

  .about-status-split figure {
    min-height: 420px;
  }

  .about-overview {
    gap: 34px;
  }

  .about-giant-word {
    margin-bottom: 34px;
    font-size: clamp(5.1rem, 22vw, 10rem);
  }

  .about-ledger-count,
  .about-award-count {
    margin-top: 4px;
  }

  .about-ledger-count strong,
  .about-award-count strong {
    font-size: clamp(3rem, 13vw, 5.2rem);
  }

  .about-dossier-facts {
    padding-top: 0;
  }

  .about-dossier-facts dl {
    margin-top: 28px;
  }

  .about-specialty-list li {
    font-size: clamp(1.85rem, 8.6vw, 3.4rem);
  }

  .about-awards-ledger h3 {
    font-size: clamp(1.4rem, 6.4vw, 2.55rem);
  }

  .about-brand-ledger article p {
    font-size: clamp(1.65rem, 6vw, 3rem);
  }

  .about-benefit-list article {
    align-items: start;
  }

  .about-benefit-list h3 {
    font-size: clamp(1.55rem, 7vw, 2.75rem);
  }

  .about-values-statement p {
    font-size: clamp(1.8rem, 7vw, 3.2rem);
  }

  .page-hero-copy {
    padding: 24vh 24px 10vh;
  }

  .home-directory,
  .project-section,
  .service-hub,
  .about-overview,
  .about-status-split > div,
  .about-ledger,
  .about-brand-ledger,
  .about-skill-split,
  .about-benefits,
  .about-awards-ledger,
  .capability-wall,
  .service-awards-ledger,
  .awards-band {
    padding-left: 24px;
    padding-right: 24px;
  }

  .split-showcase img {
    min-height: 380px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 82px;
  }

  .footer-locations article {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--footer-line);
  }

  .footer-locations article:last-child {
    border-bottom: 0;
  }

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

  .footer-bottom,
  .footer-bottom span:last-child {
    text-align: left;
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }
}

@media (min-width: 561px) and (max-width: 900px) {
  .page-shell {
    border-bottom-right-radius: var(--footer-radius);
    border-bottom-left-radius: var(--footer-radius);
    clip-path: inset(0 var(--footer-inset) 0 var(--footer-inset) round 0 0 var(--footer-radius) var(--footer-radius));
    transform: translate3d(0, var(--footer-shift), 0) scale(var(--footer-scale));
    transform-origin: center bottom;
    will-change: border-radius, clip-path, transform;
  }

  .footer-reveal-spacer {
    display: block;
    --footer-reveal-delay: clamp(150px, 20svh, 260px);
    height: calc(108svh + var(--footer-reveal-delay));
    min-height: 780px;
  }

  .site-footer {
    position: fixed;
    inset: auto 0 0;
    z-index: 1;
    height: 100svh;
    min-height: 0;
    padding-top: clamp(76px, 7svh, 112px);
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.js-ready .site-footer .footer-top,
  body.js-ready .site-footer .footer-locations article,
  body.js-ready .site-footer .footer-links nav,
  body.js-ready .site-footer .footer-bottom {
    opacity: var(--footer-content-opacity);
    transform: translate3d(0, var(--footer-content-y), 0);
    transition:
      opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@media (max-width: 560px) {
  .page-shell {
    transform: none;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    clip-path: none;
  }

  .footer-reveal-spacer {
    display: none;
  }

  .site-footer {
    padding-top: 0;
  }

  .loader-stage {
    padding: 74px 24px 76px;
  }

  .loader-quote {
    top: 50%;
    left: 24px;
    width: min(292px, calc(100vw - 48px));
  }

  .loader-quote strong {
    max-width: none;
    font-size: clamp(0.98rem, 4.1vw, 1.26rem);
  }

  .loader-section-label {
    right: 24px;
    bottom: 24px;
    left: 24px;
    justify-items: start;
    max-width: calc(100vw - 48px);
    text-align: left;
    transform-origin: left bottom;
  }

  .loader-section-label strong {
    font-size: 0.72rem;
    line-height: 1;
  }

  .photography-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 68px 6px 6px;
  }

  .photo-tile,
  .photo-tile-square,
  .photo-tile-tall,
  .photo-tile-hero,
  .photo-tile-wide {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .site-mark-glyph {
    width: 30px;
  }

  .site-mark-wordmark {
    display: grid;
    font-size: 0.72rem;
    line-height: 0.9;
  }

  .works-view-row {
    gap: 22px;
  }

  .works-view-actions {
    justify-content: flex-start;
  }

  .works-view-toggle,
  .works-photo-link {
    width: 100%;
  }

  .works-photo-link {
    justify-content: center;
  }

  body.js-ready .site-footer .footer-top,
  body.js-ready .site-footer .footer-locations article,
  body.js-ready .site-footer .footer-links nav,
  body.js-ready .site-footer .footer-bottom {
    opacity: 1;
    transform: none;
  }

  .nav-panel {
    grid-template-columns: 1fr;
  }

  .site-nav.is-open .nav-panel {
    padding-top: 70px;
  }

  .theme-toggle {
    top: 10px;
    right: 12px;
    min-width: 86px;
    height: 30px;
    padding: 0 10px 0 12px;
    gap: 8px;
  }

  .theme-toggle-text {
    font-size: 11px;
  }

  .theme-toggle-aperture {
    width: 16px;
    height: 16px;
  }

  .nav-talk-link {
    top: 10px;
    right: 112px;
    min-height: 30px;
    padding: 0 12px;
    font-size: 10px;
  }

  .nav-talk-link::after {
    width: auto;
    height: auto;
  }

  .page-hero {
    min-height: 88svh;
  }

  .page-hero-image {
    object-position: center;
  }

  .page-hero-copy h1 {
    font-size: clamp(3.1rem, 15vw, 5.7rem);
  }

  .project-depth-grid article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .intro-editorial h2,
  .home-core-system h2 {
    font-size: clamp(3rem, 14vw, 5.7rem);
  }

  .service-about-hero h1 {
    font-size: clamp(4.5rem, 22vw, 8rem);
  }

  .directory-grid,
  .proof-band,
  .home-core-grid,
  .service-proof-band,
  .service-skill-grid,
  .service-credential-grid,
  .text-grid,
  .text-grid.compact,
  .service-grid.hub-grid,
  .seo-link-band,
  .redox-service-links,
  .awards-list,
  .page-values {
    grid-template-columns: 1fr;
  }

  .works-redox-hero,
  .works-redox-intro,
  .works-view-row,
  .redox-portfolio-grid,
  .redox-index-section,
  .redox-awards-band,
  .intro-editorial,
  .home-core-system,
  .service-about-hero,
  .service-about-intro,
  .service-about-strip,
  .about-image-strip,
  .service-redox-intro,
  .service-proficiency,
  .service-skill-system,
  .service-awards-ledger,
  .service-approach,
  .service-big-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .about-image-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-about-strip figure:nth-child(2),
  .service-about-strip figure:nth-child(4),
  .about-image-strip figure:nth-child(2) {
    transform: none;
  }

  .service-about-strip figure:last-child {
    grid-column: 1 / -1;
  }

  .service-about-strip,
  .service-approach-grid,
  .service-credential-grid {
    grid-template-columns: 1fr;
  }

  .service-credential-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-credential-grid article:last-child {
    border-bottom: 0;
  }

  .service-about-strip figure:last-child {
    grid-column: auto;
  }

  .service-about-intro h2,
  .service-redox-intro h2,
  .intro-editorial h2,
  .home-core-system h2,
  .service-skill-system h2,
  .service-approach h2,
  .service-big-cta h2 {
    font-size: clamp(3rem, 14vw, 5.7rem);
  }

  .service-discipline-card {
    grid-template-areas:
      "index"
      "main"
      "details"
      "meta";
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .service-discipline-details,
  .service-discipline-meta {
    grid-template-columns: 1fr;
  }

  .service-discipline-meta a {
    width: 100%;
  }

  .service-discipline-main h2 {
    font-size: clamp(2.35rem, 12vw, 4.8rem);
  }

  .redox-project-card div {
    grid-template-columns: 1fr;
  }

  body[data-works-view="list"] .redox-project-card {
    grid-template-columns: minmax(96px, 0.22fr) minmax(0, 1fr) minmax(34px, auto);
    gap: 18px;
  }

  body[data-works-view="list"] .redox-project-card div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .redox-project-card figure span {
    top: 16px;
    left: 16px;
    min-height: 40px;
  }

  .redox-index-list a {
    gap: 10px;
    padding: 22px 0;
  }

  .seo-link-band:not(:has(article)),
  .redox-service-links {
    grid-template-columns: 1fr;
  }

  .works-view-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .works-view-toggle {
    width: min(100%, 244px);
  }

  body[data-works-view="list"] .redox-project-card {
    grid-template-columns: 1fr auto;
  }

  body[data-works-view="list"] .redox-project-card figure {
    display: none;
  }

  body[data-works-view="list"] .redox-project-card h2 {
    flex-direction: column;
    gap: 10px;
  }

  .directory-card,
  .proof-card,
  .text-grid article,
  .text-grid .text-tile,
  .service-card,
  .seo-link-band article,
  .contact-card,
  .briefing-panel,
  .briefing-summary {
    min-height: auto;
  }

  .choice-grid,
  .choice-grid.compact-choice,
  .form-duo {
    grid-template-columns: 1fr;
  }

  .nav-item {
    padding: 15px 12px;
  }

  .hero-brand {
    flex-wrap: wrap;
    justify-content: center;
    width: 82vw;
    text-align: center;
    top: clamp(58px, 9vh, 78px);
  }

  .hero-sticky h1 {
    width: min(90vw, 560px);
    font-size: clamp(2.45rem, 10.8vw, 4rem);
    line-height: 0.94;
    transform: translateY(clamp(20px, 4.4vh, 46px));
  }

  .hero-claim {
    top: clamp(118px, 17vh, 152px);
    min-height: 30px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero-caption,
  .hero-note {
    font-size: 11px;
  }

  .about-section,
  .services-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .timeline-grid li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mark-frame,
  .mark-aperture,
  .mark-bars {
    transform: translate(-50%, -50%) scale(0.78);
  }

  .social-line {
    justify-content: flex-start;
  }

  .footer-mark {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-links nav {
    min-height: auto;
  }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    max-height: calc(100svh - 24px);
    overflow: auto;
    padding: 18px;
  }

  .cookie-consent h2 {
    max-width: 10ch;
    font-size: clamp(2.35rem, 14vw, 3.8rem);
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions button,
  .cookie-consent-save {
    width: 100%;
  }

  .cookie-consent-option {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }
}

.page-shell h1,
.page-shell h2,
.page-shell h3,
.site-footer h2,
.site-footer h3 {
  font-family: var(--font-wordmark);
}

.hero-sticky h1 {
  font-family: var(--font-display);
  font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
  }

  .site-loader,
  .loader-quote,
  .loader-section-label,
  .loader-mark,
  .loader-glyph-stack,
  .loader-glyph,
  .loader-glyph-outline path,
  .loader-glyph-fill,
  .loader-curtain,
  .loader-noise,
  .theme-toggle,
  .theme-toggle-aperture,
  .theme-toggle-aperture::after,
  .theme-toggle-aperture i {
    transition: none;
  }

  .site-loader.is-hidden {
    opacity: 0;
    transform: none;
  }

  .cinematic-cta-track {
    animation: none;
  }

  .page-shell {
    transform: none;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    clip-path: none;
  }

  body.js-ready .site-footer,
  body.js-ready .site-footer .footer-top,
  body.js-ready .site-footer .footer-locations article,
  body.js-ready .site-footer .footer-links nav,
  body.js-ready .site-footer .footer-bottom {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

html[data-theme="light"] .nav-talk-link,
html:not([data-theme]) .nav-talk-link {
  border-color: rgba(17, 17, 17, 0.2) !important;
  background: #111111 !important;
  color: #ffffff !important;
}

html[data-theme="light"] .nav-talk-link:hover,
html[data-theme="light"] .nav-talk-link:focus-visible,
html:not([data-theme]) .nav-talk-link:hover,
html:not([data-theme]) .nav-talk-link:focus-visible,
.nav-talk-link:hover,
.nav-talk-link:focus-visible {
  border-color: var(--ember) !important;
  background: var(--ember) !important;
  color: #ffffff !important;
}

html[data-theme="dark"] .nav-talk-link {
  border-color: rgba(244, 240, 232, 0.72) !important;
  background: #f4f0e8 !important;
  color: #101114 !important;
}

html[data-theme="dark"] .nav-talk-link:hover,
html[data-theme="dark"] .nav-talk-link:focus-visible {
  border-color: var(--ember) !important;
  background: var(--ember) !important;
  color: #ffffff !important;
}

.nav-talk-link .nav-talk-label,
.nav-talk-link .nav-talk-track,
.nav-talk-link .nav-talk-track span,
.nav-talk-link::after {
  color: inherit !important;
}

.nav-talk-link:hover .nav-talk-label,
.nav-talk-link:hover .nav-talk-track,
.nav-talk-link:hover .nav-talk-track span,
.nav-talk-link:focus-visible .nav-talk-label,
.nav-talk-link:focus-visible .nav-talk-track,
.nav-talk-link:focus-visible .nav-talk-track span,
.nav-talk-link:hover::after,
.nav-talk-link:focus-visible::after {
  color: #ffffff !important;
  opacity: 1 !important;
}

.nav-talk-link {
  --nav-talk-bg: #111111;
  --nav-talk-fg: #ffffff;
  --nav-talk-border: rgba(17, 17, 17, 0.2);
  border-color: var(--nav-talk-border) !important;
  background: var(--nav-talk-bg) !important;
  color: var(--nav-talk-fg) !important;
}

html[data-theme="light"] .nav-talk-link,
html:not([data-theme]) .nav-talk-link {
  --nav-talk-bg: #111111 !important;
  --nav-talk-fg: #ffffff !important;
  --nav-talk-border: rgba(17, 17, 17, 0.2) !important;
}

html[data-theme="dark"] .nav-talk-link {
  --nav-talk-bg: #f4f0e8 !important;
  --nav-talk-fg: #101114 !important;
  --nav-talk-border: rgba(244, 240, 232, 0.72) !important;
}

.nav-talk-link:hover,
.nav-talk-link:focus-visible,
html[data-theme="dark"] .nav-talk-link:hover,
html[data-theme="dark"] .nav-talk-link:focus-visible {
  --nav-talk-bg: var(--ember) !important;
  --nav-talk-fg: #ffffff !important;
  --nav-talk-border: var(--ember) !important;
}

.works-redox-intro > span,
.works-view-row p,
.redox-project-card figure span,
.redox-project-card p,
.about-editorial-kicker span,
.about-manuscript aside span,
.about-story-panel span,
.about-profile-index header span,
.about-profile-index time,
.about-exhibitions header span,
.about-exhibition-list time,
.about-cinematic-break figcaption span,
.about-brand-radar header > span,
.about-brand-matrix article > span,
.about-capability-chapter > div > span,
.about-social-copy span,
.about-principles-head span,
.about-principles-head strong,
.about-principles summary span,
.about-awards-edit header span,
.about-awards-list time,
.service-about-intro > span,
.service-discipline-index span,
.service-discipline-details h3,
.service-discipline-meta span,
.service-skill-system header > span,
.service-credential-grid article > span,
.service-awards-head > span,
.service-awards-list article > span,
.footer-locations article > span,
.footer-links h3 {
  font-family: var(--font-wordmark);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.redox-project-card h2,
.about-profile-index h3,
.about-exhibition-list h3,
.about-capability-lists h3,
.about-awards-list h3,
.service-skill-grid h3,
.service-credential-grid h3,
.service-awards-list h3 {
  font-family: var(--font-wordmark);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.about-profile-index h3 {
  font-size: clamp(1.04rem, 1.42vw, 1.24rem);
  overflow-wrap: anywhere;
}

.nav-panel {
  background: var(--paper);
}

.nav-item {
  border-left: 0;
}

html[data-theme="dark"] .nav-panel,
html[data-theme="dark"] .menu-button,
html[data-theme="dark"] .site-nav.is-open .menu-button {
  background: #030304;
  color: #f7f2e8;
}

.site-nav::before {
  background:
    linear-gradient(var(--paper), var(--paper)),
    linear-gradient(var(--paper), var(--paper)),
    linear-gradient(var(--paper), var(--paper)),
    linear-gradient(var(--paper), var(--paper));
  background-repeat: no-repeat;
  background-size:
    var(--nav-gutter) 100%,
    var(--nav-gutter) 100%,
    100% var(--nav-gutter),
    100% var(--nav-gutter);
  background-position:
    calc(var(--nav-gutter) * -1) 0,
    calc(100% + var(--nav-gutter)) 0,
    0 calc(var(--nav-gutter) * -1),
    0 calc(100% + var(--nav-gutter));
  clip-path: none;
  opacity: 1;
  transform: none;
  transition: background-position 1080ms var(--menu-reveal-ease);
}

.site-nav.is-open::before {
  background-position:
    left top,
    right top,
    left top,
    left bottom;
  clip-path: none;
  opacity: 1;
  transform: none;
}

html[data-theme="dark"] .site-nav::before {
  background:
    linear-gradient(#030304, #030304),
    linear-gradient(#030304, #030304),
    linear-gradient(#030304, #030304),
    linear-gradient(#030304, #030304);
  background-repeat: no-repeat;
  background-size:
    var(--nav-gutter) 100%,
    var(--nav-gutter) 100%,
    100% var(--nav-gutter),
    100% var(--nav-gutter);
  background-position:
    calc(var(--nav-gutter) * -1) 0,
    calc(100% + var(--nav-gutter)) 0,
    0 calc(var(--nav-gutter) * -1),
    0 calc(100% + var(--nav-gutter));
  clip-path: none;
  opacity: 1;
  transform: none;
  transition: background-position 1080ms var(--menu-reveal-ease);
}

html[data-theme="dark"] .site-nav.is-open::before {
  background-position:
    left top,
    right top,
    left top,
    left bottom;
  clip-path: none;
  opacity: 1;
  transform: none;
}

.nav-panel {
  clip-path: none;
  box-shadow: none !important;
  transform: translate3d(0, calc(-100% - var(--nav-gutter) - 18px), 0);
  transition: transform 1080ms var(--menu-reveal-ease);
  will-change: transform;
}

.site-nav:not(.is-open) > .nav-panel {
  transform: translate3d(0, calc(-100% - var(--nav-gutter) - 18px), 0) !important;
}

.site-nav.is-open > .nav-panel {
  clip-path: none;
  transform: translate3d(0, 0, 0) !important;
}

.menu-button {
  top: 0;
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.site-nav:not(.is-open) > .menu-button {
  top: 0 !important;
}

.site-nav.is-open > .menu-button {
  top: calc(var(--nav-gutter) + var(--nav-panel-height) - 1px);
  background: var(--paper);
  box-shadow: none !important;
}

html[data-theme="dark"] .site-nav.is-open > .menu-button,
html[data-theme="dark"] .menu-button {
  background: #030304;
  border-color: rgba(247, 242, 232, 0.2);
  color: #f7f2e8;
}

html[data-theme="dark"] .nav-panel .nav-item {
  --nav-main: #f7f2e8;
  --nav-hover: #ff6b33;
  --nav-muted: rgba(247, 242, 232, 0.48);
}

html[data-theme="dark"] .nav-panel .nav-item::before {
  background: rgba(247, 242, 232, 0.08);
}

html[data-theme="dark"] .site-mark-link,
html[data-theme="dark"] body[data-page="works"] .site-mark-link,
html[data-theme="dark"] body[data-page="services"] .site-mark-link,
html[data-theme="dark"] body[data-page="about"] .site-mark-link,
html[data-theme="dark"] body[data-page="contact"] .site-mark-link,
html[data-theme="dark"] body[data-page="faq"] .site-mark-link,
html[data-theme="dark"] .site-nav.is-open .site-mark-link {
  color: #f7f2e8;
}

@media (max-width: 900px) {
  .site-nav {
    --nav-gutter: clamp(10px, 3.6vw, 24px);
    --nav-panel-height: min(420px, calc(100svh - 92px));
    --menu-tab-width: 126px;
    --menu-tab-height: 54px;
  }

  .nav-panel {
    height: var(--nav-panel-height);
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav.is-open > .nav-panel {
    padding-bottom: var(--menu-tab-height);
  }

  .site-nav:not(.is-open) > .nav-panel {
    transform: translate3d(0, calc(-100% - var(--nav-gutter) - 18px), 0) !important;
  }

  .site-nav.is-open > .nav-panel {
    transform: translate3d(0, 0, 0) !important;
  }

  .site-nav.is-open > .menu-button {
    top: calc(var(--nav-gutter) + var(--nav-panel-height) - 1px) !important;
    width: var(--menu-tab-width);
    height: var(--menu-tab-height);
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .site-nav {
    --nav-panel-height: clamp(118px, 13vw, 148px);
  }

  .nav-panel {
    height: var(--nav-panel-height);
    min-height: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
  }

  .nav-item {
    min-height: 0;
    padding: clamp(24px, 2.6vw, 34px) clamp(14px, 1.8vw, 24px) clamp(18px, 2vw, 28px);
  }

  .nav-item::before {
    left: clamp(14px, 1.8vw, 24px);
  }

  .nav-item span {
    font-size: clamp(1.32rem, 2.5vw, 2.05rem);
  }

  .nav-item strong {
    font-size: 10px;
    line-height: 1.2;
  }
}

@media (max-width: 560px) {
  .site-nav {
    --nav-gutter: 10px;
    --nav-panel-height: min(520px, calc(100svh - 78px));
    --menu-tab-width: 112px;
    --menu-tab-height: 50px;
  }

  .nav-panel {
    grid-template-columns: 1fr;
  }

  .nav-item {
    min-height: 88px;
    padding: 24px 24px 20px;
  }

  .site-nav.is-open > .nav-panel {
    padding-top: 0;
    padding-bottom: var(--menu-tab-height);
    transform: translate3d(0, 0, 0) !important;
  }

  .site-nav.is-open > .menu-button {
    top: calc(var(--nav-gutter) + var(--nav-panel-height) - 1px) !important;
  }
}

body .site-nav.is-open > .nav-panel {
  transform: translate3d(0, 0, 0) !important;
}

body .site-nav.is-open > .menu-button {
  top: calc(var(--nav-gutter) + var(--nav-panel-height) - 1px) !important;
}

html.is-brand-revealed .site-nav:not(.is-open) .site-mark-link {
  opacity: 1 !important;
  filter: blur(0) !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

html.is-brand-revealed .site-nav.is-open .site-mark-link {
  opacity: 0 !important;
  pointer-events: none;
  transform: translateY(-6px) !important;
}

body[data-live-projects="curated-four"] .redox-project-card:not([href="dj-bobo-evolut30n-tour.html"]):not([href="50-jahre-europa-park.html"]):not([href="voltron-nevera-tv-werbespot.html"]):not([href="phantom-der-oper-vr-coastiality.html"]) {
  display: none !important;
}

/* Awwwards submission pass: editorial rhythm, focused motion and stable mobile UI */
.scroll-text-reveal {
  --scroll-text-distance: clamp(20px, 2.4vw, 42px);
  --scroll-text-blur: 6px;
  transition-duration: 820ms, 520ms, 680ms, 820ms;
}

.scroll-text-reveal--strong {
  --scroll-text-distance: clamp(28px, 3.4vw, 62px);
  --scroll-text-blur: 8px;
}

html.menu-is-open,
html.menu-is-open body {
  height: 100% !important;
  overflow: hidden !important;
  overscroll-behavior: none;
}

body[data-page="home"] .page-shell {
  display: flex;
  flex-direction: column;
}

body[data-page="home"] .hero-sequence { order: 1; }
body[data-page="home"] .home-studio-intro { order: 2; }
body[data-page="home"] .alien-works { order: 3; }
body[data-page="home"] .home-client-scroll { order: 4; }
body[data-page="home"] .home-video-process { order: 5; }
body[data-page="home"] .home-service-showcase { order: 6; }
body[data-page="home"] .alien-process-about { order: 7; }
body[data-page="home"] .alien-final-cta,
body[data-page="home"] .cinematic-page-cta { order: 8; }

body[data-page="home"] .hero-sticky h1 {
  width: min(82vw, 1180px);
  max-width: 10.8ch;
  font-size: clamp(4rem, 7.2vw, 8.2rem);
  line-height: 0.88;
}

body[data-page="home"] .hero-sticky h1 span {
  max-width: 44ch;
  margin: 0.7rem auto 0;
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 0.9vw, 0.95rem);
  line-height: 1.25;
  text-transform: uppercase;
}

body[data-page="home"] .hero-claim {
  top: clamp(90px, 12vh, 126px);
  left: clamp(28px, 4.4vw, 72px);
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  transform: none;
}

body[data-page="home"] .hero-note {
  max-width: 340px;
}

body[data-page="home"] .home-studio-intro {
  min-height: clamp(440px, 62svh, 680px);
}

body[data-page="home"] .home-studio-intro h2 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 6vw, 7rem);
}

body[data-page="home"] .alien-word-rails {
  opacity: 0.36;
}

body[data-page="home"] .alien-works {
  padding-top: clamp(90px, 10vw, 170px);
  padding-bottom: clamp(100px, 12vw, 190px);
}

body[data-page="home"] .alien-works .alien-section-head h2 {
  max-width: 11ch;
  font-size: clamp(3.8rem, 7vw, 8.4rem);
  line-height: 0.9;
}

body[data-page="home"] .alien-work-grid figure {
  border-radius: 0;
  aspect-ratio: 16 / 10;
}

body[data-page="home"] .alien-work-grid a:first-child {
  grid-column: 1 / -1;
}

body[data-page="home"] .alien-work-grid a:first-child figure {
  aspect-ratio: 16 / 7;
}

body[data-page="home"] .home-client-scroll {
  min-height: 150svh;
}

body[data-page="home"] .home-client-track li {
  width: clamp(230px, 18vw, 330px);
}

body[data-page="home"] .home-video-process {
  min-height: 165svh;
}

body[data-page="home"] .home-video-process-copy h2 {
  font-size: clamp(4rem, 9vw, 10rem);
}

body[data-page="home"] .home-service-showcase {
  padding-top: clamp(90px, 10vw, 160px);
  padding-bottom: clamp(100px, 11vw, 180px);
}

body[data-page="home"] .home-service-showcase .alien-service-columns {
  display: none;
}

body[data-page="home"] .alien-process-about {
  min-height: auto;
  padding-top: clamp(100px, 11vw, 180px);
  padding-bottom: clamp(100px, 11vw, 180px);
}

.works-redox-hero {
  min-height: 82svh;
  height: 82svh;
}

.works-redox-hero h1 {
  font-size: clamp(6rem, 20vw, 18rem);
}

.works-redox-hero > p {
  position: absolute;
  left: clamp(24px, 4vw, 64px);
  bottom: clamp(32px, 5vh, 68px);
  max-width: 420px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 0.9vw, 0.92rem);
  line-height: 1.5;
  text-transform: uppercase;
}

.redox-portfolio-grid:not(.is-archive-open) .redox-project-card.is-archive {
  display: none;
}

.redox-portfolio-grid .redox-project-card.is-signature:first-child {
  grid-column: 1 / -1;
}

.redox-portfolio-grid .redox-project-card.is-signature:first-child figure {
  aspect-ratio: 16 / 7;
}

.redox-portfolio-grid .redox-project-card.is-signature figure {
  border-radius: 0;
}

.works-archive-toggle {
  width: calc(100% - clamp(40px, 8vw, 120px));
  min-height: 76px;
  margin: clamp(70px, 8vw, 120px) clamp(20px, 4vw, 60px) clamp(110px, 12vw, 180px);
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  cursor: pointer;
}

.works-archive-toggle:hover,
.works-archive-toggle:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.photo-editorial-intro {
  min-height: 78svh;
  display: grid;
  align-content: end;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.35fr);
  gap: clamp(36px, 7vw, 120px);
  padding: clamp(130px, 15vh, 200px) clamp(24px, 4vw, 64px) clamp(72px, 8vw, 120px);
  background: var(--white);
}

.photo-editorial-intro > span {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.photo-editorial-intro h1 {
  max-width: 8ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 12rem);
  font-weight: 400;
  line-height: 0.84;
}

.photo-editorial-intro p {
  align-self: end;
  max-width: 460px;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.55;
}

.photography-wall {
  grid-auto-flow: row;
  grid-auto-rows: clamp(300px, 33vw, 540px);
  gap: clamp(8px, 0.9vw, 16px);
  padding: clamp(8px, 1.2vw, 18px);
}

.photography-wall .photo-tile {
  grid-column: span 6;
  height: 100%;
  aspect-ratio: auto;
}

.photography-wall .photo-tile:nth-child(1) { grid-column: span 7; }
.photography-wall .photo-tile:nth-child(2) { grid-column: span 5; }
.photography-wall .photo-tile:nth-child(3) { grid-column: span 4; }
.photography-wall .photo-tile:nth-child(4) { grid-column: span 8; }
.photography-wall .photo-tile:nth-child(5) { grid-column: 1 / -1; }
.photography-wall .photo-tile:nth-child(6),
.photography-wall .photo-tile:nth-child(7),
.photography-wall .photo-tile:nth-child(8) { grid-column: span 4; }
.photography-wall .photo-tile:nth-child(9) { grid-column: span 7; }
.photography-wall .photo-tile:nth-child(10) { grid-column: span 5; }
.photography-wall .photo-tile:nth-child(11) { grid-column: 1 / -1; }
.photography-wall .photo-tile:nth-child(12),
.photography-wall .photo-tile:nth-child(13) { grid-column: span 6; }
.photography-wall .photo-tile:nth-child(14),
.photography-wall .photo-tile:nth-child(15),
.photography-wall .photo-tile:nth-child(16) { grid-column: span 4; }

.photography-wall .photo-tile,
.photography-wall .photo-tile img {
  border-radius: 0;
}

body[data-project-slug] .project-depth,
body[data-project-slug] .seo-link-band {
  display: none;
}

body[data-project-slug] .project-copy {
  padding-top: clamp(100px, 11vw, 180px);
  padding-bottom: clamp(100px, 11vw, 180px);
}

body[data-project-slug] .project-copy h2 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 5.6vw, 6.6rem);
  line-height: 0.92;
}

body[data-project-slug] .project-facts.text-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-project-slug] .project-video-showcase {
  padding-top: clamp(90px, 10vw, 160px);
  padding-bottom: clamp(90px, 10vw, 160px);
}

body[data-project-slug] .project-video-grid {
  max-width: 1080px;
  margin-inline: auto;
}

body[data-project-slug] .project-video-frame {
  aspect-ratio: 16 / 9;
}

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

.briefing-details summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  list-style: none;
}

.briefing-details summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.briefing-details[open] summary::after {
  content: "−";
}

.briefing-details > fieldset:first-of-type {
  margin-top: 26px;
}

body[data-page="about"] .about-manuscript,
body[data-page="about"] .about-story-panel,
body[data-page="about"] .about-profile-index,
body[data-page="about"] .about-brand-radar,
body[data-page="about"] .about-capability-chapter,
body[data-page="about"] .about-social-radar,
body[data-page="about"] .about-principles,
body[data-page="about"] .about-awards-edit,
body[data-page="about"] .about-exhibitions,
body[data-page="services"] .service-about-intro,
body[data-page="services"] .service-proficiency,
body[data-page="services"] .about-brand-radar,
body[data-page="services"] .service-proof-band,
body[data-page="services"] .service-approach,
body[data-page="services"] .service-awards-teaser {
  padding-top: clamp(80px, 8vw, 140px);
  padding-bottom: clamp(80px, 8vw, 140px);
}

@media (max-width: 900px) {
  .site-nav {
    --nav-gutter: 0px;
    --nav-panel-height: 100svh;
  }

  .site-nav::before {
    display: none;
  }

  .nav-panel,
  .site-nav.is-open > .nav-panel {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100svh !important;
    min-height: 100svh;
    padding: 72px clamp(22px, 6vw, 46px) 28px !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(5, minmax(0, 1fr));
    overflow-y: auto;
  }

  .site-nav:not(.is-open) > .nav-panel {
    transform: translate3d(0, -100%, 0) !important;
  }

  .site-nav.is-open > .nav-panel {
    transform: translate3d(0, 0, 0) !important;
  }

  .nav-item {
    min-height: 0;
    padding: clamp(14px, 3vh, 28px) 0;
    border-top: 1px solid rgba(17, 17, 17, 0.12);
  }

  .nav-item::before {
    left: 0;
  }

  .nav-item span {
    font-size: clamp(2rem, 8vw, 3.8rem);
  }

  .site-nav.is-open > .menu-button,
  body .site-nav.is-open > .menu-button {
    top: 0 !important;
  }

  body[data-page="home"] .hero-sticky h1 {
    width: calc(100% - 36px);
    max-width: none;
    font-size: clamp(2.45rem, 10.6vw, 4.4rem);
    line-height: 0.9;
  }

  .works-redox-hero h1 {
    font-size: clamp(4.4rem, 22vw, 9.6rem);
    line-height: 0.8;
  }

  body[data-page="home"] .hero-claim {
    top: 88px;
    left: 22px;
    font-size: 0.62rem;
  }

  body[data-page="home"] .hero-caption {
    right: 22px;
    bottom: 24px;
    font-size: 0.7rem;
  }

  body[data-page="home"] .hero-note {
    left: 22px;
    bottom: 58px;
    max-width: 250px;
    font-size: 0.68rem;
  }

  body[data-page="home"] .home-studio-intro {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 110px;
  }

  body[data-page="home"] .home-studio-intro h2,
  body[data-page="home"] .alien-works .alien-section-head h2 {
    max-width: 10ch;
    font-size: clamp(3rem, 12vw, 5.4rem);
    overflow-wrap: normal;
  }

  body[data-page="home"] .alien-work-grid a:first-child {
    grid-column: auto;
  }

  body[data-page="home"] .alien-work-grid a:first-child figure,
  body[data-page="home"] .alien-work-grid figure {
    aspect-ratio: 4 / 3;
  }

  body[data-page="home"] .home-client-scroll {
    min-height: 135svh;
  }

  body[data-page="home"] .home-video-process {
    min-height: 150svh;
  }

  body[data-page="home"] .home-video-process-copy h2 {
    max-width: 8ch;
    font-size: clamp(3.8rem, 15vw, 6.4rem);
  }

  .works-redox-hero {
    min-height: 72svh;
    height: 72svh;
  }

  .redox-portfolio-grid .redox-project-card.is-signature:first-child {
    grid-column: auto;
  }

  .redox-portfolio-grid .redox-project-card.is-signature:first-child figure {
    aspect-ratio: 4 / 3;
  }

  .photo-editorial-intro {
    min-height: 74svh;
    grid-template-columns: 1fr;
    align-content: end;
    padding: 120px 22px 64px;
  }

  .photo-editorial-intro > span {
    grid-column: auto;
  }

  .photo-editorial-intro h1 {
    font-size: clamp(4rem, 18vw, 6.8rem);
  }

  .photography-wall {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    padding: 8px;
  }

  .photography-wall .photo-tile,
  .photography-wall .photo-tile:nth-child(n) {
    grid-column: 1;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .photography-wall .photo-tile.photo-tile-tall {
    aspect-ratio: 4 / 5;
  }

  body[data-project-slug] .project-facts.text-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .works-redox-hero h1 {
    font-size: clamp(5rem, 28vw, 8.5rem);
  }

  .works-redox-hero > p {
    max-width: 240px;
  }

  .photo-editorial-intro h1 {
    font-size: clamp(3.8rem, 20vw, 5.6rem);
  }
}
/* Services editorial reduction */
.service-lite-hero {
  min-height: 100svh;
  display: grid;
  align-content: center;
  place-items: center;
  gap: clamp(18px, 2.8vw, 38px);
  padding-top: clamp(128px, 15vh, 190px);
  padding-bottom: clamp(72px, 12vh, 132px);
}

.service-lite-hero h1 {
  max-width: calc(100vw - (var(--section-x-slim) * 2));
  font-size: clamp(3.9rem, calc((100vw - (var(--section-x-slim) * 2)) * 0.205), 27rem);
  line-height: 0.72;
}

.service-scroll-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(16, 17, 20, 0.64);
  font-family: var(--font-wordmark);
  font-size: clamp(0.74rem, 0.78vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 260ms ease,
    transform 320ms ease;
}

.service-scroll-cue i {
  position: relative;
  display: inline-block;
  width: 1px;
  height: 44px;
  background: currentColor;
  transform: translateY(2px);
  transform-origin: top center;
  opacity: 0.72;
  transition:
    height 320ms ease,
    opacity 260ms ease,
    transform 320ms ease;
}

.service-scroll-cue i::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: 0;
  width: 9px;
  height: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transform-origin: bottom right;
}

.service-scroll-cue:hover {
  color: var(--ember);
  transform: translateY(3px);
}

.service-scroll-cue:hover i {
  height: 54px;
  opacity: 1;
}

.service-lite-intro {
  padding-top: clamp(82px, 10vw, 150px);
  padding-bottom: clamp(78px, 9vw, 138px);
}

.service-lite-intro .service-about-copy {
  align-items: end;
}

.service-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vh, 50px);
}

.service-link-row a {
  display: inline-grid;
  place-items: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-link-row a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.service-visual-break {
  padding: 0 var(--section-x-slim) var(--section-y);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.service-visual-break figure {
  position: relative;
  min-height: clamp(520px, 76vh, 920px);
  margin: 0;
  overflow: hidden;
  background: #111;
}

.service-visual-break img,
.service-image-statement img,
.service-awards-teaser img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-visual-break img {
  object-position: center 54%;
}

.service-visual-break figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.service-visual-break figcaption {
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: clamp(22px, 4vw, 64px);
  left: clamp(22px, 4vw, 64px);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  color: rgba(255, 255, 255, 0.92);
}

.service-visual-break figcaption span,
.service-image-statement span,
.service-awards-teaser span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-visual-break figcaption strong {
  max-width: 620px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 5rem);
  font-weight: 400;
  line-height: 0.94;
  text-align: right;
}

.service-discipline-list--lite {
  padding-top: clamp(42px, 6vw, 90px);
  padding-bottom: clamp(42px, 6vw, 90px);
}

.service-discipline-list--lite .service-discipline-card {
  grid-template-columns: minmax(68px, 0.12fr) minmax(340px, 0.78fr) minmax(260px, 0.44fr) minmax(160px, 0.26fr);
  grid-template-areas: "index main details meta";
  gap: clamp(22px, 4vw, 72px);
  align-items: center;
  padding: clamp(38px, 5vw, 74px) 0;
}

.service-discipline-list--lite .service-discipline-index span {
  margin-top: 10px;
}

.service-discipline-list--lite .service-discipline-main h2 {
  max-width: 780px;
  font-size: clamp(2.25rem, 4.2vw, 6.4rem);
}

.service-discipline-list--lite .service-discipline-main p {
  max-width: 720px;
  margin-top: clamp(16px, 2vw, 30px);
}

.service-discipline-list--lite .service-discipline-details {
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-discipline-list--lite .service-discipline-details p {
  max-width: 360px;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.55;
  text-transform: uppercase;
}

.service-discipline-list--lite .service-discipline-details a {
  width: fit-content;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.service-discipline-list--lite .service-discipline-details a:hover {
  color: var(--ember);
}

.service-discipline-list--lite .service-discipline-meta {
  grid-template-columns: 1fr;
  gap: 18px;
  align-content: center;
  padding-top: 0;
  border-top: 0;
}

.service-discipline-list--lite .service-discipline-meta span {
  max-width: 230px;
  line-height: 1.45;
}

.service-discipline-list--lite .service-discipline-meta a {
  width: fit-content;
}

.service-image-statement,
.service-awards-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  min-height: clamp(620px, 82vh, 940px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-image-statement figure,
.service-awards-teaser figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.service-image-statement figure::after,
.service-awards-teaser figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.service-image-statement > div,
.service-awards-teaser > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-y-loose) var(--section-x-slim);
}

.service-image-statement h2,
.service-awards-teaser h2 {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: clamp(2.45rem, 4.8vw, 6.4rem);
  line-height: 0.94;
}

.service-image-statement p,
.service-awards-teaser p {
  max-width: 660px;
  margin: clamp(28px, 4vh, 52px) 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1.04rem, 1.24vw, 1.24rem);
  line-height: 1.62;
}

.services-brand-radar {
  padding-top: clamp(86px, 10vw, 154px);
  padding-bottom: clamp(82px, 10vw, 150px);
}

.services-brand-radar header {
  margin-bottom: clamp(38px, 5vw, 78px);
}

.services-brand-radar .about-brand-matrix article {
  min-height: clamp(180px, 15vw, 270px);
}

.services-brand-radar .about-brand-matrix p {
  margin-top: clamp(28px, 4vw, 62px);
  font-size: clamp(1rem, 1.18vw, 1.72rem);
}

.service-proof-band--lite {
  background: var(--white);
}

.service-proof-band--lite article {
  min-height: clamp(220px, 19vw, 340px);
}

.service-proof-band--lite span {
  font-size: clamp(2.65rem, 5vw, 6.8rem);
}

.service-proof-band--lite p {
  margin-top: clamp(28px, 5vh, 64px);
}

.service-approach--lite {
  background: var(--paper);
}

.service-approach--lite .service-approach-grid article {
  min-height: clamp(280px, 24vw, 420px);
}

.service-approach--lite .service-approach-grid h3 {
  font-size: clamp(1.85rem, 3vw, 4.05rem);
}

.service-awards-teaser {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  background: var(--white);
}

.service-awards-teaser figure {
  order: 2;
}

.service-awards-teaser > div {
  order: 1;
}

html[data-theme="dark"] .service-visual-break,
html[data-theme="dark"] .service-image-statement,
html[data-theme="dark"] .service-awards-teaser,
html[data-theme="dark"] .services-brand-radar {
  background: #101114;
  color: var(--cream);
}

html[data-theme="dark"] .service-link-row a {
  border-color: rgba(244, 240, 232, 0.34);
  color: var(--cream);
}

html[data-theme="dark"] .service-link-row a:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: #101114;
}

html[data-theme="dark"] .service-scroll-cue {
  color: rgba(244, 240, 232, 0.68);
}

html[data-theme="dark"] .service-scroll-cue:hover {
  color: var(--ember);
}

html[data-theme="dark"] .service-discipline-list--lite .service-discipline-details p,
html[data-theme="dark"] .service-image-statement p,
html[data-theme="dark"] .service-awards-teaser p {
  color: rgba(244, 240, 232, 0.68);
}

html[data-theme="dark"] .service-discipline-list--lite .service-discipline-details a {
  color: var(--cream);
}

html[data-theme="dark"] .service-proof-band--lite {
  background: #121317;
}

@media (max-width: 900px) {
  .service-discipline-list--lite .service-discipline-card {
    grid-template-columns: minmax(70px, 0.18fr) minmax(0, 1fr);
    grid-template-areas:
      "index main"
      "details details"
      "meta meta";
    align-items: start;
  }

  .service-discipline-list--lite .service-discipline-meta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .service-image-statement,
  .service-awards-teaser {
    grid-template-columns: 1fr;
  }

  .service-awards-teaser figure {
    order: 1;
  }

  .service-awards-teaser > div {
    order: 2;
  }

  .service-visual-break figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-visual-break figcaption strong {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .service-lite-hero {
    min-height: 92svh;
    padding-top: clamp(112px, 14vh, 150px);
    padding-bottom: clamp(54px, 9vh, 86px);
  }

  .service-lite-hero h1 {
    max-width: calc(100vw - 48px);
    font-size: clamp(3.75rem, calc((100vw - 48px) * 0.195), 8rem);
    line-height: 0.76;
  }

  .service-scroll-cue {
    gap: 12px;
    font-size: 0.74rem;
  }

  .service-scroll-cue i {
    height: 34px;
  }

  .service-visual-break,
  .service-image-statement > div,
  .service-awards-teaser > div {
    padding-right: 24px;
    padding-left: 24px;
  }

  .service-visual-break figure,
  .service-image-statement figure,
  .service-awards-teaser figure {
    min-height: 420px;
  }

  .service-link-row a,
  .service-discipline-list--lite .service-discipline-meta a {
    width: 100%;
  }

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

.works-redox-hero h1 {
  line-height: 0.86;
}

.works-redox-hero h1,
.service-lite-hero h1,
.works-redox-intro h2,
.redox-project-card h2,
body[data-works-view="list"] .redox-project-card h2,
.redox-index-head h2,
.redox-awards-band h2,
.service-about-intro h2,
.service-discipline-list--lite .service-discipline-main h2,
.service-image-statement h2,
.service-awards-teaser h2,
.service-approach--lite h2,
.service-big-cta h2 {
  overflow: visible;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}

.service-lite-hero h1 {
  overflow: visible;
  line-height: 1.04;
  padding-top: 0.12em;
  padding-bottom: 0.14em;
  margin-top: -0.12em;
  margin-bottom: -0.14em;
}

@media (min-width: 700px) and (max-width: 900px) {
  .hero-brand {
    top: clamp(58px, 9vh, 86px);
  }

  .hero-sticky h1 {
    width: min(90vw, 820px);
    font-size: clamp(3.6rem, 9.6vw, 5.9rem);
    line-height: 0.92;
    transform: translateY(clamp(20px, 4vh, 46px));
  }

  .hero-claim {
    top: clamp(132px, 18vh, 174px);
  }

  .hero-note {
    bottom: 72px;
  }
}

.project-hero .page-hero-copy {
  padding-bottom: clamp(96px, 14vh, 172px);
}

.project-copy {
  padding-top: clamp(120px, 16vh, 196px);
  padding-bottom: clamp(120px, 16vh, 196px);
}

.project-facts.text-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-facts.text-grid article {
  min-height: clamp(300px, 32vw, 430px);
  padding: clamp(42px, 4vw, 68px);
}

.project-video-showcase {
  row-gap: clamp(50px, 6vw, 96px);
}

.project-video-grid {
  max-width: 1600px;
}

.project-video-card {
  width: min(100%, 680px);
}

@media (max-width: 900px) {
  .project-facts.text-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-video-showcase > header,
  .project-depth {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .project-copy,
  .project-video-showcase,
  .project-depth {
    padding-top: clamp(82px, 12vh, 116px);
    padding-bottom: clamp(82px, 12vh, 116px);
  }

  .project-facts.text-grid {
    grid-template-columns: 1fr;
  }

  .project-facts.text-grid article {
    min-height: 260px;
    padding: 34px 24px;
  }
}

/* Automatic logo contrast on mixed light/dark surfaces */
.site-nav:not(.is-open) .site-mark-link {
  color: #ffffff !important;
  mix-blend-mode: difference;
}

.site-nav:not(.is-open) .site-mark-glyph,
.site-nav:not(.is-open) .site-mark-wordmark {
  filter: none;
}

.site-nav:not(.is-open) .site-mark-link:hover,
.site-nav:not(.is-open) .site-mark-link:focus-visible {
  color: #ffffff !important;
  filter: none;
}

.local-proof {
  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr);
  margin-top: clamp(70px, 8vw, 130px);
  border-top: 1px solid var(--line);
}

.local-proof > span,
.local-proof > a,
.local-proof > div {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.local-proof > span {
  grid-row: 1 / span 5;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.local-proof > a,
.local-proof > div {
  grid-column: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  color: inherit;
}

.local-proof > div {
  grid-column: 2;
}

.local-proof strong {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.7rem);
  font-weight: 400;
}

.local-proof em {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-style: normal;
  text-transform: uppercase;
}

.local-proof > a:hover strong,
.local-proof > a:focus-visible strong {
  color: var(--ember);
}

body[data-project-slug] .project-facts.text-grid article {
  min-height: clamp(220px, 24vw, 320px);
  padding: clamp(34px, 3.4vw, 52px);
}

@media (max-width: 700px) {
  .local-proof {
    grid-template-columns: 1fr;
  }

  .local-proof > span,
  .local-proof > a,
  .local-proof > div {
    grid-column: 1;
    grid-row: auto;
  }

  .local-proof > a,
  .local-proof > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .works-redox-hero h1 {
    font-size: clamp(4.4rem, 22vw, 7.5rem);
    line-height: 0.8;
  }
}

/* About portrait brush hero */
.about-brush-hero {
  position: relative;
  display: block;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  color: #f7f4ee;
  background: #050606;
  border-bottom: 0;
  cursor: crosshair;
}

.about-brush-hero .about-brush-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  pointer-events: none;
}

.about-brush-base {
  z-index: 0;
  filter: saturate(0.92) contrast(1.06) brightness(0.84);
}

.about-brush-shade {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 5, 6, 0.68) 0%, rgba(4, 5, 6, 0.22) 44%, rgba(4, 5, 6, 0.48) 100%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.42) 0%, transparent 38%, rgba(4, 5, 6, 0.82) 100%);
}

.about-brush-hero .about-name-stack {
  position: absolute;
  z-index: 2;
  top: 45%;
  left: var(--section-x-slim);
  display: flex;
  align-items: baseline;
  gap: 0.22em;
  width: calc(100% - (var(--section-x-slim) * 2));
  color: rgba(247, 244, 238, 0.62);
  font-size: clamp(5.8rem, 9.4vw, 11.8rem);
  line-height: 0.82;
  white-space: nowrap;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(-50%);
  mix-blend-mode: screen;
}

.about-brush-hero .about-name-stack span {
  display: inline-block;
}

.about-brush-cutout {
  z-index: 3;
  filter: saturate(0.92) contrast(1.06) brightness(0.84);
}

.about-brush-color {
  --hero-bg-brush-mask: radial-gradient(circle 0 at 50% 50%, #fff 0%, transparent 100%);
  z-index: 5;
  filter: saturate(1.08) contrast(1.06) brightness(0.94);
  -webkit-mask-image: var(--hero-bg-brush-mask);
  mask-image: var(--hero-bg-brush-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  will-change: -webkit-mask-image, mask-image;
}

.about-brush-hero .about-editorial-kicker {
  position: absolute;
  z-index: 6;
  top: clamp(112px, 14vh, 160px);
  right: var(--section-x-slim);
  left: var(--section-x-slim);
  display: flex;
  justify-content: flex-start;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(247, 244, 238, 0.78);
}

.about-brush-hero .about-editorial-copy {
  position: absolute;
  z-index: 6;
  right: var(--section-x-slim);
  bottom: clamp(40px, 6vh, 74px);
  left: var(--section-x-slim);
  display: grid;
  grid-template-columns: minmax(0, 840px) minmax(280px, 420px);
  align-items: end;
  justify-content: space-between;
  gap: clamp(54px, 8vw, 160px);
  width: auto;
  max-width: none;
}

.about-brush-hero .about-editorial-copy h1 {
  max-width: 840px;
  margin: 0;
  color: #f8f3eb;
  font-size: clamp(2.25rem, 3.25vw, 4.35rem);
  line-height: 0.94;
  text-shadow: 0 12px 50px rgba(0, 0, 0, 0.34);
}

.about-brush-hero .about-editorial-copy p {
  max-width: 420px;
  margin: 0;
  color: rgba(247, 244, 238, 0.76);
  font-size: clamp(0.96rem, 1.15vw, 1.2rem);
  line-height: 1.5;
}

@media (min-width: 701px) and (max-width: 1100px) {
  .about-brush-hero .about-name-stack {
    font-size: clamp(5.2rem, 9.2vw, 7.4rem);
  }

  .about-brush-hero .about-editorial-copy {
    grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.65fr);
    gap: clamp(36px, 6vw, 72px);
  }

  .about-brush-hero .about-editorial-copy h1 {
    font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  }
}

@media (min-width: 701px) and (max-height: 760px) {
  .about-brush-hero .about-editorial-kicker {
    top: 96px;
  }

  .about-brush-hero .about-name-stack {
    top: 43%;
    font-size: clamp(4.8rem, 8.5vw, 8.5rem);
  }

  .about-brush-hero .about-editorial-copy h1 {
    font-size: clamp(2rem, 3vw, 3.4rem);
  }
}

@media (max-width: 700px) {
  .about-brush-hero {
    min-height: 100svh;
  }

  .about-brush-hero .about-brush-image {
    object-position: 56% center;
  }

  .about-brush-hero .about-name-stack {
    top: 41%;
    left: 22px;
    display: block;
    width: calc(100% - 44px);
    font-size: clamp(3.7rem, 18vw, 5.4rem);
    line-height: 0.8;
    white-space: normal;
  }

  .about-brush-hero .about-name-stack span {
    display: block;
  }

  .about-brush-hero .about-editorial-kicker {
    top: 96px;
    right: 22px;
    left: 22px;
    flex-direction: column;
    gap: 7px;
  }

  .about-brush-hero .about-editorial-copy {
    right: 22px;
    bottom: 34px;
    left: 22px;
    display: block;
    width: calc(100% - 44px);
  }

  .about-brush-hero .about-editorial-copy h1 {
    max-width: 100%;
    font-size: clamp(1.65rem, 7.2vw, 2.25rem);
    line-height: 0.98;
  }

  .about-brush-hero .about-editorial-copy p {
    max-width: 34ch;
    margin-top: 16px;
    font-size: 0.93rem;
    line-height: 1.42;
  }
}

body[data-page="home"] .hero-scroll-sequence {
  height: auto;
  min-height: 260svh;
}

body[data-page="home"] .hero-scroll-sequence .hero-sticky {
  height: 100svh;
  min-height: 100svh;
  will-change: transform;
}

@media (max-width: 700px) {
  body[data-page="home"] .hero-scroll-sequence {
    min-height: 230svh;
  }

  .hero-scroll-video,
  .hero-frame {
    object-position: 58% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .hero-scroll-sequence {
    min-height: 100svh;
  }

  .hero-scroll-video {
    visibility: hidden;
  }
}

/* Keep the opening statement clear of the reveal mask and viewport edges. */
body[data-page="home"] .hero-chapter-intro h1 {
  box-sizing: border-box;
  padding: 0.1em 0.04em 0.14em;
  line-height: 0.98;
}

@media (max-width: 700px) {
  body[data-page="home"] .hero-chapter-intro h1 {
    width: calc(100% - 48px);
    font-size: clamp(2.1rem, 9.7vw, 4.1rem);
    line-height: 1;
  }
}

/* Discreet disclosure for AI-generated visual assets */
.ai-generated-media {
  position: relative;
}

.ai-generated-label {
  position: absolute;
  z-index: 8;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(10, 10, 10, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.wedding-person .ai-generated-label {
  top: 90px;
  bottom: auto;
}

/* Wedding photography landing page */
.wedding-page .wedding-hero .page-hero-image {
  object-position: center 42%;
}

.wedding-page .wedding-hero::after {
  height: 54vh;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0));
}

.wedding-page .wedding-hero .page-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.04) 70%);
}

.wedding-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vh, 46px);
}

.wedding-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.wedding-hero-actions a:first-child,
.wedding-hero-actions a:hover,
.wedding-hero-actions a:focus-visible {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.wedding-jump-nav {
  position: sticky;
  z-index: 8;
  top: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  background: rgba(247, 244, 238, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.wedding-jump-nav a {
  display: grid;
  min-height: 58px;
  place-items: center;
  border-right: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  transition: color 200ms ease, background-color 200ms ease;
}

.wedding-jump-nav a:last-child {
  border-right: 0;
}

.wedding-jump-nav a:hover,
.wedding-jump-nav a:focus-visible {
  color: #fff;
  background: var(--ember);
}

.wedding-value-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.wedding-value-rail span {
  display: flex;
  min-height: 108px;
  align-items: flex-end;
  padding: 24px var(--section-x-slim);
  border-right: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 0.74vw, 0.8rem);
  text-transform: uppercase;
}

.wedding-value-rail span:last-child {
  border-right: 0;
}

.wedding-page .wedding-feature {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  min-height: clamp(680px, 86vh, 940px);
  background: #f1eee8;
}

.wedding-page .wedding-feature img {
  min-height: clamp(680px, 86vh, 940px);
  object-position: 48% center;
}

.wedding-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(64px, 7vw, 112px) clamp(42px, 5.5vw, 88px);
  border-left: 1px solid var(--line);
}

.wedding-feature-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 0.75vw, 0.82rem);
  text-transform: uppercase;
}

.wedding-feature-copy > span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: currentColor;
}

.wedding-feature-copy h2 {
  max-width: 13ch;
  margin: clamp(24px, 3vw, 44px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 2.9vw, 3.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
}

.wedding-feature-copy p {
  max-width: 36ch;
  margin: clamp(28px, 3vw, 46px) 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  line-height: 1.56;
}

.wedding-feature-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(34px, 4vw, 58px);
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 0.78vw, 0.84rem);
  text-transform: uppercase;
}

.wedding-feature-copy > a::after {
  content: "↘";
  color: var(--ember);
  font-size: 1.25em;
  transition: transform 260ms ease;
}

.wedding-feature-copy > a:hover::after,
.wedding-feature-copy > a:focus-visible::after {
  transform: translate3d(4px, 4px, 0);
}

.wedding-references {
  scroll-margin-top: 84px;
  padding: clamp(88px, 11vw, 176px) var(--section-x-slim);
}

.wedding-person {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-height: clamp(720px, 88vh, 980px);
  background: #0b0b0b;
  color: #f7f4ee;
}

.wedding-person > figure {
  position: relative;
  min-width: 0;
  min-height: clamp(720px, 88vh, 980px);
  margin: 0;
  overflow: hidden;
}

.wedding-person > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.wedding-person > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 7vw, 118px) clamp(34px, 5vw, 82px);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.wedding-person > div > span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.wedding-person h2 {
  max-width: 13ch;
  margin: clamp(26px, 4vw, 54px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 3.35vw, 4.5rem);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.wedding-person p {
  max-width: 44ch;
  margin: clamp(28px, 3vw, 44px) 0 0;
  color: rgba(247, 244, 238, 0.7);
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  line-height: 1.58;
}

.wedding-person ul {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: 580px;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.wedding-person li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(247, 244, 238, 0.78);
}

.wedding-person a {
  align-self: flex-start;
  margin-top: 38px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(247, 244, 238, 0.55);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.wedding-section-head {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 110px);
  align-items: start;
  margin-bottom: clamp(44px, 7vw, 104px);
}

.wedding-section-head > span,
.wedding-reference-grid > a > span,
.wedding-reference-grid > article > span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 0.75vw, 0.82rem);
  text-transform: uppercase;
}

.wedding-section-head h2 {
  max-width: 15ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.1vw, 5.4rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wedding-reference-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
  align-items: start;
}

.wedding-reference-grid > a,
.wedding-reference-grid > article {
  grid-column: span 4;
  color: inherit;
}

.wedding-reference-grid > a:nth-child(2),
.wedding-reference-grid > article:nth-child(2) {
  margin-top: clamp(64px, 9vw, 150px);
}

.wedding-reference-grid figure {
  aspect-ratio: 4 / 5;
  margin: 0 0 22px;
  overflow: hidden;
  background: #111;
}

.wedding-reference-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1), filter 500ms ease;
}

.wedding-reference-grid > a:first-child img,
.wedding-reference-grid > article:first-child img {
  object-position: 54% center;
}

.wedding-reference-grid > a:nth-child(2) img,
.wedding-reference-grid > article:nth-child(2) img {
  object-position: 47% center;
}

.wedding-reference-grid > a:last-child img,
.wedding-reference-grid > article:last-child img {
  object-position: center 38%;
}

.wedding-reference-grid > a:hover img,
.wedding-reference-grid > a:focus-visible img {
  transform: scale(1.035);
  filter: contrast(1.03) saturate(1.04);
}

.wedding-reference-grid h3 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 3.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wedding-local,
.wedding-packages,
.wedding-faq {
  scroll-margin-top: 84px;
  padding: clamp(88px, 11vw, 176px) var(--section-x-slim);
  border-top: 1px solid var(--line);
}

.wedding-local-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wedding-local-grid article {
  min-height: 330px;
  padding: clamp(30px, 3.4vw, 56px) clamp(24px, 3vw, 48px);
  border-right: 1px solid var(--line);
}

.wedding-local-grid article:last-child {
  border-right: 0;
}

.wedding-local-grid span,
.wedding-package-grid article > span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 0.75vw, 0.82rem);
  text-transform: uppercase;
}

.wedding-local-grid h3 {
  max-width: 12ch;
  margin: clamp(30px, 4vw, 58px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.1vw, 4.2rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.wedding-local-grid p {
  max-width: 35ch;
  margin: 30px 0 0;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.55;
}

.wedding-packages {
  color: #f7f4ee;
  background: #0b0b0b;
  border-top-color: rgba(255, 255, 255, 0.16);
}

.wedding-packages .wedding-section-head h2 {
  color: #f7f4ee;
}

.wedding-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.wedding-package-grid article {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: clamp(32px, 4vw, 64px) clamp(24px, 3vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.wedding-package-grid article:last-child {
  border-right: 0;
}

.wedding-package-grid h3 {
  max-width: 11ch;
  margin: clamp(34px, 4vw, 62px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.25vw, 4.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wedding-package-grid strong {
  display: block;
  margin-top: 28px;
  color: rgba(247, 244, 238, 0.62);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
}

.wedding-package-grid ul {
  display: grid;
  gap: 0;
  margin: clamp(36px, 4vw, 58px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.wedding-package-grid li {
  padding: 13px 0;
  color: rgba(247, 244, 238, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: clamp(0.88rem, 0.96vw, 1rem);
  line-height: 1.35;
}

.wedding-package-grid article > p {
  margin: 28px 0 0;
  color: rgba(247, 244, 238, 0.56);
  font-size: 0.9rem;
  line-height: 1.45;
}

.wedding-package-grid article > a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;
  margin-top: auto;
  padding-top: 40px;
  padding-bottom: 7px;
  color: #f7f4ee;
  border-bottom: 1px solid rgba(247, 244, 238, 0.55);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.wedding-package-grid article > a::after {
  content: "↘";
  color: var(--ember);
  font-size: 1.2em;
}

.wedding-package-note {
  max-width: 72ch;
  margin: 34px 0 0;
  color: rgba(247, 244, 238, 0.54);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

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

.wedding-faq-list summary {
  position: relative;
  padding: clamp(24px, 3vw, 42px) 72px clamp(24px, 3vw, 42px) 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2.45rem);
  line-height: 1.08;
  cursor: pointer;
  list-style: none;
}

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

.wedding-faq-list summary::before,
.wedding-faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 260ms ease;
}

.wedding-faq-list summary::after {
  transform: rotate(90deg);
}

.wedding-faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.wedding-faq-list details > p {
  max-width: 68ch;
  margin: 0;
  padding: 8px 72px clamp(28px, 4vw, 54px) 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(0.98rem, 1.1vw, 1.14rem);
  line-height: 1.58;
}

.wedding-process {
  scroll-margin-top: 84px;
  padding: clamp(88px, 11vw, 176px) var(--section-x-slim);
  border-top: 1px solid var(--line);
}

.wedding-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wedding-process-grid article {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 48px);
  border-right: 1px solid var(--line);
  container-type: inline-size;
}

.wedding-process-grid article:last-child {
  border-right: 0;
}

.wedding-process-grid span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.wedding-process-grid h3 {
  margin: auto 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 10.5cqi, 3.2rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wedding-process-grid p {
  max-width: 32ch;
  margin: 24px 0 0;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.52;
}

.wedding-page .copy-band h2 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 2.8vw, 3.7rem);
  line-height: 1.02;
}

.wedding-page .cinematic-cta-copy h2 {
  font-size: clamp(2.8rem, 3.3vw, 4.25rem);
  line-height: 0.96;
}

.wedding-inquiry {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 8vw, 150px);
  scroll-margin-top: 72px;
  padding: clamp(96px, 12vw, 190px) var(--section-x-slim);
  color: var(--ink);
  background: #e5e7e2;
  border-top: 1px solid var(--line);
}

.wedding-inquiry-head {
  align-self: start;
}

.wedding-inquiry-head > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 0.75vw, 0.82rem);
  text-transform: uppercase;
}

.wedding-inquiry-head > span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: currentColor;
}

.wedding-inquiry-head h2 {
  max-width: 10ch;
  margin: clamp(26px, 3vw, 46px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.1vw, 5.4rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.wedding-inquiry-head p {
  max-width: 42ch;
  margin: clamp(28px, 3vw, 44px) 0 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  line-height: 1.58;
}

.wedding-inquiry-head > a {
  display: inline-block;
  margin-top: 34px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.wedding-inquiry-form {
  min-width: 0;
  padding-left: clamp(40px, 5vw, 86px);
  border-left: 1px solid rgba(17, 17, 17, 0.16);
}

.wedding-inquiry-form .field-line {
  margin-bottom: clamp(24px, 2.6vw, 38px);
}

.wedding-inquiry-form .field-line > span {
  color: rgba(17, 17, 17, 0.58);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.wedding-inquiry-form .field-line input,
.wedding-inquiry-form .field-line select,
.wedding-inquiry-form .field-line textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.wedding-inquiry-form .field-line input,
.wedding-inquiry-form .field-line select {
  height: 58px;
  padding: 0 4px;
}

.wedding-inquiry-form .field-line select {
  cursor: pointer;
}

.wedding-inquiry-form .field-line textarea {
  min-height: 150px;
  padding: 14px 4px;
  resize: vertical;
}

.wedding-inquiry-form .field-line input:focus,
.wedding-inquiry-form .field-line select:focus,
.wedding-inquiry-form .field-line textarea:focus {
  outline: 0;
  border-color: var(--ember);
  box-shadow: 0 1px 0 var(--ember);
}

.wedding-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  max-width: 68ch;
  color: rgba(17, 17, 17, 0.64);
  font-size: 0.86rem;
  line-height: 1.5;
  cursor: pointer;
}

.wedding-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--ember);
}

.wedding-consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wedding-inquiry-form .form-actions {
  margin-top: clamp(36px, 4vw, 58px);
}

.wedding-inquiry-form .form-actions button,
.wedding-inquiry-form .form-actions a {
  min-height: 54px;
  border-radius: 0;
}

.wedding-inquiry-form .form-actions button {
  background: var(--ember);
}

.wedding-form-status {
  min-height: 1.5em;
  margin: 18px 0 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.86rem;
}

@media (min-width: 701px) and (max-width: 1500px) {
  .wedding-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wedding-process-grid article {
    min-height: 340px;
  }

  .wedding-process-grid article:nth-child(2n) {
    border-right: 0;
  }

  .wedding-process-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .wedding-page .wedding-hero .page-hero-image {
    object-position: 58% center;
  }

  .wedding-page .wedding-hero .page-hero-copy {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 24vh 22px 10vh;
  }

  .wedding-page .wedding-hero .page-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.5vw, 3.6rem);
    line-height: 0.98;
  }

  .wedding-page .wedding-hero .page-hero-copy p {
    max-width: 32ch;
    font-size: 1rem;
  }

  .wedding-hero-actions {
    gap: 8px;
  }

  .wedding-hero-actions a {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.66rem;
  }

  .wedding-jump-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .wedding-jump-nav::-webkit-scrollbar {
    display: none;
  }

  .wedding-jump-nav a {
    min-width: max-content;
    min-height: 52px;
    padding: 0 20px;
  }

  .wedding-value-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wedding-value-rail span {
    min-height: 86px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
  }

  .wedding-value-rail span:nth-child(2) {
    border-right: 0;
  }

  .wedding-value-rail span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .wedding-page .wedding-feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .wedding-page .wedding-feature img {
    min-height: 0;
    aspect-ratio: 4 / 5;
    object-position: 47% center;
  }

  .wedding-feature-copy {
    padding: 68px 22px 82px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .wedding-feature-copy h2 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 10.6vw, 3.5rem);
    line-height: 0.98;
  }

  .wedding-feature-copy p {
    max-width: 31ch;
    font-size: 1rem;
  }

  .wedding-section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wedding-section-head h2 {
    max-width: 100%;
    font-size: clamp(2.55rem, 10.2vw, 3.55rem);
    line-height: 0.95;
  }

  .wedding-person {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .wedding-person > figure {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .wedding-person > figure img {
    object-position: 52% center;
  }

  .wedding-person > div {
    padding: 68px 22px 82px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .wedding-person h2 {
    font-size: clamp(2.65rem, 10.5vw, 3.6rem);
    line-height: 0.97;
  }

  .wedding-page .copy-band h2 {
    font-size: clamp(2.45rem, 9.8vw, 3.4rem);
  }

  .wedding-page .cinematic-cta-copy h2 {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }

  .wedding-inquiry {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .wedding-inquiry-head h2 {
    max-width: 100%;
    font-size: clamp(2.55rem, 10.2vw, 3.55rem);
    line-height: 0.95;
  }

  .wedding-inquiry-form {
    padding: 44px 0 0;
    border-top: 1px solid rgba(17, 17, 17, 0.16);
    border-left: 0;
  }

  .wedding-inquiry-form .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wedding-inquiry-form .form-actions button,
  .wedding-inquiry-form .form-actions a {
    width: 100%;
  }

  .wedding-reference-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .wedding-reference-grid > a,
  .wedding-reference-grid > article {
    grid-column: 1;
  }

  .wedding-reference-grid > a:nth-child(2),
  .wedding-reference-grid > article:nth-child(2) {
    margin-top: 0;
  }

  .wedding-reference-grid figure {
    aspect-ratio: 4 / 5;
  }

  .wedding-local,
  .wedding-packages,
  .wedding-faq,
  .wedding-process {
    padding: 82px 22px;
  }

  .wedding-local-grid,
  .wedding-package-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .wedding-local-grid article {
    min-height: 0;
    padding: 36px 0 44px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .wedding-local-grid article:last-child {
    border-bottom: 0;
  }

  .wedding-local-grid h3 {
    margin-top: 30px;
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .wedding-package-grid article {
    min-width: 0;
    min-height: 0;
    padding: 38px 22px 46px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .wedding-package-grid article:last-child {
    border-bottom: 0;
  }

  .wedding-package-grid h3 {
    font-size: clamp(2.45rem, 10.2vw, 3.8rem);
  }

  .wedding-package-grid article > a {
    margin-top: 36px;
    padding-top: 0;
  }

  .wedding-faq-list summary {
    padding-right: 52px;
    font-size: 1.45rem;
  }

  .wedding-faq-list details > p {
    padding-right: 24px;
  }

  .wedding-process-grid {
    grid-template-columns: 1fr;
  }

  .wedding-process-grid article {
    min-height: 260px;
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .wedding-process-grid article:last-child {
    border-bottom: 0;
  }
}

/* Contact editorial hero */
body[data-page="contact"] .contact-hero {
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: clamp(132px, 16vh, 190px) var(--section-x-slim) clamp(44px, 6vh, 76px);
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

html[data-theme="dark"] body[data-page="contact"] .contact-hero {
  background: #050606;
  color: #f7f4ee;
  border-bottom-color: rgba(247, 244, 238, 0.16);
}

.contact-hero-inner {
  width: 100%;
}

.contact-hero header > span {
  display: block;
  margin-bottom: clamp(20px, 3vh, 38px);
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 0.78vw, 0.82rem);
  text-transform: uppercase;
}

.contact-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 15rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-hero-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: end;
  gap: clamp(30px, 6vw, 110px);
  margin-top: clamp(48px, 7vh, 86px);
  padding-top: clamp(22px, 3vh, 34px);
  border-top: 1px solid var(--line);
}

.contact-hero-footer p {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1rem, 1.32vw, 1.28rem);
  line-height: 1.45;
}

.contact-hero-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  color: inherit;
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 0.8vw, 0.84rem);
  text-transform: uppercase;
}

.contact-hero-footer a span {
  color: var(--ember);
  font-size: 1.25em;
  transition: transform 260ms ease;
}

.contact-hero-footer a:hover span,
.contact-hero-footer a:focus-visible span {
  transform: translate3d(4px, 4px, 0);
}

.contact-hero-footer small {
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 0.74vw, 0.8rem);
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 700px) {
  body[data-page="contact"] .contact-hero {
    min-height: 84svh;
    padding: 118px 22px 38px;
  }

  .contact-hero h1 {
    font-size: clamp(4.15rem, 21vw, 6.2rem);
    line-height: 0.82;
  }

  .contact-hero-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    margin-top: 44px;
  }

  .contact-hero-footer p {
    max-width: 31ch;
  }

  .contact-hero-footer small {
    margin-top: 6px;
  }
}

/* Home cinematic chapter hero */
body[data-page="home"] .hero-scroll-sequence {
  min-height: 520svh;
  background: #050505;
}

body[data-page="home"] .hero-sticky {
  isolation: isolate;
  transform: none;
}

body[data-page="home"] .hero-frame,
body[data-page="home"] .hero-scroll-video {
  transition: none;
  will-change: opacity, contents;
}

body[data-page="home"] .hero-scroll-video {
  opacity: 0;
}

body[data-page="home"] .hero-video--intro {
  opacity: 1;
}

body[data-page="home"] .hero-video--design {
  object-position: center 46%;
  filter: saturate(0.9) contrast(1.09) brightness(0.74);
}

body[data-page="home"] .hero-video--impact {
  object-position: center center;
  filter: saturate(0.82) contrast(1.12) brightness(0.72);
}

.hero-chapter {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  will-change: opacity, transform;
}

.hero-chapter-intro {
  display: grid;
  place-items: center;
  opacity: 1;
}

.hero-chapter-statement,
.hero-chapter-final {
  display: grid;
  align-content: center;
  padding: clamp(112px, 14vh, 160px) var(--section-x-slim) clamp(54px, 7vh, 84px);
  opacity: 0;
}

.hero-chapter-statement {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: clamp(28px, 5vw, 90px);
}

.hero-chapter-statement > span,
.hero-chapter-final > span {
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 0.75vw, 0.82rem);
  text-transform: uppercase;
}

.hero-chapter-statement > span {
  grid-column: 1 / -1;
  margin-bottom: clamp(20px, 3vh, 38px);
}

.hero-chapter-statement h2,
.hero-chapter-final h2 {
  margin: 0;
  color: #f7f4ee;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
}

.hero-chapter-statement h2 {
  align-self: end;
  font-size: clamp(7rem, 15.8vw, 20rem);
  line-height: 0.82;
}

.hero-chapter-statement p {
  align-self: end;
  width: min(27vw, 390px);
  margin: 0 0 0.28em;
  color: rgba(247, 244, 238, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.36rem);
  line-height: 1.4;
}

.hero-chapter-impact {
  text-align: right;
}

.hero-chapter-impact h2 {
  grid-column: 1 / -1;
}

.hero-chapter-impact p {
  position: absolute;
  right: var(--section-x-slim);
  bottom: clamp(52px, 7vh, 88px);
  text-align: left;
}

.hero-chapter-final {
  z-index: 6;
  align-content: center;
  justify-items: start;
  background: #050505;
}

.hero-chapter-final h2 {
  max-width: 11ch;
  margin-top: clamp(22px, 3vh, 38px);
  font-size: clamp(4.7rem, 10.8vw, 13.4rem);
  line-height: 0.78;
}

.hero-chapter-final a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(34px, 5vh, 62px);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(247, 244, 238, 0.52);
  color: #f7f4ee;
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 0.8vw, 0.86rem);
  text-transform: uppercase;
  pointer-events: auto;
}

.hero-chapter-final a i {
  color: var(--ember);
  font-style: normal;
  transition: transform 260ms ease;
}

.hero-chapter-final a:hover i,
.hero-chapter-final a:focus-visible i {
  transform: translate3d(4px, 4px, 0);
}

@media (max-width: 700px) {
  body[data-page="home"] .hero-scroll-sequence {
    min-height: 450svh;
  }

  body[data-page="home"] .hero-video--design {
    object-position: 57% center;
  }

  body[data-page="home"] .hero-video--impact {
    object-position: 54% center;
  }

  .hero-chapter-statement,
  .hero-chapter-final {
    padding: 108px 22px 42px;
  }

  .hero-chapter-statement {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-content: end;
  }

  .hero-chapter-statement h2,
  .hero-chapter-impact h2 {
    grid-column: 1;
    max-width: 100%;
    font-size: clamp(4rem, 20.5vw, 7.4rem);
    line-height: 0.84;
    text-align: left;
  }

  .hero-chapter-statement p,
  .hero-chapter-impact p {
    position: static;
    width: min(82vw, 320px);
    margin-top: 24px;
    text-align: left;
  }

  .hero-chapter-final {
    align-content: end;
  }

  .hero-chapter-final h2 {
    font-size: clamp(3.8rem, 17.5vw, 6rem);
    line-height: 0.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .hero-scroll-sequence {
    min-height: 100svh;
  }

  body[data-page="home"] .hero-video--intro {
    visibility: hidden;
  }

  .hero-chapter:not(.hero-chapter-intro) {
    display: none;
  }
}
