@font-face {
  font-family: "Outfit";
  src: url("./outfit-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #070707;
  --panel: #101010;
  --ink: #f4f3ef;
  --muted: #a3a39e;
  --line: rgba(255, 255, 255, 0.16);
  --soft-line: rgba(255, 255, 255, 0.09);
  --pad: clamp(20px, 5vw, 76px);
  --duration-fast: 120ms;
  --duration-ui: 220ms;
  --duration-section: 420ms;
  --duration-page: 560ms;
  --page-reveal-duration: .62s;
  --ease-standard: cubic-bezier(.2, 0, 0, 1);
  --ease-enter: cubic-bezier(0, 0, .2, 1);
  --ease-exit: cubic-bezier(.3, 0, 1, .3);
  --ease: var(--ease-standard);
  font-family: "Outfit", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
  transform-origin: center;
  will-change: clip-path, transform, filter;
}

::view-transition-old(root) {
  z-index: 1;
  animation: old-page-settle var(--page-reveal-duration) cubic-bezier(.76, 0, .24, 1) both;
}

::view-transition-new(root) {
  z-index: 2;
  animation: center-clip-reveal var(--page-reveal-duration) cubic-bezier(.76, 0, .24, 1) forwards;
}

@keyframes old-page-settle {
  to {
    filter: brightness(.9);
    transform: scale(.998);
  }
}

@keyframes center-clip-reveal {
  0% {
    clip-path: inset(50% 50% 50% 50% round 4px);
    transform: scale(1.025);
  }
  42% {
    clip-path: inset(49.9% 34% 49.9% 34% round 2px);
    transform: scale(1.012);
  }
  88% {
    clip-path: inset(0 0 0 0 round 2px);
    transform: scale(1);
  }
  100% {
    clip-path: inset(0 0 0 0 round 0);
    transform: scale(1);
  }
}

.transition-fallback body {
  animation: center-clip-reveal var(--page-reveal-duration) cubic-bezier(.76, 0, .24, 1) both;
  transform-origin: center;
}

.transition-fallback::view-transition-old(root),
.transition-fallback::view-transition-new(root) {
  animation: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.is-loading,
body.is-navigating {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

::selection {
  background: #f4f3ef;
  color: #070707;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(24px, 4vw, 58px) var(--pad);
  overflow: hidden;
  color: #f4f3ef;
  background: #070707;
  transform: translate3d(0, 0, 0);
  transition: transform .44s cubic-bezier(.76, 0, .24, 1), visibility .44s;
  will-change: transform;
}

.site-loader::before,
.site-loader::after {
  content: none;
}

.site-loader.is-complete {
  transform: translate3d(0, -100%, 0);
  visibility: hidden;
}

.loader-top,
.loader-bottom,
.loader-center {
  position: relative;
  z-index: 1;
}

.loader-top,
.loader-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.58);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.loader-top {
  justify-content: flex-start;
}

.loader-top > span:last-child,
.loader-meta {
  display: none;
}

.loader-mark {
  color: #fff;
  font-size: clamp(2.3rem, 3vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -3.5px;
  line-height: .72;
  text-transform: lowercase;
}

.loader-center {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 9px;
  text-align: left;
}

.loader-center p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.loader-center output {
  display: block;
  min-width: 4ch;
  color: rgba(255,255,255,.78);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.loader-track {
  height: 1px;
  margin: 0;
  overflow: hidden;
  background: rgba(255,255,255,.16);
}

.loader-track span {
  display: block;
  width: 100%;
  height: 100%;
  background: #f4f3ef;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.navigation-hold {
  position: fixed;
  inset: 0;
  z-index: 3500;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(7,7,7,.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s var(--ease-enter);
}

.navigation-hold::before {
  content: "";
  width: 52px;
  height: 1px;
  background: rgba(255,255,255,.58);
  transform-origin: center;
  animation: navigation-line .58s var(--ease-enter) both;
}

.navigation-hold span {
  position: absolute;
  font-size: 1.45rem;
  font-weight: 300;
  letter-spacing: -2.5px;
  transform: translateY(-20px);
}

body.is-navigating .navigation-hold {
  opacity: 1;
}

@keyframes navigation-line {
  from { opacity: .2; transform: scaleX(.08); }
  to { opacity: .72; transform: scaleX(1); }
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(23px, 4vh, 44px) var(--pad);
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(7,7,7,.72), transparent);
  pointer-events: none;
}

.site-header.is-fixed .brand,
.site-header.is-fixed .nav-toggle {
  pointer-events: auto;
}

.brand {
  position: relative;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  color: #fff;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.aa-mark {
  font-size: clamp(2.25rem, 3.1vw, 2.65rem);
  font-weight: 300;
  letter-spacing: -3.5px;
  line-height: .72;
  text-transform: lowercase;
  transform-origin: left center;
  transition: transform var(--duration-section) var(--ease), opacity var(--duration-ui) ease;
}

.brand-home:hover .aa-mark,
.brand-home:focus-visible .aa-mark {
  transform: scale(1.08);
}

.brand-home:focus-visible,
.brand-menu-toggle:focus-visible {
  outline: 1px solid rgba(255,255,255,.6);
  outline-offset: 5px;
}

.brand-menu-toggle::after {
  content: "Menu";
  position: absolute;
  right: calc(100% + 12px);
  left: auto;
  top: 50%;
  color: rgba(255,255,255,.72);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .17em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(-6px, -50%, 0);
  transition: opacity var(--duration-ui) var(--ease-enter), transform var(--duration-ui) var(--ease-enter);
  pointer-events: none;
}

.brand-menu-toggle:hover::after,
.brand-menu-toggle:focus-visible::after {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
}

.home-page .desktop-nav {
  display: none;
}

.desktop-nav a,
.menu-panel a {
  color: rgba(255,255,255,.72);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.desktop-nav a:focus-visible {
  color: #fff;
}

.desktop-nav a:last-child {
  padding: 10px 17px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
}

.nav-toggle {
  position: relative;
  z-index: 35;
  display: inline-block;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8,8,8,.18);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform .3s var(--ease), top .3s var(--ease);
}

.nav-toggle span:first-child { top: 18px; }
.nav-toggle span:last-child { top: 24px; }

.menu-open .nav-toggle span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-open .nav-toggle span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 110px var(--pad) 55px;
  background: rgba(7,7,7,.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s;
}

.menu-panel a {
  display: block;
  color: #fff;
  font-size: clamp(2.8rem, 13vw, 5rem);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: 1;
  text-transform: none;
}

.menu-open .menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-panel a {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration-section) var(--ease-enter), transform var(--duration-section) var(--ease-enter), color var(--duration-ui) ease;
}

.menu-open .menu-panel a {
  opacity: 1;
  transform: translateY(0);
}

.menu-open .menu-panel a:nth-child(2) { transition-delay: 45ms; }
.menu-open .menu-panel a:nth-child(3) { transition-delay: 90ms; }
.menu-open .menu-panel a:nth-child(4) { transition-delay: 135ms; }
.menu-open .menu-panel a:nth-child(5) { transition-delay: 180ms; }

.home-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0b0b0b;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.03) brightness(.82);
}

.video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.38) 0%, rgba(0,0,0,.04) 40%, rgba(0,0,0,.48) 100%),
    radial-gradient(circle at 50% 46%, transparent 20%, rgba(0,0,0,.24) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(92vw, 1120px);
  padding: 120px 20px 130px;
  text-align: center;
}

.kicker,
.section-kicker {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-title {
  margin: 18px 0 0;
  font-size: clamp(3.2rem, 9.5vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: .95;
  text-transform: lowercase;
  text-shadow: 0 14px 55px rgba(0,0,0,.25);
}

.hero-title span {
  display: block;
  transform: translate3d(var(--hero-title-x, 0), var(--hero-title-y, 0), 0);
  transition: transform .18s linear;
}

.hero-title span:last-child {
  margin-left: .32em;
}

.hero-route-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(34px, 5vh, 55px);
}

.hero-route-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 44px;
  padding: 12px 19px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.12);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  backdrop-filter: blur(10px);
  transition: color .3s ease, background .3s ease, transform .3s var(--ease);
}

.hero-route-links a:hover,
.hero-route-links a:focus-visible {
  color: #070707;
  background: #fff;
  transform: translateY(-2px);
  outline: 0;
}

.hero-edge-meta {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: clamp(24px, 4vh, 46px);
  left: var(--pad);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.68);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-scroll-link {
  position: absolute;
  z-index: 4;
  right: 22px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.78);
  font-size: .65rem;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
}

.hero-scroll-link i {
  font-style: normal;
  animation: home-scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes home-scroll-pulse {
  0%, 100% { transform: translateX(0); opacity: .55; }
  50% { transform: translateX(7px); opacity: 1; }
}

.home-page:not(.is-loading) .hero-copy .kicker {
  animation: home-hero-enter .55s var(--ease-enter) both;
}

.home-page:not(.is-loading) .hero-title span:first-child {
  animation: home-hero-title-enter .7s .06s var(--ease-enter) both;
}

.home-page:not(.is-loading) .hero-title span:last-child {
  animation: home-hero-title-enter .7s .12s var(--ease-enter) both;
}

.home-page:not(.is-loading) .hero-route-links {
  animation: home-hero-enter .55s .22s var(--ease-enter) both;
}

.home-page:not(.is-loading) .hero-edge-meta,
.home-page:not(.is-loading) .hero-edge-meta {
  animation: home-hero-enter .5s .3s var(--ease-enter) both;
}

.home-page:not(.is-loading) .hero-scroll-link {
  animation: home-hero-scroll-enter .5s .3s var(--ease-enter) both;
}

@keyframes home-hero-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes home-hero-title-enter {
  from { opacity: 0; transform: translateY(38px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes home-hero-scroll-enter {
  from { opacity: 0; transform: translateY(calc(-50% + 14px)) rotate(90deg); }
  to { opacity: 1; transform: translateY(-50%) rotate(90deg); }
}

.hero-foot {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: clamp(25px, 5vh, 52px);
  left: var(--pad);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.hero-location {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .75rem;
  letter-spacing: .16em;
  line-height: 1.6;
  text-transform: uppercase;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "↗";
  font-size: 1rem;
  transition: transform .25s ease;
}

.scroll-cue:hover::after {
  transform: translate(3px, -3px);
}

/* Home: the showreel stays as the visual atmosphere while the page earns its
   scroll with useful, business-facing information. */
.home-page .hero-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  object-fit: cover;
}

.home-page main,
.home-content {
  position: relative;
}

.home-credit-strip {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
  background: #ecebe5;
  color: #080808;
}

.home-credit-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(24px, 3vw, 50px);
  padding: 18px 0;
  animation: home-credit-roll 28s linear infinite;
  will-change: transform;
}

.home-credit-track span {
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  font-weight: 400;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.home-credit-track i { font-size: .8rem; font-style: normal; opacity: .5; }

@keyframes home-credit-roll {
  to { transform: translateX(-50%); }
}

.home-content {
  z-index: 2;
  background: linear-gradient(180deg, rgba(7,7,7,.22), rgba(7,7,7,.78) 14%, rgba(7,7,7,.9) 100%);
}

.home-panel {
  min-height: min(86svh, 920px);
  display: grid;
  align-content: center;
  padding: clamp(90px, 11vw, 170px) var(--pad);
  border-top: 1px solid rgba(255,255,255,.16);
  background: rgba(7,7,7,.54);
}

.home-panel:nth-child(even) {
  background: rgba(7,7,7,.67);
}

.home-press {
  position: relative;
  padding: clamp(100px, 12vw, 180px) var(--pad);
  border-top: 1px solid rgba(255,255,255,.16);
  background: rgba(7,7,7,.72);
}

.home-press-head {
  display: grid;
  grid-template-columns: minmax(160px, .52fr) minmax(0, 1.48fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: start;
}

.home-press-head h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.4rem, 7.5vw, 8.4rem);
  font-weight: 300;
  letter-spacing: -.072em;
  line-height: .88;
}

.home-press-head > div > p {
  max-width: 42rem;
  margin: 34px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.6;
}

.home-press-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: clamp(28px, 5vw, 76px);
  margin-top: clamp(72px, 10vw, 150px);
  align-items: start;
}

.home-press-card-offset { margin-top: clamp(80px, 10vw, 150px); }

.home-press-image {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  background: #111;
  text-decoration: none;
}

.home-press-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(.96) contrast(1.03);
  transform: scale(1.002);
  transition: transform .65s var(--ease-enter), filter .45s ease;
}

.home-press-image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(7,7,7,.48);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.home-press-image:hover img,
.home-press-image:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.home-press-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 24px;
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.home-press-meta p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-press-meta h3 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.65rem);
  font-weight: 300;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.home-press-meta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.72);
  font-size: .74rem;
  text-decoration: none;
}

.home-panel-grid {
  display: grid;
  grid-template-columns: minmax(160px, .52fr) minmax(0, 1.48fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: start;
}

.home-panel h2,
.home-contact-panel h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.4rem, 7.5vw, 8.4rem);
  font-weight: 300;
  letter-spacing: -.072em;
  line-height: .88;
}

.home-lead {
  max-width: 42rem;
  margin: clamp(30px, 4vw, 54px) 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  line-height: 1.55;
}

.home-inline-link,
.home-contact-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-height: 44px;
  margin-top: 34px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.42);
}

.home-inline-link span,
.home-contact-link span {
  transition: transform var(--duration-ui) var(--ease);
}

.home-inline-link:hover span,
.home-contact-link:hover span {
  transform: translate(3px, -3px);
}

.home-service-list {
  max-width: 58rem;
  margin: clamp(48px, 6vw, 82px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.2);
}

.home-service-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: clamp(22px, 3vw, 44px);
  padding: clamp(24px, 3vw, 38px) 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.home-service-list > li > span {
  padding-top: .4rem;
  color: rgba(255,255,255,.48);
  font-size: .72rem;
  letter-spacing: .14em;
}

.home-service-list h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -.04em;
}

.home-service-list p {
  max-width: 40rem;
  margin: 12px 0 0;
  color: rgba(255,255,255,.64);
  line-height: 1.55;
}

.home-contact-panel {
  min-height: 92svh;
  justify-items: center;
  text-align: center;
  background: rgba(7,7,7,.44);
}

.home-contact-panel h2 {
  margin-top: clamp(28px, 4vw, 56px);
}

.home-contact-link {
  margin-top: clamp(40px, 6vw, 76px);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.home-footer {
  position: relative;
  z-index: 2;
  background: rgba(7,7,7,.86);
}

@media (max-width: 820px) {
  .hero-edge-meta { display: none; }
  .hero-scroll-link { right: -20px; }
  .hero-title span:last-child { margin-left: .14em; }

  .home-panel {
    min-height: 0;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .home-panel-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-press { padding: 96px 20px; }
  .home-press-head,
  .home-press-grid { grid-template-columns: 1fr; gap: 34px; }
  .home-press-head h2 { font-size: clamp(3.3rem, 14vw, 6.4rem); }
  .home-press-grid { margin-top: 68px; }
  .home-press-card-offset { margin-top: 40px; }
  .home-press-meta { grid-template-columns: 1fr; }
  .home-press-meta p { grid-column: auto; }

  .home-panel h2,
  .home-contact-panel h2 {
    font-size: clamp(3.3rem, 14vw, 6.4rem);
  }

  .home-contact-panel {
    min-height: 78svh;
  }
}

.home-intro,
.work-intro,
.about-intro,
.contact-intro {
  padding: clamp(95px, 15vw, 190px) var(--pad);
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(180px, .58fr) minmax(0, 1.42fr);
  gap: clamp(45px, 10vw, 155px);
  align-items: start;
}

.home-intro h2,
.work-intro h1,
.contact-intro h1 {
  margin: 0;
  font-size: clamp(3rem, 7.5vw, 8rem);
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .92;
}

.home-intro-copy p {
  max-width: 760px;
  margin: 0;
  color: #deded9;
  font-size: clamp(1.55rem, 3.25vw, 3.35rem);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "↗";
  transition: transform .25s ease;
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

.selected-work,
.archive {
  padding: 0 var(--pad) clamp(100px, 13vw, 180px);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -.035em;
}

.section-heading a {
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 76px) clamp(14px, 2vw, 30px);
  padding-top: clamp(35px, 5vw, 66px);
}

.project-card {
  grid-column: span 6;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.project-card.wide { grid-column: span 7; }
.project-card.narrow { grid-column: span 5; }
.project-card.vertical {
  grid-column: span 5;
  max-width: 540px;
}

.project-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #151515;
}

.project-card.tall .project-media {
  aspect-ratio: 16 / 9;
}

.project-card.vertical .project-media {
  aspect-ratio: 9 / 16;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform var(--duration-section) var(--ease), filter var(--duration-ui) var(--ease);
}

.motion-ready .project-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #ecebe6;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform var(--duration-section) var(--ease-enter);
  pointer-events: none;
}

.motion-ready .project-card.is-in .project-media::before {
  transform: scaleX(0);
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.28));
  pointer-events: none;
}

.project-index {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  color: #fff;
  background: rgba(0,0,0,.12);
  font-size: .75rem;
  letter-spacing: .08em;
  backdrop-filter: blur(10px);
}

.project-link:hover .project-media img,
.project-link:focus-visible .project-media img {
  transform: scale(1.06) translate3d(var(--media-x, 0), var(--media-y, 0), 0);
  filter: saturate(1);
}

.project-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
}

.project-info h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -.035em;
}

.project-info p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .11em;
  line-height: 1.55;
  text-transform: uppercase;
}

.project-arrow {
  color: var(--muted);
  font-size: 1.05rem;
}

.page-hero {
  padding-top: clamp(78px, 8vw, 104px);
}

.work-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
  padding-top: clamp(82px, 10vw, 125px);
  padding-bottom: clamp(55px, 7vw, 90px);
}

.work-intro-copy {
  max-width: 510px;
  justify-self: end;
}

.work-intro-copy p {
  margin: 0;
  color: #cacac5;
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.35;
}

.archive .project-grid {
  padding-top: 0;
}

.work-context,
.contact-guide {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
  gap: clamp(48px, 8vw, 132px);
  padding: clamp(80px, 10vw, 140px) var(--pad);
  border-top: 1px solid rgba(255,255,255,.16);
}

.work-context h2,
.contact-guide h2 {
  max-width: 12ch;
  margin: 24px 0 0;
  font-size: clamp(2.8rem, 5.6vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .92;
}

.work-context-copy,
.contact-guide-copy {
  max-width: 48rem;
  justify-self: end;
}

.work-context-copy > p,
.contact-guide-copy > p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.work-context-copy > p + p,
.contact-guide-copy > p + p {
  margin-top: 1.25em;
}

.contact-brief-list {
  margin: clamp(32px, 4vw, 52px) 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.2);
}

.contact-brief-list div {
  display: grid;
  grid-template-columns: minmax(110px, .42fr) minmax(0, 1.58fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.contact-brief-list dt {
  color: rgba(255,255,255,.48);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-brief-list dd {
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.58;
}

.about-intro {
  position: relative;
  min-height: calc(100svh - 90px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-top: clamp(90px, 11vw, 145px);
}

.photo-page {
  position: relative;
  background: #070707;
}

.photo-page .site-header,
.photo-page main,
.photo-page .site-footer {
  position: relative;
  z-index: 4;
}

.photo-page .menu-panel {
  position: fixed;
  z-index: 25;
}

.contact-sheet {
  position: fixed;
  inset: -8vh -7vw;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: clamp(7px, 1vw, 15px);
  opacity: .34;
  pointer-events: none;
  transform: rotate(-3deg) scale(1.06);
  animation: sheet-drift 24s ease-in-out infinite alternate;
}

.photo-page .contact-sheet {
  filter: blur(clamp(11px, 1.6vw, 18px));
}

.contact-tile {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: clamp(2px, .4vw, 8px);
  background-color: #171717;
  background-position: center;
  background-size: cover;
  filter: saturate(1.04) contrast(1.06) brightness(.64);
  transform: translateZ(0);
  transition: filter .6s ease, transform .8s var(--ease);
}

.contact-tile:nth-child(4n + 1) {
  transform: translateY(-7%);
}

.contact-tile:nth-child(5n) {
  transform: translateY(7%);
}

.photo-vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(7,7,7,.1) 0%, rgba(7,7,7,.7) 64%, #070707 100%),
    linear-gradient(180deg, rgba(7,7,7,.14), rgba(7,7,7,.7));
}

.photo-page .about-intro {
  min-height: calc(100svh - 90px);
}

.photo-page .about-details {
  position: relative;
  background: transparent;
}

.about-page .photo-vignette {
  background:
    radial-gradient(circle at 50% 42%, rgba(7,7,7,.02) 0%, rgba(7,7,7,.34) 72%, rgba(7,7,7,.52) 100%),
    linear-gradient(180deg, rgba(7,7,7,.05), rgba(7,7,7,.34));
}

.about-page .contact-sheet {
  opacity: .48;
}

.photo-page .contact-intro {
  min-height: calc(100svh - 90px);
  align-items: center;
}

.photo-page .contact-form {
  background: rgba(12,12,12,.72);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 30px 90px rgba(0,0,0,.24);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

@keyframes sheet-drift {
  from { transform: rotate(-3deg) scale(1.06) translate3d(-1%, -1%, 0); }
  to { transform: rotate(-1.8deg) scale(1.1) translate3d(1.2%, 1%, 0); }
}

.about-statement {
  position: relative;
  z-index: 4;
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.about-page .about-intro {
  isolation: isolate;
  overflow: hidden;
}

.about-page .about-intro::before,
.about-page .about-intro::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(62vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  pointer-events: none;
}

.about-page .about-intro::before {
  top: 6%;
  left: -20%;
  animation: ambient-orbit 18s ease-in-out infinite alternate;
}

.about-page .about-intro::after {
  right: -24%;
  bottom: -26%;
  box-shadow: inset 0 0 90px rgba(255,255,255,.025);
  animation: ambient-orbit 22s ease-in-out infinite alternate-reverse;
}

@keyframes ambient-orbit {
  from { transform: translate3d(-2%, -1%, 0) scale(.94); }
  to { transform: translate3d(4%, 3%, 0) scale(1.07); }
}

.about-statement h1 {
  margin: 20px 0 0;
  font-size: clamp(2.7rem, 6.4vw, 6.7rem);
  font-weight: 300;
  letter-spacing: -.06em;
  line-height: 1.01;
}

.gallery-word {
  position: relative;
  z-index: 6;
  display: inline-block;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.34);
  color: #fff;
  background: none;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  cursor: pointer;
  transition: color var(--duration-section) var(--ease), border-color var(--duration-ui) ease;
}

.gallery-word::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-section) var(--ease);
}

.gallery-word:hover::after,
.gallery-word:focus-visible::after,
.gallery-word.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.gallery-word:focus-visible {
  outline: 1px solid rgba(255,255,255,.65);
  outline-offset: 6px;
}

.gallery-hint {
  margin: 30px 0 0;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.about-statement.dimmed h1 {
  color: #555550;
  transition: color .65s var(--ease);
}

.about-statement.dimmed .gallery-word {
  color: #555550;
}

.about-statement.dimmed .gallery-word.is-active {
  color: #fff;
}

.orbit-gallery {
  position: fixed;
  inset: 0;
  z-index: 22;
  display: none;
  pointer-events: none;
}

.orbit-gallery.is-visible {
  display: block;
}

.orbit-item {
  position: fixed;
  width: clamp(105px, 10vw, 165px);
  aspect-ratio: 4 / 3;
  display: block;
  place-items: end start;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  color: rgba(255,255,255,.8);
  background: linear-gradient(145deg, #343434, #151515);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 4px;
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
  transform: translate(-50%, -50%);
  transition: opacity .72s var(--ease-enter), filter .72s var(--ease), box-shadow .72s var(--ease);
}

.orbit-gallery.is-visible .orbit-item {
  opacity: 1;
}

.orbit-item[hidden] {
  display: none !important;
}

.orbit-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: none;
}

.orbit-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  display: none;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(7,7,7,.7);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.orbit-placeholder {
  display: grid;
  place-items: end start;
  padding: 12px;
  font-size: .75rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.orbit-item:nth-child(2n) {
  background: linear-gradient(145deg, #1c1c1c, #484848);
}

.orbit-item:nth-child(3n) {
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #474747, #202020);
}

.about-marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(255,255,255,.58);
  font-size: clamp(.68rem, 1.2vw, .9rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-marquee div {
  width: max-content;
  animation: about-marquee 25s linear infinite;
}

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

.about-details {
  position: relative;
  z-index: 3;
  padding: 0 var(--pad) clamp(72px, 9vw, 110px);
  background: linear-gradient(180deg, rgba(7,7,7,.18), rgba(7,7,7,.34));
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.about-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(84px, 110px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 44px);
  padding: clamp(42px, 5.5vw, 72px) 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.about-row::before {
  content: attr(data-section);
  position: absolute;
  right: 0;
  top: -.2em;
  z-index: 0;
  color: rgba(255,255,255,.025);
  font-size: clamp(8rem, 22vw, 24rem);
  font-weight: 500;
  letter-spacing: -.09em;
  line-height: .8;
  pointer-events: none;
}

.about-row h2 {
  position: sticky;
  top: 34px;
  z-index: 1;
  margin: 0;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.about-body {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}

.about-body > p {
  margin: 0;
  color: #d8d8d3;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.17;
  text-wrap: balance;
}

.service-list,
.process-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li,
.process-list li {
  display: grid;
  grid-template-columns: 52px minmax(130px, .55fr) minmax(0, 1fr);
  gap: 22px;
  padding: 15px 0;
  border-top: 1px solid var(--soft-line);
  transition: transform var(--duration-ui) var(--ease), background var(--duration-ui) ease, padding var(--duration-ui) var(--ease);
}

.service-list li:hover,
.process-list li:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: rgba(255,255,255,.035);
  transform: translateX(8px);
}

.service-list span,
.process-list span {
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .13em;
}

.service-list strong,
.process-list strong {
  font-size: 1rem;
  font-weight: 400;
}

.service-list p,
.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.fact {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--soft-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--duration-section) var(--ease), border-color var(--duration-ui) ease, background var(--duration-ui) ease;
}

.fact:hover {
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.035);
  transform: translateY(-8px);
}

.fact strong {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  letter-spacing: -.06em;
}

.fact span {
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.how-review-grid {
  display: block;
}

.about-lead {
  margin: 0;
  color: #e4e4df;
  font-size: clamp(1.45rem, 2.4vw, 2.45rem);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.18;
  text-wrap: balance;
}

.faq-list details {
  border-top: 1px solid rgba(255,255,255,.2);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: #f0efea;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-weight: 400;
  letter-spacing: -.02em;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 3px;
  color: rgba(255,255,255,.66);
  font-size: 1.25rem;
  font-weight: 300;
  transform: translateY(-50%);
  transition: transform var(--duration-ui) var(--ease);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details > p {
  max-width: 780px;
  margin: -2px 0 24px;
  color: #bdbdb7;
  font-size: .98rem;
  line-height: 1.65;
}

body.cinema-open {
  overflow: hidden;
}

.cinema-player[hidden] {
  display: none;
}

.cinema-player {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 44px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .48s var(--ease-enter), visibility .48s;
}

.cinema-player.is-open {
  opacity: 1;
  visibility: visible;
}

.cinema-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cinema-stage {
  position: relative;
  z-index: 1;
  width: min(94vw, 145svh, 1500px);
  max-height: 94svh;
  padding: clamp(12px, 1.8vw, 24px);
  border: 1px solid rgba(255,255,255,.18);
  background: #080808;
  box-shadow: 0 35px 120px rgba(0,0,0,.72);
  opacity: 0;
  transform: scale(.92) translateY(22px);
  transition: opacity .58s var(--ease-enter), transform .72s var(--ease-enter);
  outline: 0;
}

.cinema-player.is-open .cinema-stage {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.cinema-stage.is-vertical {
  width: min(92vw, 560px);
}

.cinema-topbar,
.cinema-meta,
.cinema-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cinema-topbar {
  padding-bottom: 12px;
}

.cinema-topbar p,
.cinema-topbar button,
.cinema-actions a,
.cinema-actions button {
  margin: 0;
  color: rgba(255,255,255,.7);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: .75rem;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}

.cinema-topbar button,
.cinema-actions a,
.cinema-actions button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: color var(--duration-ui) ease, background var(--duration-ui) ease;
}

.cinema-topbar button:hover,
.cinema-actions a:hover,
.cinema-actions button:hover,
.cinema-topbar button:focus-visible,
.cinema-actions a:focus-visible,
.cinema-actions button:focus-visible {
  color: #070707;
  background: #fff;
  outline: 0;
}

.cinema-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  background-position: center;
  background-size: cover;
}

.cinema-frame.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0,0,0,.58);
}

.cinema-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  color: rgba(255,255,255,.82);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cinema-loading span {
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.28);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cinema-spin .85s linear infinite;
}

.cinema-loading p {
  margin: 0;
}

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

.cinema-stage.is-vertical .cinema-frame {
  width: min(100%, 38.25svh, 428px);
  height: auto;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
}

.cinema-frame iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  opacity: 1;
  transition: opacity .32s var(--ease-enter);
}

.cinema-frame.is-loading iframe {
  opacity: 0;
}

.cinema-meta {
  padding-top: 14px;
}

.cinema-meta h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.65rem);
  font-weight: 400;
  letter-spacing: -.03em;
}

.process-page .contact-sheet {
  position: fixed;
  opacity: .2;
  filter: saturate(.9) brightness(.72);
}

.process-page .photo-vignette {
  background: linear-gradient(180deg, rgba(7,7,7,.48), rgba(7,7,7,.84) 58%, #070707 100%);
}

.process-main {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.process-intro {
  min-height: 88svh;
  display: grid;
  align-content: end;
  gap: 22px;
  padding: 170px var(--pad) clamp(80px, 10vw, 150px);
}

.process-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: clamp(36px, 7vw, 120px);
}

.process-intro h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4rem, 8.8vw, 10rem);
  font-weight: 300;
  letter-spacing: -.075em;
  line-height: .82;
}

.process-intro-grid > div {
  max-width: 33rem;
  padding-bottom: .5rem;
}

.process-intro-grid p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.74);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.5;
}

.process-intro-grid span {
  color: rgba(255,255,255,.66);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.process-route {
  position: relative;
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 40px var(--pad) 100px;
}

.process-thread {
  position: absolute;
  inset: 40px var(--pad) 100px;
  pointer-events: none;
}

.process-thread span {
  display: block;
  width: 34%;
  height: 25%;
  margin-left: 50%;
  border: 1px solid rgba(255,255,255,.38);
  border-left: 0;
  border-radius: 0 50% 50% 0;
}

.process-thread span:nth-child(even) {
  margin-left: 16%;
  border-right: 0;
  border-left: 1px solid rgba(255,255,255,.38);
  border-radius: 50% 0 0 50%;
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: clamp(440px, 43vw, 620px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
}

.process-card {
  position: relative;
  width: min(100%, 700px);
  overflow: visible;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(8,8,8,.86);
  box-shadow: 0 34px 110px rgba(0,0,0,.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.process-step:nth-of-type(odd) .process-card {
  grid-column: 7 / 13;
  justify-self: end;
}

.process-step:nth-of-type(even) .process-card {
  grid-column: 1 / 7;
  justify-self: start;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 13px;
  aspect-ratio: 1;
  border: 3px solid #070707;
  border-radius: 50%;
  background: #f4f3ef;
  box-shadow: 0 0 0 1px rgba(255,255,255,.46);
  transform: translateY(-50%);
}

.process-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(24px, 3vw, 46px);
  height: 1px;
  background: rgba(255,255,255,.46);
}

.process-step:nth-of-type(odd) .process-card::before { left: calc(clamp(24px, 3vw, 46px) * -1 - 7px); }
.process-step:nth-of-type(odd) .process-card::after { right: 100%; }
.process-step:nth-of-type(even) .process-card::before { right: calc(clamp(24px, 3vw, 46px) * -1 - 7px); }
.process-step:nth-of-type(even) .process-card::after { left: 100%; }

.process-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}

.process-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.62));
}

.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-enter);
}

.process-card:hover .process-media img { transform: scale(1.035); }

.process-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 15px;
  left: 18px;
  z-index: 1;
  color: rgba(255,255,255,.76);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.process-card-body {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
  padding: clamp(24px, 3vw, 42px);
}

.process-number,
.process-label {
  color: rgba(255,255,255,.66);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.process-label { margin: 0 0 12px; }

.process-card h2 {
  max-width: 15ch;
  margin: 0 0 18px;
  font-size: clamp(1.65rem, 3vw, 3.1rem);
  font-weight: 300;
  letter-spacing: -.05em;
  line-height: 1;
}

.process-card-body div > p:last-child {
  max-width: 43rem;
  margin: 0;
  color: rgba(255,255,255,.66);
  line-height: 1.55;
}

.process-cta {
  position: relative;
  z-index: 2;
}

.inline-link {
  color: inherit;
  text-decoration-color: rgba(255,255,255,.48);
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}

.inline-link:hover {
  text-decoration-color: currentColor;
}

.service-page {
  --service-video-blur: 0px;
  --service-shade-opacity: .38;
  background: #070707;
}

.service-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #070707;
}

.service-background-video {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  filter: blur(var(--service-video-blur)) saturate(.98) brightness(.76);
  transform: translateZ(0) scale(1.035);
  transform-origin: center;
  will-change: filter;
}

.service-background-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 18%, rgba(7,7,7,.02), rgba(7,7,7,.48) 72%),
    linear-gradient(180deg, rgba(7,7,7,.2), rgba(7,7,7,.54));
  opacity: var(--service-shade-opacity);
  will-change: opacity;
}

.service-main {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.service-hero {
  position: relative;
  overflow: hidden;
  min-height: 88svh;
  display: grid;
  align-content: end;
  gap: clamp(24px, 4vw, 54px);
  padding: 150px var(--pad) clamp(72px, 8vw, 112px);
}

.service-hero > .section-kicker,
.service-hero > .service-hero-grid {
  position: relative;
  z-index: 2;
}

.service-hero-grid,
.service-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
  gap: clamp(45px, 8vw, 135px);
  align-items: end;
}

.service-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(4.2rem, 8.6vw, 9.6rem);
  font-weight: 300;
  letter-spacing: -.078em;
  line-height: .84;
}

.service-hero-copy {
  max-width: 37rem;
  padding-bottom: .4rem;
}

.service-hero-copy p,
.service-prose p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.04rem, 1.45vw, 1.34rem);
  line-height: 1.55;
}

.service-hero-copy p + p,
.service-prose p + p {
  margin-top: 1.15em;
}

.service-section {
  position: relative;
  padding: clamp(76px, 8vw, 118px) var(--pad);
  border-top: 1px solid rgba(255,255,255,.16);
  background: rgba(7,7,7,.2);
  backdrop-filter: saturate(.9);
}

.service-section-grid {
  align-items: start;
}

.service-section h2 {
  max-width: 11ch;
  margin: 24px 0 0;
  font-size: clamp(2.8rem, 5.8vw, 6.8rem);
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .9;
}

.service-prose {
  max-width: 43rem;
}

.service-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(54px, 6vw, 86px);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.18);
}

.service-capability {
  min-height: 260px;
  padding: clamp(24px, 3.4vw, 48px);
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.service-capability > span {
  display: block;
  margin-bottom: clamp(52px, 6vw, 90px);
  color: rgba(255,255,255,.52);
  font-size: .72rem;
  letter-spacing: .16em;
}

.service-capability h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.service-capability p {
  margin: 20px 0 0;
  color: rgba(255,255,255,.64);
  line-height: 1.55;
}

.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 22px);
  margin-top: clamp(54px, 6vw, 82px);
}

.service-proof-grid figure {
  margin: 0;
}

.service-proof-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.service-proof-grid figcaption {
  padding-top: 13px;
  color: rgba(255,255,255,.58);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-work-cta {
  position: relative;
  padding: clamp(76px, 9vw, 132px) var(--pad);
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: rgba(7,7,7,.18);
}

.service-work-cta > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  margin-top: clamp(2.5rem, 5vw, 5.5rem);
  color: #f1f0eb;
  text-decoration: none;
}

.service-work-cta span {
  font-size: clamp(3.6rem, 9vw, 10rem);
  font-weight: 300;
  letter-spacing: -.075em;
  line-height: .86;
}

.service-work-cta b {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 300;
  transition: transform var(--duration-ui) var(--ease);
}

.service-work-cta a:hover b,
.service-work-cta a:focus-visible b {
  transform: translate(.4rem, -.4rem);
}

.service-faq-list details {
  border-top: 1px solid rgba(255,255,255,.2);
}

.service-faq-list details:last-child {
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.service-faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  cursor: pointer;
  list-style: none;
  color: #f1f0eb;
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  letter-spacing: -.025em;
}

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

.service-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 0;
  color: rgba(255,255,255,.58);
  transition: transform .35s var(--ease);
}

.service-faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.service-faq-list details p {
  max-width: 48rem;
  margin: -3px 0 26px;
  color: rgba(255,255,255,.65);
  line-height: 1.58;
}

.service-cta {
  position: relative;
  z-index: 2;
}

/* Editorial project stories: visual proof first, production thinking second. */
.case-study-page {
  background: #070707;
}

.case-main {
  padding-top: clamp(90px, 8vw, 120px);
  overflow: clip;
}

.case-hero {
  padding: clamp(70px, 9vw, 130px) var(--pad) clamp(64px, 8vw, 110px);
}

.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: end;
}

.case-hero h1 {
  max-width: 11ch;
  margin: 24px 0 0;
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 300;
  letter-spacing: -.078em;
  line-height: .84;
  text-wrap: balance;
}

.case-deck {
  max-width: 34rem;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.5;
  text-wrap: pretty;
}

.case-film-link {
  position: relative;
  display: block;
  margin: 0 var(--pad);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #111;
}

.case-film-link img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.case-film-link.case-film-vertical {
  width: min(62vw, 720px);
  margin-inline: auto;
}

.case-film-link.case-film-vertical img { aspect-ratio: 9 / 16; }

.case-film-link::after {
  content: "Play film";
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
  display: grid;
  place-items: center;
  min-width: 106px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: rgba(7,7,7,.58);
  backdrop-filter: blur(10px);
}

.case-film-link:hover img,
.case-film-link:focus-visible img {
  transform: scale(1.015);
}

.case-section {
  display: grid;
  grid-template-columns: minmax(160px, .5fr) minmax(0, 1.5fr);
  gap: clamp(44px, 8vw, 130px);
  padding: clamp(80px, 10vw, 145px) var(--pad);
  border-top: 1px solid rgba(255,255,255,.16);
}

.case-section h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 6.4rem);
  font-weight: 300;
  letter-spacing: -.064em;
  line-height: .92;
}

.case-copy {
  max-width: 48rem;
}

.case-copy p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.case-copy p + p {
  margin-top: 1.25em;
}

.case-proof {
  margin: 0 var(--pad);
  padding: clamp(30px, 4vw, 54px) 0;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.case-proof a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.case-proof span { color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.case-proof strong { display: block; margin-top: 10px; font-size: clamp(1.3rem, 2.4vw, 2.25rem); font-weight: 400; line-height: 1.12; }
.case-proof b { font-size: 1.5rem; font-weight: 300; transition: transform var(--duration-ui) var(--ease); }
.case-proof a:hover b { transform: translate(5px, -5px); }

.case-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
  margin: 0 var(--pad);
  padding: clamp(32px, 5vw, 70px) 0;
  border-top: 1px solid rgba(255,255,255,.16);
}

.case-photo-strip figure {
  margin: 0;
  overflow: hidden;
  background: #151515;
}

.case-photo-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.case-faqs {
  padding: clamp(80px, 10vw, 145px) var(--pad);
  border-top: 1px solid rgba(255,255,255,.16);
}

.case-faqs-head {
  display: grid;
  grid-template-columns: minmax(160px, .5fr) minmax(0, 1.5fr);
  gap: clamp(44px, 8vw, 130px);
  margin-bottom: clamp(44px, 6vw, 88px);
}

.case-faqs h2 { max-width: 12ch; margin: 0; font-size: clamp(2.6rem, 5.5vw, 6.4rem); font-weight: 300; letter-spacing: -.064em; line-height: .92; }
.case-faq-list { max-width: 62rem; margin-left: auto; border-top: 1px solid rgba(255,255,255,.2); }
.case-faq-list details { border-bottom: 1px solid rgba(255,255,255,.2); }
.case-faq-list summary { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: center; padding: 23px 0; cursor: pointer; list-style: none; font-size: clamp(1rem, 1.35vw, 1.2rem); }
.case-faq-list summary::-webkit-details-marker { display: none; }
.case-faq-list summary::after { content: "+"; color: rgba(255,255,255,.55); font-size: 1.3rem; font-weight: 300; }
.case-faq-list details[open] summary::after { content: "-"; }
.case-faq-list p { max-width: 48rem; margin: 0; padding: 0 40px 24px 0; color: rgba(255,255,255,.66); line-height: 1.65; }

.case-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.2);
}

.case-facts div {
  padding: 24px 18px 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.case-facts dt {
  color: rgba(255,255,255,.46);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.case-facts dd {
  margin: 12px 0 0;
  color: rgba(255,255,255,.86);
}

.case-next {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  padding: clamp(80px, 10vw, 145px) var(--pad);
  border-top: 1px solid rgba(255,255,255,.16);
  color: inherit;
  text-decoration: none;
}

.case-next span {
  color: rgba(255,255,255,.52);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.case-next strong {
  display: block;
  margin-top: 20px;
  font-size: clamp(2.8rem, 7vw, 8rem);
  font-weight: 300;
  letter-spacing: -.07em;
  line-height: .9;
}

.case-next b {
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 300;
  transition: transform var(--duration-ui) var(--ease);
}

.case-next:hover b { transform: translate(6px, -6px); }

@media (max-width: 820px) {
  .case-film-link.case-film-vertical { width: calc(100% - (var(--pad) * 2)); }
  .case-hero-grid,
  .case-section,
  .case-faqs-head {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .case-faq-list { margin-left: 0; }

  .case-hero h1 { font-size: clamp(3.6rem, 16vw, 6.4rem); }
  .case-hero { padding: 54px 20px 64px; }
  .case-film-link { margin-right: 20px; margin-left: 20px; }
  .case-proof { margin: 0 20px; }
  .case-photo-strip { grid-template-columns: 1fr; margin: 0 20px; }
  .case-section { padding: 76px 20px; }
  .case-faqs { padding: 76px 20px; }
  .case-faq-list summary { min-height: 44px; padding: 20px 0; line-height: 1.35; }
  .case-facts { grid-template-columns: 1fr; }
  .case-next { padding: 76px 20px; }
}

@media (max-width: 980px) {
  .service-hero {
    min-height: 80svh;
    padding-top: 140px;
  }

  .service-hero-grid,
  .service-section-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

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

@media (max-width: 640px) {
  .service-hero {
    min-height: 82svh;
    gap: 22px;
    padding: 132px 20px 76px;
  }

  .service-hero h1 {
    font-size: clamp(3.5rem, 16.5vw, 5.5rem);
    line-height: .86;
  }

  .service-background-video { inset: -5%; width: 110%; height: 110%; }

  .service-section {
    padding: 64px 20px;
  }

  .service-section h2 {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .service-capabilities,
  .service-proof-grid {
    grid-template-columns: 1fr;
  }

  .service-capability {
    min-height: 0;
  }

  .service-capability > span {
    margin-bottom: 46px;
  }

  .service-work-cta { padding: 64px 20px; }
  .service-work-cta > a { min-height: 44px; align-items: center; }
  .service-work-cta span { font-size: clamp(3.5rem, 18vw, 5.25rem); }
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.contact-copy > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #c7c7c2;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  font-weight: 300;
  line-height: 1.4;
}

.direct-links {
  display: grid;
  gap: 10px;
  margin-top: 45px;
}

.direct-links a {
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-top: 1px solid var(--soft-line);
  color: #fff;
  font-size: .75rem;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-form {
  padding: clamp(25px, 4vw, 50px);
  background: #0e0e0e;
  border: 1px solid var(--soft-line);
}

.field {
  display: grid;
  gap: 9px;
  margin-bottom: 25px;
}

.field label {
  color: #d2d2cd;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.34);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: #fff;
}

.field select option {
  background: #111;
}

.form-note {
  max-width: 32rem;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.5;
}

.submit-button,
.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: #090909;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.submit-button:hover,
.pill-link:hover {
  background: transparent;
  color: #fff;
}

.site-cta {
  margin: 0 var(--pad);
  padding: clamp(70px, 10vw, 125px) 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-cta p {
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-cta a {
  display: inline-block;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(3.1rem, 8vw, 8rem);
  font-weight: 300;
  letter-spacing: -.07em;
  line-height: .95;
  text-decoration: none;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 35px var(--pad);
  border-top: 1px solid var(--soft-line);
}

.motion-marquee {
  overflow: hidden;
  padding: clamp(25px, 3.2vw, 42px) 0;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-run 25s linear infinite;
  will-change: transform;
}

.marquee-track span {
  padding-right: 2.4vw;
  color: #e8e7e2;
  font-size: clamp(1.5rem, 3vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.marquee-track i {
  margin-left: 2.4vw;
  color: #696965;
  font-style: normal;
}

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

.motion-ready body:not(.is-ready) .site-header,
.motion-ready body:not(.is-ready) .hero-copy > * {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.site-header,
.hero-copy > * {
  transition: opacity var(--duration-section) var(--ease-enter), transform var(--duration-section) var(--ease-enter);
}

.hero-copy .hero-title {
  transition-delay: .08s;
}

.hero-copy .hero-route-links {
  transition-delay: .16s;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition: opacity var(--duration-section) var(--ease-enter), transform var(--duration-section) var(--ease-enter);
}

.motion-ready [data-reveal].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .project-card[data-reveal] {
  transition-delay: calc(var(--reveal-index, 0) * 40ms);
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 2px;
  background: rgba(255,255,255,.9);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
  will-change: transform;
}

.cursor-orb {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8000;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  color: #fff;
  background: rgba(7,7,7,.12);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0) scale(.45);
  transition: opacity .2s ease, width .35s var(--ease), height .35s var(--ease), background .35s ease, color .35s ease;
  backdrop-filter: blur(7px);
  mix-blend-mode: difference;
  will-change: transform;
}

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

.cursor-orb.is-action {
  width: 82px;
  height: 82px;
  border-color: #fff;
  background: #fff;
  color: #070707;
  mix-blend-mode: normal;
}

.route-label {
  position: fixed;
  right: clamp(18px, 2.5vw, 36px);
  top: 50%;
  z-index: 20;
  color: rgba(255,255,255,.64);
  font-size: .75rem;
  letter-spacing: .18em;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
}

.magnetic {
  display: inline-flex;
  will-change: transform;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.simple-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
}

.simple-page h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 300;
  letter-spacing: -.07em;
}

.simple-page p {
  max-width: 520px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.simple-page .pill-link {
  margin-top: 32px;
}

@media (max-width: 820px) {
  :root { --page-reveal-duration: .48s; }

  .desktop-nav { display: none; }
  .menu-panel { display: grid; }

  .home-intro,
  .work-intro,
  .process-intro-grid,
  .about-row,
  .contact-intro,
  .work-context,
  .contact-guide {
    grid-template-columns: 1fr;
  }

  .home-intro,
  .work-intro,
  .contact-intro {
    gap: 42px;
  }

  .work-intro-copy {
    justify-self: start;
  }

  .work-context,
  .contact-guide {
    gap: 36px;
    padding: 76px 20px;
  }

  .work-context-copy,
  .contact-guide-copy {
    justify-self: start;
  }

  .contact-brief-list div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-intro {
    min-height: 76svh;
    padding-top: 140px;
  }

  .process-intro-grid {
    align-items: start;
  }

  .process-intro h1 { max-width: 10ch; }

  .process-route {
    padding-right: 20px;
    padding-left: 74px;
  }

  .process-thread {
    inset: 40px auto 100px 39px;
    width: 1px;
  }

  .process-thread span,
  .process-thread span:nth-child(even) {
    width: 1px;
    height: 25%;
    margin: 0;
    border: 0;
    border-left: 1px solid rgba(255,255,255,.38);
    border-radius: 0;
  }

  .process-step {
    min-height: 0;
    display: block;
    margin-bottom: clamp(72px, 16vw, 120px);
  }

  .process-step .process-card,
  .process-step:nth-of-type(odd) .process-card,
  .process-step:nth-of-type(even) .process-card {
    width: 100%;
  }

  .process-step .process-card::before,
  .process-step:nth-of-type(odd) .process-card::before,
  .process-step:nth-of-type(even) .process-card::before {
    right: auto;
    left: -43px;
  }

  .process-step .process-card::after,
  .process-step:nth-of-type(odd) .process-card::after,
  .process-step:nth-of-type(even) .process-card::after {
    right: 100%;
    left: auto;
    width: 35px;
  }

  .project-card,
  .project-card.wide,
  .project-card.narrow {
    grid-column: span 12;
  }

  .project-card.vertical {
    width: min(100%, 440px);
    justify-self: center;
  }

  .project-card.tall .project-media {
    aspect-ratio: 16 / 9;
  }

  .orbit-gallery,
  .orbit-gallery.is-visible {
    inset: auto 12px 12px;
    z-index: 60;
    display: flex !important;
    height: min(38svh, 310px);
    gap: 9px;
    padding: 9px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(8,8,8,.82);
    box-shadow: 0 24px 80px rgba(0,0,0,.58);
    opacity: 0;
    visibility: hidden;
    transform: translateY(calc(100% + 30px));
    transition: opacity .72s var(--ease-enter), transform .8s var(--ease-enter), visibility .8s;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    pointer-events: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  body.gallery-open { overflow: hidden; }
  .orbit-close { display: inline-flex; align-items: center; justify-content: center; }

  .orbit-gallery.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .orbit-gallery::-webkit-scrollbar { display: none; }

  .orbit-item,
  .orbit-item:nth-child(3n) {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    flex: 0 0 min(68vw, 360px);
    width: auto;
    height: 100%;
    aspect-ratio: auto;
    opacity: 1;
    transform: none !important;
    scroll-snap-align: center;
  }

  .gallery-word {
    touch-action: manipulation;
  }

  .about-row h2 {
    position: static;
  }

  .about-row {
    gap: 20px;
  }

  .service-list li,
  .process-list li {
    grid-template-columns: 28px minmax(92px, .62fr) minmax(0, 1fr);
  }

  .service-list p,
  .process-list p {
    grid-column: auto;
  }

  .facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .fact {
    min-height: 112px;
    padding: 14px;
  }

  .contact-sheet {
    inset: -5vh -35vw;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
    opacity: .3;
  }

  .route-label,
  .cursor-orb {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 24px;
  }

  .home-hero {
    min-height: 100svh;
  }

  .hero-video {
    object-position: 50% center;
    filter: saturate(.9) contrast(1.03) brightness(.74);
  }

  .hero-copy {
    padding-bottom: 150px;
  }

  .hero-title {
    font-size: clamp(3.2rem, 17vw, 5.8rem);
    line-height: .95;
  }

  .hero-route-links {
    width: 100%;
    gap: 5px;
    margin-top: 38px;
  }

  .hero-route-links a {
    min-width: 0;
    flex: 1;
    padding: 12px 7px;
    font-size: .75rem;
  }

  .project-grid {
    row-gap: 45px;
    column-gap: 0;
  }

  .process-intro {
    min-height: 84svh;
    gap: 16px;
    padding-bottom: 82px;
  }

  .process-intro h1 {
    font-size: clamp(3.5rem, 17vw, 5.6rem);
  }

  .process-route {
    padding-left: 58px;
  }

  .process-thread { left: 29px; }

  .process-step .process-card::before,
  .process-step:nth-of-type(odd) .process-card::before,
  .process-step:nth-of-type(even) .process-card::before { left: -37px; }

  .process-step .process-card::after,
  .process-step:nth-of-type(odd) .process-card::after,
  .process-step:nth-of-type(even) .process-card::after { width: 29px; }

  .process-card-body {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 22px 18px 25px;
  }

  .project-media {
    aspect-ratio: 16 / 9;
  }

  .cinema-player {
    padding: 8px;
  }

  .cinema-stage {
    width: calc(100vw - 16px);
    padding: 10px;
  }

  .cinema-stage.is-vertical {
    width: min(calc(100vw - 16px), 430px);
  }

  .cinema-stage.is-vertical .cinema-frame {
    width: min(100%, 34.875svh);
    height: auto;
  }

  .cinema-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .cinema-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .section-heading {
    align-items: center;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* iOS Safari and Instagram's iPhone browser can corrupt decoded images when
   filters, transformed ancestors and backdrop compositing are combined. */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 980px) {
    ::view-transition-old(root),
    ::view-transition-new(root) {
      animation: none !important;
      filter: none !important;
      transform: none !important;
    }

    .project-media,
    .project-media img,
    .process-media,
    .process-media img,
    .orbit-item,
    .orbit-item img,
    .service-proof-grid img,
    .contact-sheet,
    .contact-tile {
      filter: none !important;
      transform: none !important;
      transition: none !important;
      will-change: auto !important;
      -webkit-backface-visibility: visible;
      backface-visibility: visible;
    }

    .motion-ready .project-media::before {
      display: none;
    }

    .project-index,
    .orbit-gallery,
    .contact-form,
    .nav-toggle,
    .hero-route-links a {
      -webkit-backdrop-filter: none !important;
      backdrop-filter: none !important;
    }

    .contact-sheet {
      inset: -5vh -12vw;
      animation: none !important;
      opacity: .25;
    }

    .about-page .contact-sheet {
      opacity: .32;
    }

    .photo-vignette {
      background:
        radial-gradient(circle at 50% 38%, rgba(7,7,7,.18), rgba(7,7,7,.72) 70%),
        linear-gradient(180deg, rgba(7,7,7,.2), rgba(7,7,7,.72));
    }
  }
}

/* The in-app Instagram browser does not reliably expose every Safari feature
   query. The small iOS class is assigned before the page's motion system
   starts, preventing image tiles from ever entering a GPU animation layer. */
.ios-safe .project-card[data-reveal],
.ios-safe .project-card[data-reveal].is-in,
.ios-safe .process-step[data-reveal],
.ios-safe .process-step[data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: none;
}

.ios-safe .project-card,
.ios-safe .project-media,
.ios-safe .project-media img,
.ios-safe .project-media::before,
.ios-safe .project-media::after,
.ios-safe .project-index {
  -webkit-mask-image: none;
  clip-path: none;
  filter: none;
  transform: none;
  transition: none;
  will-change: auto;
}

.ios-safe .project-media {
  isolation: auto;
  contain: layout paint;
}

.ios-safe .project-media::before { display: none; }

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 1ms;
    --duration-ui: 1ms;
    --duration-section: 1ms;
    --duration-page: 1ms;
    --page-reveal-duration: 1ms;
  }
  html { scroll-behavior: auto; }
  .hero-video,
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .contact-sheet,
  .marquee-track {
    animation: none !important;
  }

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

/* v26: proof-first homepage and direct desktop navigation */
@media (min-width: 821px) {
  .site-header .desktop-nav,
  .home-page .desktop-nav { display: flex; }
  .site-header .nav-toggle { display: none; }
  .site-header.is-fixed .desktop-nav { pointer-events: auto; }
}

.hero-title-service {
  max-width: 13ch;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(3.2rem, 7.8vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .88;
  text-transform: none;
}

.hero-intro {
  max-width: 42rem;
  margin: 28px auto 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.5;
}

.hero-title-service + .hero-intro + .hero-route-links a:first-child { min-width: 176px; }
.hero-title-service + .hero-intro + .hero-route-links a:last-child { min-width: 160px; }

.home-featured {
  position: relative;
  z-index: 2;
  padding: clamp(105px, 13vw, 190px) var(--pad);
  background: rgba(7,7,7,.9);
}

.home-section-head {
  display: grid;
  grid-template-columns: minmax(160px, .52fr) minmax(0, 1.48fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: start;
}

.home-section-head h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.4rem, 7.5vw, 8rem);
  font-weight: 300;
  letter-spacing: -.072em;
  line-height: .88;
}

.home-section-head > div > p {
  max-width: 42rem;
  margin: 32px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

.featured-projects {
  display: grid;
  gap: clamp(86px, 12vw, 170px);
  margin-top: clamp(76px, 11vw, 150px);
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(260px, .58fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
}

.featured-project-reverse { grid-template-columns: minmax(260px, .58fr) minmax(0, 1.42fr); }
.featured-project-reverse .featured-image { grid-column: 2; }
.featured-project-reverse .featured-copy { grid-column: 1; grid-row: 1; }

.featured-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
  text-decoration: none;
}

.featured-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .7s var(--ease-enter), filter .45s ease;
}

.featured-image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  background: rgba(7,7,7,.48);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.featured-image:hover img,
.featured-image:focus-visible img { transform: scale(1.025); filter: saturate(1.08); }

.featured-copy { padding-bottom: 6px; }
.featured-copy > p:first-child {
  margin: 0 0 18px;
  color: rgba(255,255,255,.48);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.featured-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.7rem);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: .95;
}
.featured-copy h3 + p {
  margin: 26px 0 0;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
}
.featured-copy a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 20px;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.3);
}

@media (max-width: 820px) {
  .hero-copy { padding: 118px 20px 104px; }
  .hero-title-service {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.55rem, 11.5vw, 4.8rem);
    letter-spacing: -.055em;
    line-height: .92;
  }
  .hero-copy .kicker { max-width: 100%; font-size: .66rem; letter-spacing: .16em; }
  .hero-intro { max-width: 30rem; margin-top: 24px; }
  .hero-route-links { flex-direction: column; align-items: center; }
  .hero-route-links a { width: min(100%, 240px); }
  .home-section-head,
  .featured-project,
  .featured-project-reverse { grid-template-columns: 1fr; }
  .home-section-head { gap: 34px; }
  .home-section-head h2 { font-size: clamp(3rem, 14vw, 5.2rem); }
  .featured-project-reverse .featured-image,
  .featured-project-reverse .featured-copy { grid-column: auto; grid-row: auto; }
  .featured-project-reverse .featured-image { order: 0; }
  .featured-project-reverse .featured-copy { order: 1; }
  .featured-copy h3 { font-size: clamp(2.2rem, 10vw, 4rem); }
}

.process-practical {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 8vw, 130px);
  padding: clamp(100px, 13vw, 180px) var(--pad);
  border-top: 1px solid var(--line);
}
.process-practical h2 {
  max-width: 11ch;
  margin: 28px 0 0;
  font-size: clamp(2.7rem, 5.5vw, 6.3rem);
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .92;
}
.process-practical dl { margin: 0; border-top: 1px solid var(--line); }
.process-practical dl > div { padding: 24px 0; border-bottom: 1px solid var(--line); }
.process-practical dt { font-size: clamp(1.2rem, 2vw, 1.75rem); }
.process-practical dd { max-width: 42rem; margin: 12px 0 0; color: var(--muted); line-height: 1.6; }

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field-pair > div { min-width: 0; }

@media (max-width: 820px) {
  .process-practical { grid-template-columns: 1fr; }
  .process-practical h2 { font-size: clamp(2.8rem, 13vw, 5rem); }
}

@media (max-width: 560px) {
  .field-pair { grid-template-columns: 1fr; }
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 var(--pad) clamp(42px, 6vw, 76px);
}
.work-filters button {
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255,255,255,.68);
  background: transparent;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.work-filters button:hover,
.work-filters button:focus-visible,
.work-filters button[aria-pressed="true"] { color: #070707; background: #f4f3ef; outline: 0; }
.project-card[hidden] { display: none; }

/* v28 — denser, proof-led homepage */
.home-content-v28 { background: #070707; }

.home-content-v28 .home-reel,
.home-content-v28 .home-archive,
.home-content-v28 .home-next {
  position: relative;
  z-index: 2;
}

.home-reel {
  padding: clamp(96px, 11vw, 160px) var(--pad);
  background: #0a0a0a;
}

.home-reel-head {
  display: grid;
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1.58fr);
  gap: clamp(34px, 7vw, 120px);
  align-items: end;
  margin-bottom: clamp(45px, 7vw, 92px);
}

.home-reel-head h2,
.home-archive-head h2,
.home-proof h2,
.home-next h2 {
  margin: 0;
  font-weight: 300;
  letter-spacing: -.06em;
  line-height: .93;
}

.home-reel-head h2 { font-size: clamp(3.2rem, 6.5vw, 7rem); }
.home-reel-head > div > p {
  max-width: 38rem;
  margin: 26px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.home-reel-player {
  width: 100%;
  max-height: min(72vh, 820px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.home-archive {
  padding: clamp(96px, 12vw, 180px) var(--pad);
  background: #070707;
}

.home-archive-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(52px, 8vw, 100px);
}

.home-archive-head h2 {
  max-width: 13ch;
  margin-top: 22px;
  font-size: clamp(3rem, 5.7vw, 6rem);
}

.home-archive-head > p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.6;
}

.home-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(18px, 2.2vw, 34px);
  row-gap: clamp(48px, 6vw, 82px);
}

.home-work-grid article,
.home-work-grid a { min-width: 0; }
.home-work-grid a { display: block; color: #fff; text-decoration: none; }

.home-work-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
}

.home-work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease-enter), filter .45s ease;
}

.home-work-image-vertical img { object-position: center 40%; }

.home-work-image > span {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: rgba(7,7,7,.36);
  font-size: .68rem;
  backdrop-filter: blur(10px);
}

.home-work-grid a:hover .home-work-image img,
.home-work-grid a:focus-visible .home-work-image img { transform: scale(1.035); filter: saturate(1.08); }

.home-work-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  min-height: 116px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.home-work-meta h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.home-work-meta p,
.home-work-meta small {
  display: block;
  margin: 10px 0 0;
  color: rgba(255,255,255,.52);
  font-size: .72rem;
  letter-spacing: .1em;
  line-height: 1.45;
  text-transform: uppercase;
}
.home-work-meta small { color: rgba(255,255,255,.78); }
.home-work-meta b { font-weight: 300; transition: transform .25s var(--ease); }
.home-work-grid a:hover .home-work-meta b { transform: translate(3px, -3px); }
.home-archive > .home-inline-link { margin-top: clamp(55px, 7vw, 90px); }

.home-proof {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(290px, .9fr) minmax(0, 1.1fr);
  gap: clamp(52px, 9vw, 150px);
  padding: clamp(96px, 12vw, 180px) var(--pad);
  color: #111;
  background: #e8e5dd;
}

.home-proof .section-kicker { color: rgba(17,17,17,.56); }
.home-proof h2 { max-width: 10ch; margin-top: 28px; font-size: clamp(3.2rem, 6.2vw, 6.8rem); }
.home-proof-intro > p:not(.section-kicker) {
  max-width: 37rem;
  margin: 34px 0 0;
  color: rgba(17,17,17,.72);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.6;
}
.home-proof-intro > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 28px;
  border-bottom: 1px solid rgba(17,17,17,.36);
  color: #111;
  text-decoration: none;
}
.home-proof-list { border-top: 1px solid rgba(17,17,17,.25); }
.home-proof-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid rgba(17,17,17,.25);
}
.home-proof-list article > span { color: rgba(17,17,17,.45); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.home-proof-list h3 { margin: 0; font-size: clamp(1.35rem, 2.2vw, 2.15rem); font-weight: 400; letter-spacing: -.035em; line-height: 1.08; }
.home-proof-list p { max-width: 38rem; margin: 13px 0 0; color: rgba(17,17,17,.68); line-height: 1.6; }
.home-proof-press p { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.home-proof-press a { color: #111; text-decoration: underline; text-decoration-color: rgba(17,17,17,.3); text-underline-offset: 5px; }

.home-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: clamp(45px, 8vw, 130px);
  padding: clamp(96px, 12vw, 170px) var(--pad);
  background: rgba(7,7,7,.93);
}
.home-next h2 { max-width: 12ch; margin-top: 28px; font-size: clamp(3.1rem, 5.8vw, 6.2rem); }
.home-next-copy { align-self: end; }
.home-next-copy > p { margin: 0; color: rgba(255,255,255,.7); font-size: clamp(1.08rem, 1.55vw, 1.35rem); line-height: 1.65; }
.home-next-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.home-next-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .08em;
  text-decoration: none;
}
.home-next-actions a:first-child { color: #070707; background: #f4f3ef; }

@media (min-width: 821px) {
  .desktop-nav a,
  .menu-panel a { font-size: .84rem; }
  .hero-title-service { max-width: 15ch; font-size: clamp(3.6rem, 6.7vw, 6.9rem); }
}

@media (max-width: 980px) {
  .home-work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-proof { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .home-reel,
  .home-archive,
  .home-proof,
  .home-next { padding-right: 20px; padding-left: 20px; }
  .home-reel-head,
  .home-archive-head,
  .home-next { grid-template-columns: 1fr; }
  .home-reel-head { align-items: start; }
  .home-reel-head h2,
  .home-archive-head h2,
  .home-proof h2,
  .home-next h2 { font-size: clamp(2.8rem, 12vw, 5rem); }
  .home-archive-head { align-items: start; }
  .home-archive-head > p { max-width: 38rem; }
  .home-work-meta h3 { font-size: clamp(1.35rem, 5vw, 1.8rem); }
  .home-next-copy { align-self: start; }
  .home-page .hero-copy { width: 100%; max-width: 100%; padding-right: 28px; padding-left: 28px; overflow: hidden; }
  .hero-title-service { font-size: clamp(2.25rem, 9.2vw, 4rem); }
  .hero-title-service span {
    display: block;
    margin-left: 0 !important;
    transform: none !important;
  }
  .hero-title-service span:first-child,
  .hero-title-service span:last-child { max-width: none; margin: 0 auto !important; }
  .hero-title-service span:last-child { margin-top: .08em !important; }
  .hero-intro { width: 100%; max-width: 330px; padding: 0 4px; font-size: .98rem; }
}

@media (max-width: 580px) {
  .home-work-grid { grid-template-columns: 1fr; row-gap: 52px; }
  .home-work-image { aspect-ratio: 16 / 10; }
  .home-work-meta { min-height: 0; }
  .home-work-meta p,
  .home-work-meta small { font-size: .75rem; }
  .home-proof-list article { grid-template-columns: 40px minmax(0, 1fr); }
  .home-next-actions { display: grid; }
  .home-next-actions a { width: 100%; }
}

/* Client-first clarity layer: outputs, proof and a single next action. */
.home-services {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(45px, 9vw, 150px);
  padding: clamp(90px, 11vw, 165px) var(--pad);
  background: #111;
}
.home-services-intro h2 { margin: 28px 0 0; font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 300; letter-spacing: -.06em; line-height: .92; }
.home-services-intro > p:last-child { max-width: 27rem; margin: 32px 0 0; color: rgba(255,255,255,.64); font-size: 1.05rem; line-height: 1.6; }
.home-service-grid { border-top: 1px solid rgba(255,255,255,.22); }
.home-service-grid article { position: relative; padding: 26px 0 30px 55px; border-bottom: 1px solid rgba(255,255,255,.22); }
.home-service-grid article > span { position: absolute; top: 29px; left: 0; color: rgba(255,255,255,.45); font-size: .72rem; letter-spacing: .12em; }
.home-service-grid h3 { margin: 0; font-size: clamp(1.5rem, 2.5vw, 2.3rem); font-weight: 400; letter-spacing: -.04em; }
.home-service-grid h3 a,
.service-capability h3 a { color: inherit; text-decoration: none; }
.home-service-grid h3 a:hover,
.service-capability h3 a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 6px; }
.home-service-grid p { max-width: 37rem; margin: 12px 0 0; color: rgba(255,255,255,.63); line-height: 1.6; }

.home-testimonial {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
  gap: clamp(42px, 8vw, 130px);
  padding: clamp(80px, 11vw, 150px) var(--pad);
  color: #111;
  background: #e8e5dd;
}
.review-head h2 { max-width: 11ch; margin: 28px 0 0; font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 300; letter-spacing: -.06em; line-height: .92; }
.review-summary {
  max-width: 22rem;
  margin: 28px 0 0;
  color: rgba(17,17,17,.64);
  line-height: 1.5;
}
.review-summary strong {
  color: #111;
  font-size: 1.6rem;
  font-weight: 400;
}
.review-google-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 30px;
  border-bottom: 1px solid rgba(17,17,17,.36);
  color: #111;
  text-decoration: none;
}
.review-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .54fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
}
.review-feature,
.review-card,
.google-review-embed {
  border: 1px solid rgba(17,17,17,.18);
  background: rgba(255,255,255,.22);
}
.review-feature {
  padding: clamp(28px, 4.2vw, 56px);
}
.review-card-grid {
  display: grid;
  gap: clamp(14px, 1.5vw, 18px);
}
.review-card {
  padding: clamp(20px, 2.3vw, 28px);
}
.review-stars {
  color: #111;
  font-size: .9rem;
  letter-spacing: .16em;
}
.home-testimonial blockquote { max-width: 46rem; margin: 28px 0 30px; font-size: clamp(2rem, 4.2vw, 4.6rem); font-weight: 300; letter-spacing: -.055em; line-height: .98; }
.review-card blockquote {
  margin: 18px 0 20px;
  color: rgba(17,17,17,.82);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.35;
}
.home-testimonial cite { color: rgba(17,17,17,.58); font-size: .72rem; font-style: normal; letter-spacing: .14em; text-transform: uppercase; }
.google-review-embed {
  display: flex;
  min-height: 100%;
  grid-column: 1 / -1;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 34px);
}
.google-review-embed span {
  color: rgba(17,17,17,.52);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.google-review-embed strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.05;
}
.google-review-embed p {
  margin: 20px 0 0;
  color: rgba(17,17,17,.64);
  line-height: 1.55;
}
.google-review-embed a {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  margin-top: 34px;
  border-bottom: 1px solid rgba(17,17,17,.34);
  color: #111;
  text-decoration: none;
}

.contact-form label span { color: rgba(255,255,255,.42); font-size: .7em; font-weight: 400; letter-spacing: .04em; }
.about-belief { max-width: 34rem; margin: clamp(28px, 4vw, 52px) 0 0; padding-left: 18px; border-left: 1px solid rgba(255,255,255,.42); color: rgba(255,255,255,.78); font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.5; }

@media (max-width: 820px) {
  .home-services { grid-template-columns: 1fr; gap: 52px; padding-right: 20px; padding-left: 20px; }
  .home-testimonial { grid-template-columns: 1fr; padding-right: 20px; padding-left: 20px; }
  .review-head h2 { max-width: 12ch; }
  .review-panel { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .home-service-grid article { padding-left: 43px; }
  .home-testimonial blockquote { font-size: clamp(1.85rem, 9vw, 3rem); }
  .review-card blockquote { font-size: 1rem; }
  .review-feature,
  .review-card,
  .google-review-embed { margin-right: -1px; margin-left: -1px; }
}

/* v29 refinement pass: one spacing rhythm, readable measures and calm controls. */
:where(.home-services, .home-proof, .home-testimonial, .home-next, .work-context, .contact-guide, .case-section, .case-faqs) {
  scroll-margin-top: 88px;
}

:where(.project-info, .home-work-meta) {
  min-height: 108px;
}

:where(.project-info h2, .home-work-meta h3, .home-service-grid h3, .home-proof-list h3) {
  text-wrap: balance;
}

:where(.hero-route-links a, .home-next-actions a, .submit-button, .pill-link) {
  line-height: 1.2;
  text-wrap: balance;
}

:where(.contact-copy > p, .work-context-copy > p, .contact-guide-copy > p, .case-copy p, .process-intro-grid p) {
  text-wrap: pretty;
}

:where(.site-cta a, .home-contact-link, .home-inline-link, .text-link) {
  transition: color var(--duration-ui) var(--ease), transform var(--duration-ui) var(--ease);
}

:where(.site-cta a, .home-contact-link, .home-inline-link, .text-link):focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 7px;
}

@media (max-width: 580px) {
  :where(.project-info, .home-work-meta) { min-height: 0; }
  :where(.case-section, .case-faqs, .work-context, .contact-guide) { padding-top: 72px; padding-bottom: 72px; }
}


/* Editorial journal — a quieter reading system within the same visual language. */
.blog-page,
.article-page {
  color: #f4f2ec;
  background: #070707;
}

.blog-page main,
.article-page main { overflow: clip; }

.journal-hero {
  min-height: 74svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: end;
  gap: 34px clamp(45px, 9vw, 150px);
  padding: clamp(150px, 20vh, 230px) var(--pad) clamp(72px, 9vw, 125px);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.journal-hero > .section-kicker { grid-column: 1 / -1; }
.journal-hero > div { display: flex; align-items: end; gap: clamp(42px, 8vw, 130px); }
.journal-hero h1 {
  flex: 0 1 auto;
  margin: 0;
  font-size: clamp(4.25rem, 9.7vw, 10.8rem);
  font-weight: 300;
  letter-spacing: -.075em;
  line-height: .82;
}
.journal-hero > div > p {
  max-width: 33rem;
  margin: 0 0 .35rem;
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.6;
}
.journal-count {
  align-self: end;
  margin: 0 0 .45rem;
  color: rgba(255,255,255,.45);
  font-size: .72rem;
  letter-spacing: .14em;
  line-height: 1.7;
  text-align: right;
  text-transform: uppercase;
}

.journal-feature { padding: clamp(24px, 3vw, 46px) var(--pad) clamp(90px, 11vw, 160px); background: #070707; }
.journal-feature > a {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  color: #121212;
  background: #e8e5dd;
  text-decoration: none;
}
.journal-feature figure {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  background: #1a1a1a;
}
.journal-feature figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease); }
.journal-feature figure span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8,8,8,.7);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.journal-feature > a > div { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(34px, 5vw, 78px); }
.journal-feature > a > div > p,
.journal-row div > p {
  margin: 0 0 24px;
  color: rgba(17,17,17,.5);
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.journal-feature h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.3rem, 3.75vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -.06em;
  line-height: .94;
  text-wrap: balance;
}
.journal-feature > a > div > span { max-width: 35rem; margin-top: 26px; color: rgba(17,17,17,.68); line-height: 1.65; }
.journal-feature > a > div > b { align-self: flex-start; margin-top: 42px; padding-bottom: 5px; border-bottom: 1px solid rgba(17,17,17,.35); font-size: .78rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; }
.journal-feature > a:hover figure img { transform: scale(1.025); }

.journal-archive { padding: clamp(96px, 12vw, 170px) var(--pad); background: #111; }
.journal-archive-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
  gap: 24px clamp(50px, 9vw, 145px);
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 110px);
}
.journal-archive-head > .section-kicker { grid-column: 1 / -1; }
.journal-archive-head h2 { margin: 0; font-size: clamp(3.2rem, 7vw, 7.4rem); font-weight: 300; letter-spacing: -.065em; line-height: .9; }
.journal-archive-head > p:last-child { max-width: 34rem; margin: 0; color: rgba(255,255,255,.6); line-height: 1.65; }
.journal-list { border-top: 1px solid rgba(255,255,255,.22); }
.journal-row { border-bottom: 1px solid rgba(255,255,255,.22); }
.journal-row > a {
  display: grid;
  grid-template-columns: 55px clamp(130px, 15vw, 230px) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 48px);
  align-items: center;
  min-height: 210px;
  padding: 22px 0;
  color: #fff;
  text-decoration: none;
}
.journal-number { align-self: start; padding-top: 5px; color: rgba(255,255,255,.42); font-size: .7rem; letter-spacing: .12em; }
.journal-row figure { aspect-ratio: 3 / 2; margin: 0; overflow: hidden; background: #1b1b1b; }
.journal-row figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: filter 350ms var(--ease), transform 600ms var(--ease); }
.journal-row div { max-width: 62rem; }
.journal-row div > p { margin-bottom: 13px; color: rgba(255,255,255,.45); }
.journal-row h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 3.5rem); font-weight: 300; letter-spacing: -.05em; line-height: 1; text-wrap: balance; }
.journal-row div > span { display: block; max-width: 48rem; margin-top: 13px; color: rgba(255,255,255,.57); line-height: 1.5; }
.journal-row > a > b { font-size: 1.2rem; font-weight: 300; transition: transform 250ms var(--ease); }
.journal-row > a:hover figure img { filter: saturate(1.08); transform: scale(1.03); }
.journal-row > a:hover > b { transform: translate(4px, -4px); }

.article-hero { padding: clamp(142px, 17vw, 220px) var(--pad) clamp(72px, 8vw, 115px); }
.article-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: clamp(46px, 7vw, 92px);
  color: rgba(255,255,255,.63);
  font-size: .72rem;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.article-back::before { content: '←'; margin-right: 12px; transition: transform 220ms var(--ease); }
.article-back:hover::before { transform: translateX(-4px); }
.article-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .58fr); gap: clamp(50px, 8vw, 130px); align-items: end; }
.article-heading h1 {
  max-width: 16ch;
  margin: 24px 0 0;
  font-size: clamp(3.35rem, 7vw, 7.8rem);
  font-weight: 300;
  letter-spacing: -.07em;
  line-height: .9;
  text-wrap: balance;
}
.article-deck { max-width: 47rem; margin: 36px 0 0; color: rgba(255,255,255,.68); font-size: clamp(1.08rem, 1.55vw, 1.35rem); line-height: 1.62; }
.article-byline { display: flex; gap: 22px; margin-top: 34px; color: rgba(255,255,255,.44); font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; }
.article-hero-media { aspect-ratio: 3 / 4; margin: 0; overflow: hidden; background: #191919; }
.article-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.article-surface { padding: clamp(82px, 10vw, 145px) var(--pad); color: #171717; background: #e8e5dd; }
.article-layout { display: grid; grid-template-columns: minmax(190px, .35fr) minmax(0, 1fr); gap: clamp(55px, 10vw, 170px); max-width: 1280px; margin: 0 auto; }
.article-rail { align-self: start; position: sticky; top: 110px; padding-top: 8px; }
.article-rail p { margin: 0; padding: 18px 0; border-top: 1px solid rgba(17,17,17,.22); color: rgba(17,17,17,.72); font-size: .88rem; line-height: 1.45; }
.article-rail p span { display: block; margin-bottom: 7px; color: rgba(17,17,17,.43); font-size: .65rem; letter-spacing: .13em; text-transform: uppercase; }
.article-rail > a { display: inline-flex; min-height: 44px; align-items: center; margin-top: 24px; border-bottom: 1px solid rgba(17,17,17,.32); color: #111; font-size: .77rem; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.article-content { max-width: 790px; }
.article-content > p { margin: 0 0 1.5em; font-size: clamp(1.08rem, 1.45vw, 1.27rem); line-height: 1.72; }
.article-content > p:first-of-type { font-size: clamp(1.42rem, 2.3vw, 2.15rem); line-height: 1.44; letter-spacing: -.025em; }
.article-content h2 { margin: 2.5em 0 .65em; font-size: clamp(2.1rem, 4vw, 4.25rem); font-weight: 300; letter-spacing: -.055em; line-height: .98; text-wrap: balance; }
.article-content h3 { margin: 2.2em 0 .65em; font-size: clamp(1.45rem, 2.5vw, 2.25rem); font-weight: 400; letter-spacing: -.035em; line-height: 1.08; }
.article-content ol,
.article-content ul { margin: 0 0 1.8em; padding-left: 1.25em; font-size: clamp(1.05rem, 1.35vw, 1.2rem); line-height: 1.7; }
.article-content li + li { margin-top: .7em; }
.article-content a { color: #111; text-decoration-color: rgba(17,17,17,.38); text-decoration-thickness: 1px; text-underline-offset: 5px; }
.article-content strong { font-weight: 520; }
.article-note { margin: 0 0 52px; padding: 24px 26px; border: 1px solid rgba(17,17,17,.24); background: rgba(255,255,255,.22); }
.article-note strong { display: block; font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.article-note p { margin: 12px 0 0; color: rgba(17,17,17,.67); line-height: 1.55; }

.article-work { margin-top: clamp(75px, 10vw, 130px); padding-top: 34px; border-top: 1px solid rgba(17,17,17,.28); }
.article-work h2 { max-width: 10ch; margin-top: 24px; }
.article-work > p:not(.section-kicker) { max-width: 40rem; margin: 25px 0 0; color: rgba(17,17,17,.66); font-size: 1rem; line-height: 1.6; }
.article-work > div { margin-top: 36px; border-top: 1px solid rgba(17,17,17,.25); }
.article-work > div > a { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; gap: 16px; align-items: center; min-height: 82px; border-bottom: 1px solid rgba(17,17,17,.25); color: #111; text-decoration: none; }
.article-work a span { color: rgba(17,17,17,.43); font-size: .68rem; letter-spacing: .12em; }
.article-work a strong { font-size: clamp(1.15rem, 1.8vw, 1.55rem); font-weight: 400; letter-spacing: -.025em; }
.article-work a b { font-weight: 300; transition: transform 220ms var(--ease); }
.article-work a:hover b { transform: translate(4px, -4px); }

.article-related { padding: clamp(86px, 11vw, 150px) var(--pad); background: #111; }
.article-related h2 { margin: 24px 0 clamp(45px, 6vw, 78px); font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 300; letter-spacing: -.065em; line-height: .9; }
.article-related > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.22); }
.article-related > div > a { min-height: 180px; padding: 24px 28px 28px 0; border-bottom: 1px solid rgba(255,255,255,.22); color: #fff; text-decoration: none; }
.article-related > div > a + a { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.22); }
.article-related a span { display: block; margin-bottom: 35px; color: rgba(255,255,255,.42); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.article-related a strong { display: block; max-width: 19ch; font-size: clamp(1.25rem, 2vw, 1.8rem); font-weight: 400; letter-spacing: -.035em; line-height: 1.12; }
.article-cta { padding: clamp(92px, 12vw, 170px) var(--pad); color: #111; background: #e8e5dd; }
.article-cta h2 { margin: 26px 0 0; font-size: clamp(4rem, 10vw, 11rem); font-weight: 300; letter-spacing: -.078em; line-height: .82; }
.article-cta > p:not(.section-kicker) { max-width: 37rem; margin: 38px 0 0 auto; color: rgba(17,17,17,.68); font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.65; }
.article-cta > a { display: flex; width: max-content; min-height: 48px; align-items: center; margin: 26px 0 0 auto; padding: 0 18px; border: 1px solid rgba(17,17,17,.34); border-radius: 999px; color: #111; font-size: .76rem; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.article-footer { background: #070707; }

@media (max-width: 980px) {
  .journal-hero > div { display: block; }
  .journal-hero > div > p { margin-top: 34px; }
  .journal-feature > a { grid-template-columns: 1fr; }
  .journal-feature figure { min-height: 48vw; }
  .article-hero-grid { grid-template-columns: 1fr; }
  .article-heading h1 { max-width: 18ch; }
  .article-hero-media { aspect-ratio: 16 / 9; }
  .article-layout { grid-template-columns: 1fr; gap: 55px; }
  .article-rail { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
  .article-rail > a { grid-column: 1 / -1; justify-self: start; }
  .article-content { max-width: 800px; }
}

@media (max-width: 820px) {
  .journal-hero,
  .journal-feature,
  .journal-archive,
  .article-hero,
  .article-surface,
  .article-related,
  .article-cta { padding-right: 20px; padding-left: 20px; }
  .journal-hero { min-height: 70svh; grid-template-columns: 1fr; }
  .journal-count { text-align: left; }
  .journal-archive-head { grid-template-columns: 1fr; }
  .journal-row > a { grid-template-columns: 36px 130px minmax(0, 1fr) auto; min-height: 170px; gap: 16px; }
  .journal-row div > span { display: none; }
  .article-related > div { grid-template-columns: 1fr; }
  .article-related > div > a { min-height: 0; padding: 24px 0 28px; }
  .article-related > div > a + a { padding-left: 0; border-left: 0; }
  .article-related a span { margin-bottom: 18px; }
}

@media (max-width: 580px) {
  .journal-hero { padding-top: 132px; }
  .journal-hero h1 { font-size: clamp(4rem, 19vw, 6.3rem); }
  .journal-feature { padding-right: 0; padding-left: 0; }
  .journal-feature figure { min-height: 68vw; }
  .journal-feature > a > div { padding: 34px 20px 42px; }
  .journal-feature h2 { font-size: clamp(2.2rem, 10.5vw, 3.5rem); }
  .journal-row > a { grid-template-columns: 32px minmax(0, 1fr) auto; padding: 26px 0; }
  .journal-row figure { grid-column: 2 / -1; grid-row: 1; }
  .journal-row .journal-number { grid-column: 1; grid-row: 1 / span 2; }
  .journal-row div { grid-column: 2; grid-row: 2; }
  .journal-row > a > b { grid-column: 3; grid-row: 2; }
  .journal-row div > p { margin-bottom: 10px; }
  .journal-row h2 { font-size: clamp(1.65rem, 8vw, 2.4rem); }
  .article-heading h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .article-deck { margin-top: 28px; font-size: 1.02rem; }
  .article-byline { flex-direction: column; gap: 7px; }
  .article-hero-media { aspect-ratio: 4 / 5; }
  .article-rail { grid-template-columns: 1fr; }
  .article-content > p:first-of-type { font-size: 1.3rem; }
  .article-content h2 { font-size: clamp(2rem, 10vw, 3.2rem); }
  .article-cta h2 { font-size: clamp(3.8rem, 20vw, 6.8rem); }
  .article-cta > p:not(.section-kicker),
  .article-cta > a { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .journal-feature figure img,
  .journal-row figure img,
  .journal-row > a > b,
  .article-back::before,
  .article-work a b { transition: none; }
}

