


@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-100-900-normal.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/spacemono-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/spacemono-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto Mono';
  src: url('../fonts/roboto-mono-500.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bodoni Moda';
  src: url('../fonts/bodoni-moda-400-normal.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/oswald-200-700-normal.ttf') format('truetype');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}


:root {

  --bg: #FFFFFF;
  --bg-raised: #F3F1EB;
  --image-surface: #FFFFFF;
  --fg: #101418;
  --muted: #646E78;
  --border: #E7E4DE;
  --accent: #48A7B7;
  --accent-ink: #48A7B7;
  --abyss: #060B16;
  --abyss-2: #0A1428;
  --abyss-fg: #EDF1F4;
  --abyss-muted: #8B98A8;
  --biolume: #48A7B7;


  --font-sans: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Space Mono', 'SF Mono', Menlo, monospace;
  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.55rem, 1.35rem + 1vw, 2.1rem);
  --step-3: clamp(1.95rem, 1.6rem + 1.75vw, 2.9rem);
  --step-4: clamp(2.4rem, 1.9rem + 2.6vw, 3.9rem);
  --step-5: clamp(3rem, 2.1rem + 4.5vw, 5.6rem);
  --step-6: clamp(3.4rem, 2.2rem + 6vw, 7rem);


  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: 8rem;
  --section: clamp(4.5rem, 3rem + 7vw, 9.5rem);
  --gutter: clamp(1.25rem, 4vw, 4rem);


  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 28px;
  --shadow-1: 0 1px 2px rgba(12, 18, 32, .05), 0 4px 14px rgba(12, 18, 32, .06);
  --shadow-2: 0 2px 6px rgba(12, 18, 32, .07), 0 18px 44px rgba(12, 18, 32, .12);

  --header-h: 72px;
}


*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }


html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

html:not(.lenis) { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, video { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
h1, h2, h3, h4 {
  line-height: 1.05;
  font-weight: 640;
  letter-spacing: -0.022em;
  margin: 0 0 var(--s-3);
  text-wrap: balance;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { margin: 0 0 1em; text-wrap: pretty; }
p, li { max-width: 68ch; }
a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--fg);
}
::selection { background: var(--fg); color: var(--bg); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 300;
  background: var(--fg); color: var(--bg);
  padding: 10px 18px; border-radius: 999px; font-weight: 600;
  transform: translateY(-64px); transition: transform .2s;
}
.skip-link:focus { transform: none; }


.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: #fff;
  transition: opacity .4s ease;
}
html.no-js .preloader { display: none; }
html.hero-ready .preloader { opacity: 0; pointer-events: none; }
html.hero-gone .preloader { display: none; }
.preloader-inner { display: grid; place-items: center; gap: var(--s-4); text-align: center; }
.preloader-progress {
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
  line-height: 1;
}
.brand-wordmark--preloader { width: clamp(15rem, 48vw, 29rem); color: var(--fg); }
.hero-embed-stubs { display: none !important; }


.hero-scope .hero-rise {
  position: absolute; inset: 0; z-index: 3;
  overflow: hidden; pointer-events: none;
  opacity: 0; will-change: opacity;
}
.hero-scope .hero-rise__light {
  position: absolute; inset: 0;
  display: block; opacity: 0;
  background: #fff;
  will-change: opacity;
}
@media (prefers-reduced-motion: reduce) {
  .hero-scope .hero-rise { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .preloader { transition-duration: .3s; }
}

.container { max-width: 1280px; margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1520px; margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: var(--section); }


.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: var(--s-3);
}
.eyebrow::before {
  content: ''; width: 26px; height: 2px; background: var(--accent); flex: none;
}

.lede { font-size: var(--step-1); line-height: 1.5; color: var(--muted); max-width: 46ch; }


.btn {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 52px; padding: 0 28px;
  border-radius: 999px; border: 1px solid transparent;
  font: 600 1rem/1 var(--font-sans);
  cursor: pointer; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--fg); color: var(--bg-raised); }
.btn-primary:hover { box-shadow: var(--shadow-2); }
.btn-ghost { border-color: var(--border); color: var(--fg); background: transparent; }
.btn-ghost:hover { border-color: var(--fg); }
.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(4px); }

.abyss .hero-cta .btn-primary { background: var(--accent); color: var(--abyss); }
.abyss .btn-ghost { border-color: rgba(237,241,244,.25); color: var(--abyss-fg); }
.abyss .btn-ghost:hover { border-color: var(--abyss-fg); }


.site-header {
  position: fixed; inset: 0 0 auto; z-index: 200;
  height: var(--header-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
  backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}
.site-header .container-wide { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: inline-flex; align-items: center; color: var(--fg); }
.brand:hover { text-decoration: none; }
.brand-wordmark {
  display: inline-grid;
  gap: .16rem;
  width: 10.6rem;
  color: inherit;
  white-space: nowrap;
}
.brand-wordmark__name {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.025em;
}
.brand-wordmark__coordinates {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Courier New', Courier, monospace;
  font-size: .68rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .08em;
  opacity: .58;
}
.brand-wordmark__crosshair {
  display: inline-block;
  width: 1rem;
  height: 1px;
  background: currentColor;
  opacity: .72;
  flex: none;
}
.site-nav ul { display: flex; gap: clamp(14px, 2vw, 30px); list-style: none; margin: 0; padding: 0; }
.site-nav a { color: var(--fg); font-family: 'Roboto Mono', var(--font-mono); font-weight: 500; font-size: .86rem; letter-spacing: -.025em; position: relative; padding: 6px 2px; }
.site-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--accent); transition: right .22s ease;
}
.site-nav a:hover { text-decoration: none; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.site-nav .nav-project {
  padding: 9px 16px; border-radius: 999px;
  background: var(--fg); color: var(--bg);
  transition: transform .2s ease, background .2s ease;
}
.site-nav .nav-project::after { display: none; }
.site-nav .nav-project:hover { transform: translateY(-1px); background: var(--accent-ink); color: #fff; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 10px; padding: 10px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--fg); margin: 5px 0;
  transition: transform .25s ease, opacity .2s ease;
}
@media (max-width: 1200px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--border);
    padding: 18px var(--gutter) 26px;
    transform: translateY(calc(-100% - var(--header-h) - 24px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s ease, opacity .2s ease, visibility 0s linear .3s;
    box-shadow: var(--shadow-2);
  }
  .site-nav.open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .site-nav ul { flex-direction: column; gap: 4px; }
  .site-nav a { display: block; padding: 12px 4px; font-size: 1.15rem; }
  body.nav-locked { overflow: hidden; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}


.surface-btn {
  position: fixed; right: clamp(14px, 2vw, 28px); bottom: 26px; z-index: 150;
  display: inline-flex; align-items: center; gap: 8px;
  height: 46px; padding: 0 20px 0 16px; border-radius: 999px;
  background: var(--fg); color: var(--bg-raised);
  border: 0; cursor: pointer; font: 600 .9rem/1 var(--font-sans);
  box-shadow: var(--shadow-2);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
}
.surface-btn.show { opacity: 1; transform: none; pointer-events: auto; }
.surface-btn:hover { background: var(--accent-ink); }
.surface-btn svg { width: 17px; height: 17px; }
.surface-btn span { letter-spacing: .04em; }
body.deep-scene .surface-btn { background: var(--biolume); color: var(--abyss); }
body.deep-scene .surface-btn:hover { background: #fff; }
@media (max-width: 720px) { .surface-btn span { display: none; } .surface-btn { padding: 0; width: 46px; justify-content: center; } }


.gauge {
  position: fixed; left: clamp(10px, 2vw, 28px); bottom: 30px; z-index: 150;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--muted); pointer-events: none;
  transition: color .4s ease;
}

body:has(.hero-sequence) .gauge { bottom: 130px; }
.gauge .gauge-track {
  width: 2px; height: 84px; background: color-mix(in srgb, var(--muted) 25%, transparent);
  border-radius: 2px; overflow: hidden; align-self: center; margin-left: 34px;
}
.gauge .gauge-fill {
  width: 100%; height: 100%; background: var(--accent);
  transform-origin: top; transform: scaleY(0);
  transition: background .4s ease;
}
.gauge .gauge-depth { font-weight: 700; letter-spacing: .06em; }
.gauge .gauge-label { letter-spacing: .18em; font-size: .58rem; text-transform: uppercase; }
.gauge.deep { color: var(--abyss-muted); }
.gauge.deep .gauge-fill { background: var(--biolume); }
@media (max-width: 720px) { .gauge { display: none; } }


.hero, .surface-hero {
  min-height: calc(100svh - 0px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: calc(var(--header-h) + var(--s-6));
  padding-bottom: var(--s-6);
  position: relative;
}
.hero h1, .surface-hero h1 { font-size: var(--step-6); font-weight: 680; letter-spacing: -0.03em; max-width: 12ch; }
.hero .hero-foot {
  display: flex; flex-wrap: wrap; gap: var(--s-4); align-items: flex-end;
  justify-content: space-between; margin-top: var(--s-6);
}
.hero .lede { margin: 0; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }


.home-work-lead {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  min-height: min(920px, 100svh);
  padding-block: calc(var(--header-h) + var(--s-6)) var(--s-6);
}

.surface-hero.home-work-lead {
  min-height: min(900px, 90svh);
  padding-block: calc(var(--header-h) + var(--s-5)) var(--s-5);
}

html.hero-surface-crossfade .home-work-lead {
  margin-top: -100svh;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
.home-work-lead .surface-copy { max-width: 620px; }
.home-positioning {
  max-width: 42ch; margin: var(--s-3) 0 0;
  color: var(--muted); font-size: clamp(1rem, .9rem + .35vw, 1.2rem); line-height: 1.45;
}
.home-title-line { display: block; }
@media (min-width: 921px) {
  .home-work-lead h1 { max-width: none; }
  .home-title-line { white-space: nowrap; }
}
.home-work-feature {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-height: 560px;
  overflow: clip;
  border-radius: var(--r-lg);
  background: var(--image-surface);
  color: #fff;
}
.home-work-feature > img,
.home-work-feature > video,
.home-work-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.home-work-feature > video { display: block; }
.home-work-feature:hover > img,
.home-work-card a:hover img { transform: scale(1.035); }
.home-work-caption {
  position: absolute; inset: auto 0 0;
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-3);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  color: #fff;
  background: linear-gradient(to top, rgba(6, 11, 22, .9), rgba(6, 11, 22, 0));
}
.home-work-caption b { display: block; font-size: var(--step-1); line-height: 1.1; }
.home-work-caption small {
  display: block; margin-top: 8px;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.72);
}
.home-work-arrow { font-size: 1.6rem; line-height: 1; }
.home-work-feature:hover,
.home-work-card a:hover { text-decoration: none; }
@media (min-width: 921px) {
  .surface-hero.home-work-lead .home-work-feature {
    align-self: center;
    min-height: 0;
    aspect-ratio: 1;
  }
}
.home-work-grid { padding-top: var(--s-6); }
.home-work-heading {
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-4);
  margin-bottom: var(--s-5);
}
.home-work-heading h2 { margin: 0; font-size: var(--step-4); }
.home-work-tools { display: flex; align-items: flex-end; gap: clamp(1.5rem, 3vw, 3rem); }
.home-work-progress {
  position: relative; min-width: 84px; padding-bottom: 11px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .13em;
  color: var(--muted); white-space: nowrap;
}
.home-work-progress strong { color: var(--fg); font-weight: 700; }
.home-work-progress::before,
.home-work-progress::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  transform-origin: left center;
}
.home-work-progress::before { background: var(--border); }
.home-work-progress::after {
  background: var(--accent); transform: scaleX(var(--work-progress, 0));
  transition: transform .12s linear;
}
.home-work-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 28px); }
.home-work-card { position: relative; min-width: 0; }
.home-work-card a {
  position: relative; display: block; overflow: clip;
  aspect-ratio: 4 / 5; border-radius: var(--r-md); background: var(--image-surface);
}

@media (min-width: 921px) {
  .home-work-grid.is-horizontal {
    height: 100svh;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-block: clamp(3rem, 7svh, 6rem);
  }
  .home-work-grid.is-horizontal .home-work-heading {
    flex: 0 0 auto;
    margin-bottom: clamp(1.75rem, 4svh, 3rem);
  }
  .home-work-grid.is-horizontal .home-work-cards {
    display: flex;
    width: max-content;
    max-width: none;
    gap: clamp(20px, 2.4vw, 38px);
    will-change: transform;
  }
  .home-work-grid.is-horizontal .home-work-card {
    flex: 0 0 min(46vw, 680px);
    width: min(46vw, 680px);
  }
  .home-work-grid.is-horizontal .home-work-card a {
    height: clamp(380px, 58svh, 650px);
    aspect-ratio: auto;
  }
}
@media (max-width: 920px) {
  .home-work-lead { grid-template-columns: 1fr; min-height: auto; }
  .home-work-feature { min-height: 0; aspect-ratio: 4 / 3; }
  .home-work-progress { display: none; }
}
@media (max-width: 720px) {
  .home-work-lead { padding-top: calc(var(--header-h) + var(--s-5)); }
  .home-work-heading { align-items: flex-start; flex-direction: column; }
  .home-work-cards { grid-template-columns: 1fr; }
  .home-work-card a { aspect-ratio: 4 / 3; }
}


.home-proof { padding-block: clamp(3rem, 6vw, 6.5rem); }
.home-proof-card {
  display: grid;
  grid-template-columns: minmax(210px, .55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 6vw, 7rem);
  min-height: clamp(360px, 32vw, 470px);
  margin: 0;
  padding: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
  border-radius: var(--r-lg);
  background: var(--abyss);
  color: var(--abyss-fg);
}
.home-proof-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-5);
}
.home-proof .eyebrow { margin: 0; color: var(--abyss-muted); }
.home-proof .eyebrow::before { background: var(--biolume); }
.home-proof-client { margin: 0; }
.home-proof-client cite {
  display: block;
  font-style: normal;
  font-size: var(--step-1);
  font-weight: 620;
  color: var(--abyss-fg);
}
.home-proof-client span {
  display: block;
  margin-top: 8px;
  font: 500 .68rem/1.5 var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--abyss-muted);
}
.home-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-4);
}
.home-proof blockquote {
  max-width: 23ch;
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 4rem);
  font-weight: 560;
  line-height: 1.1;
  letter-spacing: -.035em;
}
.home-proof-link {
  align-self: flex-start;
  color: var(--biolume);
  font-weight: 620;
}
.home-proof-link:hover { color: var(--abyss-fg); text-decoration: none; }
.home-proof-link .arr { display: inline-block; transition: transform .18s ease; }
.home-proof-link:hover .arr { transform: translateX(4px); }
@media (max-width: 720px) {
  .home-proof-card {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: var(--s-5);
    padding: 1.6rem;
    border-radius: var(--r-md);
  }
  .home-proof-meta { gap: var(--s-3); }
  .home-proof blockquote { font-size: clamp(1.7rem, 7.5vw, 2.35rem); }
}


.studio-trust-phase {
  --accent-ink: #48A7B7;
  color: #f4f5f6;
  background: #050505;
  overflow: clip;
}
.studio-trust-phase.studio-sequence-ready {
  min-height: 230svh;
  position: relative;
  background: transparent;
}
.studio-sequence-ready .studio-intro {
  min-height: calc(100svh - var(--header-h));
  position: sticky;
  top: var(--header-h);
  display: flex;
  align-items: center;
}
.studio-trust-phase .studio-intro,
.studio-trust-phase .studio-quote,
.studio-trust-phase .link-more { color: inherit; }
.studio-trust-phase .eyebrow { color: rgba(255, 255, 255, .62); }
.studio-line {
  display: block;
  position: relative;
  width: max-content;
  max-width: 100%;
  will-change: transform, opacity, filter, clip-path;
}
.studio-line::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.08em;
  height: 2px;
  background: var(--accent);
  opacity: var(--studio-sweep-opacity, 0);
  transform: scaleX(var(--studio-sweep, 0));
  transform-origin: left center;
}
.studio-line--craft { font-weight: 680; }
@media (max-width: 680px) {
  .studio-intro .container { width: 100%; min-width: 0; }
  .studio-quote {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2rem, 8.8vw, 2.5rem);
    line-height: 1.06;
  }
  .studio-line {
    width: auto;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}
.home-services { padding-block: 0; }

.split .w { display: inline-block; overflow: clip; vertical-align: bottom; }
.split .w > span { display: inline-block; will-change: transform; }
.split .split-line { display: block; }

.surface-line { position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--border); }


.page-hero {
  padding-top: calc(var(--header-h) + var(--s-3));
  padding-bottom: var(--s-2);
}
.page-hero h1 {
  max-width: 22ch;
  font-size: clamp(2.7rem, 2rem + 2.6vw, 4.1rem);
}
.page-hero > .breadcrumb { margin-bottom: var(--s-3); }
.page-hero--compact {
  padding-top: calc(var(--header-h) + clamp(2.25rem, 4vw, 3.75rem));
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}
.page-hero--compact .breadcrumb { margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem); }
.page-hero-lockup {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: var(--s-6);
  align-items: end;
}
.page-hero--compact h1 { max-width: 13ch; margin-bottom: 0; font-size: clamp(3rem, 5.8vw, 5.6rem); }
.page-hero-lockup .lede { max-width: 40ch; margin: 0 0 .35rem; font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.5; }
.landing-content-start { padding-top: 0; }
@media (min-width: 901px) {
  .page-hero--services h1 { max-width: none; white-space: nowrap; font-size: clamp(3rem, 5vw, 4.75rem); }
  .page-hero--single-line h1 { max-width: none; white-space: nowrap; font-size: clamp(3rem, 5vw, 4.75rem); }
}
.breadcrumb {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: var(--s-4);
}
.breadcrumb ol { list-style: none; display: flex; gap: 8px; padding: 0; margin: 0; flex-wrap: wrap; }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; color: var(--border); }
.breadcrumb a { color: var(--muted); }



.grid-2 { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); align-items: start; }
.grid-3 { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }


.work-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr)); }


.portfolio-archive-route { padding-top: clamp(2.25rem, 4vw, 4.5rem); padding-bottom: 0; }
.portfolio-archive-route-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}
.portfolio-archive-route .eyebrow { margin-bottom: .7rem; }
.portfolio-archive-route p { margin: 0; color: var(--muted); }
.portfolio-archive-route .link-more { flex: 0 0 auto; }
.archive-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border);
}
.archive-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s-3);
  align-items: center;
  min-height: 112px;
  padding: 1.25rem 1.5rem;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.archive-entry:nth-child(odd) { border-right: 1px solid var(--border); }
.archive-entry strong,
.archive-entry small { display: block; }
.archive-entry strong { font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.2; }
.archive-entry small {
  margin-top: .5rem;
  color: var(--muted);
  font: 500 .68rem/1.45 var(--font-mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.archive-entry .arr { color: var(--accent-ink); transition: transform .18s ease; }
.archive-entry:hover { background: var(--bg-raised); text-decoration: none; }
.archive-entry:hover .arr { transform: translateX(4px); }
@media (max-width: 720px) {
  .portfolio-archive-route-inner { align-items: flex-start; flex-direction: column; }
  .archive-index { grid-template-columns: 1fr; }
  .archive-entry { min-height: 96px; padding-inline: 0; }
  .archive-entry:nth-child(odd) { border-right: 0; }
}


.proj-single { text-align: center; }
.proj-single .frame { display: inline-block; max-width: 100%; background: transparent; }
.proj-single .frame img { max-height: 78vh; width: auto; max-width: min(100%, 1000px); height: auto; }
.proj-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 4px;
  column-gap: var(--s-3);
  row-gap: 0;
}
.proj-gallery--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.proj-gallery .frame {
  align-self: start;
  margin: 0;
  display: block;
  width: 100%;
}
@media (max-width: 980px) {
  .proj-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .proj-gallery,
  .proj-gallery--two { grid-template-columns: 1fr; }
}


.proj-meta { padding-block: 12px var(--s-2); }
.proj-meta dl {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4);
  margin: 0; padding-top: var(--s-4); border-top: 1px solid var(--border);
}
.proj-meta dt {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.proj-meta dd { margin: 0; font-size: var(--step-0); font-weight: 500; letter-spacing: -0.01em; }
@media (max-width: 640px) { .proj-meta dl { grid-template-columns: 1fr; gap: var(--s-3); } }


.proj-more { padding-block: var(--section); border-top: 1px solid var(--border); margin-top: var(--s-6); }
.proj-more-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: var(--s-4); }
.proj-more-link {
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-ink);
}
.work-grid--related { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .work-grid--related { grid-template-columns: 1fr; } }

.proj-feedback { padding-block: clamp(3.5rem, 3rem + 3vw, 6.5rem); }
.proj-quote,
.cs-quote {
  max-width: 72ch;
  margin: 0;
  font-size: clamp(1.2rem, 1.08rem + .45vw, 1.55rem);
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.proj-quote::before { content: ""; }
.proj-cite {
  margin-top: var(--s-3); color: var(--muted); font-family: var(--font-mono);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
}

.svc-card {
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: var(--s-4);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: transparent; }
.svc-card h3 { font-size: var(--step-1); margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: var(--step-0); margin: 0; }
.svc-card .svc-num {
  font-family: var(--font-mono); color: var(--accent-ink);
  font-size: .72rem; letter-spacing: .12em; display: block; margin-bottom: var(--s-3);
}

.abyss .cta-note { margin-top: var(--s-3); font-size: .9rem; }


.work-card { position: relative; border-radius: var(--r-md); overflow: clip; background: var(--image-surface); }
.work-card a { display: block; color: inherit; }

.work-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }

.work-grid--related .work-card img { aspect-ratio: 4 / 3; }
.work-card:hover img { transform: scale(1.045); }
.work-card figcaption {
  position: absolute; inset: auto 0 0 0; padding: 22px;
  background: linear-gradient(to top, rgba(6,11,22,.82), transparent);
  color: var(--abyss-fg);
}
.work-card figcaption strong { display: block; font-size: var(--step-1); letter-spacing: -0.01em; }
.work-card figcaption span { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--abyss-muted); }


.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--s-5); }
.chip {
  font: 500 .9rem/1 var(--font-sans);
  border: 1px solid var(--border); background: var(--bg-raised); color: var(--fg);
  border-radius: 999px; padding: 12px 20px; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.chip:hover { border-color: var(--fg); transform: translateY(-1px); }
.chip[aria-pressed="true"] { background: var(--fg); color: var(--bg-raised); border-color: var(--fg); }
.chip .count { font-family: var(--font-mono); font-size: .68rem; color: inherit; opacity: .55; margin-left: 6px; }

.masonry { columns: 3 340px; column-gap: 20px; }
.masonry .g-item { margin: 0 0 20px; break-inside: avoid; }
.g-item { position: relative; border-radius: var(--r-sm); overflow: clip; padding: 0; border: 0; background: var(--image-surface); cursor: zoom-in; display: block; width: 100%; }
.g-item img { width: 100%; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.g-item::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(12,18,32,.06);
  pointer-events: none;
}
.g-item:hover img { transform: scale(1.03); }
.g-item:focus-visible { outline-offset: 4px; }
.g-item.is-hidden { display: none; }



.logo-grid { columns: 4 260px; column-gap: 20px; }
.logo-grid .g-item { margin: 0 0 20px; break-inside: avoid; width: 100%; }
@media (max-width: 520px) { .logo-grid { columns: 2 150px; } }


.lightbox {
  position: fixed; inset: 0; z-index: 400; display: none;
  align-items: center; justify-content: center; padding: clamp(16px, 4vw, 56px);
}
.lightbox.open { display: flex; }
.lightbox .lb-backdrop {
  position: absolute; inset: 0; background: rgba(6, 11, 22, .9);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.lightbox figure { position: relative; margin: 0; z-index: 1; max-width: min(1100px, 100%); max-height: 100%; display: flex; flex-direction: column; }
.lightbox img {
  max-width: 100%; max-height: calc(100dvh - 160px);
  width: auto; height: auto; margin-inline: auto;
  border-radius: var(--r-sm); box-shadow: 0 30px 90px rgba(0,0,0,.5);
}
.lightbox figcaption {
  color: var(--abyss-muted); text-align: center; padding-top: 16px;
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .06em;
}
.lb-btn {
  position: absolute; z-index: 2; display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(237,241,244,.08); color: var(--abyss-fg);
  border: 1px solid rgba(237,241,244,.18); cursor: pointer;
  transition: background .2s, transform .2s;
}
.lb-btn:hover { background: rgba(237,241,244,.18); transform: scale(1.06); }
.lb-btn svg { width: 20px; height: 20px; }
.lb-close { top: clamp(10px, 3vw, 28px); right: clamp(10px, 3vw, 28px); }
.lb-prev { left: clamp(6px, 2vw, 24px); top: 50%; margin-top: -24px; }
.lb-next { right: clamp(6px, 2vw, 24px); top: 50%; margin-top: -24px; }
body.lb-locked { overflow: hidden; }


.split-2 { display: grid; gap: var(--s-6); grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); align-items: center; }
.frame { border-radius: var(--r-md); overflow: clip; background: var(--image-surface); }
.frame img, .frame video { width: 100%; display: block; }


.stats { display: flex; flex-wrap: wrap; gap: var(--s-5) var(--s-7); }
.stat .stat-n { font-size: var(--step-4); font-weight: 680; letter-spacing: -0.03em; line-height: 1; display: block; }
.stat .stat-l { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 10px; }


.tide {
  border-block: 1px solid var(--border); padding-block: 22px;
  overflow: clip; white-space: nowrap;
}
.tide .tide-track { display: inline-flex; gap: 48px; will-change: transform; }
.tide span { font-family: var(--font-mono); font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.tide span::after { content: '•'; color: var(--accent); margin-left: 48px; }


.az-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(17, auto);
  grid-auto-flow: column;
  column-gap: var(--s-6);
  list-style: none;
  margin: 0;
  padding: 0;
}
.az-list li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
  min-height: 68px;
  border-bottom: 1px solid var(--border);
  padding: 17px 4px;
  font-size: var(--step-1);
  font-weight: 520;
  letter-spacing: -0.01em;
  max-width: none;
}
.az-list .az-i { font-family: var(--font-mono); font-size: .68rem; color: var(--accent-ink); letter-spacing: .1em; }
@media (max-width: 720px) {
  .az-list { display: block; }
  .az-list li { grid-template-columns: 2.25rem minmax(0, 1fr); min-height: 0; }
}


.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px;
  padding: 22px 4px; font-size: var(--step-1); font-weight: 560; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-weight: 400; color: var(--accent-ink); transition: transform .25s; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 4px 24px; color: var(--muted); }


.abyss {
  background: #101418;
  color: var(--abyss-fg);
  border-radius: 0;
  position: relative; overflow: clip;
  padding-block: 0;
  margin-top: var(--s-7);
}
.abyss > .container { padding-block: clamp(2.75rem, 4vw, 3.75rem) 100px; }
.abyss-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .85fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: end;
  padding-bottom: clamp(2.25rem, 3.2vw, 3rem);
}
.abyss-cta-heading .eyebrow { margin-bottom: 1.35rem; }
.abyss h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.75rem);
  line-height: .98;
  letter-spacing: -0.055em;
}
.abyss-cta-action > p {
  max-width: 38rem;
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.55;
}
.abyss .eyebrow { color: var(--abyss-muted); }
.abyss .eyebrow::before { background: var(--biolume); }
.abyss p { color: var(--abyss-muted); }
.abyss a { color: var(--biolume); }
.biolume-dot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--biolume); opacity: .5; filter: blur(1px);
  box-shadow: 0 0 14px 3px rgba(72, 167, 183, .35);
  pointer-events: none;
}


.site-footer { border-top: 1px solid rgba(237,241,244,.1); }
.site-footer .footer-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(1.75rem, 3vw, 3rem);
  padding-block: 1.45rem;
}
.site-footer a { color: var(--abyss-fg); font-size: .95rem; }
.site-footer a:hover { color: var(--biolume); text-decoration: none; }
.site-footer .footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .55rem clamp(.9rem, 1.55vw, 1.4rem);
}
.site-footer .footer-nav a { font-size: .86rem; }
.site-footer .footer-social {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.site-footer .footer-social a {
  color: var(--abyss-muted);
  font: 700 .72rem/1 var(--font-mono);
  letter-spacing: .08em;
}
.site-footer .footer-social a:hover { color: var(--biolume); }
.site-footer .footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--abyss-muted);
  font-size: .78rem;
  white-space: nowrap;
}
.site-footer .footer-legal a { color: var(--abyss-muted); font-size: .78rem; }
.site-footer .footer-legal a:hover { color: var(--biolume); }
.footer-cookie-settings {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--abyss-muted);
  font: inherit;
  font-size: .78rem;
  cursor: pointer;
}
.footer-cookie-settings:hover { color: var(--biolume); }
.site-footer .foot-brand { display: inline-flex; color: var(--abyss-fg); }
.site-footer .foot-brand:hover { color: var(--biolume); }
.brand-wordmark--footer { width: clamp(13.5rem, 19vw, 17rem); }
.brand-wordmark--footer .brand-wordmark__name { font-size: clamp(1.7rem, 2.2vw, 2.1rem); }
.brand-wordmark--footer .brand-wordmark__coordinates { font-size: .68rem; }


.consent-banner {
  position: fixed;
  z-index: 450;
  right: 1.25rem;
  bottom: 1.25rem;
  width: min(31rem, calc(100% - 2rem));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .9rem;
  padding: 1.15rem 1.25rem;
  background: var(--abyss);
  border: 1px solid rgba(237,241,244,.18);
  border-radius: var(--r-md);
  box-shadow: 0 1rem 3rem rgba(6,11,22,.28);
  color: var(--abyss-fg);
}
.consent-banner[hidden] { display: none; }
.consent-banner__content { max-width: 30rem; }
.consent-banner__title {
  margin: 0 0 .35rem;
  color: var(--abyss-fg);
  font-size: 1rem;
  font-weight: 700;
}
.consent-banner__content > p:not(.consent-banner__title) {
  margin: 0;
  color: var(--abyss-muted);
  font-size: .94rem;
  line-height: 1.5;
}
.consent-banner__content a {
  display: inline-block;
  margin-top: .5rem;
  color: var(--biolume);
  font-size: .88rem;
}
.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.consent-banner__actions button {
  flex: 1 1 12rem;
  min-height: 2.8rem;
  padding: 0 1rem;
  border-radius: 999px;
  font: 600 .88rem/1 var(--font-sans);
  cursor: pointer;
}
.consent-banner__accept { border: 1px solid var(--biolume); background: var(--biolume); color: var(--abyss); }
.consent-banner__decline { border: 1px solid rgba(237,241,244,.38); background: transparent; color: var(--abyss-fg); }
.consent-banner__accept:hover { background: #68becc; border-color: #68becc; }
.consent-banner__decline:hover { border-color: var(--biolume); color: var(--biolume); }
.footer-cookie-settings:focus-visible,
.consent-banner a:focus-visible,
.consent-banner button:focus-visible {
  outline: 2px solid var(--biolume);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .abyss-cta-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .abyss-cta-action > p { max-width: 56ch; }
  .site-footer .footer-bar { grid-template-columns: 1fr; gap: 1.15rem; }
  .site-footer .footer-nav { justify-content: flex-start; }
  .site-footer .footer-legal { flex-wrap: wrap; white-space: normal; }
  .consent-banner { right: 1rem; bottom: 1rem; }
}

@media (max-width: 520px) {
  .abyss > .container { padding-top: 2.75rem; }
  .abyss-cta-grid { padding-bottom: 2.25rem; }
  .abyss h2 { font-size: clamp(2.45rem, 12vw, 3.35rem); }
  .abyss .hero-cta .btn { width: 100%; justify-content: center; }
  .site-footer .footer-nav { display: grid; grid-template-columns: 1fr 1fr; }
  .consent-banner { right: .75rem; bottom: .75rem; width: calc(100% - 1.5rem); padding: 1.1rem; }
  .consent-banner__actions { width: 100%; }
  .consent-banner__actions button { flex: 1 1 12rem; }
}

@media (max-width: 480px) {
  .brand-wordmark { width: 9.25rem; gap: .12rem; }
  .brand-wordmark__name { font-size: 1.52rem; }
  .brand-wordmark__coordinates { font-size: .58rem; letter-spacing: .06em; }
  .brand-wordmark__crosshair { width: .8rem; }
  .brand-wordmark--footer { width: 13.5rem; }
  .brand-wordmark--footer .brand-wordmark__name { font-size: 1.7rem; }
  .brand-wordmark--footer .brand-wordmark__coordinates { font-size: .62rem; }
  .brand-wordmark--preloader { width: min(76vw, 20rem); }
  .brand-wordmark--preloader .brand-wordmark__name { font-size: clamp(2rem, 10vw, 2.7rem); }
  .brand-wordmark--preloader .brand-wordmark__coordinates { font-size: clamp(.65rem, 3vw, .78rem); }
}


[data-reveal] { will-change: transform, opacity; }
.no-js [data-reveal] { opacity: 1 !important; transform: none !important; }


.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.section-head { display: flex; flex-wrap: wrap; gap: var(--s-4); align-items: flex-end; justify-content: space-between; margin-bottom: var(--s-6); }
.section-head h2 { margin: 0; max-width: 14ch; }
.link-more { font: 600 .95rem/1 var(--font-sans); color: var(--fg); white-space: nowrap; }
.link-more .arr { display: inline-block; transition: transform .18s; }
.link-more:hover { text-decoration: none; color: var(--accent-ink); }
.link-more:hover .arr { transform: translateX(4px); }


.vid-frame { border-radius: var(--r-md); overflow: clip; background: var(--abyss); box-shadow: var(--shadow-1); }
.vid-frame video { width: 100%; display: block; }
.video-fallback-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}
.project-lead-video .video-fallback-image,
.cs-video-feature-media .video-fallback-image,
.vid-frame .video-fallback-image { background: #000; object-fit: contain; }


.err-hero { min-height: 70svh; display: grid; place-content: center; text-align: center; padding-top: var(--header-h); }
.err-hero .err-code { font-family: var(--font-mono); color: var(--accent-ink); letter-spacing: .2em; }


.prose h2 { font-size: var(--step-2); margin-top: var(--s-6); }
.prose h3 { font-size: var(--step-1); margin-top: var(--s-4); }




body.theme-dark {
  --bg: #05090F;
  --bg-raised: #0C1526;
  --fg: #EEF2F6;
  --muted: #97A4B4;
  --border: rgba(238, 242, 246, 0.12);
  --accent-ink: #48A7B7;
  background: var(--bg);
  color: var(--fg);
}
body.theme-dark .site-header {
  background: color-mix(in srgb, #05090F 72%, transparent);
  border-bottom: 1px solid rgba(238, 242, 246, 0.10);
}
body.theme-dark .brand { color: var(--fg); }
body.theme-dark .nav-toggle span { background: var(--fg); }
body.theme-dark .site-nav a { color: var(--fg); }
body.theme-dark .btn-primary { background: var(--fg); color: #05090F; }
body.theme-dark .btn-ghost { border-color: rgba(238,242,246,.25); color: var(--fg); }
body.theme-dark .btn-ghost:hover { border-color: var(--fg); }
body.theme-dark ::selection { background: var(--accent); color: #fff; }
@media (max-width: 1200px) {
  body.theme-dark .site-nav { background: var(--bg-raised); border-bottom-color: var(--border); }
}

body.theme-dark .abyss { border-radius: 0; margin-top: 0; }



.display {
  font-size: clamp(2.5rem, 1.7rem + 3.2vw, 4.8rem);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1;
}
.display em, .hero h1 em, .surface-hero h1 em, .band-head em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}


.hero-xl, .surface-hero { min-height: 100svh; justify-content: center; padding-bottom: calc(var(--s-8) + 20px); }
.hero-xl h1, .surface-hero h1 { font-size: clamp(2.6rem, 1.1rem + 4.7vw, 5.6rem); max-width: 14ch; }
.hero-xl .hero-meta, .surface-hero .hero-meta {
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-6);
  margin-top: var(--s-5); font-family: var(--font-mono);
  font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.hero-scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted); display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.hero-scroll-hint::after { content: ''; width: 1px; height: 34px; background: var(--border); }


.band {
  border-block: 1px solid var(--border);
  padding-block: clamp(16px, 3vw, 30px);
  overflow: clip; white-space: nowrap;
}
.band-track { display: inline-flex; gap: 0; will-change: transform; }
.band-track .unit { display: inline-flex; align-items: center; gap: 44px; padding-right: 44px; }
.band-track .unit span {
  font-size: clamp(1.4rem, 0.8rem + 2.6vw, 3rem);
  font-weight: 680; letter-spacing: -0.02em; color: var(--fg);
}
.band-track .unit span.ghost { color: transparent; -webkit-text-stroke: 1px var(--muted); }
.band-track .unit .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); flex: none; }


.pillars { display: grid; gap: 1px; background: var(--border); border-block: 1px solid var(--border); }
@media (min-width: 900px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  background: var(--bg); padding: clamp(2rem, 1rem + 4vw, 4rem) var(--gutter);
  display: flex; flex-direction: column; gap: var(--s-2);
}
.pillar .pillar-n { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; color: var(--accent-ink); }
.pillar h3 { font-size: var(--step-2); margin: 8px 0 6px; }
.pillar p { color: var(--muted); margin: 0; }
.pillar ul { list-style: none; margin: 14px 0 0; padding: 0; }
.pillar li { color: var(--muted); padding: 6px 0; border-top: 1px solid var(--border); font-size: .95rem; max-width: none; }


.disciplines { display: grid; gap: var(--s-5); }
@media (min-width: 900px) { .disciplines { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); } }
.discipline { padding-top: var(--s-4); border-top: 1px solid var(--border); }
.discipline-n { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-ink); }
.svc-set { display: grid; gap: var(--s-5); margin-top: var(--s-4); }
.svc-tile-media { margin: 0 0 var(--s-3); border-radius: var(--r-md); overflow: clip; background: var(--image-surface); aspect-ratio: 16 / 10; }
.svc-tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.svc-tile:hover .svc-tile-media img { transform: scale(1.045); }
.svc-tile h3 { font-size: var(--step-1); letter-spacing: -0.01em; margin: 0 0 6px; }
.svc-tile p { color: var(--muted); font-size: var(--step-0); margin: 0; }


.studio-quote {
  font-size: clamp(2.6rem, 1.1rem + 4.7vw, 5.6rem);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.12; max-width: 20ch;
}
.studio-quote em { font-style: italic; color: var(--accent); font-weight: 500; }


.studio-grid { display: grid; gap: var(--s-6); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .studio-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--s-7); } }
.studio-grid .studio-quote { font-size: clamp(1.5rem, 1rem + 2.2vw, 2.6rem); max-width: 24ch; }
.studio-media { margin: 0; }
.studio-media a { display: block; border-radius: var(--r-lg); overflow: clip; background: var(--image-surface); }
.studio-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.studio-media a:hover img { transform: scale(1.04); }
.studio-media figcaption { margin-top: var(--s-3); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }


.quotes { position: relative; }
.quote-item {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
}
.quote-item.active { position: relative; opacity: 1; visibility: visible; }
.quote-item blockquote {
  margin: 0; font-size: clamp(1.5rem, 0.9rem + 2.4vw, 2.8rem);
  font-weight: 560; letter-spacing: -0.02em; line-height: 1.22; max-width: 24ch;
}
.quote-item .quote-by {
  margin-top: var(--s-4); font-family: var(--font-mono); font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.quotes-nav { display: flex; gap: 10px; margin-top: var(--s-5); }
.quotes-dot {
  width: 34px; height: 3px; border-radius: 3px; border: 0; padding: 0; cursor: pointer;
  background: var(--border); transition: background .3s;
}
.quotes-dot[aria-selected="true"] { background: var(--accent); }


.mega-head { font-size: clamp(2.2rem, 1.6rem + 2.6vw, 4rem); font-weight: 660; letter-spacing: -0.03em; max-width: 18ch; }


.home-section-title {
  max-width: 18ch;
  font-size: clamp(2.5rem, 1.7rem + 3.2vw, 4.8rem);
  font-weight: 680;
  line-height: 1;
  letter-spacing: -.035em;
}
.home-section-title em {
  color: var(--accent);
  font-weight: 500;
  font-style: italic;
}
.home-services-title-line { display: block; }
@media (min-width: 720px) {
  .home-services .home-section-title { max-width: none; }
  .home-services-title-line { white-space: nowrap; }
}


.cs-hero {
  padding-top: calc(var(--header-h) + var(--s-5));
  padding-bottom: 0;
}
.cs-hero .breadcrumb a { color: var(--muted); }
.cs-hero h1 {
  max-width: 22ch;
  font-size: clamp(2.65rem, 2rem + 3.2vw, 4.75rem);
  letter-spacing: -0.035em;
}
.cs-hero .cs-tagline {
  font-size: var(--step-1);
  color: var(--muted);
  max-width: 68ch;
  margin-top: var(--s-3);
  text-wrap: pretty;
  hyphens: none;
}


.cs-hero--video,
.page-hero--video {
  padding-top: calc(var(--header-h) + var(--s-5));
}
.cs-hero--compact-project {
  padding-top: calc(var(--header-h) + var(--s-5));
}
.cs-hero--video h1,
.page-hero--video h1,
.cs-hero--compact-project h1 {
  max-width: 22ch;
  font-size: clamp(2.65rem, 2rem + 3.2vw, 4.75rem);
}
.cs-hero--video .cs-tagline,
.page-hero--video .lede {
  max-width: 56ch;
}
.cs-hero--motion-series {
  padding-bottom: clamp(1.5rem, 2.5vw, 2.75rem);
}
.cs-meta--inline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 3.5rem);
  max-width: 980px;
  margin: clamp(1.5rem, 2.5vw, 2.75rem) 0 0;
}


.cs-hero-media {
  margin: var(--s-6) 0 0;
  width: 100%; aspect-ratio: 16 / 9; overflow: clip;
  border-radius: var(--r-md); background: var(--image-surface);
}
.cs-hero-media img, .cs-hero-media video { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.cs-hero-media--full-frame { overflow: visible; background: transparent; }
.cs-hero-media--full-frame img { object-fit: contain; border-radius: inherit; }


.project-lead-video {
  width: min(100%, 1040px);
  aspect-ratio: 16 / 9;
  margin: clamp(1.5rem, 2.4vw, 2.75rem) auto 0;
  overflow: clip;
  border-radius: var(--r-md);
  background: #000;
  box-shadow: var(--shadow-1);
}
.project-lead-video video,
.project-lead-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: contain;
}


.cs-video-series-heading {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 4vw, 4.5rem);
}
.cs-video-series-heading h2 {
  max-width: none;
}
.cs-video-series--compact {
  padding-top: 0;
}
.cs-video-series-list {
  display: grid;
  gap: clamp(3.5rem, 6vw, 6.5rem);
}
.cs-video-feature {
  display: grid;
  grid-template-columns: minmax(210px, .34fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}
.cs-video-feature-copy {
  max-width: 32ch;
}
.cs-video-feature-number {
  display: block;
  margin-bottom: var(--s-3);
  color: var(--accent-ink);
  font: 500 .7rem/1 var(--font-mono);
  letter-spacing: .16em;
}
.cs-video-feature h2 {
  margin: 0 0 var(--s-2);
  font-size: clamp(1.65rem, 1.35rem + 1.1vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -.025em;
}
.cs-video-feature p {
  margin: 0;
  color: var(--muted);
}
.cs-video-feature-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  background: #000;
}
.cs-video-feature-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 680px) {
  .cs-hero {
    padding-top: calc(var(--header-h) + var(--s-3));
  }
  .cs-hero h1,
  .cs-hero--video h1,
  .cs-hero--compact-project h1 {
    max-width: none;
    font-size: clamp(2.25rem, 9.8vw, 3.1rem);
  }
  .cs-hero .cs-tagline {
    max-width: 36ch;
    margin-top: var(--s-2);
    font-size: var(--step-0);
    line-height: 1.5;
  }
  .cs-hero-media {
    margin-top: var(--s-4);
  }
  .cs-hero--video,
  .page-hero--video {
    padding-top: calc(var(--header-h) + var(--s-3));
  }
  .page-hero--video h1 { font-size: clamp(2.4rem, 10.5vw, 3.6rem); }
  .cs-video-feature {
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }
  .cs-video-feature-copy {
    max-width: 42ch;
  }
  .cs-meta--inline {
    grid-template-columns: 1fr;
    gap: var(--s-2);
  }
}


.cs-intro {
  display: grid;
  gap: clamp(2.25rem, 4vw, 4.5rem);
  align-items: start;
}
.cs-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr));
  gap: clamp(1.25rem, 2.8vw, 3rem);
  margin: 0;
}
.cs-meta .cs-meta-row {
  min-width: 0;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.cs-meta dt {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.cs-meta dd {
  margin: 0;
  font-size: clamp(.98rem, .93rem + .16vw, 1.08rem);
  font-weight: 520;
  line-height: 1.42;
}
.cs-body {
  max-width: 78rem;
}
.cs-brief-label {
  margin: 0;
}
.cs-brief-copy {
  margin: var(--s-3) 0 0;
  max-width: 78ch;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.02rem + .32vw, 1.35rem);
  font-weight: 430;
  letter-spacing: -0.012em;
  line-height: 1.55;
  text-wrap: pretty;
}
@media (min-width: 1000px) {
  .cs-meta:not(:has(.cs-meta-row:nth-child(4))) {
    grid-template-columns: minmax(10rem, .76fr) minmax(13rem, 1fr) minmax(20rem, 1.36fr);
  }
  .cs-meta:has(.cs-meta-row:nth-child(4)) {
    grid-template-columns:
      minmax(9rem, .7fr)
      minmax(12rem, .95fr)
      minmax(18rem, 1.35fr)
      minmax(16rem, 1.15fr);
  }
}
@media (min-width: 840px) and (max-width: 999px) {
  .cs-meta:has(.cs-meta-row:nth-child(4)) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 839px) {
  .cs-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .cs-meta { grid-template-columns: 1fr; gap: var(--s-3); }
}


.cs-block { padding-block: clamp(3.5rem, 5vw, 5.75rem); }
.cs-block--compact { padding-bottom: clamp(3.25rem, 4.5vw, 5rem); }
.cs-hero + .cs-block { padding-top: clamp(2.5rem, 2rem + 2vw, 4rem); }
.cs-hero + .cs-video-series--compact { padding-top: 0; }
.cs-video-series--compact .cs-video-feature:first-child { padding-top: var(--s-3); }
.cs-block h2 {
  max-width: none;
  font-size: clamp(2.2rem, 1.85rem + 1.65vw, 3.45rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
}
.cs-block .cs-block-lead {
  max-width: 78ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1rem + .28vw, 1.3rem);
  line-height: 1.55;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
}


.cs-frame { border-radius: var(--r-md); overflow: clip; background: var(--image-surface); }
.cs-frame img, .cs-frame video { width: 100%; display: block; will-change: transform; }


main img[style*="--media-zoom"] { scale: var(--media-zoom, 1); }
:where(.cs-banner, .cs-hero-media, .showcase-media, .current-media, .proj-media, .work-card-media, .svc-tile-media, .studio-media, .about-opening-media):has(> img[style*="--media-display: natural"]) {
  aspect-ratio: auto !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible;
  background: transparent;
}
:where(.cs-banner, .cs-hero-media, .showcase-media, .current-media, .proj-media, .work-card-media, .svc-tile-media, .studio-media, .about-opening-media) > img[style*="--media-display: natural"] {
  position: relative !important;
  inset: auto !important;
  display: block;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}
.cs-duo { display: grid; gap: var(--s-3); align-items: start; }
@media (min-width: 760px) { .cs-duo { grid-template-columns: 1fr 1fr; gap: var(--s-4); } }


.cs-banner { width: 100%; aspect-ratio: 21 / 9; overflow: clip; border-radius: var(--r-md); background: var(--image-surface); }
.cs-banner img, .cs-banner video { width: 100%; height: 100%; object-fit: cover; will-change: transform; }


.cs-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 4px;
  column-gap: var(--s-3);
  row-gap: 0;
}
.cs-gallery .cs-frame {
  display: block;
  width: 100%;
  margin: 0;
  align-self: start;
}
.cs-gallery .cs-frame--wide { grid-column: span 2; }
.cs-gallery--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cs-motion-frame { margin: var(--s-5) 0 var(--s-3); background: #000; }
.cs-motion-frame video { width: 100%; aspect-ratio: 16 / 9; object-fit: contain; }
.cs-gallery--masonry {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: var(--s-3);
}


.rs-logo-stage {
  background: var(--image-surface);
}
.rs-logo-stage img {
  object-fit: contain;
  padding: clamp(2.25rem, 7vw, 6.5rem);
}
.rs-browser-frame {
  background: var(--image-surface);
}
.rs-site-captures {
  gap: var(--s-3);
  margin-top: var(--s-3);
}
.rs-live-link {
  margin-top: var(--s-4);
}
.storage-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}
.storage-compare-card {
  margin: 0;
  overflow: clip;
  border-radius: var(--r-md);
  background: #f2efe7;
}
.storage-compare-media {
  aspect-ratio: 16 / 10;
  overflow: clip;
  background: var(--image-surface);
}
.storage-compare-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.storage-compare-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.15rem 1.35rem 1.3rem;
}
.storage-compare-card figcaption strong { font-size: var(--step-1); }
.storage-compare-card figcaption span {
  color: var(--muted);
  font: 500 .65rem/1.45 var(--font-mono);
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}
.storage-live-links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: var(--s-4); }
.storage-rollout {
  margin-bottom: clamp(3.5rem, 5vw, 5.75rem);
  padding-inline: clamp(1.5rem, 5vw, 5rem);
  border-radius: var(--r-md);
  background: #f2efe7;
}
.storage-touchpoints {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: var(--s-5);
  border-top: 1px solid #d5d0c5;
  border-bottom: 1px solid #d5d0c5;
}
.storage-touchpoints article { padding: 1.75rem clamp(1.25rem, 2vw, 2rem) 2rem 0; }
.storage-touchpoints article + article { padding-left: clamp(1.25rem, 2vw, 2rem); border-left: 1px solid #d5d0c5; }
.storage-touchpoints span { display: block; margin-bottom: 1.35rem; color: var(--accent-ink); font: 500 .65rem/1 var(--font-mono); }
.storage-touchpoints h3 { margin: 0 0 .75rem; font-size: clamp(1.2rem, 1.5vw, 1.55rem); line-height: 1.15; }
.storage-touchpoints p { margin: 0; color: #66635d; line-height: 1.55; }
.storage-result-image { aspect-ratio: 16 / 9; margin-top: var(--s-5); }
.storage-result-image img { object-position: center 56%; }
.cs-gallery--rockinsocial .rs-brand-pick {
  aspect-ratio: 1 / 1;
}
.cs-gallery--rockinsocial .rs-brand-pick img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 37%;
}
@media (max-width: 1180px) {
  .cs-gallery--masonry { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .cs-gallery,
  .cs-gallery--two,
  .cs-gallery--masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .storage-compare,
  .storage-touchpoints { grid-template-columns: 1fr; }
  .storage-touchpoints article,
  .storage-touchpoints article + article { padding: 1.5rem 0 1.75rem; border-left: 0; }
  .storage-touchpoints article + article { border-top: 1px solid #d5d0c5; }
}
@media (max-width: 480px) {
  .cs-gallery,
  .cs-gallery--two,
  .cs-gallery--masonry { grid-template-columns: 1fr; }
  .cs-gallery .cs-frame--wide { grid-column: span 1; }
  .storage-compare-card figcaption { display: block; }
  .storage-compare-card figcaption span { display: block; margin-top: .45rem; text-align: left; }
}


.cs-video-embed {
  width: 100%; aspect-ratio: 16 / 9; overflow: clip;
  border-radius: var(--r-md); background: #000;
}
.cs-video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }


.cs-quote em,
.proj-quote em { font-style: italic; color: var(--accent); font-weight: 500; }


.cs-next {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--s-4);
  border-top: 1px solid var(--border); padding-top: clamp(2rem, 3vw, 3rem); margin-top: 0;
}
main > section[aria-label="Project navigation"] { padding-block: clamp(3rem, 4.5vw, 5rem); }
.cs-next-forward {
  margin-left: auto;
  max-width: min(68%, 50rem);
  text-align: right;
}
.cs-next-forward > a {
  display: block;
  color: var(--fg); font-size: clamp(1.9rem, 1.35rem + 2vw, 3.35rem); font-weight: 660;
  letter-spacing: -0.03em; line-height: 1; text-align: right;
}
.cs-next a.cs-next-return {
  color: var(--muted);
  font: 600 .72rem/1.4 var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cs-next a:hover { color: var(--accent-ink); text-decoration: none; }
.cs-next .cs-next-label { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.cs-next-forward .cs-next-label { display: block; margin-bottom: var(--s-2); }
@media (max-width: 680px) {
  .cs-next { align-items: flex-start; }
  .cs-next-forward { width: 100%; max-width: none; margin-left: 0; text-align: left; }
  .cs-next-forward > a { font-size: clamp(1.8rem, 8vw, 2.8rem); text-align: left; }
}


body.deep-scene { background: #02060c; }
.deep-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; display: block;
}
body.deep-scene .site-header { z-index: 200; }
body.deep-scene main { position: relative; z-index: 1; }


body.deep-scene section,
body.deep-scene .band,
body.deep-scene .pillars,
body.deep-scene .pillar { background: transparent; }
body.deep-scene .pillars { border-color: rgba(120, 160, 180, 0.16); }
body.deep-scene .pillar { border-color: rgba(120, 160, 180, 0.16); }
body.deep-scene .band { border-color: rgba(120, 160, 180, 0.16); }


body.deep-scene .work-card,
body.deep-scene .stack-card,
body.deep-scene .svc-card,
body.deep-scene .current-card .current-media {
  background: color-mix(in srgb, #0A1526 66%, transparent);
  -webkit-backdrop-filter: blur(9px) saturate(1.2);
  backdrop-filter: blur(9px) saturate(1.2);
  border: 1px solid rgba(120, 160, 180, 0.18);
}

body.deep-scene .stack-card {
  background: #0A1526;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
body.deep-scene .abyss { background: #101418; border-radius: 0; margin-top: 0; }


body.deep-scene .hero-xl::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(120% 80% at 20% 60%, rgba(2,10,20,.55), transparent 70%);
}


.zone-tag {
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent-ink); opacity: .85;
}
body.deep-scene .zone-tag, .abyss .zone-tag { color: var(--biolume); }


.current { position: relative; overflow: hidden; padding-block: 0; }
.current-viewport { height: 100vh; display: flex; align-items: center; }
.current-track {
  display: flex; gap: clamp(18px, 3vw, 44px);
  padding-inline: var(--gutter); will-change: transform;
}
.current-intro {
  flex: 0 0 auto; width: min(70vw, 460px); align-self: center;
  padding-right: var(--s-4);
}
.current-intro h2 { font-size: var(--step-5); letter-spacing: -0.03em; }
.current-card { flex: 0 0 auto; width: min(74vw, 480px); }
.current-card a { display: block; color: inherit; }
.current-card a:hover { text-decoration: none; }
.current-media {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-md);
  overflow: clip; margin-bottom: var(--s-2);
}
.current-media img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.current-num {
  position: absolute; top: 16px; left: 18px; z-index: 2;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em;
  color: var(--biolume);
}
.current-card h3 { font-size: var(--step-2); margin: 0 0 4px; letter-spacing: -0.02em; }
.current-card .current-cat {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
.current-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted); z-index: 3;
  display: flex; align-items: center; gap: 10px;
}
.current-hint::before, .current-hint::after { content: ''; width: 22px; height: 1px; background: var(--muted); }
@media (max-width: 760px) {

  .current-viewport { height: auto; display: block; }
  .current-track { flex-direction: column; padding-block: var(--section); }
  .current-intro, .current-card { width: 100%; }
  .current-hint { display: none; }
}


.clients-band .band-track .unit span { font-weight: 560; color: var(--muted); }
.clients-band .band-track .unit span.lit { color: var(--fg); }


.wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-4);
  align-items: stretch;
}
.wall .wall-card {
  margin: 0;
  height: 100%;
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: var(--s-4);
}
.wall .wall-card blockquote {
  margin: 0; font-size: var(--step-0); line-height: 1.5; color: var(--fg);
  max-width: none;
}
.wall .wall-card .wall-mark { color: var(--accent); font-size: 2rem; line-height: 0.4; font-family: Georgia, serif; display: block; margin-bottom: 10px; }
.wall .wall-card cite {
  display: block; margin-top: var(--s-3); font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-style: normal;
}
@media (max-width: 980px) {
  .wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .wall { grid-template-columns: 1fr; }
}


.reviews-archive {
  padding-bottom: var(--section);
}
.reviews-directory {
  columns: 3;
  column-gap: var(--s-4);
}
.reviews-directory .wall-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 var(--s-4);
  padding: var(--s-4);
  break-inside: avoid;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.reviews-directory .wall-mark {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font: 2rem/.4 Georgia, serif;
}
.reviews-directory blockquote {
  max-width: none;
  margin: 0;
  color: var(--fg);
  font-size: var(--step-0);
  line-height: 1.5;
  text-wrap: pretty;
}
.reviews-directory cite {
  display: block;
  margin-top: var(--s-3);
  color: var(--muted);
  font: 500 .68rem/1.5 var(--font-mono);
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .reviews-directory { columns: 2; }
}
@media (max-width: 640px) {
  .reviews-directory { columns: 1; }
}


.showcase { display: flex; flex-direction: column; gap: clamp(3.5rem, 9vw, 9rem); }
.showcase-item { display: grid; gap: var(--s-4); align-items: center; }
@media (min-width: 920px) {
  .showcase-item { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 5vw, 6rem); }
  .showcase-item:nth-child(even) .showcase-media { order: 2; }
  .showcase-item:nth-child(even) .showcase-text { order: 1; padding-left: clamp(0px, 3vw, 48px); }
}
.showcase-media {
  position: relative; border-radius: var(--r-md); overflow: clip;
  aspect-ratio: 5 / 4; background: var(--image-surface);
}
.showcase-media img,
.showcase-media video { display: block; width: 100%; height: 116%; object-fit: cover; will-change: transform; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.showcase-media::after { content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(16,20,24,.07); }
.showcase-item a { color: inherit; display: block; }
.showcase-item a:hover { text-decoration: none; }
.showcase-item a:hover .showcase-media img,
.showcase-item a:hover .showcase-media video { transform: scale(1.05); }
.showcase-num {
  font-family: var(--font-mono); color: var(--accent-ink);
  font-size: .82rem; letter-spacing: .22em; display: block;
}
.showcase-text h2 { font-size: var(--step-4); letter-spacing: -0.035em; line-height: 1.02; margin: 14px 0 10px; }
.showcase-cat { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.showcase-text p { color: var(--muted); font-size: var(--step-1); line-height: 1.5; margin: var(--s-3) 0 var(--s-4); max-width: 40ch; }
.showcase-quote { border-left: 2px solid var(--accent); padding-left: 18px; margin: var(--s-4) 0 0; font-size: var(--step-0); color: var(--fg); max-width: 42ch; }
.showcase-quote cite { display: block; margin-top: 8px; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-style: normal; }
.showcase-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 1rem/1 var(--font-sans); color: var(--fg);
}
.showcase-cta .arr { transition: transform .2s; }
.showcase-item a:hover .showcase-cta { color: var(--accent-ink); }
.showcase-item a:hover .showcase-cta .arr { transform: translateX(5px); }

.sonar-ping {
  position: absolute; width: 160px; height: 160px;
  margin: -80px 0 0 -80px; border: 1px solid var(--accent);
  border-radius: 50%; pointer-events: none;
}


.iom-hero { overflow: clip; }
.iom-under {
  position: absolute; inset: 0; z-index: 0; background: var(--abyss);
  will-change: transform;
}
.iom-under figure { position: absolute; margin: 0; border-radius: 10px; overflow: clip; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.iom-under img { width: 100%; height: auto; display: block; }
.iom-under-tag {
  position: absolute; left: 50%; bottom: 5%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--abyss-muted); white-space: nowrap;
}
.iom-cover { position: absolute; inset: 0; z-index: 1; will-change: transform; }
.iom-cover svg { width: 100%; height: 100%; display: block; }
.iom-cover .iom-cutout { fill: var(--bg); }
.iom-cover .iom-rings polyline { fill: none; stroke: #DBD6CC; stroke-width: 1; }
.iom-cover .chart-coords { position: absolute; }
.iom-hero .hero-copy { position: relative; z-index: 2; width: 100%; }
.iom-hero .hero-scroll-hint { z-index: 2; }
@media (max-width: 760px) {

  .iom-hero h1, .iom-hero .hero-meta, .iom-hero .eyebrow {
    text-shadow: 0 0 8px var(--bg), 0 0 20px var(--bg), 0 0 34px var(--bg);
  }
}

.page-hero, .cs-hero { position: relative; isolation: isolate; }
.chart-coords {
  position: absolute; top: calc(var(--header-h) + var(--s-4)); right: var(--gutter); z-index: 1;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); text-align: right; line-height: 1.7;
}
@media (max-width: 720px) {
  .chart-coords { display: none; }
}


.stack--projects .stack-stage { margin-top: var(--s-5); }
.stack--projects.is-live .proj-card { height: 100%; align-items: stretch; }

.stack--projects.is-live .proj-media {
  align-self: stretch; aspect-ratio: auto; min-height: 0;
  position: relative; overflow: hidden;
}
.stack--projects.is-live .proj-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 859px) {
  .stack--projects.is-live .proj-card { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .stack--projects.is-live .proj-media { align-self: stretch; min-height: 140px; }
}
.proj-card {
  display: grid; gap: var(--s-4);
  grid-template-columns: 1fr; align-items: center;
  padding: clamp(1.4rem, 1rem + 2vw, 2.6rem);
  min-height: auto;
}
@media (min-width: 860px) {
  .proj-card { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: var(--s-6); }
}
.proj-card .proj-num {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em;
  color: var(--accent-ink); display: block; margin-bottom: var(--s-3);
}
.proj-card h3 { font-size: var(--step-3); letter-spacing: -0.025em; margin: 0 0 10px; }
.proj-card .proj-cat {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); display: block; margin-bottom: var(--s-3);
}
.proj-card p { color: var(--muted); margin: 0 0 var(--s-3); }
.proj-card .proj-media {
  border-radius: var(--r-md); overflow: clip; background: var(--bg);
  aspect-ratio: 4 / 3;
}
.proj-card .proj-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.proj-card a:hover .proj-media img, .proj-card:hover .proj-media img { transform: scale(1.035); }
@media (max-width: 859px) {
  .proj-card .proj-media { order: -1; }
}


.section-display { font-size: var(--step-4); max-width: 16ch; letter-spacing: -.03em; }
.section-heading-row,
.portfolio-intro-row {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  align-items: end; gap: var(--s-5); margin-bottom: var(--s-5);
}
.section-heading-row > p,
.portfolio-intro-row > p { color: var(--muted); max-width: 38ch; margin: 0; }

.service-pillars { padding-bottom: clamp(3.5rem, 7vw, 7rem); }
.service-pillars > .eyebrow { margin-bottom: var(--s-3); }
.service-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #26323d;
  border-radius: var(--r-md);
  background: #26323d;
  color: var(--abyss-fg);
  gap: 1px;
}
.service-pillar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-5);
  min-height: clamp(320px, 31vw, 440px);
  padding: clamp(1.5rem, 3vw, 2.75rem);
  background: var(--abyss);
}
.service-pillar-number {
  font: 500 .7rem/1 var(--font-mono);
  letter-spacing: .15em;
  color: var(--biolume);
}
.service-pillar-label {
  margin: 0 0 12px;
  font: 500 .67rem/1.3 var(--font-mono);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--abyss-muted);
}
.service-pillar h3 {
  margin: 0 0 var(--s-2);
  max-width: 13ch;
  font-size: clamp(1.65rem, 2.4vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -.03em;
}
.service-pillar p:not(.service-pillar-label) { max-width: 34ch; margin: 0; color: var(--abyss-muted); }
.service-pillar ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-pillar li {
  padding: 7px 10px;
  border: 1px solid rgba(237,241,244,.16);
  border-radius: 999px;
  font: 500 .68rem/1 var(--font-mono);
  color: var(--abyss-fg);
}
.services-index { padding-top: 0; }
.services-index .section-heading-row {
  align-items: start;
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--border);
}
.services-index .section-display { max-width: 13ch; margin-bottom: 0; }
.services-index .section-heading-row > p { padding-top: clamp(2.25rem, 4vw, 3.5rem); }


.services-menu-section { padding-top: 0; }
.services-menu { border-top: 1px solid var(--border); }
.services-menu details { border-bottom: 1px solid var(--border); }
.services-menu summary {
  display: grid;
  grid-template-columns: 3rem minmax(220px, .65fr) minmax(300px, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 0;
  cursor: pointer;
  list-style: none;
}
.services-menu summary::-webkit-details-marker { display: none; }
.services-menu summary::after {
  content: '+';
  color: var(--accent-ink);
  font-size: 1.5rem;
  font-weight: 350;
}
.services-menu details[open] summary::after { content: '\2212'; }
.services-menu summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
.services-menu-number {
  color: var(--accent-ink);
  font: 500 .7rem/1 var(--font-mono);
}
.services-menu-title {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.services-menu-summary { margin: 0; color: var(--muted); }
.services-menu-content {
  display: grid;
  grid-template-columns: .65fr 1fr;
  gap: 2rem;
  margin-left: 5rem;
  padding: 0 0 2.2rem;
}
.services-menu-content p { margin: 0; color: var(--muted); line-height: 1.55; }
.services-menu-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.services-menu-content li::before { content: '\2022\00a0'; color: var(--accent); }

.portfolio-selection {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-bottom: var(--s-5);
  border-top: 1px solid var(--border);
}
.portfolio-selection .work-card {
  min-width: 0;
  min-height: 300px;
  margin: 0;
  overflow: visible;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: var(--bg);
}
.portfolio-selection .work-card:nth-child(odd) { border-right: 1px solid var(--border); }
.portfolio-selection .work-card > a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 54fr) minmax(0, 46fr);
  gap: clamp(1rem, 2vw, 1.65rem);
  align-items: start;
  min-height: 300px;
  overflow: hidden;
  padding: clamp(1.35rem, 2.4vw, 1.85rem) clamp(1.15rem, 2.2vw, 1.75rem);
  background: var(--bg);
  color: var(--ink);
  text-decoration: none;
  transition: background-color .2s ease;
}
.portfolio-selection .work-card > a::after { display: none; }
.portfolio-selection .work-card-media {
  position: relative;
  display: block;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--image-surface);
}
.portfolio-selection .work-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(.18) brightness(1.04) contrast(.91);
  opacity: .86;
  transform: none;
  scale: var(--media-zoom, 1);
  transition: filter .38s ease, opacity .38s ease, scale .2s ease;
}
.portfolio-selection .work-card figcaption {
  position: relative;
  z-index: 2;
  inset: auto;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  grid-column: 2;
  grid-row: 1;
  gap: .65rem;
  align-self: stretch;
  height: 240px;
  min-width: 0;
  padding: .25rem clamp(.75rem, 1.6vw, 1.25rem) .15rem clamp(.25rem, .8vw, .65rem);
  background: transparent;
  color: var(--ink);
}
.portfolio-selection .work-card figcaption::after {
  content: '\2192';
  grid-row: 4;
  align-self: end;
  justify-self: start;
  color: var(--accent-ink);
  transform: translateX(0);
  transition: transform .18s ease;
}
.portfolio-selection .work-card figcaption strong {
  grid-row: 1;
  display: block;
  max-width: 100%;
  font-size: clamp(1.18rem, 1.65vw, 1.42rem);
  line-height: 1.2;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: balance;
}
.portfolio-selection .work-card-heading > span {
  display: block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
}
.portfolio-selection .work-card-heading .work-card-phase {
  display: block;
  margin-top: .55rem;
  color: var(--muted);
  font-size: .86em;
  font-weight: 500;
  line-height: 1.25;
}
.portfolio-selection .work-card-categories,
.portfolio-selection .work-card-categories > span {
  color: var(--muted);
  font: 500 .68rem/1.45 var(--font-mono);
  letter-spacing: .07em;
  text-align: left;
}
.portfolio-selection .work-card-categories {
  display: flex;
  grid-row: 2;
  flex-direction: column;
  align-items: flex-start;
  gap: .28rem;
  margin-top: .3rem;
}
.portfolio-selection .work-card-categories > span {
  display: block;
}
.portfolio-selection .work-card:hover > a,
.portfolio-selection .work-card:focus-within > a { background: var(--bg-raised); }
.portfolio-selection .work-card:hover img,
.portfolio-selection .work-card:focus-within img {
  filter: none;
  opacity: 1;
  transform: none;
}
.portfolio-selection .work-card:hover figcaption::after,
.portfolio-selection .work-card:focus-within figcaption::after { transform: translateX(4px); }
.portfolio-selection .work-card > a:focus-visible {
  outline: 2px solid var(--accent-ink);
  outline-offset: -3px;
}
@media (max-width: 820px) {
  .portfolio-selection { grid-template-columns: 1fr; }
  .portfolio-selection .work-card:nth-child(odd) { border-right: 0; }
}
@media (max-width: 620px) {
  .portfolio-selection .work-card,
  .portfolio-selection .work-card > a { min-height: 0; }
  .portfolio-selection .work-card > a {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1.35rem 0 1.6rem;
  }
  .portfolio-selection .work-card-media {
    grid-column: 1;
    grid-row: 1;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .portfolio-selection .work-card figcaption {
    grid-column: 1;
    grid-row: 2;
    height: auto;
    min-height: 150px;
    padding: 0;
  }
}
@media (hover: none) {
  .portfolio-selection .work-card img {
    filter: saturate(.48) contrast(.94);
    opacity: .9;
  }
}
.portfolio-selection .work-card img[data-desaturated="true"] {
  filter: grayscale(1) brightness(1.04) contrast(.91);
  opacity: .9;
}
.portfolio-selection .work-card img[data-desaturated="false"] {
  filter: none;
  opacity: 1;
}
.portfolio-selection .work-card:hover img:not([data-hover-desaturated="true"]),
.portfolio-selection .work-card:focus-within img:not([data-hover-desaturated="true"]),
.portfolio-selection .work-card:hover img[data-hover-desaturated="false"],
.portfolio-selection .work-card:focus-within img[data-hover-desaturated="false"] {
  filter: none;
  opacity: 1;
}
.portfolio-selection .work-card:hover img[data-hover-desaturated="true"],
.portfolio-selection .work-card:focus-within img[data-hover-desaturated="true"] {
  filter: grayscale(1) brightness(1.04) contrast(.91);
  opacity: .9;
}
@media (prefers-reduced-motion: reduce) {
  .portfolio-selection .work-card img,
  .portfolio-selection .work-card figcaption::after { transition: none; }
}
.portfolio-archive, .logo-archive { border-top: 1px solid var(--border); margin-top: var(--s-5); }
.portfolio-archive summary, .logo-archive summary {
  list-style: none; cursor: pointer; min-height: 88px; padding: var(--s-3) 4px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  font-size: var(--step-1); font-weight: 610;
}
.portfolio-archive summary::-webkit-details-marker, .logo-archive summary::-webkit-details-marker { display: none; }
.portfolio-archive summary::after, .logo-archive summary::after { content: '+'; color: var(--accent-ink); font-size: 1.7rem; font-weight: 400; }
.portfolio-archive[open] summary::after, .logo-archive[open] summary::after { transform: rotate(45deg); }
.portfolio-archive summary small, .logo-archive summary small { margin-left: auto; color: var(--muted); font: 500 .68rem/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; }
.portfolio-archive-grid, .logo-archive-grid { padding-top: var(--s-4); }
.logo-selection { margin-bottom: var(--s-4); }

.about-story { padding-top: clamp(1.5rem, 3vw, 3.5rem); }
.about-opening {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
}
.about-opening-media { margin: 0; min-height: 0; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--r-md); background: var(--image-surface); }
.about-opening-media img { width: 100%; height: 100%; object-fit: cover; }
.about-opening-copy { align-self: center; padding: 0; }
.about-opening-copy h2 { max-width: 9ch; }
.about-opening-copy > p:not(.eyebrow) { max-width: 42ch; color: var(--muted); }
.about-timeline { padding-top: clamp(4rem, 7vw, 7.5rem); }
.about-cta { padding-top: 0; }


.about-concept-page main { overflow: clip; }
.about-concept-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-top: calc(var(--header-h) + 1rem);
  padding-bottom: 1rem;
  font: 500 .68rem/1.2 var(--font-mono);
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-concept-nav > div { display: flex; align-items: center; gap: .45rem; }
.about-concept-nav a {
  display: inline-grid;
  place-items: center;
  min-width: 2.35rem;
  min-height: 2.35rem;
  padding: .45rem .65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--fg);
  letter-spacing: .06em;
}
.about-concept-nav a:first-child { padding-inline: 1rem; }
.about-concept-nav a[aria-current="page"] { color: #fff; border-color: var(--fg); background: var(--fg); }
.about-concept-page .about-deck { font-size: clamp(1.45rem, 2.7vw, 2.5rem); line-height: 1.22; color: var(--fg); }
.about-concept-bleed { position: relative; width: 100%; margin: 0; overflow: hidden; background: var(--image-surface); }
.about-concept-bleed img { width: 100%; height: clamp(32rem, 62vw, 52rem); object-fit: cover; }
.about-concept-bleed figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: .55rem .75rem;
  border-radius: 999px;
  background: rgba(12, 15, 18, .76);
  color: rgba(255, 255, 255, .78);
  font: 500 .61rem/1.2 var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-section-index { margin: 0; font: 500 .7rem/1.4 var(--font-mono); letter-spacing: .11em; text-transform: uppercase; color: var(--muted); }
.about-concept-cta { padding-block: clamp(5rem, 10vw, 10rem); text-align: center; }
.about-concept-cta .eyebrow { justify-content: center; }
.about-concept-cta h2 { max-width: 16ch; margin-inline: auto; font-size: clamp(3rem, 7vw, 6.8rem); line-height: .96; }
.about-concept-cta > p:not(.eyebrow) { max-width: 42ch; margin: 0 auto var(--s-4); color: var(--muted); }


.about-editorial-hero { padding-top: clamp(3.5rem, 7vw, 7rem); padding-bottom: clamp(4rem, 8vw, 8rem); }
.about-editorial-hero h1 { max-width: 10ch; margin: 0; font-size: clamp(4.5rem, 11vw, 11rem); line-height: .82; letter-spacing: -.07em; }
.about-editorial-hero h1 em { color: var(--accent-ink); font-family: var(--font-serif); font-weight: 400; }
.about-editorial-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
  margin-top: clamp(3rem, 7vw, 7rem);
}
.about-editorial-intro p { margin: 0; }
.about-editorial-intro > p:last-child { max-width: 35ch; color: var(--muted); font-size: 1.1rem; }
.about-concept-bleed--crowd img { object-position: center 42%; }
.about-editorial-story {
  display: grid;
  grid-template-columns: minmax(9rem, .28fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding-block: clamp(5rem, 10vw, 10rem);
}
.about-editorial-story h2 { max-width: 15ch; font-size: clamp(2.7rem, 5.3vw, 5.4rem); line-height: 1; }
.about-editorial-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5rem); }
.about-editorial-columns p { max-width: 34ch; color: var(--muted); font-size: 1.05rem; }
.about-manifesto-band { padding-block: clamp(5rem, 10vw, 10rem); background: #0f1215; color: #fff; }
.about-manifesto-band .eyebrow { color: rgba(255, 255, 255, .55); }
.about-manifesto-band > div > h2 { margin: clamp(2rem, 4vw, 4rem) 0 clamp(4rem, 8vw, 8rem); font-size: clamp(4rem, 9vw, 9rem); line-height: .88; letter-spacing: -.06em; }
.about-manifesto-band h2 em { color: var(--accent); font-family: var(--font-serif); font-weight: 400; }
.about-principle-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255, 255, 255, .2); }
.about-principle-row article { padding: var(--s-4) var(--s-4) 0 0; }
.about-principle-row article + article { padding-left: var(--s-4); border-left: 1px solid rgba(255, 255, 255, .2); }
.about-principle-row span { color: var(--accent); font: 500 .7rem/1 var(--font-mono); letter-spacing: .1em; }
.about-principle-row h3 { margin: 2.5rem 0 .8rem; font-size: clamp(1.8rem, 3vw, 3rem); }
.about-principle-row p { max-width: 28ch; color: rgba(255, 255, 255, .62); }


.about-image-hero { position: relative; min-height: min(78rem, calc(100svh - var(--header-h))); display: grid; align-items: end; overflow: hidden; }
.about-image-hero > img, .about-image-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-image-hero > img { object-fit: cover; object-position: center; }
.about-image-hero-shade { background: linear-gradient(180deg, rgba(8, 10, 12, .06) 20%, rgba(8, 10, 12, .78) 100%); }
.about-image-hero-copy { position: relative; z-index: 1; padding-block: clamp(4rem, 9vw, 8rem); color: #fff; }
.about-image-hero-copy .eyebrow { color: rgba(255, 255, 255, .68); }
.about-image-hero-copy h1 { max-width: 11ch; margin: 0; font-size: clamp(4rem, 10vw, 10rem); line-height: .86; letter-spacing: -.065em; }
.about-image-hero-copy h1 em { color: var(--accent); font-family: var(--font-serif); font-weight: 400; }
.about-image-hero-copy > p:last-child { max-width: 36ch; margin: var(--s-4) 0 0 auto; font-size: clamp(1.2rem, 2vw, 1.75rem); color: rgba(255, 255, 255, .82); }
.about-story-led { display: grid; grid-template-columns: minmax(9rem, .28fr) minmax(0, 1fr); gap: clamp(2rem, 7vw, 7rem); padding-block: clamp(5rem, 10vw, 10rem); }
.about-story-led h2 { max-width: 17ch; margin-top: 0; font-size: clamp(3rem, 6vw, 6rem); line-height: .96; }
.about-story-led-copy { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 6vw, 6rem); }
.about-story-led-copy p { max-width: 34ch; color: var(--muted); font-size: 1.08rem; }
.about-human-band { padding-block: clamp(5rem, 9vw, 9rem); background: #ece8de; }
.about-human-band h2 { max-width: 13ch; margin-block: clamp(2rem, 4vw, 4rem) clamp(4rem, 7vw, 7rem); font-size: clamp(3.4rem, 7vw, 7rem); line-height: .9; }
.about-human-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #c8c2b7; }
.about-human-grid article { display: grid; grid-template-columns: minmax(8rem, .35fr) minmax(0, 1fr); gap: var(--s-4); padding-block: var(--s-4); border-bottom: 1px solid #c8c2b7; }
.about-human-grid article:nth-child(odd) { padding-right: var(--s-4); }
.about-human-grid article:nth-child(even) { padding-left: var(--s-4); border-left: 1px solid #c8c2b7; }
.about-human-grid h3, .about-human-grid p { margin: 0; }
.about-human-grid h3 { font-size: 1.25rem; }
.about-human-grid p { max-width: 30ch; color: #65625b; }


.about-concept-three { background: #f4f1e9; }
.about-proof-hero { padding-top: clamp(4rem, 8vw, 8rem); padding-bottom: clamp(4rem, 7vw, 7rem); }
.about-proof-hero h1 { max-width: 12ch; margin: 0; font-size: clamp(4.2rem, 9.5vw, 9.5rem); line-height: .88; letter-spacing: -.065em; }
.about-proof-hero h1 em { color: var(--accent-ink); font-family: var(--font-serif); font-weight: 400; }
.about-proof-hero .about-deck { max-width: 32ch; margin: clamp(3rem, 6vw, 6rem) 0 0 auto; }
.about-proof-strip { border-block: 1px solid #cfc9bc; }
.about-proof-strip > div { display: grid; grid-template-columns: repeat(3, 1fr); }
.about-proof-strip p { display: flex; flex-direction: column; gap: .7rem; margin: 0; padding: clamp(2rem, 4vw, 4rem); }
.about-proof-strip p:first-child { padding-left: 0; }
.about-proof-strip p + p { border-left: 1px solid #cfc9bc; }
.about-proof-strip strong { font-size: clamp(3rem, 6vw, 6rem); line-height: .85; letter-spacing: -.05em; }
.about-proof-strip span { font: 500 .68rem/1.3 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.about-concept-bleed--craft img { height: clamp(36rem, 68vw, 58rem); object-position: center 43%; }
.about-proof-story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, .72fr); gap: clamp(3rem, 9vw, 10rem); align-items: start; padding-block: clamp(5rem, 10vw, 10rem); }
.about-proof-story h2 { max-width: 10ch; font-size: clamp(3rem, 6vw, 6rem); line-height: .95; }
.about-proof-story-copy { padding-top: 2rem; }
.about-proof-story-copy p { max-width: 35ch; color: var(--muted); font-size: 1.08rem; }
.about-deliverables { padding-bottom: clamp(5rem, 10vw, 10rem); }
.about-deliverables > .eyebrow { margin-bottom: var(--s-4); }
.about-deliverables ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid #cfc9bc; }
.about-deliverables li { display: grid; grid-template-columns: 4rem minmax(14rem, .55fr) minmax(16rem, .45fr); gap: var(--s-4); align-items: center; padding-block: clamp(1.5rem, 3vw, 2.5rem); border-bottom: 1px solid #cfc9bc; }
.about-deliverables li span { font: 500 .68rem/1 var(--font-mono); color: var(--accent-ink); }
.about-deliverables li strong { font-size: clamp(1.6rem, 3vw, 2.7rem); }
.about-deliverables li p { margin: 0; color: var(--muted); }
.about-concept-cta--lined { border-top: 1px solid #cfc9bc; }


.about-concept-four { background: #0f1215; color: #fff; }
.about-concept-four .site-header { background: #fff; color: var(--fg); }
.about-concept-four .about-concept-nav { color: rgba(255, 255, 255, .52); }
.about-concept-four .about-concept-nav a { color: #fff; border-color: rgba(255, 255, 255, .25); }
.about-concept-four .about-concept-nav a[aria-current="page"] { background: #fff; color: #0f1215; border-color: #fff; }
.about-cinematic-hero { position: relative; display: grid; align-items: end; min-height: min(76rem, calc(100svh - var(--header-h))); overflow: hidden; }
.about-cinematic-hero > img, .about-cinematic-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-cinematic-hero > img { object-fit: cover; object-position: center; }
.about-cinematic-overlay { background: linear-gradient(180deg, rgba(3, 7, 14, .05), rgba(3, 7, 14, .22) 45%, rgba(3, 7, 14, .9)); }
.about-cinematic-copy { position: relative; z-index: 1; padding-block: clamp(4rem, 8vw, 8rem); }
.about-cinematic-copy .eyebrow { color: rgba(255, 255, 255, .64); }
.about-cinematic-copy h1 { max-width: 12ch; margin: 0; font-size: clamp(4.4rem, 10vw, 10rem); line-height: .84; letter-spacing: -.06em; }
.about-cinematic-copy h1 em { color: var(--accent); font-family: var(--font-serif); font-weight: 400; }
.about-cinematic-copy > p:last-child { max-width: 32ch; margin: var(--s-4) 0 0 auto; color: rgba(255, 255, 255, .78); font-size: clamp(1.2rem, 2vw, 1.75rem); }
.about-cinematic-statement { padding-block: clamp(5rem, 10vw, 10rem); }
.about-cinematic-statement p { margin: 0; font-size: clamp(4rem, 10vw, 10rem); line-height: .9; letter-spacing: -.065em; color: #fff; }
.about-cinematic-statement p:nth-child(2) { text-align: center; }
.about-cinematic-statement p:nth-child(3) { text-align: right; }
.about-cinematic-statement span { color: var(--accent); font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.about-cinematic-story { padding-block: clamp(5rem, 9vw, 9rem); background: #fff; color: var(--fg); }
.about-cinematic-story > div > div { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(20rem, .7fr); gap: clamp(3rem, 8vw, 9rem); align-items: end; margin-top: var(--s-4); }
.about-cinematic-story h2 { max-width: 13ch; margin: 0; font-size: clamp(3rem, 6.5vw, 6.5rem); line-height: .94; }
.about-cinematic-story > div > div > div p { max-width: 33ch; color: var(--muted); font-size: 1.08rem; }
.about-concept-bleed--lightning img { height: clamp(34rem, 61vw, 52rem); object-position: center; }
.about-cinematic-process { padding-block: clamp(5rem, 10vw, 10rem); }
.about-cinematic-process > h2 { max-width: 13ch; font-size: clamp(3rem, 6vw, 6rem); line-height: .95; }
.about-cinematic-process > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: clamp(4rem, 7vw, 7rem); border-top: 1px solid rgba(255, 255, 255, .2); }
.about-cinematic-process article { padding: var(--s-4) var(--s-4) 0 0; }
.about-cinematic-process article + article { padding-left: var(--s-4); border-left: 1px solid rgba(255, 255, 255, .2); }
.about-cinematic-process article span { color: var(--accent); font: 500 .7rem/1 var(--font-mono); }
.about-cinematic-process h3 { margin: 2.5rem 0 .8rem; font-size: clamp(1.8rem, 3vw, 3rem); }
.about-cinematic-process article p { max-width: 28ch; color: rgba(255, 255, 255, .58); }
.about-cinematic-cta { padding-block: clamp(5rem, 10vw, 10rem); border-top: 1px solid rgba(255, 255, 255, .2); text-align: center; }
.about-cinematic-cta .eyebrow { justify-content: center; color: rgba(255, 255, 255, .58); }
.about-cinematic-cta h2 { margin: 0 auto var(--s-4); font-size: clamp(3.5rem, 8vw, 8rem); line-height: .9; }


.about-index-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, .75fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
  min-height: min(52rem, 76svh);
  padding-block: clamp(4rem, 8vw, 8rem);
}
.about-index-hero h1 { max-width: 9ch; margin: 0; font-size: clamp(4.5rem, 10vw, 10rem); line-height: .84; letter-spacing: -.07em; }
.about-index-hero h1 em { color: var(--accent-ink); font-family: var(--font-serif); font-weight: 400; }
.about-index-intro { display: grid; gap: var(--s-4); align-content: end; }
.about-index-intro p { max-width: 34ch; margin: 0; color: var(--muted); }
.about-index-intro p:first-child { color: var(--fg); font-size: clamp(1.45rem, 2.4vw, 2.15rem); line-height: 1.22; }
.about-index-manifesto { padding-block: clamp(5rem, 9vw, 9rem); background: #0f1215; color: #fff; }
.about-index-manifesto .eyebrow { color: rgba(255, 255, 255, .56); }
.about-index-manifesto ol { margin: clamp(3rem, 6vw, 6rem) 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .2); }
.about-index-manifesto li { display: grid; grid-template-columns: 5rem minmax(0, 1fr) auto; gap: var(--s-4); align-items: baseline; padding-block: clamp(1.8rem, 3vw, 3rem); border-bottom: 1px solid rgba(255, 255, 255, .2); }
.about-index-manifesto li span { color: var(--accent); font: 500 .68rem/1 var(--font-mono); }
.about-index-manifesto li strong, .about-index-manifesto li em { font-size: clamp(3.5rem, 8vw, 8rem); line-height: .9; letter-spacing: -.055em; }
.about-index-manifesto li strong { white-space: nowrap; }
.about-index-manifesto li em { color: var(--accent); font-family: var(--font-serif); font-weight: 400; }
.about-index-belief { display: grid; grid-template-columns: minmax(9rem, .3fr) minmax(0, 1fr); gap: clamp(2rem, 7vw, 7rem); padding-block: clamp(5rem, 10vw, 10rem); }
.about-index-belief h2 { max-width: 14ch; margin-top: 0; font-size: clamp(3rem, 6vw, 6rem); line-height: .96; }
.about-index-belief > div > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5rem); }
.about-index-belief > div > div p { max-width: 34ch; color: var(--muted); }
.about-index-values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-block: 1px solid var(--border); }
.about-index-values article { padding: var(--s-4) var(--s-4) var(--s-4) 0; }
.about-index-values article + article { padding-left: var(--s-4); border-left: 1px solid var(--border); }
.about-index-values span { font-size: clamp(1.7rem, 3vw, 2.7rem); font-weight: 650; }
.about-index-values p { max-width: 28ch; margin-bottom: 0; color: var(--muted); }


.about-journal-hero { padding-block: clamp(4rem, 8vw, 8rem); }
.about-journal-hero h1 { max-width: 12ch; margin: 0; font-size: clamp(4rem, 9vw, 9rem); line-height: .87; letter-spacing: -.065em; }
.about-journal-hero h1 em { color: var(--accent-ink); font-family: var(--font-serif); font-weight: 400; }
.about-journal-hero > div { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, .7fr); gap: clamp(2rem, 7vw, 7rem); align-items: end; margin-top: clamp(3rem, 6vw, 6rem); }
.about-journal-hero > div p { max-width: 35ch; margin: 0; color: var(--muted); }
.about-journal-hero > div p:first-child { color: var(--fg); font-size: clamp(1.4rem, 2.5vw, 2.3rem); line-height: 1.22; }
.about-journal-image { position: relative; margin-bottom: 0; }
.about-journal-image img { width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; object-position: center 45%; border-radius: var(--r-md); }
.about-journal-image figcaption { margin-top: .8rem; font: 500 .62rem/1.3 var(--font-mono); letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.about-journal-story { display: grid; grid-template-columns: minmax(9rem, .3fr) minmax(0, 1fr); gap: clamp(2rem, 7vw, 7rem); padding-block: clamp(5rem, 10vw, 10rem); }
.about-journal-story h2 { max-width: 15ch; margin-top: 0; font-size: clamp(3rem, 6vw, 6rem); line-height: .96; }
.about-journal-story > div > p { max-width: 42ch; color: var(--muted); }
.about-journal-quote { background: #ece8de; }
.about-journal-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding-block: clamp(5rem, 9vw, 9rem); }
.about-journal-details article { display: grid; grid-template-columns: minmax(8rem, .36fr) minmax(0, 1fr); gap: var(--s-4); padding-block: var(--s-4); border-bottom: 1px solid var(--border); }
.about-journal-details article:nth-child(-n+2) { border-top: 1px solid var(--border); }
.about-journal-details article:nth-child(odd) { padding-right: var(--s-4); }
.about-journal-details article:nth-child(even) { padding-left: var(--s-4); border-left: 1px solid var(--border); }
.about-journal-details h3, .about-journal-details p { margin: 0; }
.about-journal-details p { max-width: 30ch; color: var(--muted); }


.about-concept-seven { background: #f4f1e9; }
.about-questions-hero { padding-block: clamp(5rem, 10vw, 10rem); }
.about-questions-hero h1 { max-width: 12ch; margin: 0; font-size: clamp(4.2rem, 9.5vw, 9.5rem); line-height: .88; letter-spacing: -.065em; }
.about-questions-hero h1 em { color: var(--accent-ink); font-family: var(--font-serif); font-weight: 400; }
.about-questions-profile { display: grid; grid-template-columns: minmax(9rem, .3fr) minmax(0, 1fr); gap: clamp(2rem, 7vw, 7rem); padding-block: clamp(5rem, 9vw, 9rem); border-top: 1px solid #ccc6b9; }
.about-questions-profile h2 { max-width: 15ch; margin-top: 0; font-size: clamp(3rem, 6vw, 6rem); line-height: .95; }
.about-questions-profile > div > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5rem); }
.about-questions-profile > div > div p { max-width: 34ch; color: var(--muted); }
.about-question-sequence { border-top: 1px solid #ccc6b9; }
.about-question-sequence article { border-bottom: 1px solid #ccc6b9; }
.about-question-sequence article:nth-child(2) { background: #0f1215; color: #fff; }
.about-question-sequence article > div { display: grid; grid-template-columns: 5rem minmax(0, 1fr); gap: var(--s-4); align-items: start; padding-block: clamp(3rem, 6vw, 6rem); }
.about-question-sequence span { padding-top: .8rem; font: 500 .7rem/1 var(--font-mono); color: var(--accent-ink); }
.about-question-sequence article:nth-child(2) span { color: var(--accent); }
.about-question-sequence h2 { max-width: 15ch; margin: 0; font-size: clamp(3.5rem, 8vw, 8rem); line-height: .9; letter-spacing: -.055em; }
.about-question-sequence h2 em { color: var(--accent-ink); font-family: var(--font-serif); font-weight: 400; }
.about-question-sequence article:nth-child(2) h2 em { color: var(--accent); }
.about-questions-answer { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, .75fr); gap: clamp(3rem, 9vw, 10rem); padding-block: clamp(5rem, 10vw, 10rem); }
.about-questions-answer h2 { max-width: 10ch; font-size: clamp(3rem, 6vw, 6rem); line-height: .95; }
.about-questions-answer > div:last-child { padding-top: 2rem; }
.about-questions-answer > div:last-child p { max-width: 35ch; color: var(--muted); }
.about-questions-outcomes { padding-bottom: clamp(5rem, 10vw, 10rem); }
.about-questions-outcomes > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: var(--s-4); border-top: 1px solid #ccc6b9; }
.about-questions-outcomes article { padding: var(--s-4) var(--s-4) var(--s-4) 0; border-bottom: 1px solid #ccc6b9; }
.about-questions-outcomes article:nth-child(even) { padding-left: var(--s-4); border-left: 1px solid #ccc6b9; }
.about-questions-outcomes span { color: var(--accent-ink); font: 500 .68rem/1 var(--font-mono); }
.about-questions-outcomes h3 { margin: 2rem 0 .7rem; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.about-questions-outcomes p { max-width: 32ch; color: var(--muted); }


.about-concept-eight { background: #ece8de; }
.about-warm-hero { padding-block: clamp(5rem, 10vw, 10rem); }
.about-warm-hero h1 { margin: 0; font-size: clamp(4.5rem, 11vw, 11rem); line-height: .83; letter-spacing: -.07em; }
.about-warm-hero h1 span, .about-warm-hero h1 em { display: block; }
.about-warm-hero h1 em { margin-left: .7em; color: var(--accent-ink); font-family: var(--font-serif); font-weight: 400; }
.about-warm-hero > p:last-child { max-width: 34ch; margin: clamp(3rem, 6vw, 6rem) 0 0 auto; font-size: clamp(1.35rem, 2.4vw, 2.15rem); line-height: 1.25; }
.about-warm-story { display: grid; grid-template-columns: minmax(9rem, .3fr) minmax(0, 1fr); gap: clamp(2rem, 7vw, 7rem); padding-block: clamp(5rem, 9vw, 9rem); border-top: 1px solid #c8c2b7; }
.about-warm-story h2 { max-width: 16ch; margin-top: 0; font-size: clamp(3rem, 6vw, 6rem); line-height: .95; }
.about-warm-story > div > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5rem); }
.about-warm-story > div > div p { max-width: 34ch; color: #65625b; }
.about-warm-relationship { padding-block: clamp(5rem, 10vw, 10rem); background: #0f1215; color: #fff; }
.about-warm-relationship .eyebrow { color: rgba(255, 255, 255, .55); }
.about-warm-relationship h2 { margin: clamp(2rem, 4vw, 4rem) 0 0; font-size: clamp(4rem, 9vw, 9rem); line-height: .87; letter-spacing: -.06em; }
.about-warm-relationship h2 em { color: var(--accent); font-family: var(--font-serif); font-weight: 400; }
.about-warm-principles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding-block: clamp(5rem, 9vw, 9rem); }
.about-warm-principles article { padding: var(--s-4) var(--s-4) var(--s-4) 0; border-bottom: 1px solid #c8c2b7; }
.about-warm-principles article:nth-child(-n+2) { border-top: 1px solid #c8c2b7; }
.about-warm-principles article:nth-child(even) { padding-left: var(--s-4); border-left: 1px solid #c8c2b7; }
.about-warm-principles span { color: var(--accent-ink); font: 500 .68rem/1 var(--font-mono); }
.about-warm-principles h3 { margin: 2rem 0 .7rem; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.about-warm-principles p { max-width: 30ch; color: #65625b; }
.about-warm-closing { padding-block: clamp(5rem, 10vw, 10rem); border-top: 1px solid #c8c2b7; text-align: center; }
.about-warm-closing .eyebrow { justify-content: center; }
.about-warm-closing h2 { margin: 0 auto var(--s-4); font-size: clamp(4rem, 9vw, 9rem); line-height: .86; letter-spacing: -.06em; }
.about-warm-closing h2 em { color: var(--accent-ink); font-family: var(--font-serif); font-weight: 400; }
.about-warm-closing > p:not(.eyebrow) { max-width: 38ch; margin: 0 auto var(--s-4); color: #65625b; }


.about-trust-statement { padding-block: clamp(5rem, 9vw, 9rem); background: #ece8de; color: var(--fg); }
.about-trust-statement > .container-wide { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(20rem, .65fr); gap: clamp(3rem, 9vw, 10rem); align-items: end; }
.about-trust-statement h2 { max-width: 12ch; margin: clamp(2rem, 4vw, 4rem) 0 0; font-size: clamp(4rem, 8vw, 8rem); line-height: .88; letter-spacing: -.06em; }
.about-trust-copy { max-width: 39ch; }
.about-trust-copy p { margin: 0 0 var(--s-4); color: #65625b; font-size: 1.08rem; }
.about-trust-link { display: inline-flex; gap: .75rem; align-items: center; padding-bottom: .4rem; border-bottom: 1px solid currentColor; color: inherit; font-weight: 650; text-decoration: none; }
.about-trust-link span { transition: transform .2s ease; }
.about-trust-link:hover span { transform: translateX(.25rem); }
.about-trust-statement--dark { background: #0f1215; color: #fff; }
.about-trust-statement--dark .eyebrow { color: rgba(255, 255, 255, .55); }
.about-trust-statement--dark .about-trust-copy p { color: rgba(255, 255, 255, .62); }


.about-services-study main { overflow: visible; }
.about-services-study .services-menu-section { padding-bottom: var(--section); }
.about-services-study .services-menu-content a { color: var(--fg); text-decoration: underline; text-underline-offset: .2em; }


.about-ideas-page main { overflow: visible; }
.about-ideas-intro {
  padding-bottom: clamp(5rem, 9vw, 8rem);
  border-bottom: 1px solid var(--border);
}
.about-ideas-heading h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.7rem, 4.3vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.about-ideas-prose {
  max-width: 70ch;
  margin-left: 0;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}
.about-ideas-prose p { margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
.about-ideas-prose p + p { margin-top: 1.25rem; }
.about-ideas-principles { padding-block: clamp(5rem, 9vw, 8rem); background: #f2efe7; }
.about-ideas-principles-head {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.about-ideas-principles-head h2 { max-width: none; margin: 0; font-size: clamp(2.6rem, 3.4vw, 3.5rem); line-height: 1.04; letter-spacing: -.035em; }
.about-ideas-principles-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid #d5d0c5; border-bottom: 1px solid #d5d0c5; }
.about-ideas-principles-grid article { padding: 2rem clamp(1.5rem, 2.6vw, 2.5rem) 2.25rem 0; }
.about-ideas-principles-grid article + article { padding-left: clamp(1.5rem, 2.6vw, 2.5rem); border-left: 1px solid #d5d0c5; }
.about-ideas-principles-grid span { display: block; margin-bottom: 1.5rem; color: var(--accent-ink); font: 500 .65rem/1 var(--font-mono); }
.about-ideas-principles-grid h3 { max-width: none; margin: 0 0 .8rem; font-size: clamp(1.35rem, 1.75vw, 1.75rem); line-height: 1.15; letter-spacing: -.025em; }
.about-ideas-principles-grid p { max-width: 40ch; margin: 0; color: #66635d; line-height: 1.6; }
.about-ideas-process { padding-bottom: clamp(5rem, 9vw, 8rem); }
.about-ideas-trust { padding-block: 0 clamp(5rem, 9vw, 8rem); }
.about-ideas-trust-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(20rem, .65fr); gap: clamp(3rem, 9vw, 9rem); align-items: end; padding-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--border); }
.about-ideas-trust h2 { max-width: 15ch; margin: 0; font-size: clamp(2.8rem, 4.8vw, 4.8rem); line-height: 1.02; letter-spacing: -.04em; }
.about-ideas-trust-grid > div { max-width: 39ch; }
.about-ideas-trust-grid p { margin: 0 0 var(--s-4); color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.about-ideas-trust .link-more { color: var(--fg); }

@media (max-width: 800px) {
  .about-concept-nav { align-items: flex-start; }
  .about-concept-nav > span { max-width: 10ch; }
  .about-concept-nav > div { flex-wrap: wrap; justify-content: flex-end; }
  .about-concept-nav a { min-width: 2.1rem; min-height: 2.1rem; padding: .4rem .55rem; }
  .about-concept-nav a:first-child { display: none; }
  .about-concept-bleed img { height: clamp(28rem, 115vw, 40rem); }
  .about-editorial-hero h1, .about-proof-hero h1 { font-size: clamp(4rem, 20vw, 6.7rem); }
  .about-editorial-intro, .about-editorial-story, .about-story-led, .about-proof-story, .about-cinematic-story > div > div { grid-template-columns: 1fr; }
  .about-editorial-columns, .about-story-led-copy { grid-template-columns: 1fr; gap: .8rem; }
  .about-principle-row, .about-cinematic-process > div { grid-template-columns: 1fr; }
  .about-principle-row article, .about-cinematic-process article { padding: var(--s-4) 0; border-bottom: 1px solid rgba(255, 255, 255, .2); }
  .about-principle-row article + article, .about-cinematic-process article + article { padding-left: 0; border-left: 0; }
  .about-principle-row h3, .about-cinematic-process h3 { margin-top: 1.25rem; }
  .about-image-hero, .about-cinematic-hero { min-height: 78svh; }
  .about-image-hero-copy h1, .about-cinematic-copy h1 { font-size: clamp(4rem, 19vw, 6.5rem); }
  .about-image-hero-copy > p:last-child, .about-cinematic-copy > p:last-child { margin-left: 0; }
  .about-human-grid { grid-template-columns: 1fr; }
  .about-human-grid article, .about-human-grid article:nth-child(odd), .about-human-grid article:nth-child(even) { grid-template-columns: 1fr; gap: .6rem; padding-inline: 0; border-left: 0; }
  .about-proof-strip > div { grid-template-columns: 1fr; }
  .about-proof-strip p, .about-proof-strip p:first-child { padding: var(--s-3) 0; }
  .about-proof-strip p + p { border-left: 0; border-top: 1px solid #cfc9bc; }
  .about-deliverables li { grid-template-columns: 2.5rem minmax(0, 1fr); gap: 1rem; }
  .about-deliverables li p { grid-column: 2; }
  .about-cinematic-statement p, .about-cinematic-statement p:nth-child(2), .about-cinematic-statement p:nth-child(3) { text-align: left; font-size: clamp(3.5rem, 17vw, 5.5rem); }
  .about-index-hero, .about-index-belief, .about-journal-story, .about-questions-profile, .about-questions-answer, .about-warm-story { grid-template-columns: 1fr; min-height: 0; }
  .about-index-hero h1, .about-journal-hero h1, .about-questions-hero h1, .about-warm-hero h1 { font-size: clamp(3.8rem, 19vw, 6.4rem); }
  .about-index-manifesto li { grid-template-columns: 2.5rem minmax(0, 1fr); gap: 1rem; }
  .about-index-manifesto li strong, .about-index-manifesto li em { font-size: clamp(2.7rem, 14vw, 4.7rem); }
  .about-index-manifesto li em { grid-column: 2; }
  .about-index-belief > div > div, .about-journal-hero > div, .about-questions-profile > div > div, .about-warm-story > div > div { grid-template-columns: 1fr; }
  .about-index-values { grid-template-columns: 1fr; }
  .about-index-values article { padding: var(--s-4) 0; }
  .about-index-values article + article { padding-left: 0; border-left: 0; border-top: 1px solid var(--border); }
  .about-journal-image img { aspect-ratio: 4 / 3; }
  .about-journal-details, .about-questions-outcomes > div, .about-warm-principles { grid-template-columns: 1fr; }
  .about-journal-details article, .about-journal-details article:nth-child(odd), .about-journal-details article:nth-child(even) { grid-template-columns: 1fr; gap: .6rem; padding-inline: 0; border-left: 0; }
  .about-journal-details article:nth-child(2) { border-top: 0; }
  .about-question-sequence article > div { grid-template-columns: 2.5rem minmax(0, 1fr); gap: 1rem; }
  .about-question-sequence h2 { font-size: clamp(3rem, 15vw, 5.2rem); }
  .about-questions-outcomes article, .about-questions-outcomes article:nth-child(even), .about-warm-principles article, .about-warm-principles article:nth-child(even) { padding-inline: 0; border-left: 0; }
  .about-questions-outcomes article:nth-child(even), .about-warm-principles article:nth-child(even) { border-top: 0; }
  .about-warm-hero h1 em { margin-left: 0; }
  .about-trust-statement > .container-wide { grid-template-columns: 1fr; }
  .about-trust-statement h2 { font-size: clamp(3.6rem, 16vw, 5.5rem); }
  .about-ideas-trust-grid { grid-template-columns: 1fr; }
  .about-ideas-prose { max-width: none; margin-left: 0; padding-top: 0; }
  .about-ideas-heading { margin-bottom: 2.5rem; }
  .about-ideas-principles-grid { grid-template-columns: 1fr; }
  .about-ideas-principles-grid article, .about-ideas-principles-grid article + article { padding: 1.75rem 0 2rem; border-left: 0; }
  .about-ideas-principles-grid article + article { border-top: 1px solid #d5d0c5; }
}

@media (min-width: 801px) and (max-width: 1100px) {
  .about-ideas-principles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-ideas-principles-grid article:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid #d5d0c5; }
  .about-ideas-principles-grid article:nth-child(4) { border-top: 1px solid #d5d0c5; }
}
.process-timeline, .contact-timeline { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.process-timeline::before, .contact-timeline::before { content: ''; position: absolute; left: 0; right: 0; top: 26px; height: 1px; background: var(--border); }
.process-timeline .svc-card, .contact-timeline .svc-card { position: relative; z-index: 1; border: 0; border-radius: 0; background: transparent; box-shadow: none; padding: var(--s-6) var(--s-4) var(--s-4) 0; }
.process-timeline .svc-card::before, .contact-timeline .svc-card::before { content: ''; position: absolute; top: 20px; left: 0; width: 13px; height: 13px; border-radius: 50%; background: var(--bg); border: 3px solid var(--accent); }
.process-timeline .svc-card:hover, .contact-timeline .svc-card:hover { transform: none; }

.project-planner {
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: var(--s-6);
  border-radius: var(--r-lg); background: var(--bg-raised); border: 1px solid var(--border);
  padding: clamp(1.75rem, 5vw, 5rem);
}
.project-planner-intro h2 { font-size: var(--step-4); max-width: 11ch; }
.project-planner-intro > p:last-child { color: var(--muted); max-width: 34ch; }
.brief-form { display: grid; gap: var(--s-3); }
.brief-form label { display: grid; gap: 8px; }
.brief-form label > span { font: 500 .7rem/1.3 var(--font-mono); letter-spacing: .11em; text-transform: uppercase; color: var(--muted); }
.brief-form input, .brief-form select, .brief-form textarea {
  width: 100%; border: 0; border-bottom: 1px solid #cbc7bd; border-radius: 0;
  background: transparent; color: var(--fg); padding: 12px 2px; font: 500 1rem/1.5 var(--font-sans);
}
.brief-form textarea { resize: vertical; min-height: 128px; }
.brief-form input:focus, .brief-form select:focus, .brief-form textarea:focus { outline: 0; border-color: var(--accent); }
.brief-form .btn { justify-self: start; border: 0; }
.brief-form-note { color: var(--muted); font-size: .8rem; margin: 0; }
.utility-page .gauge, .utility-page .surface-btn { display: none; }


.logo-concept-stage {
  padding-top: 0;
  padding-bottom: var(--section);
}
.logo-concept-stage > .eyebrow { margin-bottom: var(--s-3); }
.logo-concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1078px;
  margin-inline: auto;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--border);
}
.logo-concept-cell {
  position: relative;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1 / 1;
  background: var(--bg);
}
.logo-concept-mark {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: var(--s-3);
  border: 0;
  border-radius: 0;
  background: var(--bg);
  cursor: pointer;
  transition: background-color .2s ease;
}
.logo-concept-mark::after {
  content: '';
  position: absolute;
  inset: auto 18px 12px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  z-index: 3;
}
.logo-concept-mark:hover,
.logo-concept-mark:focus-visible,
.logo-concept-mark.is-active { background: var(--bg-raised); }
.logo-concept-mark:focus-visible {
  outline: 2px solid var(--accent-ink);
  outline-offset: -4px;
  box-shadow: inset 0 0 0 4px var(--fg);
}
.logo-concept-mark.is-active::after { transform: scaleX(1); }
.logo-concept-mono {
  width: min(var(--mark-width, 72%), 280px);
  height: var(--mark-height, 96px);
  max-height: calc(100% - 24px);
  object-fit: contain;
  filter: brightness(0);
  opacity: .76;
  transition: opacity .2s ease, transform .35s cubic-bezier(.22,1,.36,1);
}
.logo-concept-mono--native {
  filter: none;
  opacity: 1;
}
.logo-concept-mono--grayscale {
  filter: grayscale(1);
  opacity: 1;
}
.logo-concept-mark:hover .logo-concept-mono,
.logo-concept-mark:focus-visible .logo-concept-mono,
.logo-concept-mark.is-active .logo-concept-mono {
  opacity: 1;
  transform: translateY(-2px);
}
.logo-concept-tile-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #070b0f;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .3s ease, transform .55s cubic-bezier(.22,1,.36,1);
}
.logo-concept-enlarge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(6,11,16,.88);
  color: var(--abyss-fg);
  font: 500 .62rem/1 var(--font-mono);
  letter-spacing: .06em;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity .2s ease, transform .3s cubic-bezier(.22,1,.36,1);
}
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .logo-concept-cell:hover .logo-concept-mark.has-artwork .logo-concept-tile-art,
  .logo-concept-cell:focus-within .logo-concept-mark.has-artwork .logo-concept-tile-art {
    opacity: 1;
    transform: scale(1);
  }
  .logo-concept-cell:hover .logo-concept-mark.has-artwork .logo-concept-mono,
  .logo-concept-cell:focus-within .logo-concept-mark.has-artwork .logo-concept-mono { opacity: 0; }
  .logo-concept-cell:hover .logo-concept-mark.has-artwork .logo-concept-enlarge,
  .logo-concept-cell:focus-within .logo-concept-mark.has-artwork .logo-concept-enlarge {
    opacity: 1;
    transform: translateY(0);
  }
}
.logo-concept-reveal {
  grid-column: 1 / -1;
  display: grid;
  grid-template-rows: 0fr;
  min-width: 0;
  overflow: hidden;
  background: #0b1015;
  color: var(--abyss-fg);
  opacity: 0;
  transform: translateY(-12px);
  transition: grid-template-rows .58s cubic-bezier(.22,1,.36,1), opacity .32s ease, transform .58s cubic-bezier(.22,1,.36,1);
}
.logo-concept-reveal[hidden] { display: none; }
.logo-concept-reveal.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}
.logo-concept-reveal-inner {
  min-height: 0;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
.logo-concept-reveal-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}
.logo-concept-reveal-head .eyebrow { margin-bottom: 8px; color: var(--accent); }
.logo-concept-reveal-head h2 { margin: 0; color: var(--abyss-fg); font-size: var(--step-2); }
.logo-concept-reveal-actions > p {
  margin: 0;
  color: var(--abyss-muted);
  font: 500 .7rem/1.5 var(--font-mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.logo-concept-reveal-actions {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.logo-concept-enlarge-btn,
.logo-concept-project-btn {
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: transparent;
  color: var(--abyss-fg);
  padding: 9px 12px;
  font: 500 .65rem/1 var(--font-mono);
  cursor: pointer;
}
.logo-concept-enlarge-btn:hover,
.logo-concept-enlarge-btn:focus-visible,
.logo-concept-project-btn:hover,
.logo-concept-project-btn:focus-visible { border-color: var(--accent); color: var(--accent); }
.logo-concept-artwork {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: min(62vw, 680px);
  max-height: 72vh;
  border-radius: var(--r-sm);
  background: #05080c;
}
.logo-concept-artwork::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: inherit;
}
.logo-concept-artwork img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  max-height: inherit;
  object-fit: contain;
  opacity: 1;
  transition: opacity .24s ease, transform .55s cubic-bezier(.22,1,.36,1);
}
.logo-concept-reveal.is-loading .logo-concept-artwork img {
  opacity: .12;
  transform: scale(.992);
}
.logo-modal-open {
  position: fixed;
  top: calc(var(--logo-modal-page-y, 0px) * -1);
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}
.logo-concept-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 4rem);
  opacity: 0;
  transition: opacity .24s ease;
}
.logo-concept-modal[hidden] { display: none; }
.logo-concept-modal.is-open { opacity: 1; }
.logo-concept-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2,6,10,.86);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}
.logo-concept-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 94vw);
  max-height: 90vh;
  padding: clamp(.75rem, 2vw, 1.25rem);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
  background: #0b1015;
  box-shadow: 0 30px 100px rgba(0,0,0,.48);
  transform: translateY(18px) scale(.985);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.logo-concept-modal.is-open .logo-concept-modal-panel { transform: translateY(0) scale(1); }
.logo-concept-modal figure { position: relative; margin: 0; }
.logo-concept-modal figure > img {
  width: 100%;
  height: min(72vh, 720px);
  object-fit: contain;
  border-radius: var(--r-sm);
  background: #05080c;
  cursor: zoom-out;
  transition: opacity .2s ease;
}
.logo-concept-modal.is-loading figure > img { opacity: .12; }
.logo-concept-modal-project {
  color: var(--abyss-fg);
  font: 700 clamp(.86rem, 1.5vw, 1.2rem)/1 var(--font-sans);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s ease;
}
.logo-concept-modal-project:hover,
.logo-concept-modal-project:focus-visible { color: var(--accent); }
.logo-concept-modal figcaption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: baseline;
  gap: var(--s-2);
  padding: 14px 4px 0;
  color: var(--abyss-fg);
}
.logo-concept-modal figcaption strong { font-size: var(--step-0); }
.logo-concept-modal figcaption span {
  justify-self: end;
  color: var(--abyss-muted);
  font: 500 .63rem/1.5 var(--font-mono);
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}
.logo-concept-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: #101820;
  color: white;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.logo-concept-modal-close:hover,
.logo-concept-modal-close:focus-visible { background: var(--accent-ink); }
.logo-concept-note {
  margin: var(--s-3) 0 0;
  color: var(--muted);
  font: 500 .67rem/1.6 var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.logo-concept-return { border-top: 1px solid var(--border); }

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

@media (max-width: 680px) {
  .logo-concept-grid { grid-template-columns: minmax(0, 1fr); }
  .logo-concept-cell { min-height: 0; aspect-ratio: 16 / 10; }
  .logo-concept-mark { min-height: inherit; padding: var(--s-2); touch-action: manipulation; }
  .logo-concept-mono { height: 96px; }
  .logo-concept-mono--tall { height: 124px; }
  .logo-concept-reveal { transform: translateY(-6px); }
  .logo-concept-reveal-inner {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .logo-concept-reveal-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 18px 18px 20px;
  }
  .logo-concept-reveal-head .eyebrow { display: none; }
  .logo-concept-reveal-head h2 { font-size: clamp(1.35rem, 6vw, 1.8rem); }
  .logo-concept-reveal-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .logo-concept-reveal-actions > p { width: 100%; }
  .logo-concept-enlarge-btn { display: none; }
  .logo-concept-project-btn { padding: 10px 14px; }
  .logo-concept-artwork {
    order: -1;
    min-height: min(92vw, 460px);
    max-height: 62vh;
    border-radius: 0;
  }
  .logo-concept-artwork::before {
    content: 'Tap image to close';
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(4,8,12,.74);
    color: var(--abyss-fg);
    font: 500 .58rem/1 var(--font-mono);
    letter-spacing: .05em;
    pointer-events: none;
  }
  .logo-concept-artwork img {
    transform-origin: center;
    cursor: pointer;
    touch-action: manipulation;
  }
  .logo-concept-artwork img:focus-visible { outline: 2px solid var(--accent); outline-offset: -4px; }
  .logo-concept-modal {
    align-items: stretch;
    padding: max(10px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom));
  }
  .logo-concept-modal-panel {
    width: 100%;
    max-height: calc(100dvh - max(20px, env(safe-area-inset-top) + env(safe-area-inset-bottom)));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .logo-concept-modal figure > img {
    height: auto;
    min-height: min(62dvh, 520px);
    max-height: calc(100dvh - 11rem);
  }
  .logo-concept-modal-close { top: 8px; right: 8px; }
  .logo-concept-modal figcaption { grid-template-columns: 1fr; align-items: start; }
  .logo-concept-modal figcaption span { justify-self: start; text-align: left; }
}

@media (max-width: 900px) {
  .page-hero-lockup, .about-opening { grid-template-columns: 1fr; }
  .about-opening { gap: var(--s-3); }
  .about-opening-media { min-height: 0; aspect-ratio: 16 / 10; }
  .about-opening-copy { padding: var(--s-3) 0 0; }
  .section-heading-row, .portfolio-intro-row, .project-planner { grid-template-columns: 1fr; }
  .service-pillar-grid { grid-template-columns: 1fr; }
  .service-pillar { min-height: 0; }
  .services-index .section-heading-row > p { padding-top: 0; }
  .services-menu summary {
    grid-template-columns: 2rem minmax(180px, .8fr) minmax(240px, 1fr) auto;
    gap: 1rem;
  }
  .services-menu-content { margin-left: 3rem; }
}
@media (max-width: 680px) {
  .page-hero h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
  .page-hero--compact { padding-top: calc(var(--header-h) + var(--s-4)); padding-bottom: var(--s-4); }
  .page-hero--compact .breadcrumb { margin-bottom: var(--s-3); }
  .page-hero--compact h1 { font-size: clamp(2.65rem, 11vw, 4.25rem); }
  .page-hero-lockup { gap: var(--s-3); }
  .service-pillar { gap: var(--s-3); padding: 1.35rem; }
  .service-pillar h3 { font-size: 1.65rem; }
  .services-menu summary {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    padding-block: 1.35rem;
  }
  .services-menu-summary { display: none; }
  .services-menu-title { font-size: clamp(1.4rem, 7vw, 1.9rem); }
  .services-menu-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-left: 3rem;
    padding-bottom: 1.75rem;
  }
  .services-menu-content ul { grid-template-columns: 1fr; }
  .process-timeline, .contact-timeline { grid-template-columns: 1fr; }
  .process-timeline::before, .contact-timeline::before { top: 0; bottom: 0; left: 6px; right: auto; width: 1px; height: auto; }
  .process-timeline .svc-card, .contact-timeline .svc-card { padding: 0 0 var(--s-5) var(--s-4); }
  .process-timeline .svc-card::before, .contact-timeline .svc-card::before { top: 4px; left: 0; transform: translateX(-1px); }
  .portfolio-archive summary, .logo-archive summary { align-items: flex-start; flex-wrap: wrap; }
  .portfolio-archive summary small, .logo-archive summary small { width: 100%; margin-left: 0; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .quote-item { position: relative; opacity: 1; visibility: visible; }
  .cs-hero-media img, .cs-banner img { transform: none !important; }
}


body[data-parallax-disabled] [data-parallax] :is(img, video),
body[data-parallax-disabled] [data-cs-hero] :is(img, video),
body[data-parallax-disabled] [data-speed],
body[data-parallax-disabled] .current-media img,
[data-parallax][data-parallax-disabled] :is(img, video),
[data-cs-hero][data-parallax-disabled] :is(img, video),
[data-parallax-disabled].current-media img,
[data-speed][data-parallax-disabled] {
  transform: none !important;
  scale: 1 !important;
  will-change: auto !important;
}


.editor-layout-block { position: relative; }
.editor-block-managed:not(.container):not(.container-wide) { width: 100%; padding-inline: var(--gutter); }
.editor-block--narrow { max-width: 880px; }
.editor-block--tight { padding-block: var(--s-3); }
.editor-block--soft,
.editor-block--dark {
  margin-block: var(--s-3);
  padding: clamp(1.5rem, 4vw, 4rem);
  border-radius: var(--r-lg);
}
.editor-block--soft { background: var(--bg-raised); }
.editor-block--dark { background: var(--abyss); color: var(--abyss-fg); }
.editor-block--dark .eyebrow,
.editor-block--dark .editor-block-copy { color: var(--abyss-muted); }
.editor-block--dark .eyebrow::before { background: var(--biolume); }
.editor-block-copy { max-width: 72ch; margin-top: var(--s-3); color: var(--muted); font-size: var(--step-0); line-height: 1.6; }
.editor-block-copy p { margin: 0; }
.editor-block-copy p + p { margin-top: 1em; }
.editor-single-media,
.editor-masonry-gallery { margin-top: var(--s-4); }
.editor-single-media img,
.editor-single-media video,
.editor-masonry-gallery img,
.editor-masonry-gallery video { display: block; width: 100%; height: auto; }
.editor-columns {
  display: grid;
  grid-template-columns: repeat(var(--editor-column-count, 2), minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  margin-top: var(--s-4);
  align-items: var(--editor-column-align, start);
}
.editor-columns[data-columns="2"] { --editor-column-count: 2; }
.editor-columns[data-columns="3"] { --editor-column-count: 3; }
.editor-columns[data-columns="4"] { --editor-column-count: 4; }
.editor-columns[data-align="center"] { --editor-column-align: center; }
.editor-columns[data-align="end"] { --editor-column-align: end; }
.editor-column { min-width: 0; }
.editor-column h3 { margin-bottom: var(--s-2); font-size: var(--step-2); }
.editor-column p { margin: 0; color: var(--muted); }
.editor-quote { max-width: 32ch; margin: 0; font-size: clamp(1.75rem, 1.3rem + 1.8vw, 3.1rem); line-height: 1.18; letter-spacing: -.025em; }
.editor-quote p { margin: 0; }
.editor-quote cite { display: block; margin-top: var(--s-3); color: var(--muted); font: 500 .72rem/1.4 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; }
.editor-button-block { display: flex; }
.editor-button-block--center { justify-content: center; }
.editor-button-block--right { justify-content: flex-end; }
.editor-divider { width: 100%; height: 1px; margin: 0; border: 0; background: var(--border); }
.editor-divider--accent { height: 3px; background: var(--accent); }
.editor-divider--short { width: min(180px, 35%); margin-inline: auto; background: var(--accent); }
.editor-spacer--small { min-height: var(--s-4); padding: 0 !important; }
.editor-spacer--medium { min-height: var(--s-6); padding: 0 !important; }
.editor-spacer--large { min-height: var(--s-8); padding: 0 !important; }
.editor-spacer--xlarge { min-height: clamp(8rem, 14vw, 15rem); padding: 0 !important; }
@media (max-width: 900px) {
  .editor-block-managed[data-editor-tablet-hidden] { display: none !important; }
  .editor-block-managed[data-editor-tablet-width="full"] { width: 100%; max-width: none; padding-inline: var(--gutter); }
  .editor-block-managed[data-editor-tablet-width="wide"] { width: min(1520px, calc(100% - 2 * var(--gutter))); max-width: none; margin-inline: auto; }
  .editor-block-managed[data-editor-tablet-width="standard"] { width: min(1280px, calc(100% - 2 * var(--gutter))); max-width: none; margin-inline: auto; }
  .editor-block-managed[data-editor-tablet-width="narrow"] { width: min(720px, calc(100% - 2 * var(--gutter))); max-width: none; margin-inline: auto; }
  .editor-columns[data-columns="4"] { --editor-column-count: 2; }
}
@media (max-width: 680px) {
  .editor-block-managed[data-editor-mobile-hidden] { display: none !important; }
  .editor-block-managed[data-editor-mobile-width="full"] { width: 100%; max-width: none; padding-inline: var(--gutter); }
  .editor-block-managed[data-editor-mobile-width="wide"],
  .editor-block-managed[data-editor-mobile-width="standard"] { width: calc(100% - 2 * var(--gutter)); max-width: none; margin-inline: auto; }
  .editor-block-managed[data-editor-mobile-width="narrow"] { width: min(520px, calc(100% - 2 * var(--gutter))); max-width: none; margin-inline: auto; }
  .editor-columns { --editor-column-count: 1 !important; }
  .editor-block--soft,
  .editor-block--dark { margin-inline: var(--gutter); border-radius: var(--r-md); }
}


.pillar-route { margin: 1.5rem 0 0; }
.pillar-route .link-more { white-space: normal; }
.services-menu-content .services-menu-route { grid-column: 1 / -1; margin-top: .25rem; }
.services-menu-route .link-more { color: var(--fg); }
.rs-live-link { display: flex; flex-wrap: wrap; gap: 1rem 2rem; }
.web-service-page main { overflow: visible; }
.web-service-intro {
  padding-bottom: clamp(5rem, 9vw, 8rem);
  border-bottom: 1px solid var(--border);
}
.web-service-intro h2,
.web-service-section-head h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.6rem, 3.8vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.web-service-intro-copy {
  max-width: 72ch;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}
.web-service-intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}
.web-service-intro-copy p + p { margin-top: 1.25rem; }
.web-service-capabilities {
  padding-block: clamp(5rem, 9vw, 8rem);
  background: #f2efe7;
}
.web-service-section-head { margin-bottom: clamp(3rem, 6vw, 5rem); }
.web-service-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #d5d0c5;
  border-bottom: 1px solid #d5d0c5;
}
.web-service-capability-grid article { padding: 2rem clamp(1.5rem, 2.6vw, 2.5rem) 2.25rem 0; }
.web-service-capability-grid article + article {
  padding-left: clamp(1.5rem, 2.6vw, 2.5rem);
  border-left: 1px solid #d5d0c5;
}
.web-service-capability-grid span {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--accent-ink);
  font: 500 .65rem/1 var(--font-mono);
}
.web-service-capability-grid h3 {
  margin: 0 0 .8rem;
  font-size: clamp(1.3rem, 1.65vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -.025em;
}
.web-service-capability-grid p { margin: 0; color: #66635d; line-height: 1.6; }
.web-service-work { padding-block: clamp(5rem, 9vw, 8rem); }
.web-service-work .web-service-section-head { width: min(1280px, 100%); }
.web-service-projects { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 2.5vw, 2.5rem); }
.web-service-projects article { min-width: 0; }
.web-service-projects figure { position: relative; margin: 0; overflow: clip; border-radius: var(--r-sm); background: var(--image-surface); }
.web-service-projects img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.web-service-projects a:hover img { transform: scale(1.025); }
.web-service-projects figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.25rem 0 0;
  background: var(--bg);
}
.web-service-projects figcaption strong { font-size: var(--step-1); }
.web-service-projects figcaption span {
  color: var(--muted);
  font: 500 .65rem/1.45 var(--font-mono);
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}
.web-service-ai { padding-block: clamp(5rem, 9vw, 8rem); background: #fff; }
.web-service-ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, .8fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}
.web-service-ai h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.web-service-ai-copy { max-width: 46rem; border-top: 1px solid rgba(14, 17, 20, .18); }
.web-service-ai-copy article { padding-block: 1.75rem 2rem; border-bottom: 1px solid rgba(14, 17, 20, .18); }
.web-service-ai-copy h3 { margin: 0 0 .8rem; font-size: clamp(1.3rem, 1.8vw, 1.75rem); line-height: 1.2; }
.web-service-ai-copy p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.web-service-hosting { padding-block: clamp(5rem, 9vw, 8rem); background: var(--abyss); color: var(--abyss-fg); }
.web-service-hosting-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, .7fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}
.web-service-hosting .eyebrow { color: var(--abyss-muted); }
.web-service-hosting h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.web-service-hosting-copy { max-width: 46rem; }
.web-service-hosting-copy p { margin: 0; color: var(--abyss-muted); font-size: 1.08rem; line-height: 1.65; }
.web-service-hosting-copy p + p { margin-top: 1.25rem; }
.web-service-hosting-copy ul { display: grid; gap: .9rem; margin: 2.25rem 0 0; padding: 1.75rem 0 0; border-top: 1px solid rgba(255,255,255,.18); list-style: none; }
.web-service-hosting-copy li { position: relative; padding-left: 1.35rem; }
.web-service-hosting-copy li::before { content: ''; position: absolute; top: .62em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.web-service-questions { padding-block: clamp(5rem, 9vw, 8rem); }
.web-service-question-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--border); }
.web-service-question-grid article { padding: 2rem clamp(2rem, 4vw, 4rem) 2.5rem 0; border-bottom: 1px solid var(--border); }
.web-service-question-grid article:nth-child(even) { padding-left: clamp(2rem, 4vw, 4rem); border-left: 1px solid var(--border); }
.web-service-question-grid h3 { margin: 0 0 .8rem; font-size: clamp(1.3rem, 1.8vw, 1.75rem); line-height: 1.2; }
.web-service-question-grid p { max-width: 48ch; margin: 0; color: var(--muted); line-height: 1.65; }

@media (min-width: 801px) and (max-width: 1100px) {
  .web-service-capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .web-service-capability-grid article:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid #d5d0c5; }
  .web-service-capability-grid article:nth-child(4) { border-top: 1px solid #d5d0c5; }
}
@media (max-width: 800px) {
  .web-service-capability-grid,
  .web-service-projects,
  .web-service-ai-grid,
  .web-service-hosting-grid,
  .web-service-question-grid { grid-template-columns: 1fr; }
  .web-service-capability-grid article,
  .web-service-capability-grid article + article { padding: 1.75rem 0 2rem; border-left: 0; }
  .web-service-capability-grid article + article { border-top: 1px solid #d5d0c5; }
  .web-service-projects { gap: 3rem; }
  .web-service-projects figcaption { display: block; }
  .web-service-projects figcaption span { display: block; margin-top: .5rem; text-align: left; }
  .web-service-ai-grid { gap: 2.5rem; }
  .web-service-hosting-grid { gap: 2.5rem; }
  .web-service-question-grid article,
  .web-service-question-grid article:nth-child(even) { padding: 1.75rem 0 2rem; border-left: 0; }
}


.brand-wordmark { width: max-content; gap: 5px; }
:is(.brand-wordmark, .brand-wordmark--footer, .brand-wordmark--preloader) > .brand-wordmark__name { font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif; font-size: 28.5px; font-weight: 600; width: max-content; }
:is(.brand-wordmark, .brand-wordmark--footer, .brand-wordmark--preloader) > .brand-wordmark__coordinates { font-family: 'Space Mono', 'SF Mono', Menlo, monospace; font-size: 12px; font-weight: 400; width: 100%; min-width: 0; justify-self: center; }
.brand-wordmark__name { text-align: left; }
.brand-wordmark__coordinates > span:not(.brand-wordmark__crosshair) { flex: 1; min-width: 0; }
.brand-wordmark__coordinates > span:first-child { text-align: left; }
.brand-wordmark__coordinates > span:last-child { text-align: right; }
.brand-wordmark__crosshair { position: relative; display: inline-block; flex: none; border: 0; border-radius: 0; opacity: .72; }
.brand-wordmark__crosshair::before, .brand-wordmark__crosshair::after { content: none; position: static; width: auto; height: auto; background: none; transform: none; }
.brand-wordmark__crosshair { display: none; }
@media (max-width: 480px) {
  :is(.brand-wordmark, .brand-wordmark--footer, .brand-wordmark--preloader) > .brand-wordmark__name { font-size: 21.66px; }
  :is(.brand-wordmark, .brand-wordmark--footer, .brand-wordmark--preloader) > .brand-wordmark__coordinates { font-size: 10.2px; }
}
