:root {
  --bg: #f3f1ea;
  --bg-soft: #ece8de;
  --panel: #ffffff;
  --panel-soft: #fbfaf7;
  --ink: #080808;
  --ink-muted: #4d4d4d;
  --ink-soft: #7d7d7d;
  --line: rgba(8, 8, 8, 0.12);
  --line-strong: rgba(8, 8, 8, 0.28);
  --accent: #1d4ed8;
  --shadow: 0 20px 48px rgba(8, 8, 8, 0.05);
  --shadow-strong: 0 28px 68px rgba(8, 8, 8, 0.1);
  --max: 1320px;
  --font-body: "Noto Sans SC", sans-serif;
  --font-display: "Sora", "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(29, 78, 216, 0.05), transparent 26%),
    linear-gradient(180deg, #f7f6f2 0%, #f3f1ea 48%, #ece7dc 100%);
  color: var(--ink);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

code {
  padding: 0.12rem 0.32rem;
  background: rgba(29, 78, 216, 0.08);
  font-size: 0.92em;
}

.site-shell {
  position: relative;
  overflow-x: clip;
}

.chrome-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 8, 8, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.03) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95), transparent 88%);
  pointer-events: none;
  z-index: 0;
}

.shell,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.shell {
  width: min(var(--max), calc(100% - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 249, 245, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 4.6rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.site-brand-mark {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--ink);
  background: var(--panel);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.site-brand-copy strong {
  font-size: 0.88rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-brand-copy span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.34rem;
}

.site-nav a {
  padding: 0.54rem 0.72rem;
  border: 1px solid transparent;
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  border-color: var(--ink);
  background: var(--panel);
  color: var(--ink);
  transform: translateY(-1px);
}

.section {
  position: relative;
  z-index: 1;
  padding: 4.4rem 0;
  border-top: 1px solid var(--line);
}

.hero {
  border-top: 0;
  padding-top: 4.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.85fr);
  gap: 1.35rem;
  align-items: start;
}

.hero-copy,
.hero-panel,
.collaboration-copy {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.eyebrow,
.micro-label,
.card-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow,
.micro-label {
  color: var(--accent);
}

.hero h1,
.section-head h2,
.principle-card h2,
.project-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.hero h1 {
  font-size: clamp(3rem, 6.6vw, 6.4rem);
  max-width: 9.5ch;
}

.section-head h2,
.principle-card h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
}

.lede,
.principle-card p,
.work-card p,
.system-card p,
.timeline-card p,
.network-card p,
.collaboration-card p,
.ecosystem-node p,
.manifest-card p,
.signal-card p,
.project-intro,
.project-subtitle,
.story-copy p,
.footer-inner p,
.section-note {
  color: var(--ink-muted);
  line-height: 1.66;
}

.hero-actions,
.card-actions,
.footer-links,
.links-grid,
.site-nav,
.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1.08rem;
  border: 1px solid var(--ink);
  background: var(--panel);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-strong);
  background: var(--ink);
  color: var(--panel);
}

.button-primary {
  background: var(--ink);
  color: var(--panel);
}

.button-ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink-muted);
}

.button-small {
  min-height: 2.35rem;
  padding: 0.62rem 0.9rem;
  font-size: 0.66rem;
}

.signal-card,
.manifest-card,
.principle-card,
.work-card,
.system-card,
.timeline-card,
.network-card,
.collaboration-card,
.ecosystem-node,
.project-info,
.focus-card,
.story-card,
.template-card,
.archive-panel,
.links-panel,
.case-card,
.media-card,
.project-side-note {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.signal-card::before,
.manifest-card::before,
.principle-card::before,
.work-card::before,
.system-card::before,
.timeline-card::before,
.network-card::before,
.collaboration-card::before,
.ecosystem-node::before,
.project-info::before,
.focus-card::before,
.story-card::before,
.template-card::before,
.archive-panel::before,
.links-panel::before,
.case-card::before,
.media-card::before,
.project-side-note::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 4.5rem;
  height: 4px;
  background: var(--ink);
}

.signal-card,
.manifest-card,
.principle-card,
.system-card,
.timeline-card,
.network-card,
.collaboration-card,
.ecosystem-node,
.project-info,
.focus-card,
.story-card,
.template-card,
.archive-panel,
.links-panel,
.case-card,
.project-side-note {
  padding: 1.35rem;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.signal-grid div {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.signal-grid span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-grid strong {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  letter-spacing: -0.05em;
}

.signal-grid p,
.manifest-card p {
  margin: 0.35rem 0 0;
}

.intro-grid,
.system-grid,
.timeline-grid,
.ecosystem-grid,
.compact-grid,
.focus-grid,
.case-grid,
.story-grid,
.archive-grid {
  display: grid;
  gap: 1rem;
}

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

.principle-card-emphasis {
  background: linear-gradient(180deg, #ffffff 0%, #f1efe7 100%);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head-compact {
  margin-bottom: 1rem;
}

.inline-link {
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.work-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.work-card-media {
  display: block;
  aspect-ratio: 1.06 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.work-card-media img,
.media-card img,
.story-media img,
.project-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card-media img {
  transition: transform 280ms ease, filter 280ms ease;
}

.work-card:hover .work-card-media img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.work-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.05rem;
}

.card-topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}

.tag,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.28rem 0.68rem;
  border: 1px solid var(--line-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  background: rgba(29, 78, 216, 0.06);
}

.work-card h3,
.system-card h3,
.timeline-card h3,
.network-card h3,
.collaboration-card h3,
.ecosystem-node h3,
.case-card h3,
.story-copy h2,
.story-card h3,
.template-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.meta-line,
.timeline-date,
.network-card span,
.system-meta {
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

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

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

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

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

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

.network-card,
.collaboration-card,
.case-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.network-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: grayscale(1);
}

.collaboration-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

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

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

.template-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 1rem;
  align-items: start;
}

.ecosystem-node-active {
  background: linear-gradient(180deg, #ffffff 0%, #f1efe8 100%);
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.2rem;
}

.footer-links a {
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.is-reveal {
  opacity: 1;
  transform: translateY(20px);
  transition: transform 520ms ease;
}

.is-reveal.is-visible {
  transform: translateY(0);
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.3rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-link:hover {
  color: var(--ink);
}

.project-main .section {
  padding: 4rem 0;
}

.project-main .section:first-child {
  border-top: 0;
  padding-top: 4.8rem;
}

.project-hero {
  display: grid;
  gap: 1.25rem;
}

.project-hero-media {
  aspect-ratio: 16 / 8.8;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.project-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 1rem;
  align-items: start;
}

.project-title {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.project-subtitle {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
}

.project-side-note {
  padding-top: 1.2rem;
  font-size: 0.88rem;
  line-height: 1.7;
}

.project-intro {
  max-width: 62rem;
  font-size: 0.95rem;
  margin: 0;
}

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

.info-item label {
  display: block;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-item strong,
.info-item span {
  display: block;
  margin-top: 0.5rem;
}

.info-item strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

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

.focus-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.story-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.story-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-copy p,
.archive-copy p {
  margin: 0;
}

.media-stack,
.note-list {
  display: grid;
  gap: 1rem;
}

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

.media-card {
  overflow: hidden;
}

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

.media-card-landscape {
  aspect-ratio: 16 / 11;
}

.archive-panel {
  overflow: hidden;
}

.archive-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: start;
}

.embed-frame {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  background: #050505;
  overflow: hidden;
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.embed-frame iframe,
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.archive-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.story-card p,
.case-card p,
.archive-copy p {
  color: var(--ink-muted);
}

.template-card pre {
  margin: 0;
  overflow-x: auto;
  white-space: pre-wrap;
}

.template-card code {
  display: block;
  padding: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.94rem;
  line-height: 1.8;
  letter-spacing: -0.02em;
}

.links-panel h2,
.story-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.links-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.links-grid {
  margin-top: 0.2rem;
}

.related-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.related-strip a {
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.related-strip a:hover {
  color: var(--ink);
}

.scene-archive-page {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --panel: rgba(18, 18, 18, 0.96);
  --panel-soft: rgba(24, 24, 24, 0.98);
  --ink: #f3f2ee;
  --ink-muted: rgba(243, 242, 238, 0.72);
  --ink-soft: rgba(243, 242, 238, 0.46);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.22);
  --accent: #d7d4cb;
  --shadow: 0 20px 52px rgba(0, 0, 0, 0.24);
  --shadow-strong: 0 34px 94px rgba(0, 0, 0, 0.44);
  background: linear-gradient(180deg, #090909 0%, #0c0c0c 100%);
}

.scene-archive-page .chrome-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
}

.scene-archive-page .site-header {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--line);
}

.scene-archive-page .site-nav a {
  padding: 0.52rem 0.62rem;
  font-size: 0.74rem;
}

.scene-archive-page .site-brand-mark {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}

.scene-archive-page .site-nav a:hover,
.scene-archive-page .site-nav a.is-current {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.scene-archive-page .button {
  min-height: 2.55rem;
  font-size: 0.66rem;
  padding: 0.72rem 0.9rem;
}

.scene-archive-page .eyebrow,
.scene-archive-page .card-kicker,
.scene-archive-page .micro-label {
  font-size: 0.68rem;
}

.scene-archive-page .button-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: #090909;
}

.scene-archive-page .section {
  padding: 7.2rem 0;
}

.scene-archive-page .section-head h2 {
  font-size: clamp(1.1rem, 1.9vw, 1.55rem);
  max-width: 20ch;
}

.scene-archive-page .inline-link {
  color: var(--ink-muted);
}

.scene-hero-section {
  border-top: 0;
  padding-top: 7.2rem;
}

.scene-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.74fr);
  gap: 2.6rem;
  align-items: start;
}

.scene-archive-page .shell {
  width: min(1140px, calc(100% - 5rem));
}

.scene-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.2 / 1;
  border: 1px solid var(--line);
  box-shadow: none;
}

.scene-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02) brightness(0.82);
}

.scene-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(9, 9, 9, 0.54) 100%);
}

.scene-frame-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scene-sidecard,
.entry-card {
  position: relative;
  border: 1px solid var(--line);
}

.scene-sidecard::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 4rem;
  height: 4px;
  background: var(--ink);
}

.scene-sidecard {
  padding: 1.2rem 0 0;
  background: transparent;
  border-width: 1px 0 0;
  box-shadow: none;
}

.entry-card {
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.scene-sidecard h1,
.entry-card h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.scene-sidecard h1 {
  font-size: clamp(1.55rem, 2.15vw, 2rem);
  font-weight: 700;
}

.scene-copy,
.entry-card p {
  color: var(--ink-muted);
  line-height: 1.72;
}

.scene-copy {
  max-width: 24rem;
  font-size: 0.84rem;
}

.scene-sidecard .hero-actions {
  align-items: center;
  gap: 0.8rem;
}

.scene-text-link {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-text-link:hover {
  color: var(--ink);
}

.entry-grid {
  display: grid;
  gap: 1.75rem;
}

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

.entry-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 1px;
  background: var(--line);
}

.entry-card-media {
  display: block;
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.entry-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}

.entry-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem 0 0;
}

.entry-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
}

.entry-card p {
  font-size: 0.84rem;
}

@media (max-width: 1160px) {
  .hero-grid,
  .collaboration-panel,
  .project-title-row,
  .story-grid,
  .archive-grid,
  .dual-grid,
  .scene-hero-grid,
  .template-grid {
    grid-template-columns: 1fr;
  }

  .work-grid,
  .system-grid,
  .timeline-grid,
  .collaboration-grid,
  .ecosystem-grid,
  .project-info,
  .focus-grid,
  .entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .scene-archive-page .shell {
    width: min(1140px, calc(100% - 3rem));
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(var(--max), calc(100% - 1.2rem));
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: start;
  }

  .site-nav {
    justify-content: start;
  }

  .site-nav a {
    padding: 0.42rem 0.56rem;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 4.2rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .signal-grid,
  .intro-grid,
  .work-grid,
  .system-grid,
  .timeline-grid,
  .compact-grid,
  .collaboration-grid,
  .ecosystem-grid,
  .project-info,
  .focus-grid,
  .media-stack,
  .entry-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.6rem 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .button,
  .button-small {
    width: 100%;
  }

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

  .project-title {
    font-size: clamp(2.4rem, 14vw, 3.6rem);
  }

  .scene-archive-page .shell {
    width: min(1140px, calc(100% - 1.4rem));
  }
}
