:root {
  --ink: #3a3a3a;
  --ink-deep: #252525;
  --ink-soft: #5d5d5d;
  --paper: #ffffff;
  --fog: #f1f1ef;
  --fog-dark: #e5e5e1;
  --line: #d4d4d0;
  --line-dark: rgba(255, 255, 255, 0.2);
  --signal: #dfff3f;
  --header: 5rem;
  --frame: min(92rem, calc(100vw - 4rem));
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --display: "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --type-display: clamp(3.15rem, 5vw, 5.35rem);
  --type-page: clamp(2.8rem, 4.45vw, 4.75rem);
  --type-section: clamp(2.15rem, 3.35vw, 3.7rem);
  --type-card: clamp(1.45rem, 1.9vw, 2.1rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 9rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

main {
  padding-top: var(--header);
  overflow: clip;
}

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

img {
  height: auto;
}

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

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

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

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

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

.page-frame {
  width: var(--frame);
  margin-inline: auto;
}

.section-space {
  padding-block: clamp(5rem, 8vw, 8.5rem);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-bar {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
}

.brand {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  width: max-content;
}

.header-field {
  justify-self: center;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-phone {
  font-size: 0.86rem;
  font-weight: 700;
}

.menu-toggle {
  min-width: 6.4rem;
  height: 2.9rem;
  display: inline-flex;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  color: var(--ink-deep);
  background: var(--signal);
  border: 1px solid var(--signal);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.menu-toggle:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.menu-label {
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-glyph {
  width: 1.25rem;
  display: grid;
  gap: 0.35rem;
}

.menu-glyph i {
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-open .menu-glyph i:first-child {
  transform: translateY(0.18rem) rotate(45deg);
}

.menu-open .menu-glyph i:last-child {
  transform: translateY(-0.18rem) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  z-index: -1;
  top: var(--header);
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  color: var(--paper);
  background: var(--ink-deep);
}

.js .menu-panel {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1.5rem);
  transition: visibility 0s linear 320ms, opacity 220ms ease, transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .menu-open .menu-panel {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.menu-panel-inner {
  min-height: calc(100svh - var(--header));
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.65fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding-block: clamp(3rem, 7vw, 7rem);
}

.menu-primary {
  border-top: 1px solid var(--line-dark);
}

.menu-primary > a {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: padding 180ms ease, color 180ms ease;
}

.menu-primary > a:hover,
.menu-primary > a:focus-visible {
  padding-left: 1rem;
  color: var(--signal);
}

.menu-primary span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.menu-primary strong {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.2vw, 5.9rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.icon-corner {
  width: 1.45rem;
  height: 1.45rem;
}

.menu-secondary {
  display: flex;
  flex-direction: column;
}

.menu-service-links {
  display: grid;
  margin-top: 1.2rem;
  border-top: 1px solid var(--line-dark);
}

.menu-service-links a {
  min-height: 3.1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.menu-service-links a:hover {
  color: var(--paper);
}

.menu-contact {
  display: grid;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 3rem;
  font-size: 0.9rem;
}

.menu-contact span {
  color: rgba(255, 255, 255, 0.52);
}

.micro-label,
.section-index {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.micro-label-light,
.section-heading-light .section-index {
  color: rgba(255, 255, 255, 0.54);
}

.section-index {
  white-space: nowrap;
}

.icon-arrow {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.solid-link,
.text-link,
.line-link {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solid-link {
  padding: 0.8rem 1.15rem;
  color: var(--ink-deep);
  background: var(--signal);
  border: 1px solid var(--signal);
  transition: color 180ms ease, background 180ms ease;
}

.solid-link:hover {
  color: var(--signal);
  background: transparent;
}

.solid-link-dark {
  color: var(--ink-deep);
  background: var(--signal);
  border-color: var(--signal);
}

.solid-link-dark:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--ink);
}

button.solid-link {
  cursor: pointer;
}

.text-link {
  min-height: 2.4rem;
  justify-content: flex-start;
  border-bottom: 1px solid currentColor;
}

.text-link-light,
.line-link-light {
  color: var(--paper);
}

.line-link {
  min-height: 3rem;
  border-bottom: 1px solid currentColor;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin: 0 0 clamp(3rem, 7vw, 6rem);
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.65rem;
  opacity: 0.45;
}

.breadcrumbs-light {
  color: rgba(255, 255, 255, 0.62);
}

.home-hero {
  position: relative;
  min-height: clamp(42rem, 84svh, 52rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.home-hero-image,
.home-hero-shade {
  position: absolute;
  inset: 0;
  margin: 0;
}

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

.home-hero-shade {
  background: linear-gradient(90deg, rgba(20, 20, 20, 0.9) 0%, rgba(20, 20, 20, 0.64) 46%, rgba(20, 20, 20, 0.14) 82%), linear-gradient(0deg, rgba(20, 20, 20, 0.78) 0%, transparent 50%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 5vh, 4.5rem) 0 clamp(7.5rem, 12vh, 9rem);
}

.hero-kicker {
  margin-bottom: clamp(1.75rem, 4vh, 3rem);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: var(--type-display);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-transform: uppercase;
}

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

.home-hero h1 span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--paper);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) auto;
  gap: 3rem;
  align-items: end;
  max-width: 60rem;
  margin-top: clamp(2rem, 3.5vw, 3.2rem);
}

.hero-bottom > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-index span {
  min-height: 5.5rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-index span:last-child {
  border-right: 0;
}

.hero-index b {
  color: var(--paper);
  font-size: 1.5rem;
  font-weight: 500;
}

.manifesto {
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(8rem, 0.22fr) minmax(0, 1.28fr) minmax(17rem, 0.5fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.mega-title,
.section-heading h2,
.process-copy > h2,
.compact-heading h2,
.faq-heading h2,
.scope-panel h2,
.contact-prompt h2,
.footer-call h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.mega-title {
  font-size: clamp(3rem, 6.3vw, 7.2rem);
}

.mega-title em,
.studio-hero h1 em,
.catalog-hero h1 em,
.contact-hero h1 em,
.simple-hero h1 em {
  font-family: var(--serif);
  font-weight: 400;
}

.manifesto-copy {
  padding-top: clamp(2.5rem, 5vw, 6rem);
}

.manifesto-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.manifesto-copy .text-link {
  margin-top: 1.6rem;
}

.services-atlas {
  background: var(--fog);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(8rem, 0.22fr) minmax(0, 1.28fr) minmax(17rem, 0.5fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section-heading h2 {
  font-size: clamp(2.8rem, 5.7vw, 6.4rem);
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.atlas-grid {
  display: grid;
  gap: clamp(2.5rem, 4vw, 5rem) clamp(1rem, 2vw, 2rem);
}

.atlas-grid-home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.atlas-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink);
}

.atlas-card[hidden] {
  display: none;
}

.atlas-media {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.atlas-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0 solid var(--paper);
  transition: border-width 240ms ease;
}

.atlas-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.atlas-card:hover .atlas-media img,
.atlas-card:focus-visible .atlas-media img {
  transform: scale(1.025);
}

.atlas-card:hover .atlas-media::after {
  border-width: 0.5rem;
}

.atlas-body {
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 0 0;
}

.atlas-meta {
  display: flex;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.atlas-body h3 {
  margin: 1.8rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.atlas-body p {
  margin: 1.2rem 0 1.8rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.atlas-action {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  margin-top: auto;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-end-link {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(4rem, 8vw, 8rem);
}

.pathways,
.service-process {
  color: var(--paper);
  background: var(--ink-deep);
}

.section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.pathway-grid a {
  position: relative;
  min-height: 23rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.8vw, 2.8rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: color 220ms ease, background 220ms ease;
}

.pathway-grid a:hover,
.pathway-grid a:focus-visible {
  color: var(--ink);
  background: var(--paper);
}

.pathway-grid a > span,
.pathway-grid a > p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pathway-grid a:hover > span,
.pathway-grid a:hover > p,
.pathway-grid a:focus-visible > span,
.pathway-grid a:focus-visible > p {
  color: var(--ink-soft);
}

.pathway-grid a > p {
  margin-top: 3rem;
}

.pathway-grid h3 {
  max-width: 9ch;
  margin: auto 0 1.2rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.pathway-grid small {
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.87rem;
}

.pathway-grid a:hover small,
.pathway-grid a:focus-visible small {
  color: var(--ink-soft);
}

.pathway-grid .icon-corner {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.process-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.process-image {
  position: sticky;
  top: calc(var(--header) + 2rem);
  margin: 0;
}

.process-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.process-image figcaption {
  padding-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-copy > h2 {
  margin-bottom: clamp(3rem, 6vw, 6rem);
  font-size: clamp(3rem, 5.5vw, 6rem);
}

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

.process-lines li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.process-lines li > span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
}

.process-lines h3 {
  margin-bottom: 0.55rem;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.process-lines p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.partner-section {
  padding-block: clamp(4rem, 7vw, 7rem);
  background: var(--fog);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.partner-heading p {
  margin-bottom: 0;
}

.partner-heading > p:last-child {
  max-width: 32rem;
  justify-self: end;
  color: var(--ink-soft);
}

.partner-marquee {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.partner-marquee > div {
  width: max-content;
  display: flex;
  align-items: center;
}

.partner-marquee span {
  min-width: 15rem;
  padding: 1.6rem 2.5rem;
  border-right: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  text-align: center;
}

.contact-prompt {
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.contact-prompt-inner {
  min-height: 29rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.55fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
  padding-block: clamp(4.5rem, 7vw, 7rem);
}

.contact-prompt h2 {
  max-width: 15ch;
  color: var(--paper);
  font-size: clamp(3rem, 6.2vw, 7rem);
}

.contact-prompt-inner > div:last-child p {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-deep);
}

.footer-call {
  position: relative;
  padding-block: clamp(5rem, 9vw, 9rem);
  border-bottom: 1px solid var(--line-dark);
}

.footer-call h2 {
  max-width: 13ch;
  font-size: clamp(3rem, 6.8vw, 7.4rem);
}

.round-link {
  width: clamp(5rem, 9vw, 8.5rem);
  height: clamp(5rem, 9vw, 8.5rem);
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, transform 250ms ease;
}

.round-link:hover {
  color: var(--ink);
  background: var(--paper);
  transform: rotate(45deg);
}

.footer-call .round-link {
  position: absolute;
  right: 0;
  bottom: clamp(5rem, 9vw, 9rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.6fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: 4rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer-identity p {
  max-width: 25rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-block {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  font-size: 0.88rem;
}

.footer-block > span {
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-block a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 1.2rem;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-hero {
  min-height: 39rem;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-deep);
}

.catalog-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 3rem;
  align-items: end;
  padding-block: clamp(4rem, 8vw, 8rem);
}

.catalog-hero h1,
.statement-hero h1,
.contact-hero h1,
.simple-hero h1,
.legal-hero h1,
.not-found h1,
.studio-hero h1,
.service-cover h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8.5vw, 9.2rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.catalog-number {
  position: absolute;
  top: 0;
  right: -0.05em;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(18rem, 42vw, 43rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.86;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.17);
}

.catalog-hero-grid > div:first-child,
.catalog-lead {
  position: relative;
  z-index: 1;
}

.catalog-lead {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.catalog-section {
  background: var(--paper);
}

.catalog-tools {
  position: sticky;
  z-index: 20;
  top: var(--header);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  padding: 1rem 0;
  background: var(--paper);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.catalog-tools > p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-tools > p span {
  display: inline-block;
  min-width: 1.4rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.filter-bar button {
  min-height: 2.45rem;
  padding: 0.55rem 0.85rem;
  background: transparent;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 750;
  cursor: pointer;
}

.filter-bar button:hover,
.filter-bar button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.filter-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

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

.atlas-card-catalog .atlas-body {
  min-height: 21rem;
}

.service-cover {
  position: relative;
  min-height: clamp(38rem, 78svh, 49rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.service-cover > figure,
.service-cover-shade {
  position: absolute;
  inset: 0;
  margin: 0;
}

.service-cover > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-cover-shade {
  background: linear-gradient(90deg, rgba(22, 22, 22, 0.92) 0%, rgba(22, 22, 22, 0.67) 48%, rgba(22, 22, 22, 0.14) 84%), linear-gradient(0deg, rgba(22, 22, 22, 0.78), transparent 55%);
}

.service-cover-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 8vw, 8rem);
}

.service-cover-content .breadcrumbs {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.service-cover-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.6rem;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-cover-meta span + span::before {
  content: "/";
  margin-right: 1rem;
  opacity: 0.5;
}

.service-cover h1 {
  max-width: 12ch;
}

.service-cover-content > p {
  max-width: 43rem;
  margin: clamp(2rem, 4vw, 4rem) 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
}

.service-subnav {
  position: sticky;
  z-index: 30;
  top: var(--header);
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.service-subnav > div {
  min-height: 4rem;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.service-subnav a {
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-subnav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.service-subnav-action {
  min-height: 4rem;
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  margin-left: auto;
  padding-inline: 1.4rem;
  color: var(--paper);
  background: var(--ink);
}

.service-overview-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.48fr) minmax(0, 1.02fr);
  gap: clamp(4rem, 9vw, 11rem);
  align-items: start;
}

.scope-panel {
  position: sticky;
  top: calc(var(--header) + 6.5rem);
  padding: clamp(2rem, 4vw, 3.5rem);
  color: var(--paper);
  background: var(--ink);
}

.scope-panel .section-index {
  color: rgba(255, 255, 255, 0.48);
}

.scope-panel h2 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

.scope-panel ul {
  margin: 2.5rem 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.scope-panel li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.4rem;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.scope-panel li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--paper);
}

.scope-panel .solid-link {
  width: 100%;
}

.editorial-prose {
  max-width: 52rem;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.editorial-prose > p,
.editorial-prose > ul,
.editorial-prose > ol {
  max-width: 44rem;
}

.editorial-prose p {
  color: var(--ink-soft);
}

.editorial-prose > p:first-of-type:not(.micro-label) {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.38;
}

.editorial-prose h2 {
  max-width: 15ch;
  margin: clamp(4rem, 8vw, 7rem) 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.editorial-prose h2:first-child,
.editorial-prose .micro-label + h2 {
  margin-top: 0;
}

.editorial-prose h3 {
  margin: 3.4rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.editorial-prose ul,
.editorial-prose ol {
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.editorial-prose li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.editorial-prose blockquote {
  max-width: 44rem;
  margin: clamp(3rem, 7vw, 6rem) 0;
  padding: 2rem 0 2rem clamp(1.5rem, 4vw, 3.5rem);
  border-left: 0.35rem solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-style: italic;
  line-height: 1.2;
}

.technical-note {
  display: grid;
  gap: 0.7rem;
  margin-top: 4rem;
  padding: 1.5rem;
  color: var(--paper) !important;
  background: var(--ink);
}

.technical-note span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.service-process-list li {
  display: grid;
  grid-template-columns: 5rem minmax(13rem, 0.55fr) minmax(18rem, 1fr);
  gap: clamp(1rem, 4vw, 5rem);
  align-items: center;
  min-height: 9rem;
  border-bottom: 1px solid var(--line-dark);
}

.service-process-list li > span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
  font-weight: 750;
}

.service-process-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.service-process-list p {
  max-width: 40rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.faq-section {
  background: var(--fog);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.5fr) minmax(0, 1fr);
  gap: clamp(4rem, 9vw, 11rem);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header) + 2rem);
}

.faq-heading h2 {
  font-size: clamp(2.7rem, 5.2vw, 5.6rem);
}

.faq-heading > p:last-child {
  max-width: 28rem;
  margin: 2rem 0 0;
  color: var(--ink-soft);
}

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

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

.faq-item summary {
  min-height: 6.5rem;
  display: grid;
  grid-template-columns: 3rem 1fr 1.8rem;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary > span {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
}

.faq-item summary strong {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.faq-item summary i {
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
}

.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.faq-item summary i::after {
  transform: rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 3rem 2rem 4.2rem;
}

.faq-answer p {
  max-width: 40rem;
  margin: 0;
  color: var(--ink-soft);
}

.related-section {
  background: var(--paper);
}

.compact-heading {
  display: flex;
  gap: 2rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.compact-heading h2 {
  font-size: clamp(2.5rem, 4.8vw, 5rem);
}

.related-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.related-visual {
  position: relative;
  display: grid;
  border-top: 1px solid var(--ink);
}

.related-visual figure {
  aspect-ratio: 16 / 10;
  margin: 0 0 1rem;
  overflow: hidden;
  background: var(--fog);
}

.related-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.related-visual:hover img {
  transform: scale(1.025);
}

.related-visual > span {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-visual > strong {
  max-width: 13ch;
  margin-top: 0.8rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.related-visual > .icon-corner {
  position: absolute;
  right: 0;
  bottom: 0;
}

.studio-hero {
  background: var(--fog);
}

.studio-hero-grid {
  min-height: calc(100svh - var(--header));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.studio-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 6vw, 7rem) clamp(4rem, 8vw, 8rem) 0;
}

.studio-hero h1 {
  font-size: clamp(3.6rem, 7vw, 7.8rem);
}

.studio-hero-copy > p:last-child {
  max-width: 34rem;
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.studio-hero figure {
  margin: 0;
}

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

.studio-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: clamp(5rem, 10vw, 10rem);
  border-top: 1px solid var(--ink);
}

.studio-tabs a {
  min-height: 5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
}

.studio-tabs a:last-child {
  border-right: 0;
}

.studio-tabs a[aria-current="page"] {
  padding-inline: 1rem;
  color: var(--paper);
  background: var(--ink);
}

.studio-tabs span {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.studio-tabs a[aria-current="page"] span {
  color: rgba(255, 255, 255, 0.52);
}

.studio-article-grid,
.statement-grid {
  display: grid;
  grid-template-columns: minmax(8rem, 0.35fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 11rem);
  align-items: start;
}

.founder-sign {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: 4rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-top: 1px solid var(--ink);
  background: #f5f4f0;
}

.founder-sign > span {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.founder-portrait {
  flex: 0 0 9rem;
  width: 9rem;
  height: 12.87rem;
  margin: 0;
  overflow: hidden;
  background: #e9e8e4;
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.founder-sign div {
  display: grid;
  gap: 0.35rem;
}

.founder-sign strong {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.founder-sign small {
  color: var(--ink-soft);
}

.statement-hero,
.contact-hero,
.not-found {
  color: var(--paper);
  background: var(--ink-deep);
}

.statement-hero > div {
  min-height: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: clamp(4rem, 8vw, 8rem);
}

.statement-hero h1 {
  font-size: clamp(4.5rem, 12vw, 13rem);
}

.statement-hero > div > p:last-child {
  max-width: 44rem;
  margin: 3rem 0 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.contact-hero > div {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.55fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}

.contact-hero h1 {
  font-size: clamp(3.8rem, 8vw, 8.5rem);
}

.contact-hero-grid > div:last-child {
  display: grid;
  gap: 0.6rem;
}

.contact-hero-grid > div:last-child p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.66);
}

.contact-hero-grid > div:last-child a {
  width: max-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.55fr);
  gap: clamp(4rem, 9vw, 11rem);
  align-items: start;
}

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

.form-head,
.field-wide,
.project-form > .form-note,
.project-form > button {
  grid-column: 1 / -1;
}

.form-head h2 {
  margin: 0 0 3rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.field {
  position: relative;
  padding-top: 1.4rem;
  border-top: 1px solid var(--ink);
}

.field label {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 4rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
}

.field textarea {
  min-height: 10rem;
  padding-top: 0.7rem;
  resize: vertical;
}

.field:focus-within {
  border-color: var(--ink);
  box-shadow: inset 0 2px 0 var(--ink);
}

.project-form .form-note {
  margin: 0 0 0.4rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.project-form > button {
  width: max-content;
  margin-top: 1.5rem;
}

.office-column {
  position: sticky;
  top: calc(var(--header) + 2rem);
}

.office-list {
  border-top: 1px solid var(--ink);
}

.office-card {
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

.office-card > span {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
}

.office-card h3 {
  margin: 1.3rem 0;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.office-card address {
  color: var(--ink-soft);
  font-style: normal;
}

.office-card div {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.5rem;
  font-size: 0.83rem;
  font-weight: 700;
}

.office-card div a:first-child {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.office-card .icon-corner {
  width: 1rem;
  height: 1rem;
}

.simple-hero,
.legal-hero {
  background: var(--fog);
}

.simple-hero > div,
.legal-hero > div {
  min-height: 42rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: clamp(4rem, 8vw, 8rem);
}

.simple-hero h1 {
  font-size: clamp(4rem, 9vw, 9.5rem);
}

.simple-hero > div > p:last-child,
.legal-hero > div > p:last-child {
  max-width: 40rem;
  margin: 3rem 0 0 auto;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.empty-journal {
  padding-block: 4rem;
  border-top: 1px solid var(--ink);
}

.empty-journal > div {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 2rem;
  align-items: center;
}

.empty-journal > div > span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
}

.empty-journal p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
}

.legal-hero h1 {
  max-width: 14ch;
  font-size: clamp(3.6rem, 7vw, 7.5rem);
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.4fr) minmax(0, 1fr);
  gap: clamp(4rem, 9vw, 11rem);
  align-items: start;
}

.legal-grid > nav {
  position: sticky;
  top: calc(var(--header) + 2rem);
  display: grid;
  border-top: 1px solid var(--ink);
}

.legal-grid > nav span,
.legal-grid > nav a {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-grid > nav span {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-grid > nav a {
  font-size: 0.88rem;
}

.legal-grid > nav a[aria-current="page"] {
  font-weight: 750;
}

.legal-date {
  margin-top: 4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
}

.not-found > div {
  min-height: calc(100svh - var(--header));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.not-found > div > span {
  color: transparent;
  font-family: var(--display);
  font-size: clamp(12rem, 30vw, 32rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.24);
}

.not-found h1 {
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.not-found p:not(.micro-label) {
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.62);
}

/* Static brand accents: no pointer tracking or continuous paint work. */
.home-hero-image img,
.service-cover-base img {
  filter: none;
}

.home-hero::before,
.service-cover::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: clamp(1rem, 2vw, 2rem);
  right: clamp(1rem, 2vw, 2rem);
  width: clamp(3.5rem, 7vw, 7rem);
  height: clamp(3.5rem, 7vw, 7rem);
  border-top: 2px solid var(--signal);
  border-right: 2px solid var(--signal);
  pointer-events: none;
}

.home-hero-shade,
.service-cover-shade {
  z-index: 1;
}

.home-hero-content,
.hero-index,
.service-cover-content {
  z-index: 2;
}

.hero-kicker::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  display: inline-block;
  margin-right: 0.7rem;
  background: var(--signal);
}

.home-hero h1 span:nth-child(2) {
  -webkit-text-stroke-color: var(--signal);
}

.hero-index {
  border-top-color: rgba(223, 255, 63, 0.62);
}

.hero-index b {
  color: var(--signal);
}

.kinetic-band {
  overflow: hidden;
  color: var(--ink-deep);
  background: var(--signal);
  border-block: 1px solid var(--ink-deep);
}

.kinetic-track {
  width: 100%;
}

.kinetic-track > div {
  display: flex;
  width: 100%;
  min-width: 47rem;
  align-items: center;
  justify-content: space-between;
}

.kinetic-track span {
  padding: 0.9rem 1.4rem;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.7vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.kinetic-track i {
  font-size: 1.5rem;
  font-style: normal;
}

.section-heading .section-index,
.manifesto-grid > .section-index,
.process-copy > .section-index {
  width: max-content;
  padding: 0.45rem 0.6rem;
  color: var(--ink-deep);
  background: var(--signal);
}

.services-atlas {
  position: relative;
  background: var(--paper);
}

.services-atlas::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 28vw;
  height: 1px;
  background: var(--signal);
  box-shadow: 0 0 0 0.35rem var(--signal);
}

.atlas-grid-home,
.atlas-grid-catalog {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.15rem;
  grid-auto-flow: dense;
}

.atlas-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: clamp(0.7rem, 1vw, 1rem);
  background: var(--ink);
  isolation: isolate;
  content-visibility: auto;
  contain-intrinsic-size: auto 32rem;
}

.atlas-card-home {
  grid-column: span 4;
  height: 27rem;
}

.atlas-card-home:nth-child(8n + 1) {
  grid-column: span 6;
  height: 32rem;
}

.atlas-card-home:nth-child(8n + 2),
.atlas-card-home:nth-child(8n + 3) {
  grid-column: span 3;
  height: 32rem;
}

.atlas-card-home:nth-child(8n + 7) {
  grid-column: span 6;
  height: 30rem;
}

.atlas-card-home:nth-child(8n + 8) {
  grid-column: span 6;
  height: 30rem;
}

.atlas-card-catalog {
  grid-column: span 6;
  height: 29rem;
}

.atlas-card-catalog:nth-child(5n + 1) {
  grid-column: span 12;
  height: 34rem;
}

.atlas-media {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: inherit;
}

.atlas-media::after {
  content: none;
}

.atlas-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.atlas-wash {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.08) 25%, rgba(20, 20, 20, 0.9) 100%);
}

.atlas-number,
.atlas-category,
.atlas-caption {
  position: absolute;
  z-index: 2;
}

.atlas-number {
  top: clamp(1.2rem, 2vw, 2rem);
  left: clamp(1.2rem, 2vw, 2rem);
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
  transition: color 180ms ease;
}

.atlas-category {
  top: clamp(1.2rem, 2vw, 2rem);
  right: clamp(1.2rem, 2vw, 2rem);
  padding: 0.45rem 0.7rem;
  color: var(--ink-deep);
  background: var(--signal);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.atlas-caption {
  right: clamp(1.2rem, 2vw, 2rem);
  bottom: clamp(1.2rem, 2vw, 2rem);
  left: clamp(1.2rem, 2vw, 2rem);
  display: flex;
  gap: 1rem;
  align-items: end;
  justify-content: space-between;
  color: var(--paper);
}

.atlas-caption :is(h2, h3) {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: var(--type-card);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.atlas-action {
  min-width: 6.4rem;
  min-height: 3rem;
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.65rem 0.85rem;
  color: var(--ink-deep);
  background: var(--signal);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(0.7rem);
  opacity: 0;
  transition: opacity 250ms ease, transform 350ms ease;
}

.atlas-action .icon-corner {
  width: 1rem;
  height: 1rem;
}

.atlas-card:hover .atlas-media img,
.atlas-card:focus-visible .atlas-media img {
  transform: scale(1.025);
}

.atlas-card:hover .atlas-number,
.atlas-card:focus-visible .atlas-number {
  color: var(--signal);
}

.atlas-card:hover .atlas-action,
.atlas-card:focus-visible .atlas-action {
  opacity: 1;
  transform: none;
}

.pathway-grid a:hover,
.pathway-grid a:focus-visible {
  color: var(--ink-deep);
  background: var(--signal);
}

.pathway-grid a:hover > span,
.pathway-grid a:hover > p,
.pathway-grid a:focus-visible > span,
.pathway-grid a:focus-visible > p,
.pathway-grid a:hover small,
.pathway-grid a:focus-visible small {
  color: rgba(20, 20, 20, 0.64);
}

.process-image {
  position: static;
}

.process-image img {
  border-radius: 1rem 1rem 6rem 1rem;
  filter: none;
}

.scope-panel {
  position: static;
  border-top: 0.55rem solid var(--signal);
  box-shadow: none;
}

.service-subnav-action {
  color: var(--ink-deep);
  background: var(--signal);
}

.faq-item[open] {
  padding-inline: 1.2rem;
  background: var(--paper);
}

.faq-item[open] summary > span,
.faq-item[open] summary strong {
  color: var(--ink-deep);
}

.related-visual {
  overflow: hidden;
  border: 0;
  border-radius: 1.4rem;
}

.related-visual figure {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: inherit;
}

.related-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(20, 20, 20, 0.88));
}

.related-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: grid;
  color: var(--paper);
}

.related-visual figcaption small {
  color: var(--signal);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-visual figcaption strong {
  max-width: 12ch;
  margin-top: 0.7rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.related-visual figcaption .icon-corner {
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--signal);
}

.related-visual:hover img,
.related-visual:focus-visible img {
  transform: scale(1.025);
}

.contact-prompt,
.footer-call {
  background-image: radial-gradient(circle at 86% 24%, rgba(223, 255, 63, 0.14), transparent 26%);
}

/* Balanced editorial type scale and lighter desktop composition. */
.menu-primary strong {
  font-size: clamp(2.35rem, 4.15vw, 4.55rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.home-hero h1 {
  font-size: var(--type-display);
}

.catalog-hero h1,
.statement-hero h1,
.contact-hero h1,
.simple-hero h1,
.legal-hero h1,
.not-found h1,
.studio-hero h1,
.service-cover h1 {
  font-size: var(--type-page);
  letter-spacing: -0.052em;
  line-height: 0.92;
}

.mega-title,
.section-heading h2,
.process-copy > h2,
.compact-heading h2,
.faq-heading h2,
.scope-panel h2,
.contact-prompt h2,
.footer-call h2 {
  font-size: var(--type-section);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.editorial-prose h2,
.form-head h2 {
  font-size: clamp(2.35rem, 3.7vw, 3.85rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.pathway-grid h3,
.service-process-list h3 {
  font-size: clamp(1.8rem, 2.25vw, 2.45rem);
  line-height: 1;
}

.related-visual figcaption strong {
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  line-height: 1;
}

.catalog-number {
  font-size: clamp(14rem, 32vw, 32rem);
}

.statement-hero > div,
.simple-hero > div,
.legal-hero > div {
  min-height: 36rem;
}

.studio-hero-grid {
  min-height: clamp(40rem, 80svh, 50rem);
}

.faq-heading,
.office-column,
.legal-grid > nav {
  position: static;
}

@media (max-width: 1180px) {
  :root {
    --frame: min(calc(100% - 2.5rem), 80rem);
  }

  .atlas-grid-home,
  .atlas-grid-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atlas-card-home,
  .atlas-card-home:nth-child(8n + 1),
  .atlas-card-home:nth-child(8n + 2),
  .atlas-card-home:nth-child(8n + 3),
  .atlas-card-home:nth-child(8n + 7),
  .atlas-card-home:nth-child(8n + 8),
  .atlas-card-catalog,
  .atlas-card-catalog:nth-child(5n + 1) {
    grid-column: span 1;
    height: 27rem;
  }

  .atlas-card-home:nth-child(5n + 1),
  .atlas-card-catalog:nth-child(5n + 1) {
    grid-column: span 2;
    height: 31rem;
  }

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

  .pathway-grid a {
    min-height: 23rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.7fr);
  }
}

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

  .header-bar {
    grid-template-columns: auto 1fr auto;
  }

  .header-field {
    display: none;
  }

  .header-phone {
    justify-self: end;
  }

  .menu-panel-inner {
    grid-template-columns: 1fr;
  }

  .menu-secondary {
    padding-bottom: 2rem;
  }

  .menu-contact {
    margin-top: 3rem;
  }

  .home-hero {
    min-height: 44rem;
  }

  .home-hero-shade {
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.86), rgba(20, 20, 20, 0.26)), linear-gradient(0deg, rgba(20, 20, 20, 0.82), transparent 55%);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .section-heading,
  .service-overview-grid,
  .faq-grid,
  .studio-article-grid,
  .statement-grid,
  .legal-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-copy {
    max-width: 42rem;
    padding-top: 0;
  }

  .section-heading > p:last-child {
    max-width: 40rem;
  }

  .process-story-grid {
    grid-template-columns: 1fr;
  }

  .process-image,
  .scope-panel,
  .faq-heading,
  .office-column,
  .legal-grid > nav {
    position: static;
  }

  .process-image img {
    aspect-ratio: 16 / 10;
  }

  .process-image {
    transform: none;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-hero-grid {
    grid-template-columns: 1fr;
  }

  .catalog-number {
    opacity: 0.65;
  }

  .catalog-lead {
    margin-left: auto;
  }

  .service-subnav > div {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .service-subnav a {
    flex: 0 0 auto;
  }

  .service-process-list li {
    grid-template-columns: 3rem 0.6fr 1fr;
  }

  .scope-panel {
    max-width: 42rem;
  }

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

  .studio-hero-copy {
    min-height: 38rem;
  }

  .studio-hero figure {
    height: 58vw;
    margin: 0;
  }

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

  .contact-hero-grid > div:last-child {
    max-width: 35rem;
  }

  .not-found > div {
    grid-template-columns: 1fr;
    padding-block: 4rem;
  }

  .not-found > div > span {
    font-size: clamp(10rem, 48vw, 20rem);
  }
}

@media (max-width: 640px) {
  :root {
    --frame: calc(100vw - 2rem);
  }

  .section-space {
    padding-block: 5.5rem;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    min-width: 5.5rem;
  }

  .menu-primary > a {
    grid-template-columns: 2rem 1fr auto;
  }

  .menu-primary strong {
    font-size: clamp(2rem, 9.5vw, 3.35rem);
  }

  .home-hero {
    min-height: 40rem;
  }

  .home-hero-content {
    padding-bottom: 10.5rem;
  }

  .hero-kicker {
    margin-bottom: 2.5rem;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 13.5vw, 4.25rem);
    line-height: 0.9;
  }

  .hero-bottom {
    gap: 1.5rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-index span {
    min-height: 5rem;
    gap: 0.3rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    font-size: 0.56rem;
  }

  .hero-index b {
    font-size: 1.1rem;
  }

  .mega-title,
  .section-heading h2,
  .process-copy > h2,
  .compact-heading h2,
  .faq-heading h2,
  .scope-panel h2,
  .contact-prompt h2,
  .footer-call h2 {
    font-size: clamp(2.3rem, 9.8vw, 3.35rem);
  }

  .atlas-grid-home,
  .atlas-grid-catalog {
    grid-template-columns: 1fr;
  }

  .atlas-card-home,
  .atlas-card-home:nth-child(8n + 1),
  .atlas-card-home:nth-child(8n + 2),
  .atlas-card-home:nth-child(8n + 3),
  .atlas-card-home:nth-child(8n + 7),
  .atlas-card-home:nth-child(8n + 8),
  .atlas-card-home:nth-child(5n + 1),
  .atlas-card-catalog,
  .atlas-card-catalog:nth-child(5n + 1) {
    grid-column: 1;
    height: 25rem;
  }

  .atlas-action {
    opacity: 1;
    transform: none;
  }

  .atlas-body,
  .atlas-card-catalog .atlas-body {
    min-height: 15.5rem;
  }

  .atlas-body h3 {
    font-size: 2.25rem;
  }

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

  .pathway-grid a {
    min-height: 21rem;
  }

  .partner-heading,
  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .partner-heading > p:last-child {
    justify-self: start;
  }

  .catalog-tools {
    gap: 0.8rem;
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .catalog-hero {
    min-height: 37rem;
  }

  .catalog-number {
    top: 6rem;
  }

  .catalog-hero h1,
  .statement-hero h1,
  .contact-hero h1,
  .simple-hero h1,
  .legal-hero h1,
  .studio-hero h1,
  .service-cover h1 {
    font-size: clamp(2.9rem, 12.5vw, 4.15rem);
  }

  .service-cover {
    min-height: 36rem;
  }

  .service-cover-shade {
    background: linear-gradient(90deg, rgba(22, 22, 22, 0.86), rgba(22, 22, 22, 0.28)), linear-gradient(0deg, rgba(22, 22, 22, 0.86), transparent 60%);
  }

  .service-subnav a:not(.service-subnav-action) {
    display: none;
  }

  .service-subnav-action {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .service-process-list li {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.8rem;
    padding: 1.5rem 0;
  }

  .service-process-list li > p {
    grid-column: 2;
  }

  .faq-item summary {
    grid-template-columns: 2rem 1fr 1.4rem;
    gap: 0.65rem;
  }

  .faq-answer {
    padding-left: 2.65rem;
    padding-right: 0;
  }

  .compact-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .related-visual-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .studio-tabs a {
    min-height: 3.8rem;
    border-right: 0;
  }

  .studio-article-grid,
  .statement-grid {
    gap: 2rem;
  }

  .project-form {
    grid-template-columns: 1fr;
  }

  .field,
  .field-wide,
  .project-form > .form-note,
  .project-form > button {
    grid-column: 1;
  }

  .empty-journal > div {
    grid-template-columns: 2rem 1fr;
  }

  .empty-journal .text-link {
    grid-column: 2;
    justify-self: start;
  }

  .footer-call .round-link {
    position: static;
    margin-top: 3rem;
  }

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

  .footer-identity {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    gap: 0.5rem;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

/* 2026 refinement: system type, richer editorial sections, lighter rendering. */
.brand-logo {
  width: clamp(9.3rem, 12vw, 11.5rem);
  height: auto;
  flex: 0 0 auto;
}

.brand-light .brand-logo {
  width: clamp(11rem, 15vw, 14rem);
}

.menu-primary strong,
.home-hero h1,
.catalog-hero h1,
.statement-hero h1,
.contact-hero h1,
.simple-hero h1,
.legal-hero h1,
.not-found h1,
.studio-hero h1,
.service-cover h1,
.mega-title,
.section-heading h2,
.process-copy > h2,
.compact-heading h2,
.faq-heading h2,
.scope-panel h2,
.contact-prompt h2,
.footer-call h2,
.editorial-prose h2,
.editorial-prose h3,
.pathway-grid h3,
.service-process-list h3,
.related-visual figcaption strong,
.atlas-caption :is(h2, h3) {
  font-weight: 650;
  letter-spacing: -0.04em;
}

.home-hero h1,
.catalog-hero h1,
.statement-hero h1,
.contact-hero h1,
.simple-hero h1,
.legal-hero h1,
.not-found h1,
.studio-hero h1,
.service-cover h1 {
  line-height: 0.94;
}

.home-hero h1 {
  line-height: 0.9;
}

.mega-title,
.section-heading h2,
.process-copy > h2,
.compact-heading h2,
.faq-heading h2,
.scope-panel h2,
.contact-prompt h2 {
  line-height: 1.02;
}

.menu-primary strong {
  letter-spacing: -0.03em;
}

/* Service cards: deliberately dark at rest, bright on intent. */
.atlas-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 34% 0 0;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.86));
  pointer-events: none;
}

.atlas-wash {
  background: rgba(24, 24, 24, 0.64);
  opacity: 1;
  transition: opacity 220ms ease;
}

.atlas-card:hover .atlas-wash,
.atlas-card:focus-visible .atlas-wash {
  opacity: 0.18;
}

.atlas-card:hover .atlas-media img,
.atlas-card:focus-visible .atlas-media img {
  transform: scale(1.018);
}

.atlas-number {
  font-size: clamp(2.2rem, 3vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.atlas-caption :is(h2, h3) {
  max-width: 14ch;
  line-height: 1.03;
}

/* The former sparse manifesto is now a compact editorial panel. */
.manifesto {
  background: var(--fog);
}

.manifesto-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(24rem, 0.96fr);
  min-height: 42rem;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
}

.manifesto-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2.25rem, 5vw, 5rem);
}

.manifesto-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.manifesto-labels .section-index,
.manifesto-labels .micro-label {
  margin: 0;
}

.manifesto-labels .section-index {
  width: max-content;
  padding: 0.45rem 0.6rem;
  color: var(--ink-deep);
  background: var(--signal);
}

.manifesto .mega-title {
  max-width: 12ch;
  margin-block: clamp(3rem, 7vw, 7rem);
  font-size: clamp(2.7rem, 4.25vw, 4.75rem);
}

.manifesto-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 3rem);
  padding-top: 0;
}

.manifesto-copy p {
  margin: 0;
  font-size: 0.98rem;
}

.manifesto-proof {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--ink);
}

.manifesto-proof > span {
  display: grid;
  gap: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.manifesto-proof b {
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.manifesto-proof .text-link {
  white-space: nowrap;
}

.manifesto-media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

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

.manifesto-media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(20, 20, 20, 0.82));
}

.manifesto-media figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(1.5rem, 3vw, 2.75rem);
  bottom: clamp(1.5rem, 3vw, 2.75rem);
  left: clamp(1.5rem, 3vw, 2.75rem);
  display: grid;
  gap: 0.55rem;
  color: var(--paper);
}

.manifesto-media figcaption span,
.contact-prompt-media figcaption span,
.journal-hero figcaption span,
.service-inline-media figcaption span,
.article-inline-media figcaption span {
  color: var(--signal);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.manifesto-media figcaption strong {
  max-width: 24ch;
  font-size: clamp(1.15rem, 1.75vw, 1.55rem);
  font-weight: 600;
  line-height: 1.28;
}

/* Visual partner matrix. */
.partner-section {
  padding-block: clamp(5rem, 8vw, 8rem);
  background: var(--fog);
}

.partner-heading {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.48fr);
  gap: clamp(2rem, 7vw, 8rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.partner-heading > div .section-index {
  width: max-content;
  padding: 0.45rem 0.6rem;
  color: var(--ink-deep);
  background: var(--signal);
}

.partner-heading h2 {
  max-width: 16ch;
  margin: 0;
  font-family: var(--display);
  font-size: var(--type-section);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.partner-card {
  position: relative;
  min-height: 11.5rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 1.35rem;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease;
}

.partner-card:hover {
  color: var(--ink-deep);
  background: var(--signal);
}

.partner-card > span {
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.partner-card figure {
  align-self: center;
  margin: 1.5rem 0;
}

.partner-card img {
  width: auto;
  height: 2rem;
  max-width: 11rem;
  object-fit: contain;
  object-position: left center;
}

.partner-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Image-led project invitation replaces the oversized empty block. */
.contact-prompt {
  padding-block: clamp(4.5rem, 7vw, 7rem);
  background-color: var(--ink-deep);
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 4rem 4rem;
}

.contact-prompt-inner {
  min-height: 0;
  grid-template-columns: minmax(23rem, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: stretch;
  padding-block: 0;
}

.contact-prompt-media {
  position: relative;
  min-height: 33rem;
  margin: 0;
  overflow: hidden;
  border-radius: 1rem 1rem 6rem 1rem;
  background: var(--ink);
}

.contact-prompt-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-prompt-media::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(18, 18, 18, 0.84));
}

.contact-prompt-media figcaption {
  position: absolute;
  z-index: 1;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: grid;
  gap: 0.55rem;
  color: var(--paper);
}

.contact-prompt-media figcaption strong {
  max-width: 29ch;
  font-size: 1rem;
  font-weight: 550;
  line-height: 1.45;
}

.contact-prompt-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 1rem;
}

.contact-prompt h2 {
  max-width: 17ch;
  font-size: clamp(2.55rem, 4.35vw, 4.7rem);
}

.contact-prompt-copy > p:not(.micro-label) {
  max-width: 39rem;
  margin: clamp(1.75rem, 3vw, 2.5rem) 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.03rem;
}

.contact-prompt-copy ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 2.2rem;
  padding: 0;
  border-block: 1px solid var(--line-dark);
  list-style: none;
}

.contact-prompt-copy li {
  display: grid;
  gap: 0.65rem;
  min-height: 7.25rem;
  align-content: center;
  padding: 1rem;
  border-right: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
}

.contact-prompt-copy li:last-child {
  border-right: 0;
}

.contact-prompt-copy li span {
  color: var(--signal);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.contact-prompt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
}

.contact-prompt-actions > a:last-child {
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Service article photography for useful, descriptive image SEO. */
.service-inline-media {
  max-width: 52rem;
  margin: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.service-inline-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0.8rem 0.8rem 4.5rem 0.8rem;
}

.service-inline-media figcaption,
.article-inline-media figcaption {
  display: grid;
  grid-template-columns: minmax(7rem, auto) 1fr;
  gap: 1.2rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--ink);
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Footer: actual mark, every service, no decorative word wall. */
.site-footer {
  border-top: 0.45rem solid var(--signal);
}

.footer-grid {
  grid-template-columns: minmax(15rem, 0.78fr) minmax(28rem, 1.45fr) minmax(15rem, 0.62fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  padding-block: clamp(4rem, 7vw, 7rem);
}

.footer-identity p {
  max-width: 22rem;
  margin-top: 2.4rem;
}

.footer-office {
  display: grid;
  gap: 0.2rem;
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-dark);
}

.footer-office span {
  font-size: 0.83rem;
  font-weight: 700;
}

.footer-office small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-services > span,
.footer-block > span {
  display: block;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-services > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
  border-top: 1px solid var(--line-dark);
}

.footer-services a {
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  transition: color 150ms ease, padding 150ms ease;
}

.footer-services a:hover,
.footer-services a:focus-visible {
  padding-left: 0.45rem;
  color: var(--signal);
}

.footer-meta {
  display: grid;
  gap: 2.75rem;
  align-content: start;
}

.footer-meta .footer-block {
  border-top: 1px solid var(--line-dark);
  padding-top: 1.1rem;
}

.footer-meta .footer-block > span {
  margin-bottom: 0.65rem;
}

.footer-meta .footer-block a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-meta .footer-block a .icon-arrow {
  display: inline-block;
  width: 0.95rem;
  vertical-align: middle;
}

/* Journal listing and article. */
.journal-hero {
  background: var(--fog);
}

.journal-hero-grid {
  min-height: clamp(38rem, 76svh, 48rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(26rem, 1.1fr);
  align-items: stretch;
}

.journal-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(4rem, 7vw, 7rem) clamp(2rem, 6vw, 7rem) clamp(4rem, 7vw, 7rem) 0;
}

.journal-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.45vw, 4.75rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.journal-hero h1 em {
  font-family: var(--serif);
  font-weight: 400;
}

.journal-hero-copy > p:not(.micro-label) {
  max-width: 36rem;
  margin: 2rem 0 1.5rem;
  color: var(--ink-soft);
}

.journal-hero figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 0 0 0 6rem;
}

.journal-hero figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-hero figure::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(20, 20, 20, 0.82));
}

.journal-hero figcaption {
  position: absolute;
  z-index: 1;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: grid;
  gap: 0.45rem;
  color: var(--paper);
}

.journal-hero figcaption strong {
  font-size: 1.05rem;
  font-weight: 550;
}

.journal-list {
  background: var(--paper);
}

.journal-list .compact-heading {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.45fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.journal-list .compact-heading > p {
  margin: 0;
  color: var(--ink-soft);
}

.article-card {
  display: grid;
  grid-template-columns: minmax(24rem, 1fr) minmax(0, 0.9fr);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-deep);
  border-radius: 1.2rem;
}

.article-card figure {
  min-height: 31rem;
  margin: 0;
  overflow: hidden;
}

.article-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.article-card:hover figure img,
.article-card:focus-visible figure img {
  transform: scale(1.018);
}

.article-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.article-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card-meta span:first-child {
  color: var(--signal);
}

.article-card h2 {
  max-width: 12ch;
  margin: 1.8rem 0 1.3rem;
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.8vw, 4.1rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
}

.article-card > div > p:not(.article-card-meta) {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.65);
}

.article-card-action {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card-action .icon-arrow {
  width: 1rem;
}

.article-hero {
  color: var(--paper);
  background: var(--ink-deep);
}

.article-hero-grid {
  min-height: clamp(39rem, 76svh, 48rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(25rem, 1.08fr);
  align-items: stretch;
}

.article-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 6vw, 7rem) clamp(3rem, 6vw, 6rem) 0;
}

.article-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.25rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.article-deck {
  max-width: 42rem;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.article-meta a:hover {
  color: var(--paper);
}

.article-hero figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.article-hero figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero figure::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(180deg, transparent, rgba(20, 20, 20, 0.76));
}

.article-hero figure figcaption {
  position: absolute;
  z-index: 1;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
  padding-block: clamp(5rem, 9vw, 9rem);
}

.article-aside {
  display: grid;
  gap: 1.25rem;
  padding-top: 0.4rem;
}

.article-aside > span {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-aside nav {
  display: grid;
  border-top: 1px solid var(--ink);
}

.article-aside nav a {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.article-aside nav a:hover {
  color: var(--ink);
}

.article-aside .solid-link {
  justify-self: start;
  margin-top: 1rem;
}

.article-prose {
  max-width: 51rem;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
}

.article-prose > p {
  max-width: 45rem;
  color: var(--ink-soft);
}

.article-prose .article-lead {
  color: var(--ink);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.article-answer {
  max-width: 45rem;
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.25rem;
  margin: 2.4rem 0 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-left: 0.4rem solid var(--signal);
  background: var(--fog);
}

.article-answer span {
  padding-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-answer p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  font-weight: 650;
  line-height: 1.45;
}

.article-prose h2 {
  max-width: 18ch;
  margin: clamp(3.5rem, 7vw, 6rem) 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.article-prose blockquote {
  max-width: 43rem;
  margin: clamp(3rem, 6vw, 5rem) 0;
  padding: 1.75rem 0 1.75rem clamp(1.25rem, 3vw, 2.5rem);
  border-left: 0.4rem solid var(--signal);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  font-style: italic;
  line-height: 1.28;
}

.article-inline-media {
  margin: clamp(3rem, 6vw, 5rem) 0;
}

.article-inline-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0.8rem 0.8rem 4.5rem 0.8rem;
}

.article-checklist {
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.article-checklist li {
  display: grid;
  grid-template-columns: 2.5rem minmax(8rem, 0.42fr) 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.article-checklist li span {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
}

.article-checklist li strong {
  color: var(--ink);
}

.article-faqs {
  max-width: 45rem;
  margin-top: clamp(4rem, 8vw, 7rem);
}

.article-faqs h2 {
  margin-top: 0.8rem;
}

.article-faqs .faq-list {
  margin-top: 2rem;
}

.article-faqs .faq-item summary {
  min-height: 5.5rem;
}

.article-end {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(1.75rem, 4vw, 3rem);
  color: var(--paper);
  background: var(--ink-deep);
  border-top: 0.45rem solid var(--signal);
}

.article-end p {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.article-end p span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--signal);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .manifesto-panel {
    grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.8fr);
  }

  .manifesto-copy {
    grid-template-columns: 1fr;
  }

  .manifesto-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .manifesto-proof .text-link {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .contact-prompt-inner {
    grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1.2fr);
    gap: 3rem;
  }

  .contact-prompt-copy ul {
    grid-template-columns: 1fr;
  }

  .contact-prompt-copy li {
    min-height: 0;
    grid-template-columns: 2rem 1fr;
    gap: 0.8rem;
    padding: 0.85rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .contact-prompt-copy li:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: minmax(14rem, 0.65fr) minmax(26rem, 1.35fr);
  }

  .footer-meta {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .manifesto-panel,
  .journal-hero-grid,
  .article-hero-grid,
  .article-card,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .manifesto-media {
    min-height: 34rem;
    order: -1;
  }

  .manifesto .mega-title {
    margin-block: 3.5rem;
  }

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

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

  .contact-prompt-media {
    min-height: 30rem;
  }

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

  .footer-services > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journal-hero-copy,
  .article-hero-copy {
    min-height: 35rem;
    padding-right: 0;
  }

  .journal-hero figure,
  .article-hero figure {
    min-height: 55vw;
    border-radius: 0 0 0 4rem;
  }

  .article-card figure {
    min-height: 55vw;
  }

  .article-aside {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
  }

  .article-aside nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-aside nav a:nth-child(odd) {
    padding-right: 1rem;
    border-right: 1px solid var(--line);
  }

  .article-aside nav a:nth-child(even) {
    padding-left: 1rem;
  }
}

@media (max-width: 640px) {
  .header-bar {
    grid-template-columns: 1fr auto;
  }

  .brand-logo {
    width: 8.45rem;
  }

  .brand-light .brand-logo {
    width: 11.5rem;
  }

  .home-hero h1 {
    font-size: clamp(2.8rem, 12.2vw, 3.85rem);
  }

  .catalog-hero h1,
  .statement-hero h1,
  .contact-hero h1,
  .simple-hero h1,
  .legal-hero h1,
  .studio-hero h1,
  .service-cover h1,
  .article-hero h1,
  .journal-hero h1 {
    font-size: clamp(2.55rem, 10.8vw, 3.55rem);
  }

  .manifesto-panel {
    border-radius: 0.8rem;
  }

  .manifesto-main {
    padding: 1.5rem;
  }

  .manifesto-media {
    min-height: 25rem;
  }

  .manifesto-copy,
  .manifesto-proof {
    grid-template-columns: 1fr;
  }

  .manifesto-proof .text-link {
    grid-column: 1;
    white-space: normal;
  }

  .partner-heading {
    grid-template-columns: 1fr;
  }

  .partner-heading > p:last-child {
    max-width: 34rem;
  }

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

  .partner-card {
    min-height: 9.5rem;
  }

  .contact-prompt {
    padding-block: 1rem 4rem;
    background-size: 3rem 3rem;
  }

  .contact-prompt-media {
    min-height: 24rem;
    border-radius: 0.8rem 0.8rem 3.5rem 0.8rem;
  }

  .contact-prompt-copy {
    padding-top: 1rem;
  }

  .contact-prompt h2 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

  .contact-prompt-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-inline-media figcaption,
  .article-inline-media figcaption {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .service-inline-media img,
  .article-inline-media img {
    border-radius: 0.7rem 0.7rem 2.75rem 0.7rem;
  }

  .footer-services > div,
  .footer-meta {
    grid-template-columns: 1fr;
  }

  .journal-hero-copy,
  .article-hero-copy {
    min-height: 31rem;
    padding-block: 3.5rem;
  }

  .journal-hero figure,
  .article-hero figure,
  .article-card figure {
    min-height: 75vw;
  }

  .journal-list .compact-heading {
    grid-template-columns: 1fr;
  }

  .article-card > div {
    padding: 1.5rem;
  }

  .article-card h2 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .article-aside nav {
    grid-template-columns: 1fr;
  }

  .article-aside nav a:nth-child(odd),
  .article-aside nav a:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
  }

  .article-checklist li {
    grid-template-columns: 1.7rem minmax(6rem, 0.55fr) minmax(0, 1fr);
    gap: 0.6rem;
    font-size: 0.88rem;
  }

  .article-answer {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .article-end {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atlas-wash,
  .atlas-media > img,
  .partner-card,
  .footer-services a,
  .article-card figure img {
    transition-duration: 0.01ms !important;
  }
}

/* Multi-article journal archive, taxonomy and reading paths. */
.blog-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.blog-category-nav a {
  min-height: 3.6rem;
  display: inline-flex;
  gap: 1.3rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  transition: color 160ms ease, background 160ms ease;
}

.blog-category-nav a span {
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
}

.blog-category-nav a:hover,
.blog-category-nav a:focus-visible,
.blog-category-nav a[aria-current="page"] {
  color: var(--ink-deep);
  background: var(--signal);
}

.journal-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

.journal-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-deep);
  border-radius: 1rem;
  content-visibility: auto;
  contain-intrinsic-size: auto 40rem;
}

.journal-card figure {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.journal-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.journal-card figure span {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(180deg, transparent, rgba(24, 24, 24, 0.62));
  pointer-events: none;
}

.journal-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.journal-card .article-card-meta {
  margin-bottom: 0;
}

.journal-card .article-card-meta span:first-child {
  color: var(--signal);
}

.journal-card h3 {
  max-width: 16ch;
  margin: 1.4rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.7vw, 2.75rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.journal-card-copy > p:not(.article-card-meta) {
  max-width: 40rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.journal-card .article-card-action {
  margin-top: auto;
  padding-top: 1.75rem;
}

.journal-card:hover figure img,
.journal-card:focus-visible figure img {
  transform: scale(1.018);
}

.journal-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  grid-template-rows: none;
}

.journal-card-featured figure {
  min-height: 34rem;
  aspect-ratio: auto;
}

.journal-card-featured .journal-card-copy {
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.journal-card-featured h3 {
  font-size: clamp(2.4rem, 4vw, 4.15rem);
  line-height: 0.98;
}

.blog-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink);
}

.blog-pagination > div:last-child {
  text-align: right;
}

.blog-pagination a,
.blog-pagination > div > span {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-pagination > div > span {
  color: var(--line);
}

.blog-pagination .icon-arrow {
  width: 1rem;
}

.blog-pagination > div:first-child .icon-arrow {
  transform: rotate(180deg);
}

.blog-pagination ol {
  display: flex;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-pagination ol :is(a, span) {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.blog-pagination ol span[aria-current="page"],
.blog-pagination ol a:hover,
.blog-pagination ol a:focus-visible {
  color: var(--ink-deep);
  background: var(--signal);
  border-color: var(--signal);
}

.article-taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.article-taxonomy :is(a, span) {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  color: var(--ink-soft);
  background: var(--fog);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 750;
}

.article-taxonomy a {
  color: var(--ink-deep);
  background: var(--signal);
  border-color: var(--signal);
}

.article-sources {
  max-width: 45rem;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--fog);
  border-top: 0.4rem solid var(--signal);
}

.article-sources h2 {
  margin-top: 0.75rem;
}

.article-sources > p:not(.micro-label) {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.article-sources ul {
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

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

.article-sources a {
  position: relative;
  display: grid;
  gap: 0.2rem;
  padding: 1rem 2.5rem 1rem 0;
}

.article-sources a strong {
  font-size: 0.9rem;
}

.article-sources a span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.article-sources .icon-corner {
  position: absolute;
  top: 1.2rem;
  right: 0;
  width: 1rem;
  color: var(--ink-soft);
}

.article-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.25rem;
  border: 1px solid var(--line);
}

.article-navigation > a {
  position: relative;
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 3.5rem 1.5rem 1.5rem;
  transition: color 160ms ease, background 160ms ease;
}

.article-navigation > a + a {
  border-left: 1px solid var(--line);
}

.article-navigation > a span {
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-navigation > a strong {
  max-width: 16ch;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.article-navigation > a .icon-arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 1.1rem;
}

.article-navigation > a[rel="prev"] .icon-arrow {
  transform: rotate(180deg);
}

.article-navigation > a:hover,
.article-navigation > a:focus-visible {
  color: var(--ink-deep);
  background: var(--signal);
}

.article-navigation-empty {
  min-height: 10rem;
  background: var(--fog);
}

@media (max-width: 860px) {
  .journal-card-featured {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .journal-card-featured figure {
    min-height: 55vw;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .blog-category-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .blog-category-nav a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .blog-category-nav a:last-child {
    border-bottom: 0;
  }

  .journal-grid,
  .article-navigation {
    grid-template-columns: 1fr;
  }

  .journal-card-featured {
    grid-column: auto;
  }

  .journal-card h3,
  .journal-card-featured h3 {
    font-size: clamp(1.8rem, 9vw, 2.65rem);
  }

  .blog-pagination {
    grid-template-columns: 1fr 1fr;
  }

  .blog-pagination ol {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-content: center;
  }

  .blog-pagination > div {
    grid-row: 2;
  }

  .article-sources {
    padding: 1.25rem;
  }

  .article-navigation > a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .article-navigation-empty {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journal-card figure img,
  .blog-category-nav a,
  .article-navigation > a {
    transition-duration: 0.01ms !important;
  }
}

/* 404 route recovery. */
.not-found {
  background:
    linear-gradient(90deg, transparent 0 49.95%, rgba(255, 255, 255, 0.06) 50% 50.05%, transparent 50.1%),
    var(--ink-deep);
}

.not-found > .not-found-shell {
  min-height: calc(100svh - var(--header));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.72fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-content: center;
  align-items: center;
  padding-block: clamp(4rem, 7vw, 7rem);
}

.not-found-visual {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(10rem, 0.72fr) minmax(0, 0.42fr);
  align-items: center;
}

.not-found-visual > span {
  position: relative;
  z-index: 1;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(9rem, 16vw, 17rem);
  font-weight: 700;
  letter-spacing: -0.11em;
  line-height: 0.72;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.42);
}

.not-found-visual > span:last-child {
  margin-left: -0.05em;
}

.not-found-visual figure {
  position: relative;
  z-index: 2;
  aspect-ratio: 3 / 4;
  margin: 0 -1.1rem;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px 999px 0.8rem 0.8rem;
}

.not-found-visual figure::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(180deg, transparent, rgba(20, 20, 20, 0.84));
  pointer-events: none;
}

.not-found-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.not-found-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  color: var(--signal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.not-found-message h1 {
  max-width: 10ch;
  margin: 0;
}

.not-found-message h1 em {
  color: var(--signal);
  font-family: var(--serif);
  font-weight: 400;
}

.not-found-message > p:not(.micro-label) {
  max-width: 35rem;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.66);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}

.not-found-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line-dark);
}

.not-found-services > span {
  grid-column: 1 / -1;
  padding: 1rem 0 0.35rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.not-found-services a {
  position: relative;
  min-height: 3rem;
  display: flex;
  align-items: center;
  padding: 0.65rem 2rem 0.65rem 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.not-found-services a:nth-of-type(even) {
  padding-left: 1rem;
  border-left: 1px solid var(--line-dark);
}

.not-found-services .icon-corner {
  position: absolute;
  right: 0.75rem;
  width: 0.9rem;
  color: var(--signal);
}

.not-found-routes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(10rem, 0.28fr) 1fr;
  gap: 2rem;
  align-items: start;
  padding-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line-dark);
}

.not-found-routes > span {
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.not-found-routes > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.not-found-routes a {
  position: relative;
  min-height: 9.5rem;
  display: flex;
  flex-direction: column;
  padding: 1rem 2.6rem 1rem 1rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: color 160ms ease, background 160ms ease;
}

.not-found-routes a:first-child {
  border-left: 1px solid var(--line-dark);
}

.not-found-routes a small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
}

.not-found-routes a strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.not-found-routes a p {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  line-height: 1.45;
}

.not-found-routes .icon-corner {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1rem;
  color: var(--signal);
}

.not-found-routes a:hover,
.not-found-routes a:focus-visible {
  color: var(--ink-deep);
  background: var(--signal);
}

.not-found-routes a:hover :is(small, p),
.not-found-routes a:focus-visible :is(small, p) {
  color: rgba(20, 20, 20, 0.62);
}

.not-found-routes a:hover .icon-corner,
.not-found-routes a:focus-visible .icon-corner {
  color: var(--ink-deep);
}

@media (max-width: 1000px) {
  .not-found > .not-found-shell {
    grid-template-columns: 1fr;
  }

  .not-found-visual {
    width: min(38rem, 100%);
    justify-self: center;
  }

  .not-found-message {
    max-width: 42rem;
  }

  .not-found-routes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .not-found {
    background: var(--ink-deep);
  }

  .not-found > .not-found-shell {
    gap: 3rem;
    padding-block: 3rem 5rem;
  }

  .not-found-visual {
    grid-template-columns: minmax(0, 0.38fr) minmax(8rem, 0.72fr) minmax(0, 0.38fr);
  }

  .not-found-visual > span {
    font-size: clamp(7rem, 31vw, 11rem);
  }

  .not-found-message h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .not-found-routes > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .not-found-routes a:nth-child(3) {
    border-left: 1px solid var(--line-dark);
  }
}

@media (max-width: 440px) {
  .not-found-services,
  .not-found-routes > div {
    grid-template-columns: 1fr;
  }

  .not-found-services a:nth-of-type(even) {
    padding-left: 0;
    border-left: 0;
  }

  .not-found-routes a,
  .not-found-routes a:nth-child(3) {
    min-height: 8.5rem;
    border-left: 1px solid var(--line-dark);
  }
}

@media (prefers-reduced-motion: reduce) {
  .not-found-routes a {
    transition-duration: 0.01ms !important;
  }
}
