:root {
  --ink: #06100d;
  --ink-soft: #0a1915;
  --ink-raised: #102822;
  --ink-line: rgba(232, 222, 199, .16);
  --paper: #eee5d2;
  --paper-light: #f6efdf;
  --paper-deep: #d8c9aa;
  --paper-line: rgba(15, 49, 42, .22);
  --bone: #ece4d1;
  --green: #123f36;
  --green-light: #2f675a;
  --verm: #bd6240;
  --verm-deep: #94462f;
  --verm-readable: #98462c;
  --gold: #c7a35e;
  --gold-pale: #d9c797;
  --muted-dark: #68645b;
  --muted-light: rgba(236, 228, 209, .64);
  --shell: 1360px;
  --gutter: clamp(24px, 4.6vw, 76px);
  --serif: "Noto Serif CJK SC", "Source Han Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --display: "Kaiti SC", "STKaiti", "KaiTi", "Noto Serif CJK SC", serif;
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
  --mono: "Cascadia Mono", "SFMono-Regular", "Roboto Mono", "Noto Sans Mono CJK SC", monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.78;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.scene {
  position: relative;
  isolation: isolate;
}

.scene--dark,
.scene--ink {
  color: var(--bone);
  background: var(--ink);
}

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

.scene--ivory {
  color: var(--ink);
  background: var(--paper-light);
}

.section-shell {
  position: relative;
  z-index: 2;
  width: min(var(--shell), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 18px;
  z-index: 999;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper-light);
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

#resonance-canvas {
  position: fixed;
  inset: 0;
  z-index: -5;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .26;
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .13;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 17% 31%, rgba(255, 255, 255, .4) 0 .55px, transparent .85px),
    radial-gradient(circle at 72% 66%, rgba(0, 0, 0, .32) 0 .55px, transparent .9px),
    linear-gradient(96deg, transparent 49.8%, rgba(255, 255, 255, .07) 50%, transparent 50.2%);
  background-size: 5px 5px, 7px 7px, 19px 19px;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  min-height: 78px;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--bone);
  border-bottom: 1px solid transparent;
  transition:
    min-height .3s ease,
    color .3s ease,
    background-color .3s ease,
    border-color .3s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: var(--gutter);
  bottom: -1px;
  left: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor 20%, currentColor 80%, transparent);
  opacity: 0;
  transition: opacity .3s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(6, 16, 13, .86);
  border-bottom-color: rgba(236, 228, 209, .08);
  backdrop-filter: blur(18px) saturate(1.2);
}

.site-header.is-scrolled::after {
  opacity: .1;
}

body.is-light-scene .site-header {
  color: var(--ink);
}

body.is-light-scene .site-header.is-scrolled {
  color: var(--ink);
  background: rgba(238, 229, 210, .9);
  border-bottom-color: rgba(6, 16, 13, .08);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: baseline;
  gap: 13px;
  text-decoration: none;
}

.brand strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .09em;
}

.brand span {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .28em;
  opacity: .58;
}

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

.site-header nav a,
.header-link {
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .13em;
  text-decoration: none;
  opacity: .68;
  transition: color .2s ease, opacity .2s ease;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--verm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"],
.header-link:hover {
  opacity: 1;
}

.site-header nav a:hover::after,
.site-header nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header nav a[aria-current="page"] {
  color: var(--gold-pale);
}

body.is-light-scene .site-header nav a[aria-current="page"] {
  color: var(--green);
}

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

/* Shared typography and controls */

.kicker,
.chapter,
.work-type,
.eyebrow {
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.kicker,
.eyebrow {
  color: rgba(236, 228, 209, .76);
}

.kicker span {
  margin-left: 15px;
  color: rgba(236, 228, 209, .42);
}

.chapter,
.work-type {
  color: var(--verm);
}

.scene--paper .chapter,
.scene--paper .work-type,
.scene--ivory .chapter,
.scene--ivory .work-type,
.route-card--works .route-card__top small {
  color: var(--verm-readable);
}

.page-heading,
.section-intro h1,
.section-intro h2,
.routes-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.7vw, 86px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.section-intro {
  max-width: 580px;
}

.section-intro--wide {
  max-width: 980px;
}

.section-intro p:not(.chapter):not(.eyebrow) {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(6, 16, 13, .67);
  font-size: 17px;
}

.section-intro--light p:not(.chapter):not(.eyebrow),
.scene--dark .section-intro p:not(.chapter):not(.eyebrow),
.scene--ink .section-intro p:not(.chapter):not(.eyebrow) {
  color: rgba(236, 228, 209, .68);
}

.button {
  min-height: 52px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .09em;
  text-decoration: none;
  transition:
    color .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    transform .22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button span {
  opacity: .5;
}

.button--light {
  color: var(--ink);
  border-color: var(--paper-light);
  background: var(--paper-light);
}

.button--light:hover {
  background: #fff9ec;
}

.button--ghost {
  color: inherit;
  border-color: rgba(236, 228, 209, .34);
  background: rgba(6, 16, 13, .06);
}

.button--ghost:hover {
  border-color: currentColor;
  background: rgba(236, 228, 209, .06);
}

.button--ink {
  color: var(--paper-light);
  border-color: var(--green);
  background: var(--green);
}

.button--ink:hover {
  background: var(--ink-raised);
}

/* Home / overture */

.hero {
  min-height: max(780px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--bone);
  background: var(--ink);
}

.hero-board {
  position: absolute;
  inset: 0;
  z-index: -4;
  background: url("assets/images/hero-resonance-board.webp") center / cover no-repeat;
  transform: scale(1.02);
  animation: board-breathe 18s ease-in-out infinite alternate;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 10, 7, .98) 0%, rgba(3, 10, 7, .88) 31%, rgba(3, 10, 7, .37) 61%, rgba(3, 10, 7, .13) 100%),
    linear-gradient(180deg, rgba(3, 10, 7, .74), transparent 34%, transparent 67%, rgba(3, 10, 7, .82));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1500px, calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
  padding: 142px 0 106px;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(70px, 7.3vw, 128px);
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.hero h1 span,
.hero h1 em {
  display: block;
  font-style: normal;
}

.hero h1 em {
  margin-left: .42em;
  color: var(--paper-light);
}

.hero-plain {
  max-width: 670px;
  margin: 40px 0 0;
  color: rgba(236, 228, 209, .8);
  font-size: clamp(16px, 1.25vw, 20px);
}

.hero-thesis {
  margin: 23px 0 0;
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .03em;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags {
  margin: 29px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 25px;
  list-style: none;
}

.hero-tags li {
  color: rgba(236, 228, 209, .52);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
}

.hero-tags li::before {
  content: "·";
  margin-right: 9px;
  color: var(--verm);
}

.hero-orbit {
  position: relative;
  justify-self: end;
  width: min(38vw, 570px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(236, 228, 209, .24);
  border-radius: 50%;
}

.orbit-ring::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--verm);
}

.orbit-ring--a {
  inset: 5%;
  border-style: dashed;
  animation: orbit 39s linear infinite;
}

.orbit-ring--b {
  inset: 22%;
  border-color: rgba(189, 98, 64, .42);
  animation: orbit 24s linear infinite reverse;
}

.orbit-ring--c {
  inset: 39%;
  border-color: rgba(236, 228, 209, .3);
}

.orbit-seed {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 11px rgba(199, 163, 94, .08),
    0 0 48px rgba(199, 163, 94, .4);
  transform: translate(-50%, -50%);
}

.orbit-label {
  position: absolute;
  top: 47%;
  color: rgba(236, 228, 209, .62);
  font-family: var(--display);
  font-size: 26px;
}

.orbit-label--in {
  left: 1%;
}

.orbit-label--out {
  right: 4%;
}

.hero-foot {
  position: absolute;
  right: var(--gutter);
  bottom: 24px;
  left: var(--gutter);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(236, 228, 209, .46);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
}

.hero-foot a {
  color: rgba(236, 228, 209, .68);
  text-decoration: none;
}

.hero-foot a::after {
  content: " ↓";
  color: var(--verm);
}

/* Home / four movements */

.routes {
  overflow: hidden;
  padding: clamp(118px, 12vw, 180px) 0;
  color: var(--bone);
  background:
    radial-gradient(circle at 75% 38%, rgba(31, 84, 72, .24), transparent 34%),
    linear-gradient(137deg, #06100d 0%, #0b1b17 56%, #06110e 100%);
}

.routes::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/images/hero-resonance-board.webp") 73% 45% / cover no-repeat;
  opacity: .045;
  filter: saturate(.5);
}

.routes::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background:
    repeating-linear-gradient(0deg, transparent 0 43px, rgba(236, 228, 209, .08) 43px 44px, transparent 44px 87px);
  mask-image: linear-gradient(90deg, transparent 0 29%, #000 48%, #000);
}

.routes .section-shell {
  display: grid;
  grid-template-columns: minmax(280px, .54fr) minmax(620px, 1fr);
  gap: clamp(62px, 7vw, 118px);
  align-items: center;
}

.routes-intro {
  position: relative;
  z-index: 2;
  align-self: start;
  padding-top: 38px;
}

.routes-intro::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 42px;
  background: linear-gradient(90deg, var(--verm), transparent);
}

.routes-intro h2 {
  font-size: clamp(44px, 4.4vw, 68px);
}

.routes-intro h2 span,
.product-questions__intro h2 span {
  display: block;
  white-space: nowrap;
}

.routes-intro > p:last-child {
  max-width: 450px;
  margin: 28px 0 0;
  color: rgba(236, 228, 209, .61);
  font-size: 16px;
}

.route-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: min(70vw, 760px);
  border: 1px solid rgba(236, 228, 209, .2);
  background: rgba(236, 228, 209, .16);
  box-shadow: 0 50px 130px rgba(0, 0, 0, .26);
  isolation: isolate;
}

.route-map::before,
.route-map::after {
  content: "";
  position: absolute;
  z-index: 8;
  pointer-events: none;
}

.route-map::before {
  top: 50%;
  left: 50%;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(236, 228, 209, .5);
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 8px rgba(6, 16, 13, .7),
    0 0 0 9px rgba(236, 228, 209, .2),
    0 0 50px rgba(199, 163, 94, .38);
  transform: translate(-50%, -50%);
}

.route-map::after {
  inset: 24px;
  border: 1px solid rgba(236, 228, 209, .08);
  border-radius: 50%;
  opacity: .8;
}

.route-card {
  position: relative;
  z-index: 1;
  min-height: 360px;
  padding: clamp(28px, 3.2vw, 50px);
  display: grid;
  align-content: space-between;
  overflow: hidden;
  color: var(--bone);
  background: var(--ink-soft);
  text-decoration: none;
  isolation: isolate;
}

.route-card:nth-child(odd) {
  border-right: 1px solid rgba(236, 228, 209, .14);
}

.route-card:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(236, 228, 209, .14);
}

a.route-card {
  transition: color .3s ease, filter .3s ease;
}

a.route-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid transparent;
  transform: scale(.965);
  transition: border-color .3s ease, transform .35s ease;
}

a.route-card:hover::after {
  border-color: rgba(236, 228, 209, .36);
  transform: scale(.93);
}

a.route-card:hover {
  filter: brightness(1.08);
}

.route-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.route-card__top small,
.route-card__top span {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .16em;
}

.route-card__top small {
  color: var(--verm);
}

.route-card__top span {
  color: rgba(236, 228, 209, .42);
}

.route-card > div:nth-child(2) {
  position: relative;
  z-index: 2;
  align-self: end;
}

.route-card h3 {
  margin: 50px 0 0;
  font-family: var(--serif);
  font-size: clamp(33px, 3vw, 50px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.045em;
}

.route-card p {
  max-width: 390px;
  margin: 16px 0 0;
  color: rgba(236, 228, 209, .59);
  font-size: 14px;
}

.route-card > b {
  position: absolute;
  right: clamp(28px, 3.2vw, 50px);
  bottom: clamp(28px, 3.2vw, 50px);
  z-index: 3;
  color: var(--gold);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transition: transform .3s ease;
}

.route-card > b + * {
  padding-right: 38px;
}

a.route-card:hover > b {
  transform: translate(4px, -4px);
}

.route-card--film {
  background:
    linear-gradient(160deg, rgba(4, 13, 10, .48), rgba(4, 13, 10, .93)),
    url("assets/images/concept-poster.webp") center / cover no-repeat;
}

.route-card--film::before {
  content: "";
  position: absolute;
  inset: 15% 10% 13%;
  z-index: -1;
  border: 1px solid rgba(236, 228, 209, .12);
  box-shadow: inset 0 0 0 7px rgba(6, 16, 13, .24);
  transform: rotate(-1.5deg);
}

.route-card--works {
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 34%, var(--paper) 0 8%, transparent 8.3%),
    radial-gradient(circle at 72% 34%, var(--green) 0 24%, transparent 24.3%),
    radial-gradient(circle at 72% 34%, rgba(18, 63, 54, .23) 0 35%, transparent 35.3%),
    linear-gradient(148deg, var(--paper-light), #d8c8a8);
}

.route-card--works .route-card__top span {
  color: rgba(6, 16, 13, .42);
}

.route-card--works p {
  color: rgba(6, 16, 13, .62);
}

.route-card--works::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .32;
  background:
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(18, 63, 54, .18) 30px 31px, transparent 31px 60px);
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.route-card--product {
  background:
    linear-gradient(120deg, rgba(6, 16, 13, .78), rgba(6, 16, 13, .42)),
    url("assets/images/inscription-board.webp") 25% center / cover no-repeat;
}

.route-card--product::before {
  content: "念　谱　声　改　再";
  position: absolute;
  right: 8%;
  bottom: 14%;
  z-index: -1;
  width: 16px;
  color: rgba(199, 163, 94, .28);
  font-family: var(--display);
  font-size: 18px;
  line-height: 2.5;
}

.route-card--more {
  background:
    radial-gradient(circle at 67% 47%, transparent 0 13%, rgba(199, 163, 94, .14) 13.2% 13.5%, transparent 13.8% 24%, rgba(236, 228, 209, .08) 24.2% 24.5%, transparent 24.8%),
    linear-gradient(150deg, #102b24, #081511);
}

.route-card--more::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(17deg, transparent 49.8%, rgba(236, 228, 209, .12) 50%, transparent 50.2%);
}

.route-card__seed {
  position: absolute;
  right: 30%;
  top: 46%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--verm);
  box-shadow: 0 0 0 7px rgba(189, 98, 64, .08);
}

/* Home / closing statement */

.culture {
  min-height: min(980px, 100svh);
  padding: clamp(110px, 12vw, 180px) 0 84px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--bone);
  background:
    radial-gradient(circle at 79% 36%, rgba(38, 91, 78, .24), transparent 28%),
    linear-gradient(160deg, #07120f 0 54%, #0c221c);
}

.culture::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/images/inscription-board.webp") center / cover no-repeat;
  opacity: .11;
}

.culture::after {
  content: "";
  position: absolute;
  right: 10vw;
  bottom: 13%;
  z-index: -1;
  width: min(58vw, 820px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 228, 209, .36) 22%, var(--verm) 76%, transparent);
  transform: rotate(-8deg);
  transform-origin: right;
}

.culture-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.culture-field i {
  position: absolute;
  border: 1px solid rgba(236, 228, 209, .1);
  border-radius: 50%;
}

.culture-field i:nth-child(1) {
  top: 11%;
  right: 9%;
  width: 34vw;
  height: 34vw;
}

.culture-field i:nth-child(2) {
  top: 19%;
  right: 17%;
  width: 19vw;
  height: 19vw;
  border-color: rgba(189, 98, 64, .19);
}

.culture-field i:nth-child(3) {
  top: 28%;
  right: 25%;
  width: 10px;
  height: 10px;
  border: 0;
  background: var(--gold);
  box-shadow: 0 0 35px rgba(199, 163, 94, .45);
}

.culture-field i:nth-child(4) {
  bottom: 15%;
  left: 5%;
  width: 13vw;
  height: 13vw;
  opacity: .42;
}

.culture-field i:nth-child(5) {
  bottom: 20%;
  left: 14%;
  width: 5px;
  height: 5px;
  border: 0;
  background: var(--verm);
}

.culture-field i:nth-child(6) {
  top: -16vw;
  left: 33%;
  width: 31vw;
  height: 31vw;
  border-style: dashed;
  opacity: .5;
}

.culture-inner {
  width: min(1180px, calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

.culture-prose {
  width: min(520px, 60%);
  margin: 0;
  color: rgba(236, 228, 209, .62);
  font-family: var(--serif);
  font-size: clamp(16px, 1.35vw, 20px);
}

.culture h2 {
  width: fit-content;
  margin: clamp(75px, 9vw, 130px) 0 0 auto;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(58px, 7.8vw, 118px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.065em;
  text-align: right;
}

.culture-brand {
  margin-top: clamp(80px, 9vw, 130px);
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
}

.culture-brand strong {
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: .12em;
}

.culture-brand span {
  color: rgba(236, 228, 209, .46);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .28em;
}

.culture-nav {
  float: right;
  margin-top: 18px;
  display: flex;
  gap: 30px;
}

.culture-nav a {
  color: rgba(236, 228, 209, .66);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-decoration: none;
}

.culture-nav a:hover {
  color: var(--paper-light);
}

.culture-license {
  clear: both;
  margin: 32px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(236, 228, 209, .12);
  color: rgba(236, 228, 209, .28);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .17em;
}

/* Film */

.film-page #resonance-canvas {
  display: none;
}

.film-page.is-video-playing .page-grain {
  display: none;
}

.film {
  min-height: max(760px, 100svh);
  padding: 142px 0 108px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(44, 101, 87, .24), transparent 34%),
    linear-gradient(135deg, #06100d, #0a1c17);
}

.film::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .08;
  background: url("assets/images/hero-resonance-board.webp") 78% center / cover no-repeat;
}

.film::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .26;
  background:
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(236, 228, 209, .09) 38px 39px, transparent 39px 77px);
  mask-image: linear-gradient(90deg, transparent, #000 44%, #000);
}

.film-grid {
  display: grid;
  grid-template-columns: minmax(310px, .7fr) minmax(560px, 1.3fr);
  gap: clamp(56px, 8vw, 128px);
  align-items: center;
}

.film .section-intro {
  position: relative;
}

.film-intro .page-heading {
  font-size: clamp(52px, 4.1vw, 74px);
}

.film .section-intro::after {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  margin-top: 38px;
  background: linear-gradient(90deg, var(--verm), transparent);
}

.film-stage {
  position: relative;
}

.film-frame {
  position: relative;
  padding: 13px;
  border: 1px solid rgba(236, 228, 209, .24);
  background: rgba(1, 7, 5, .7);
  box-shadow: 0 42px 110px rgba(0, 0, 0, .33);
}

.film-frame::before,
.film-frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 78px;
  height: 1px;
  background: var(--verm);
}

.film-frame::before {
  top: 54px;
  left: -31px;
}

.film-frame::after {
  right: -31px;
  bottom: 54px;
}

.film-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.page-bridge,
.next-chapter {
  padding: 78px 0;
  border-top: 1px solid rgba(236, 228, 209, .12);
  color: var(--bone);
  background: var(--ink);
}

.page-bridge .section-shell,
.next-chapter .section-shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.page-bridge h2,
.next-chapter h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.page-bridge p,
.next-chapter p {
  max-width: 620px;
  margin: 15px 0 0;
  color: rgba(236, 228, 209, .6);
}

/* Works */

.works {
  min-height: 100svh;
  padding: 145px 0 128px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.paper-board {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("assets/images/myriad-paper-board.webp") center / cover no-repeat;
  opacity: .46;
}

.paper-board::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(238, 229, 210, .97) 0 18%, rgba(238, 229, 210, .7) 51%, rgba(238, 229, 210, .92)),
    linear-gradient(180deg, rgba(238, 229, 210, .86), transparent 30%, rgba(238, 229, 210, .82));
}

.works .section-intro {
  margin-bottom: clamp(72px, 8vw, 112px);
}

.works .section-intro .works-origin-note {
  width: fit-content;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--verm-readable);
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.5;
  letter-spacing: .08em;
}

.works-origin-note::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--verm-readable);
}

.work-meta .meta-origin dd,
.music-row__facts .meta-origin dd {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 7px 4px;
  color: var(--verm-readable);
  border: 1px solid currentColor;
  font: 600 17px/1 var(--display);
  letter-spacing: .16em;
  transform: rotate(-2deg);
}

.hero-work {
  padding: 18px 0 90px;
  display: grid;
  grid-template-columns: minmax(330px, .76fr) minmax(0, 1.24fr);
  gap: clamp(58px, 8vw, 132px);
  align-items: center;
  border-bottom: 1px solid var(--paper-line);
}

.work-disc {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(238, 229, 210, .08) 0 1px, transparent 1px 7px),
    radial-gradient(circle, #174b40 0 36%, #0f392f 36.4% 100%);
  box-shadow:
    0 38px 85px rgba(6, 16, 13, .16),
    inset 0 0 0 1px rgba(6, 16, 13, .25);
}

.work-disc::before {
  content: "";
  position: absolute;
  inset: 46%;
  z-index: 2;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 10px rgba(238, 229, 210, .3);
}

.work-disc::after {
  content: "";
  position: absolute;
  top: 4%;
  right: 19%;
  width: 24%;
  height: 24%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  filter: blur(7px);
}

.work-disc > span {
  position: relative;
  z-index: 3;
  color: var(--paper-light);
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: .08em;
}

.work-disc-ring {
  position: absolute;
  border: 1px solid rgba(238, 229, 210, .25);
  border-radius: 50%;
}

.work-disc-ring::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--verm);
}

.work-disc-ring--1 {
  inset: 8%;
  border-style: dashed;
  animation: orbit 42s linear infinite;
}

.work-disc-ring--2 {
  inset: 21%;
  border-color: rgba(199, 163, 94, .5);
  animation: orbit 28s linear infinite reverse;
}

.work-disc-ring--3 {
  inset: 34%;
}

.work-art {
  position: relative;
  isolation: isolate;
  width: min(100%, 480px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: var(--paper-light);
  border: 1px solid rgba(6, 16, 13, .28);
  background:
    radial-gradient(circle at 78% 22%, rgba(199, 163, 94, .12), transparent 29%),
    repeating-linear-gradient(90deg, transparent 0 68px, rgba(236, 228, 209, .035) 68px 69px),
    repeating-linear-gradient(0deg, transparent 0 68px, rgba(236, 228, 209, .035) 68px 69px),
    linear-gradient(145deg, #103e35, #071b17 74%);
  box-shadow:
    0 38px 90px rgba(6, 16, 13, .16),
    inset 0 0 0 10px rgba(236, 228, 209, .025);
}

.work-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .18;
  background: url("assets/images/inscription-board.webp") 67% center / cover no-repeat;
  mix-blend-mode: screen;
}

.work-art::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -38%;
  z-index: -1;
  width: 112%;
  aspect-ratio: 1;
  border: 1px solid rgba(236, 228, 209, .12);
  border-radius: 50%;
  box-shadow:
    0 0 0 74px rgba(6, 16, 13, .08),
    0 0 0 75px rgba(236, 228, 209, .055);
}

.work-art__feather {
  position: absolute;
  inset: 36px 9px 74px 17px;
  width: calc(100% - 26px);
  height: calc(100% - 110px);
  overflow: visible;
}

.work-art__staff path,
.work-art__orbits circle,
.work-art__stem,
.work-art__barb {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.work-art__staff path {
  stroke: rgba(236, 228, 209, .12);
  stroke-width: 1;
  stroke-dasharray: 9 13;
}

.work-art__orbits circle {
  stroke: rgba(236, 228, 209, .13);
  stroke-width: 1;
}

.work-art__orbits circle:last-child {
  stroke: rgba(189, 98, 64, .28);
}

.work-art__vane path:first-child {
  fill: rgba(189, 98, 64, .09);
}

.work-art__vane path:last-child {
  fill: rgba(236, 228, 209, .045);
}

.work-art__stem {
  stroke: var(--gold-pale);
  stroke-width: 4.5;
  stroke-linecap: round;
}

.work-art__barb {
  stroke: rgba(236, 228, 209, .72);
  stroke-width: 6;
  stroke-linecap: round;
}

.work-art__barb--red {
  stroke: var(--verm);
  stroke-width: 8;
}

.work-art__notes circle {
  fill: var(--gold);
}

.work-art__notes circle:first-child,
.work-art__notes circle:last-child {
  fill: var(--verm);
}

.work-art__caption {
  position: absolute;
  right: 31px;
  bottom: 27px;
  left: 31px;
  z-index: 3;
  padding-top: 17px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-top: 1px solid rgba(236, 228, 209, .24);
}

.work-art__caption span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .16em;
  color: rgba(236, 228, 209, .48);
}

.work-art__caption strong {
  grid-row: 1;
  font-family: var(--display);
  font-size: 45px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .08em;
}

.work-art__caption span {
  grid-column: 2;
  grid-row: 1;
  padding-bottom: 4px;
}

.work-body h2,
.work-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.05em;
}

.work-subtitle {
  margin: 7px 0 0;
  color: var(--green);
  font-family: var(--serif);
  font-size: 21px;
}

.work-description {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(6, 16, 13, .66);
}

.audio-player {
  --progress: 0%;
  position: relative;
  margin-top: 34px;
  min-height: 78px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto auto auto;
  gap: 11px;
  align-items: center;
}

.audio-play {
  position: relative;
  z-index: 3;
  width: 52px;
  height: 52px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  background: rgba(238, 229, 210, .38);
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.audio-play:hover {
  color: var(--paper-light);
  background: var(--green);
  transform: scale(1.04);
}

.audio-play i {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid currentColor;
}

.audio-play.is-playing i {
  width: 12px;
  height: 15px;
  margin: 0;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 35%, transparent 35% 65%, currentColor 65%);
}

.audio-wave {
  width: 100%;
  height: 78px;
  grid-column: 2 / 6;
}

.audio-line {
  position: relative;
  height: 1px;
  overflow: visible;
  background: rgba(18, 63, 54, .22);
}

.audio-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--progress);
  height: 1px;
  background: var(--verm);
}

.audio-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--progress);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--verm);
  transform: translate(-50%, -50%);
}

.audio-seek {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 68px;
  z-index: 2;
  width: calc(100% - 68px);
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.audio-seek:focus-visible {
  opacity: 1;
  accent-color: var(--verm);
  outline-offset: -2px;
}

body.is-light-scene :focus-visible {
  outline-color: var(--green);
}

.audio-player time,
.audio-player > span {
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 10px;
}

.work-meta {
  margin: 33px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--paper-line);
  border-left: 1px solid var(--paper-line);
}

.work-meta div {
  min-width: 0;
  padding: 16px 17px;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

.work-meta dt {
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
}

.work-meta dd {
  margin: 5px 0 0;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.work-credit {
  margin: 19px 0 0;
  color: var(--muted-dark);
  font-size: 13px;
}

.work-credit a,
.credits a {
  color: var(--green);
  text-underline-offset: 4px;
}

.work-credit a:hover,
.credits a:hover {
  color: var(--verm-deep);
}

.more-works,
.works-list-section {
  position: relative;
  overflow: hidden;
  padding: 126px 0 140px;
  color: var(--bone);
  background:
    radial-gradient(circle at 12% 25%, rgba(36, 88, 74, .2), transparent 26%),
    var(--ink);
}

.more-works::before,
.works-list-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .12;
  background:
    repeating-linear-gradient(0deg, transparent 0 43px, rgba(236, 228, 209, .16) 43px 44px, transparent 44px 87px);
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.more-works .section-intro,
.works-list-section .section-intro {
  margin-bottom: 68px;
}

.more-works .section-intro p:not(.chapter),
.works-list-section .section-intro p:not(.chapter) {
  color: rgba(236, 228, 209, .64);
}

.music-list {
  border-top: 1px solid rgba(236, 228, 209, .18);
}

.music-row {
  position: relative;
  min-height: 215px;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 66px minmax(300px, .78fr) minmax(280px, .92fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  border-bottom: 1px solid rgba(236, 228, 209, .14);
  transition: background-color .25s ease, padding .25s ease;
}

.music-row::before {
  content: "";
  position: absolute;
  inset: 7px -24px;
  z-index: -1;
  background: rgba(236, 228, 209, .025);
  opacity: 0;
  transition: opacity .25s ease;
}

.music-row:hover::before,
.music-row.is-playing::before {
  opacity: 1;
}

.music-row__number {
  align-self: start;
  padding-top: 8px;
  color: var(--verm);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
}

.music-row__copy header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.music-row__copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.music-row__copy time {
  color: rgba(236, 228, 209, .43);
  font-family: var(--mono);
  font-size: 10px;
}

.music-row__copy p {
  max-width: 610px;
  margin: 13px 0 0;
  color: rgba(236, 228, 209, .62);
  font-size: 14px;
}

.music-row__copy small {
  display: block;
  margin-top: 12px;
  color: rgba(236, 228, 209, .4);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .07em;
}

.audio-player--row {
  margin: 0;
  min-height: 62px;
  grid-template-columns: 52px minmax(0, 1fr) auto auto auto;
}

.audio-player--row .audio-play {
  width: 46px;
  height: 46px;
  color: var(--gold-pale);
  border-color: rgba(236, 228, 209, .38);
  background: transparent;
}

.audio-player--row .audio-play:hover {
  color: var(--ink);
  background: var(--gold-pale);
}

.audio-player--row .audio-line {
  background: rgba(236, 228, 209, .18);
}

.audio-player--row time,
.audio-player--row > span {
  color: rgba(236, 228, 209, .43);
}

.audio-player--row .audio-seek {
  left: 62px;
  width: calc(100% - 62px);
}

.works-notes,
.works-credit-link {
  margin-top: 42px;
  color: rgba(236, 228, 209, .52);
  font-size: 13px;
}

.works-notes a,
.works-credit-link a {
  color: var(--gold-pale);
  text-underline-offset: 4px;
}

/* Product */

.product-hero,
.product-intro,
.product-page-hero {
  min-height: max(720px, 92svh);
  padding: 150px 0 110px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--bone);
  background: var(--ink);
}

.product-hero::before,
.product-intro::before,
.product-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("assets/images/inscription-board.webp") center / cover no-repeat;
  opacity: .76;
}

.product-hero::after,
.product-intro::after,
.product-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 15, 12, .98) 0 37%, rgba(5, 15, 12, .71) 65%, rgba(5, 15, 12, .3)),
    linear-gradient(180deg, rgba(5, 15, 12, .5), transparent 55%, rgba(5, 15, 12, .75));
}

.product-hero .section-intro,
.product-intro .section-intro,
.product-page-hero .section-intro {
  max-width: 750px;
}

.product-hero .page-heading,
.product-intro .page-heading,
.product-page-hero .page-heading {
  font-size: clamp(58px, 7vw, 108px);
}

.product-orbit {
  position: absolute;
  right: 6vw;
  bottom: 9%;
  width: min(34vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(236, 228, 209, .16);
  border-radius: 50%;
  pointer-events: none;
}

.product-orbit::before,
.product-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.product-orbit::before {
  inset: 23%;
  border: 1px dashed rgba(199, 163, 94, .34);
}

.product-orbit::after {
  inset: 48%;
  background: var(--verm);
  box-shadow: 0 0 0 8px rgba(189, 98, 64, .09);
}

.product-process,
.how,
.process {
  overflow: hidden;
  padding: clamp(116px, 12vw, 176px) 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(238, 229, 210, .94), rgba(238, 229, 210, .94)),
    url("assets/images/myriad-paper-board.webp") center / cover no-repeat;
}

.product-process::before,
.how::before,
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .3;
  background:
    repeating-linear-gradient(0deg, transparent 0 37px, rgba(18, 63, 54, .14) 37px 38px, transparent 38px 76px);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 76%, transparent);
}

.process-flow,
.process-list,
.product-steps {
  margin-top: clamp(68px, 8vw, 108px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

.process-step,
.product-step,
.process-flow > article,
.process-list > article {
  position: relative;
  min-height: 380px;
  padding: 32px 25px 38px;
  border-right: 1px solid var(--paper-line);
}

.process-step:last-child,
.product-step:last-child,
.process-flow > article:last-child,
.process-list > article:last-child {
  border-right: 0;
}

.process-step > span,
.product-step > span,
.process-flow > article > span,
.process-list > article > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(18, 63, 54, .42);
  border-radius: 50%;
  color: var(--verm-deep);
  font-family: var(--display);
  font-size: 20px;
}

.process-step h3,
.product-step h3,
.process-flow > article h3,
.process-list > article h3 {
  margin: 78px 0 16px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.25;
}

.process-step p,
.product-step p,
.process-flow > article p,
.process-list > article p {
  margin: 0;
  color: rgba(6, 16, 13, .62);
  font-size: 14px;
}

.process-step::after,
.product-step::after,
.process-flow > article::after,
.process-list > article::after {
  content: "";
  position: absolute;
  top: 53px;
  left: 67px;
  width: calc(100% - 43px);
  height: 1px;
  background: linear-gradient(90deg, var(--verm), rgba(18, 63, 54, .22));
}

.process-step:last-child::after,
.product-step:last-child::after,
.process-flow > article:last-child::after,
.process-list > article:last-child::after {
  display: none;
}

.product-values,
.why,
.value-section {
  overflow: hidden;
  padding: clamp(116px, 12vw, 176px) 0;
  color: var(--bone);
  background:
    radial-gradient(circle at 76% 54%, rgba(35, 90, 76, .24), transparent 31%),
    var(--ink);
}

.product-values::before,
.why::before,
.value-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .11;
  background: url("assets/images/inscription-board.webp") center / cover no-repeat;
}

.value-grid,
.product-value-grid,
.why-grid {
  margin-top: clamp(68px, 8vw, 106px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(236, 228, 209, .18);
}

.value-card,
.product-value,
.value-grid > article,
.product-value-grid > article,
.why-grid > article {
  position: relative;
  min-height: 360px;
  padding: 38px 36px 42px 0;
  border-right: 1px solid rgba(236, 228, 209, .15);
}

.value-card + .value-card,
.product-value + .product-value,
.value-grid > article + article,
.product-value-grid > article + article,
.why-grid > article + article {
  padding-left: 36px;
}

.value-card:last-child,
.product-value:last-child,
.value-grid > article:last-child,
.product-value-grid > article:last-child,
.why-grid > article:last-child {
  border-right: 0;
}

.value-card::before,
.product-value::before,
.value-grid > article::before,
.product-value-grid > article::before,
.why-grid > article::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 92px;
  border-radius: 50%;
  background: var(--verm);
  box-shadow: 0 0 0 7px rgba(189, 98, 64, .08);
}

.value-card h3,
.product-value h3,
.value-grid > article h3,
.product-value-grid > article h3,
.why-grid > article h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -.035em;
}

.value-card p,
.product-value p,
.value-grid > article p,
.product-value-grid > article p,
.why-grid > article p {
  margin: 20px 0 0;
  color: rgba(236, 228, 209, .6);
}

.product-details,
.details,
.detail-section {
  overflow: hidden;
  padding: clamp(112px, 12vw, 170px) 0;
  color: var(--ink);
  background: var(--paper-light);
}

.detail-grid,
.product-detail-grid,
.detail-list {
  margin-top: clamp(62px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--paper-line);
  background: var(--paper-line);
}

.detail-card,
.detail-item,
.detail-grid > article,
.product-detail-grid > article,
.detail-list > article {
  min-height: 215px;
  padding: 32px;
  background:
    linear-gradient(rgba(246, 239, 223, .94), rgba(246, 239, 223, .94)),
    url("assets/images/myriad-paper-board.webp") center / cover no-repeat;
}

.detail-card small,
.detail-item small,
.detail-grid > article small,
.product-detail-grid > article small,
.detail-list > article small {
  color: var(--verm-deep);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .13em;
}

.detail-card h3,
.detail-item h3,
.detail-grid > article h3,
.product-detail-grid > article h3,
.detail-list > article h3 {
  margin: 45px 0 0;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.25;
}

.detail-card p,
.detail-item p,
.detail-grid > article p,
.product-detail-grid > article p,
.detail-list > article p {
  margin: 12px 0 0;
  color: rgba(6, 16, 13, .62);
  font-size: 14px;
}

.product-boundary,
.boundary,
.honest-boundary {
  max-width: 960px;
  margin: 72px 0 0 auto;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--verm);
  color: rgba(6, 16, 13, .66);
}

.product-boundary h3,
.boundary h3,
.honest-boundary h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 24px;
}

.product-boundary p,
.boundary p,
.honest-boundary p {
  margin: 0;
}

/* Credits */

.credits {
  min-height: 100svh;
  padding: 148px 0 132px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(238, 229, 210, .9), rgba(238, 229, 210, .96)),
    url("assets/images/myriad-paper-board.webp") center / cover no-repeat;
}

.credits::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -8vw;
  z-index: -1;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(18, 63, 54, .14);
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw rgba(18, 63, 54, .025),
    0 0 0 16vw rgba(18, 63, 54, .018);
}

.credits .section-intro {
  margin-bottom: 74px;
}

.credits-ledger,
.credit-list,
.credits-list {
  max-width: 1060px;
  border-top: 1px solid var(--paper-line);
}

.credit-entry,
.credit-item,
.credits-ledger > article,
.credit-list > article,
.credits-list > article {
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(210px, .45fr) minmax(0, 1fr);
  gap: 46px;
  border-bottom: 1px solid var(--paper-line);
}

.credit-entry h2,
.credit-entry h3,
.credit-item h2,
.credit-item h3,
.credits-ledger > article h2,
.credits-ledger > article h3,
.credit-list > article h2,
.credit-list > article h3,
.credits-list > article h2,
.credits-list > article h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.25;
}

.credit-entry p,
.credit-item p,
.credits-ledger > article p,
.credit-list > article p,
.credits-list > article p {
  margin: 0 0 10px;
  color: rgba(6, 16, 13, .65);
}

.credit-entry small,
.credit-item small,
.credits-ledger > article small,
.credit-list > article small,
.credits-list > article small {
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
}

.credits-note,
.credit-scope {
  max-width: 900px;
  margin-top: 64px;
  padding: 24px 28px;
  border: 1px solid var(--paper-line);
  background: rgba(246, 239, 223, .55);
  color: rgba(6, 16, 13, .66);
}

.credits-note h2,
.credit-scope h2 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 23px;
}

.credits-note p,
.credit-scope p {
  margin: 0;
}

/* Compact footer */

.site-footer {
  padding: 68px 0 38px;
  overflow: hidden;
  border-top: 1px solid rgba(236, 228, 209, .1);
  color: var(--bone);
  background:
    radial-gradient(circle at 87% 30%, rgba(35, 86, 73, .19), transparent 24%),
    var(--ink);
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -170px;
  z-index: -1;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(236, 228, 209, .07);
  border-radius: 50%;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
}

.site-footer__mark {
  display: inline-flex;
  align-items: baseline;
  gap: 15px;
  text-decoration: none;
}

.site-footer__mark strong {
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: .11em;
}

.site-footer__mark span {
  color: rgba(236, 228, 209, .45);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .27em;
}

.site-footer__slogan {
  margin: 18px 0 0;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.2;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px 28px;
}

.site-footer nav a {
  color: rgba(236, 228, 209, .63);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .11em;
  text-decoration: none;
}

.site-footer nav a:hover,
.site-footer nav a[aria-current="page"] {
  color: var(--paper-light);
}

.site-footer__legal {
  margin: 50px 0 0;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  border-top: 1px solid rgba(236, 228, 209, .1);
  color: rgba(236, 228, 209, .28);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
}

.site-footer__legal span {
  white-space: nowrap;
}

/* Redirect pages and utilities */

.redirect-page {
  min-height: 100svh;
  padding: 130px var(--gutter);
  display: grid;
  place-items: center;
  color: var(--bone);
  background: var(--ink);
}

.redirect-card {
  max-width: 620px;
  text-align: center;
}

.redirect-card h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 76px);
}

.redirect-card p {
  margin: 22px 0 32px;
  color: rgba(236, 228, 209, .62);
}

.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  z-index: 100;
  max-width: calc(100% - 36px);
  padding: 11px 16px;
  color: var(--paper-light);
  background: rgba(6, 16, 13, .94);
  border: 1px solid rgba(236, 228, 209, .16);
  font-size: 13px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 40px));
  transition: opacity .2s ease, transform .26s ease, visibility 0s linear .26s;
}

.toast:empty {
  display: none;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-pending {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-visible {
  animation: reveal-in .82s cubic-bezier(.2, .75, .25, 1) both;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes board-breathe {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.052) translate3d(-.55%, .3%, 0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    column-gap: 24px;
  }

  .site-header nav {
    justify-self: center;
    gap: clamp(18px, 2.8vw, 30px);
  }

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

  .hero-copy {
    max-width: 750px;
  }

  .hero-orbit {
    position: absolute;
    right: -115px;
    width: 490px;
    opacity: .5;
  }

  .routes .section-shell {
    grid-template-columns: 1fr;
  }

  .routes-intro {
    max-width: 720px;
    padding-top: 0;
  }

  .route-map {
    min-height: 720px;
  }

  .culture-prose {
    width: min(600px, 75%);
  }

  .film-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .film .section-intro {
    max-width: 760px;
  }

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

  .work-disc,
  .work-art {
    width: 380px;
  }

  .music-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .audio-player--row {
    grid-column: 2;
  }

  .process-flow,
  .process-list,
  .product-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 0;
  }

  .process-step,
  .product-step,
  .process-flow > article,
  .process-list > article {
    border-bottom: 1px solid var(--paper-line);
  }

  .process-step:nth-child(3),
  .product-step:nth-child(3),
  .process-flow > article:nth-child(3),
  .process-list > article:nth-child(3) {
    border-right: 0;
  }

  .process-step:nth-child(3)::after,
  .product-step:nth-child(3)::after,
  .process-flow > article:nth-child(3)::after,
  .process-list > article:nth-child(3)::after {
    display: none;
  }

  .process-step:nth-child(n + 4),
  .product-step:nth-child(n + 4),
  .process-flow > article:nth-child(n + 4),
  .process-list > article:nth-child(n + 4) {
    min-height: 320px;
  }

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

@media (max-width: 760px) {
  .works .section-intro .page-heading,
  .product-intro .page-heading {
    font-size: clamp(36px, 10.7vw, 43px);
  }

  :root {
    --gutter: 18px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 64px;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
  }

  .site-header.is-scrolled {
    min-height: 60px;
  }

  .site-header nav {
    justify-self: end;
    gap: clamp(12px, 4vw, 20px);
  }

  .site-header nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    font-size: 10px;
  }

  .header-link {
    display: none;
  }

  .brand strong {
    font-size: 23px;
  }

  .brand span {
    display: none;
  }

  .kicker,
  .chapter,
  .work-type,
  .eyebrow {
    font-size: 10px;
  }

  .page-heading,
  .section-intro h1,
  .section-intro h2,
  .routes-intro h2 {
    font-size: clamp(40px, 12.5vw, 60px);
  }

  .section-intro p:not(.chapter):not(.eyebrow) {
    font-size: 15px;
  }

  .works .section-intro .works-origin-note {
    margin-top: 24px;
    gap: 10px;
    font-size: 19px;
    letter-spacing: .06em;
  }

  .button {
    min-height: 48px;
    padding-inline: 17px;
  }

  .hero {
    min-height: max(760px, 100svh);
  }

  .hero-board {
    background-position: 64% center;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(3, 10, 7, .92) 0 62%, rgba(3, 10, 7, .71)),
      linear-gradient(90deg, rgba(3, 10, 7, .87), rgba(3, 10, 7, .22));
  }

  .hero-inner {
    width: calc(100% - 36px);
    padding: 108px 0 105px;
  }

  .hero h1 {
    font-size: clamp(55px, 17vw, 79px);
    line-height: .98;
  }

  .hero h1 em {
    margin-left: 0;
  }

  .hero-plain {
    margin-top: 30px;
    font-size: 15px;
  }

  .hero-thesis {
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 31px;
  }

  .hero-actions .button {
    flex: 1 1 calc(50% - 6px);
  }

  .hero-tags {
    gap: 7px 17px;
  }

  .hero-orbit {
    right: -165px;
    bottom: 13px;
    width: 350px;
    opacity: .25;
  }

  .orbit-label {
    display: none;
  }

  .hero-foot {
    bottom: 18px;
    font-size: 9px;
  }

  .hero-foot > span {
    display: none;
  }

  .routes {
    padding: 102px 0 112px;
  }

  .routes .section-shell {
    gap: 54px;
  }

  .route-map {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .route-map::before {
    display: none;
  }

  .route-map::after {
    inset: 17px;
    border-radius: 0;
  }

  .route-card {
    min-height: 255px;
    padding: 29px 27px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(236, 228, 209, .14);
  }

  .route-card:last-child {
    border-bottom: 0;
  }

  .route-card h3 {
    margin-top: 43px;
    font-size: 37px;
  }

  .route-card > b {
    right: 27px;
    bottom: 29px;
  }

  .route-card--works {
    background:
      radial-gradient(circle at 79% 36%, var(--paper) 0 7%, transparent 7.3%),
      radial-gradient(circle at 79% 36%, var(--green) 0 21%, transparent 21.3%),
      radial-gradient(circle at 79% 36%, rgba(18, 63, 54, .22) 0 31%, transparent 31.3%),
      linear-gradient(148deg, var(--paper-light), #d8c8a8);
  }

  .route-card--product::before {
    display: none;
  }

  .culture {
    min-height: 760px;
    padding: 104px 0 48px;
  }

  .culture-prose {
    width: 100%;
  }

  .culture h2 {
    margin-top: 88px;
    font-size: clamp(52px, 16vw, 76px);
  }

  .culture-brand {
    margin-top: 100px;
  }

  .culture-nav {
    float: none;
    margin-top: 33px;
  }

  .culture-license {
    margin-top: 26px;
    font-size: 9px;
  }

  .culture-field i:nth-child(1) {
    width: 73vw;
    height: 73vw;
    right: -17vw;
  }

  .culture-field i:nth-child(2) {
    width: 41vw;
    height: 41vw;
    right: -1vw;
  }

  .culture-field i:nth-child(3) {
    right: 19vw;
  }

  .film,
  .works,
  .credits,
  .product-hero,
  .product-intro,
  .product-page-hero {
    padding: 108px 0 92px;
  }

  .film {
    min-height: 0;
  }

  .film-grid {
    gap: 48px;
  }

  .film-frame {
    padding: 7px;
  }

  .film-frame::before {
    left: -15px;
    width: 42px;
  }

  .film-frame::after {
    right: -15px;
    width: 42px;
  }

  .page-bridge,
  .next-chapter {
    padding: 64px 0;
  }

  .page-bridge .section-shell,
  .next-chapter .section-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .works .section-intro {
    margin-bottom: 63px;
  }

  .hero-work {
    padding-bottom: 72px;
    gap: 50px;
  }

  .work-disc,
  .work-art {
    width: min(88vw, 345px);
    margin-inline: auto;
  }

  .work-body h2,
  .work-body h3 {
    font-size: 48px;
  }

  .work-subtitle {
    font-size: 18px;
  }

  .audio-player {
    grid-template-columns: 52px minmax(0, 1fr) auto auto auto;
  }

  .audio-wave {
    grid-column: 2 / 6;
  }

  .audio-seek {
    left: 64px;
    width: calc(100% - 64px);
  }

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

  .more-works,
  .works-list-section {
    padding: 100px 0 110px;
  }

  .music-row {
    min-height: 0;
    padding: 30px 0 34px;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 22px 12px;
  }

  .music-row__number {
    grid-row: 1 / 3;
  }

  .music-row__copy header {
    align-items: flex-end;
  }

  .music-row__copy h3 {
    font-size: 32px;
  }

  .audio-player--row {
    grid-column: 2;
    grid-template-columns: 48px minmax(0, 1fr) auto auto auto;
  }

  .audio-player--row .audio-seek {
    left: 58px;
    width: calc(100% - 58px);
  }

  .product-hero,
  .product-intro,
  .product-page-hero {
    min-height: max(680px, 88svh);
  }

  .product-hero .page-heading,
  .product-intro .page-heading,
  .product-page-hero .page-heading {
    font-size: clamp(52px, 15vw, 76px);
  }

  .product-orbit {
    right: -26vw;
    bottom: 5%;
    width: 70vw;
    opacity: .35;
  }

  .product-process,
  .how,
  .process,
  .product-values,
  .why,
  .value-section,
  .product-details,
  .details,
  .detail-section {
    padding: 100px 0;
  }

  .process-flow,
  .process-list,
  .product-steps {
    grid-template-columns: 1fr;
    margin-top: 56px;
    border-bottom: 1px solid var(--paper-line);
  }

  .process-step,
  .product-step,
  .process-flow > article,
  .process-list > article {
    min-height: 0 !important;
    padding: 26px 0 32px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 20px;
    border-right: 0;
    border-bottom: 1px solid var(--paper-line);
  }

  .process-step:last-child,
  .product-step:last-child,
  .process-flow > article:last-child,
  .process-list > article:last-child {
    border-bottom: 0;
  }

  .process-step > span,
  .product-step > span,
  .process-flow > article > span,
  .process-list > article > span {
    grid-row: 1 / 3;
  }

  .process-step h3,
  .product-step h3,
  .process-flow > article h3,
  .process-list > article h3 {
    margin: 4px 0 10px;
  }

  .process-step::after,
  .product-step::after,
  .process-flow > article::after,
  .process-list > article::after {
    display: none;
  }

  .value-grid,
  .product-value-grid,
  .why-grid {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .value-card,
  .product-value,
  .value-grid > article,
  .product-value-grid > article,
  .why-grid > article {
    min-height: 0;
    padding: 34px 0 !important;
    border-right: 0;
    border-bottom: 1px solid rgba(236, 228, 209, .14);
  }

  .value-card::before,
  .product-value::before,
  .value-grid > article::before,
  .product-value-grid > article::before,
  .why-grid > article::before {
    margin-bottom: 40px;
  }

  .detail-grid,
  .product-detail-grid,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .detail-card,
  .detail-item,
  .detail-grid > article,
  .product-detail-grid > article,
  .detail-list > article {
    min-height: 190px;
    padding: 28px;
  }

  .product-boundary,
  .boundary,
  .honest-boundary {
    margin-top: 56px;
    padding-left: 21px;
  }

  .credit-entry,
  .credit-item,
  .credits-ledger > article,
  .credit-list > article,
  .credits-list > article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer {
    padding-top: 58px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }

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

  .site-footer__legal {
    margin-top: 36px;
    flex-direction: column;
    gap: 8px;
    font-size: 9px;
  }

  .works-rights {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Exact public-page compositions */

section[id] {
  scroll-margin-top: 70px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  color: var(--green);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-decoration: none;
}

.text-link span {
  color: var(--verm);
  font-size: 18px;
  transition: transform .24s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* The film closes on paper, as if the moving image became a score. */

.page-bridge {
  padding: 88px 0 94px;
  color: var(--ink);
  border-top: 0;
  background:
    linear-gradient(rgba(238, 229, 210, .92), rgba(238, 229, 210, .97)),
    url("assets/images/myriad-paper-board.webp") center 55% / cover no-repeat;
}

.page-bridge .page-bridge__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px clamp(46px, 8vw, 120px);
  align-items: end;
}

.page-bridge .chapter {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.page-bridge h2 {
  grid-column: 1;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(38px, 4.7vw, 68px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.page-bridge p:not(.chapter) {
  grid-column: 1;
  margin: 12px 0 0;
  color: rgba(6, 16, 13, .62);
}

.page-bridge .text-link {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: end;
  padding-bottom: 8px;
}

/* The second half of Works is a listening ledger on paper, not a card shelf. */

.works-more {
  position: relative;
  overflow: hidden;
  padding: clamp(112px, 11vw, 164px) 0 132px;
  color: var(--ink);
  background:
    linear-gradient(112deg, rgba(246, 239, 223, .96), rgba(232, 221, 199, .93)),
    url("assets/images/myriad-paper-board.webp") center / cover no-repeat;
}

.works-more::before {
  content: "";
  position: absolute;
  top: 5%;
  right: -11vw;
  z-index: 0;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(18, 63, 54, .11);
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw rgba(18, 63, 54, .024),
    0 0 0 16vw rgba(18, 63, 54, .016);
}

.works-more::after {
  content: "";
  position: absolute;
  top: 28%;
  right: 12vw;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--verm);
  box-shadow: 0 0 0 8px rgba(189, 98, 64, .08);
}

.works-more__intro {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(62px, 7vw, 96px);
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(320px, 1fr);
  gap: clamp(50px, 8vw, 132px);
  align-items: end;
}

.works-more__intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.works-more__intro > p {
  max-width: 660px;
  margin: 0;
  color: rgba(6, 16, 13, .64);
  font-size: 16px;
}

.works-list {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--paper-line);
}

.works-more .music-row {
  border-bottom-color: var(--paper-line);
  color: var(--ink);
}

.works-more .music-row::before {
  background: rgba(18, 63, 54, .035);
}

.works-more .music-row__copy time {
  color: var(--muted-dark);
}

.works-more .music-row__copy p {
  color: rgba(6, 16, 13, .63);
}

.works-more .music-row__copy small {
  color: var(--muted-dark);
}

.works-more .audio-player--row .audio-play {
  color: var(--green);
  border-color: rgba(18, 63, 54, .4);
  background: rgba(246, 239, 223, .2);
}

.works-more .audio-player--row .audio-play:hover {
  color: var(--paper-light);
  background: var(--green);
}

.works-more .audio-player--row .audio-line {
  background: rgba(18, 63, 54, .2);
}

.works-more .audio-player--row time,
.works-more .audio-player--row > span {
  color: var(--muted-dark);
}

.works-more__credit {
  position: relative;
  z-index: 2;
  margin: 43px 0 0;
  color: rgba(6, 16, 13, .58);
  font-size: 13px;
}

.works-more__credit a {
  margin-left: .25em;
  color: var(--green);
  text-underline-offset: 4px;
}

.works-rights {
  position: relative;
  z-index: 2;
  margin-top: clamp(58px, 7vw, 92px);
  padding-top: 28px;
  display: grid;
  grid-template-columns: minmax(180px, .42fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 96px);
  border-top: 1px solid var(--paper-line);
}

.works-rights .chapter,
.works-rights > p {
  margin: 0;
}

.works-rights > p:last-child {
  max-width: 760px;
  color: rgba(6, 16, 13, .68);
  font-size: 14px;
  line-height: 1.9;
}

/* Product: one continuous path from thought to another listen. */

.product-hero {
  min-height: 0;
  padding: clamp(150px, 15vw, 210px) 0 clamp(118px, 12vw, 174px);
  display: block;
}

.product-hero > .section-shell {
  position: relative;
}

.product-hero .product-intro {
  min-height: 0;
  max-width: 970px;
  padding: 0;
  display: block;
  overflow: visible;
  color: var(--bone);
  background: transparent;
}

.product-hero .product-intro::before,
.product-hero .product-intro::after {
  content: none;
}

.product-intro .page-heading {
  font-size: clamp(60px, 6.7vw, 102px);
}

.product-intro > p:not(.chapter) {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(236, 228, 209, .7);
  font-size: clamp(16px, 1.25vw, 19px);
}

.product-sigil {
  position: absolute;
  top: clamp(102px, 10vw, 150px);
  right: clamp(-170px, -7vw, -70px);
  z-index: -1;
  width: min(45vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(236, 228, 209, .09);
  border-radius: 50%;
  pointer-events: none;
}

.product-sigil i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(236, 228, 209, .12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.product-sigil i:nth-child(1) {
  width: 82%;
  height: 82%;
  border-style: dashed;
  animation: orbit 46s linear infinite;
}

.product-sigil i:nth-child(2) {
  width: 62%;
  height: 62%;
  border-color: rgba(199, 163, 94, .21);
}

.product-sigil i:nth-child(3) {
  width: 42%;
  height: 42%;
  border-color: rgba(189, 98, 64, .24);
  animation: orbit 30s linear infinite reverse;
}

.product-sigil i:nth-child(4) {
  width: 16px;
  height: 16px;
  border: 0;
  background: var(--gold);
  box-shadow: 0 0 0 10px rgba(199, 163, 94, .07);
}

.product-sigil i:nth-child(5) {
  top: 49%;
  left: 9%;
  width: 7px;
  height: 7px;
  border: 0;
  background: var(--verm);
}

.product-sigil span {
  position: absolute;
  right: 4%;
  bottom: 47%;
  color: rgba(236, 228, 209, .22);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .3em;
  transform: rotate(90deg);
}

.product-path {
  position: relative;
  z-index: 2;
  margin: clamp(88px, 9vw, 136px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(236, 228, 209, .18);
  border-bottom: 1px solid rgba(236, 228, 209, .18);
  list-style: none;
}

.product-path::before {
  content: "";
  position: absolute;
  top: 86px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: linear-gradient(90deg, var(--verm), rgba(199, 163, 94, .55), rgba(236, 228, 209, .14));
}

.product-path .product-step {
  position: relative;
  min-height: 365px;
  padding: 30px 24px 36px;
  display: grid;
  grid-template-rows: auto 1fr;
  color: var(--bone);
  border-right: 1px solid rgba(236, 228, 209, .14);
}

.product-path .product-step:last-child {
  border-right: 0;
}

.product-path .product-step::after {
  content: "";
  position: absolute;
  top: 81px;
  left: 24px;
  z-index: 2;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(236, 228, 209, .6);
  border-radius: 50%;
  background: var(--ink);
  transform: translateY(-50%);
}

.product-path .product-step:first-child::after {
  background: var(--verm);
  border-color: var(--verm);
}

.product-path .product-step:last-child::after {
  background: var(--gold);
  border-color: var(--gold);
}

.product-path .product-step > span {
  width: auto;
  height: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border: 0;
  border-radius: 0;
  color: inherit;
}

.product-path .product-step > span b {
  color: var(--gold-pale);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
}

.product-path .product-step > span small {
  color: rgba(236, 228, 209, .35);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
}

.product-path .product-step > div {
  align-self: end;
}

.product-path .product-step h2 {
  margin: 92px 0 15px;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(22px, 1.9vw, 29px);
  font-weight: 700;
  line-height: 1.28;
}

.product-path .product-step p {
  margin: 0;
  color: rgba(236, 228, 209, .56);
  font-size: 14px;
}

.product-why {
  padding: clamp(116px, 12vw, 176px) 0;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(238, 229, 210, .9), rgba(238, 229, 210, .96)),
    url("assets/images/myriad-paper-board.webp") center / cover no-repeat;
}

.product-why::after {
  content: "";
  position: absolute;
  top: -20vw;
  right: -13vw;
  z-index: -1;
  width: 55vw;
  aspect-ratio: 1;
  border: 1px solid rgba(18, 63, 54, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(18, 63, 54, .02);
}

.product-thesis {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(320px, .7fr);
  gap: 0 clamp(54px, 8vw, 130px);
  align-items: end;
}

.product-thesis .chapter {
  grid-column: 1 / -1;
}

.product-thesis h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 88px);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.product-thesis > p:last-child {
  margin: 0;
  color: rgba(6, 16, 13, .64);
}

.product-why .value-grid {
  margin-top: clamp(72px, 8vw, 112px);
  border-top-color: var(--paper-line);
}

.product-why .value-card {
  min-height: 380px;
  color: var(--ink);
  border-right-color: var(--paper-line);
}

.product-why .value-card::before {
  content: none;
}

.product-why .value-card > span {
  display: block;
  margin-bottom: 82px;
  color: var(--verm);
  font-family: var(--display);
  font-size: 26px;
}

.product-why .value-card h3 {
  color: var(--ink);
}

.product-why .value-card p {
  color: rgba(6, 16, 13, .64);
}

.product-details {
  padding: clamp(116px, 12vw, 176px) 0;
  overflow: hidden;
  color: var(--bone);
  background:
    linear-gradient(90deg, rgba(6, 16, 13, .93), rgba(6, 16, 13, .72)),
    url("assets/images/inscription-board.webp") center / cover no-repeat;
}

.product-details__intro {
  display: grid;
  grid-template-columns: minmax(430px, .9fr) minmax(320px, .7fr);
  gap: 0 clamp(54px, 8vw, 130px);
  align-items: end;
}

.product-details__intro .chapter {
  grid-column: 1 / -1;
}

.product-details__intro h2 {
  margin: 0;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 86px);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.product-details__intro > p:last-child {
  margin: 0;
  color: rgba(236, 228, 209, .64);
}

.product-details .detail-grid {
  margin-top: clamp(70px, 8vw, 110px);
  border-color: rgba(236, 228, 209, .16);
  background: rgba(236, 228, 209, .16);
}

.product-details .detail-grid > article {
  min-height: 225px;
  color: var(--bone);
  background:
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(236, 228, 209, .035) 36px 37px),
    rgba(6, 16, 13, .74);
}

.product-details .detail-grid > article small {
  color: var(--verm);
}

.product-details .detail-grid > article h3 {
  color: var(--paper-light);
}

.product-details .detail-grid > article p {
  color: rgba(236, 228, 209, .57);
}

.product-details .product-boundary {
  color: rgba(236, 228, 209, .63);
  border-left-color: var(--verm);
}

.product-details .product-boundary .chapter {
  margin-bottom: 15px;
}

.product-details .product-boundary h3 {
  color: var(--gold-pale);
}

.product-details .product-boundary .text-link {
  margin-top: 25px;
  color: var(--paper-light);
}

/* Credits read like a colophon, with numbers at the margin. */

.credits .paper-board {
  opacity: .28;
}

.credits-intro {
  max-width: 900px;
  margin-bottom: 62px;
}

.credits-intro .page-heading {
  font-size: clamp(52px, 6.4vw, 94px);
}

.credits-intro > p:not(.chapter) {
  max-width: 760px;
  margin: 29px 0 0;
  color: rgba(6, 16, 13, .66);
  font-size: 17px;
}

.credits .credits-note {
  max-width: 980px;
  margin: 0 0 68px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: minmax(250px, .5fr) minmax(0, 1fr);
  gap: 38px;
  border: 0;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  background: transparent;
}

.credits-note strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 19px;
}

.credits-note p {
  margin: 0;
}

.credits-work-sources {
  margin: clamp(82px, 9vw, 128px) 0;
}

.credits-work-sources > header {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(320px, .7fr);
  gap: 0 clamp(52px, 8vw, 126px);
  align-items: end;
}

.credits-work-sources > header .chapter {
  grid-column: 1 / -1;
}

.credits-work-sources > header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -.05em;
}

.credits-work-sources > header > p:last-child {
  margin: 0;
  color: rgba(6, 16, 13, .68);
}

.work-source-map {
  margin: clamp(54px, 6vw, 82px) 0 0;
  border-top: 1px solid var(--paper-line);
}

.work-source-map > div {
  display: grid;
  grid-template-columns: minmax(130px, .24fr) minmax(0, 1fr);
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--paper-line);
}

.work-source-map dt {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.work-source-map dd {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.credits .credit-list {
  max-width: 1120px;
}

.credits .credit-entry {
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 30px;
  padding: 39px 0 42px;
}

.credits .credit-entry > span {
  color: rgba(18, 63, 54, .32);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.credits .credit-entry h2 {
  margin-bottom: 15px;
  color: var(--green);
  font-size: clamp(25px, 2.7vw, 36px);
}

.credits .credit-entry p {
  max-width: 820px;
}

.credits .credit-entry > div > a {
  display: inline-block;
  margin-top: 7px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
}

.credits-scope {
  max-width: 940px;
  margin: 76px 0 0 auto;
  padding: 32px 0 30px 30px;
  border: 0;
  border-left: 2px solid var(--verm);
  background: transparent;
}

.credits-scope h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.25;
}

.credits-scope > p:not(.chapter) {
  margin: 16px 0 0;
  color: rgba(6, 16, 13, .64);
}

.credits-scope .text-link {
  margin-top: 23px;
}

.redirect-panel {
  width: min(620px, 100%);
  text-align: center;
}

.redirect-panel .brand {
  justify-content: center;
}

.redirect-panel h1 {
  margin: 42px 0 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.1;
}

.redirect-panel p {
  margin: 23px 0 32px;
  color: rgba(236, 228, 209, .62);
}

@media (max-width: 1080px) {
  .works-more__intro,
  .product-thesis,
  .product-details__intro,
  .credits-work-sources > header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 0;
  }

  .product-path::before {
    display: none;
  }

  .product-path .product-step {
    border-bottom: 1px solid rgba(236, 228, 209, .14);
  }

  .product-path .product-step:nth-child(3) {
    border-right: 0;
  }

  .product-path .product-step:nth-child(4),
  .product-path .product-step:nth-child(5) {
    min-height: 320px;
  }

  .product-path .product-step::after {
    top: 77px;
  }
}

@media (max-width: 760px) {
  .credits-work-sources {
    margin: 70px 0 82px;
  }

  .credits-work-sources > header h2 {
    font-size: clamp(36px, 10.7vw, 43px);
  }

  .work-source-map {
    margin-top: 42px;
  }

  .work-source-map > div {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 17px 0;
  }

  .page-bridge {
    padding: 68px 0 74px;
  }

  .page-bridge .page-bridge__inner {
    grid-template-columns: 1fr;
  }

  .page-bridge .chapter,
  .page-bridge h2,
  .page-bridge p:not(.chapter),
  .page-bridge .text-link {
    grid-column: 1;
  }

  .page-bridge .text-link {
    grid-row: auto;
    margin-top: 23px;
  }

  .works-more {
    padding: 98px 0 106px;
  }

  .works-more__intro {
    margin-bottom: 55px;
  }

  .works-more__intro h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .works-more__intro > p {
    font-size: 15px;
  }

  .product-hero {
    padding: 115px 0 104px;
  }

  .product-intro .page-heading {
    font-size: clamp(36px, 10.7vw, 43px);
  }

  .product-sigil {
    top: 85px;
    right: -48vw;
    width: 105vw;
    opacity: .38;
  }

  .product-path {
    margin-top: 70px;
    grid-template-columns: 1fr;
    border-bottom: 1px solid rgba(236, 228, 209, .18);
  }

  .product-path .product-step,
  .product-path .product-step:nth-child(4),
  .product-path .product-step:nth-child(5) {
    min-height: 0;
    padding: 24px 0 29px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 0 16px;
    border-right: 0;
  }

  .product-path .product-step > span {
    grid-row: 1;
    display: block;
  }

  .product-path .product-step > span b,
  .product-path .product-step > span small {
    display: block;
  }

  .product-path .product-step > span b {
    font-size: 26px;
  }

  .product-path .product-step > span small {
    margin-top: 5px;
  }

  .product-path .product-step > div {
    align-self: auto;
  }

  .product-path .product-step h2 {
    margin: 2px 0 8px;
    font-size: 23px;
  }

  .product-path .product-step::after {
    display: none;
  }

  .product-why,
  .product-details {
    padding: 96px 0;
  }

  .product-thesis h2,
  .product-details__intro h2 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .product-why .value-grid {
    margin-top: 54px;
  }

  .product-why .value-card {
    min-height: 0;
    padding: 32px 0 !important;
    border-right: 0;
    border-bottom-color: var(--paper-line);
  }

  .product-why .value-card > span {
    margin-bottom: 30px;
  }

  .product-details .detail-grid {
    margin-top: 58px;
  }

  .credits-intro > p:not(.chapter) {
    font-size: 15px;
  }

  .credits-intro .page-heading {
    font-size: clamp(38px, 11.5vw, 46px);
  }

  .credits .credits-note {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 51px;
  }

  .credits .credit-entry {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 14px;
    padding: 31px 0 34px;
  }

  .credits .credit-entry > span {
    font-size: 23px;
  }

  .credits-scope {
    margin-top: 60px;
    padding-left: 20px;
  }
}

.works-drawer { position: relative; z-index: 2; border-bottom: 1px solid var(--paper-line); }
.works-drawer > summary {
  min-height: 138px;
  padding: 30px clamp(26px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(190px, .45fr) 1fr 56px;
  gap: 28px;
  align-items: center;
  color: var(--paper-light);
  background: linear-gradient(120deg, var(--green), var(--ink-raised));
  cursor: pointer;
  list-style: none;
}
.works-drawer > summary::-webkit-details-marker { display: none; }
.works-drawer > summary > span {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
}
.works-drawer > summary small {
  color: rgba(236, 228, 209, .58);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
}
.works-drawer > summary i {
  position: relative;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(236, 228, 209, .38);
  border-radius: 50%;
}
.works-drawer > summary i::before,
.works-drawer > summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: var(--gold-pale);
  transform: translate(-50%, -50%);
}
.works-drawer > summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.works-drawer__close { display: none; }
.works-drawer[open] .works-drawer__open { display: none; }
.works-drawer[open] .works-drawer__close { display: block; }
.works-drawer[open] > summary i::after { transform: translate(-50%, -50%) rotate(0); }
.works-drawer__body { padding-top: 58px; }

.product-position {
  padding: clamp(112px, 12vw, 172px) 0;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(132deg, var(--paper-light), #e2d5bc);
}
.product-position__intro {
  display: grid;
  grid-template-columns: minmax(440px, .9fr) minmax(300px, .65fr);
  gap: 0 clamp(54px, 8vw, 128px);
  align-items: end;
}
.product-position__intro .chapter { grid-column: 1 / -1; }
.product-position__intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.8vw, 84px);
  line-height: 1.05;
  letter-spacing: -.055em;
}
.product-position__intro > p:last-child { margin: 0; color: rgba(6, 16, 13, .63); }
.position-grid {
  margin-top: clamp(68px, 8vw, 106px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--paper-line);
}
.position-card { min-height: 520px; padding: 34px; border-right: 1px solid var(--paper-line); }
.position-card:last-child { border-right: 0; }
.position-card__type { margin: 0; color: var(--verm-deep); font: 10px/1.5 var(--mono); letter-spacing: .13em; }
.position-card h3 {
  margin: 72px 0 36px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.6vw, 38px);
  line-height: 1.25;
}
.position-card dl { margin: 0; }
.position-card dl div { padding: 15px 0; border-top: 1px solid var(--paper-line); }
.position-card dt { color: var(--muted-dark); font: 10px/1.5 var(--mono); letter-spacing: .09em; }
.position-card dd { margin: 5px 0 0; font-size: 14px; }
.position-card--caelison { color: var(--bone); background: var(--green); }
.position-card--caelison .position-card__type { color: var(--gold-pale); }
.position-card--caelison dl div { border-top-color: rgba(236, 228, 209, .17); }
.position-card--caelison dt { color: rgba(236, 228, 209, .5); }
.position-statement {
  max-width: 980px;
  margin: 66px 0 0 auto;
  padding-left: 28px;
  border-left: 2px solid var(--verm);
}
.position-statement strong { color: var(--green); font-family: var(--serif); font-size: 22px; }
.position-statement p { margin: 10px 0 0; color: rgba(6, 16, 13, .64); }

@media (max-width: 1080px) {
  .product-position__intro { grid-template-columns: 1fr; gap: 28px; }
  .position-grid { grid-template-columns: 1fr; }
  .position-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--paper-line); }
  .position-card:last-child { border-bottom: 0; }
}

@media (max-width: 760px) {
  .works-drawer > summary { min-height: 164px; padding: 26px; grid-template-columns: 1fr 48px; gap: 10px 18px; }
  .works-drawer > summary small { grid-column: 1 / -1; grid-row: 2; line-height: 1.8; }
  .works-drawer > summary i { grid-column: 2; grid-row: 1; width: 44px; height: 44px; }
  .works-drawer__body { padding-top: 40px; }
  .product-position { padding: 96px 0; }
  .product-position__intro h2 { font-size: clamp(42px, 12.5vw, 60px); }
  .position-grid { margin-top: 54px; }
  .position-card { padding: 28px 24px; }
  .position-card h3 { margin: 46px 0 28px; }
  .position-statement { margin-top: 54px; padding-left: 20px; }
}

/* The fourth movement: where the name and the instrument meet. */

.origin-page #resonance-canvas {
  opacity: .18;
}

.origin-essay {
  overflow: hidden;
}

.origin-opening {
  min-height: max(820px, 100svh);
  padding: clamp(142px, 15vw, 210px) 0 clamp(106px, 11vw, 158px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 34%, rgba(44, 103, 87, .28), transparent 31%),
    linear-gradient(145deg, #050d0b 0 48%, #0c241d 100%);
}

.origin-opening::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: 18%;
  z-index: -1;
  width: min(61vw, 920px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 228, 209, .34) 34%, var(--verm) 76%, transparent);
  transform: rotate(-7deg);
  transform-origin: right;
}

.origin-opening__board,
.origin-music__board,
.origin-performance__board {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.origin-opening__board {
  opacity: .27;
  background:
    linear-gradient(90deg, rgba(6, 16, 13, .76), rgba(6, 16, 13, .16)),
    url("assets/images/hero-resonance-board.webp") center / cover no-repeat;
  mix-blend-mode: luminosity;
}

.origin-opening__field {
  z-index: -1;
  opacity: .7;
  transform: scale(1.08) translateX(3%);
}

.origin-opening .chapter {
  margin-bottom: clamp(58px, 8vw, 106px);
}

.origin-opening__grid {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(470px, 1fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: end;
}

.origin-opening h1 {
  margin: 0;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(82px, 8.6vw, 132px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.065em;
}

.origin-opening__text {
  max-width: 680px;
}

.origin-attribution {
  margin: 0 0 17px;
  color: rgba(236, 228, 209, .48);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
}

.origin-opening blockquote {
  margin: 0;
  padding: 0 0 0 25px;
  border-left: 1px solid var(--verm);
}

.origin-opening blockquote p {
  margin: 0;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(27px, 2.45vw, 37px);
  line-height: 1.58;
  letter-spacing: -.025em;
}

.origin-quote-break {
  display: none;
}

.origin-opening__text > p:last-child {
  max-width: 650px;
  margin: clamp(44px, 5vw, 72px) 0 0;
  color: rgba(236, 228, 209, .7);
  font-family: var(--serif);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 2;
}

.origin-music {
  padding: clamp(128px, 14vw, 204px) 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--paper-light), #e5d8bf);
}

.origin-music__board {
  opacity: .22;
  background: url("assets/images/myriad-paper-board.webp") center / cover no-repeat;
  mix-blend-mode: multiply;
}

.origin-music::after {
  content: "音";
  position: absolute;
  top: 4%;
  right: 7%;
  z-index: -1;
  color: rgba(18, 63, 54, .055);
  font-family: var(--display);
  font-size: min(37vw, 560px);
  line-height: 1;
}

.origin-reading {
  max-width: 1180px;
}

.origin-reading p {
  font-family: var(--serif);
}

.origin-reading__lead {
  max-width: 1080px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.92;
  letter-spacing: -.018em;
}

.origin-reading__distance {
  max-width: 780px;
  margin: clamp(76px, 9vw, 126px) 0 0 auto;
  padding-left: clamp(23px, 3vw, 42px);
  border-left: 2px solid var(--verm-deep);
  color: rgba(6, 16, 13, .72);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 2;
}

.origin-performance {
  padding: clamp(130px, 14vw, 205px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 38%, rgba(37, 89, 75, .25), transparent 30%),
    var(--ink);
}

.origin-performance__board {
  opacity: .12;
  background:
    linear-gradient(90deg, rgba(6, 16, 13, .3), rgba(6, 16, 13, .76)),
    url("assets/images/inscription-board.webp") center / cover no-repeat;
}

.origin-performance__heading {
  max-width: 1040px;
}

.origin-performance__heading h2 {
  margin: 0;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(60px, 7vw, 104px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.06em;
}

.origin-performance__body {
  margin-top: clamp(78px, 9vw, 132px);
  padding-top: clamp(42px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(440px, 1.22fr);
  gap: clamp(54px, 8vw, 124px);
  border-top: 1px solid rgba(236, 228, 209, .18);
}

.origin-performance__body p {
  margin: 0;
  color: rgba(236, 228, 209, .7);
  font-family: var(--serif);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 2;
}

.origin-performance__collaboration {
  padding-left: clamp(24px, 3vw, 44px);
  border-left: 1px solid rgba(199, 163, 94, .42);
}

.origin-performance__collaboration .origin-performance__last {
  margin-top: clamp(48px, 5.6vw, 82px);
  padding-top: clamp(30px, 3.2vw, 45px);
  border-top: 1px solid rgba(236, 228, 209, .14);
  color: var(--gold-pale);
  font-size: clamp(21px, 1.8vw, 27px);
  line-height: 1.75;
}

.origin-coda {
  min-height: max(850px, 100svh);
  padding: clamp(140px, 15vw, 218px) 0 clamp(126px, 13vw, 190px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 35%, rgba(35, 86, 73, .2), transparent 29%),
    linear-gradient(155deg, #07120f, #040a08 72%);
}

.origin-coda::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .08;
  background: url("assets/images/inscription-board.webp") center / cover no-repeat;
}

.origin-coda__field {
  z-index: -1;
  opacity: .62;
  transform: rotate(6deg) scale(1.12);
}

.origin-coda__inner {
  max-width: 1120px;
}

.origin-coda__quote {
  margin: 0;
}

.origin-coda__quote p {
  margin: 0;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(55px, 7.4vw, 108px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.055em;
}

.origin-coda__prose {
  max-width: 760px;
  margin: clamp(76px, 9vw, 132px) 0 0 auto;
  color: rgba(236, 228, 209, .68);
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 2;
}

.origin-coda h2 {
  width: fit-content;
  max-width: 850px;
  margin: clamp(106px, 13vw, 190px) 0 0 auto;
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: clamp(52px, 6.4vw, 94px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.055em;
}

@media (max-width: 1080px) {
  .origin-opening__grid {
    grid-template-columns: .68fr 1fr;
    gap: 60px;
  }

  .origin-opening h1 {
    font-size: clamp(72px, 9vw, 98px);
  }

  .origin-performance__body {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .origin-performance__body > p {
    max-width: 820px;
  }

  .origin-performance__collaboration {
    max-width: 840px;
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  .origin-opening {
    min-height: max(780px, 100svh);
    padding: 122px 0 92px;
  }

  .origin-opening .chapter {
    margin-bottom: 50px;
  }

  .origin-opening__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .origin-opening h1 {
    font-size: clamp(56px, 17vw, 76px);
  }

  .origin-opening__text {
    max-width: none;
  }

  .origin-attribution {
    font-size: 10px;
  }

  .origin-opening blockquote {
    padding-left: 18px;
  }

  .origin-opening blockquote p {
    font-size: clamp(21px, 6.6vw, 28px);
    line-height: 1.7;
  }

  .origin-quote-break {
    display: initial;
  }

  .origin-opening__text > p:last-child {
    margin-top: 38px;
    font-size: 15px;
    line-height: 1.95;
  }

  .origin-opening__field {
    opacity: .42;
    transform: scale(1.35) translate(12%, 4%);
  }

  .origin-music {
    padding: 100px 0 108px;
  }

  .origin-music::after {
    top: 2%;
    right: -4%;
    font-size: 68vw;
  }

  .origin-reading__lead {
    font-size: 20px;
    line-height: 1.9;
  }

  .origin-reading__distance {
    margin-top: 62px;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.95;
  }

  .origin-performance {
    padding: 104px 0 112px;
  }

  .origin-performance__heading h2 {
    font-size: clamp(38px, 11.8vw, 50px);
  }

  .origin-performance__body {
    margin-top: 64px;
    padding-top: 38px;
    gap: 50px;
  }

  .origin-performance__body p {
    font-size: 16px;
    line-height: 1.95;
  }

  .origin-performance__collaboration {
    padding: 38px 0 0;
    border-top: 1px solid rgba(199, 163, 94, .42);
    border-left: 0;
  }

  .origin-performance__collaboration .origin-performance__last {
    margin-top: 44px;
    padding-top: 30px;
    font-size: 20px;
    line-height: 1.8;
  }

  .origin-coda {
    min-height: max(820px, 100svh);
    padding: 118px 0 128px;
  }

  .origin-coda__quote p {
    font-size: clamp(46px, 14.2vw, 66px);
  }

  .origin-coda__prose {
    margin-top: 70px;
    font-size: 16px;
    line-height: 1.95;
  }

  .origin-coda h2 {
    margin-top: 102px;
    font-size: clamp(36px, 11.2vw, 52px);
  }

  .origin-coda__field {
    opacity: .4;
    transform: rotate(6deg) scale(1.38) translateX(8%);
  }
}

html.no-js .site-header {
  color: var(--bone);
  background: rgba(6, 16, 13, .9);
  border-bottom-color: rgba(236, 228, 209, .1);
  backdrop-filter: blur(18px) saturate(1.2);
}

html.no-js .site-header::after {
  opacity: .1;
}

html.no-js body.is-light-scene .site-header nav a[aria-current="page"] {
  color: var(--gold-pale);
}

html.no-js body.is-light-scene .site-header :focus-visible {
  outline-color: var(--gold);
}

/* Position, listening review and the fourth-quadrant pages */
.position-flow {
  border-top: 1px solid var(--paper-line);
}

.position-route {
  display: grid;
  grid-template-columns: minmax(150px, .62fr) minmax(220px, 1fr) minmax(280px, 1.25fr) minmax(140px, .55fr);
  gap: 32px;
  align-items: start;
  padding: 34px 30px;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  border-left: 1px solid var(--paper-line);
}

.position-route header {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.position-route header small,
.position-route strong {
  color: var(--muted-dark);
  font: 10px/1.5 var(--mono);
  letter-spacing: .1em;
}

.position-route h3 {
  margin: 0;
  color: var(--ink);
  font: 600 clamp(21px, 2vw, 28px)/1.2 var(--serif);
  letter-spacing: -.025em;
}

.position-route div p,
.position-route__refs {
  margin: 8px 0 0;
  color: rgba(6, 16, 13, .68);
  font-size: 14px;
  line-height: 1.8;
}

.position-route__refs {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font: 10px/1.6 var(--mono);
  letter-spacing: .05em;
}

.position-route__refs a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(17, 72, 61, .28);
  text-underline-offset: 4px;
}

.position-route--caelison {
  color: var(--bone);
  background: var(--green);
  border-color: rgba(236, 228, 209, .14);
}

.position-route--caelison h3,
.position-route--caelison div p,
.position-route--caelison .position-route__refs {
  color: var(--bone);
}

.position-route--caelison header small,
.position-route--caelison strong {
  color: var(--gold-pale);
}

.boundary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
}

.community-hero,
.more-hero {
  position: relative;
  display: flex;
  min-height: 78vh;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 110px;
  color: var(--bone);
  background: var(--ink);
}

.community-hero::after,
.more-hero::after {
  position: absolute;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  right: -8vw;
  bottom: -34%;
  content: "";
  border: 1px solid rgba(199, 163, 94, .22);
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw rgba(199, 163, 94, .035),
    0 0 0 17vw rgba(199, 163, 94, .025);
}

.community-hero__board {
  position: absolute;
  inset: 0;
  opacity: .27;
  background:
    linear-gradient(90deg, rgba(6, 16, 13, .97) 0%, rgba(6, 16, 13, .72) 56%, rgba(6, 16, 13, .35) 100%),
    url("assets/images/hero-resonance-board.webp") center / cover;
  mix-blend-mode: screen;
}

.community-hero__intro,
.more-hero__intro {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.community-hero__intro .page-heading,
.more-hero__intro .page-heading {
  margin: 26px 0 34px;
  font-size: clamp(58px, 7.5vw, 112px);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.community-hero__intro > p:last-child,
.more-hero__intro > p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(236, 228, 209, .68);
  font-size: 18px;
  line-height: 1.95;
}

.community-judgment {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}

.community-judgment .paper-board {
  opacity: .2;
}

.community-judgment__intro {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(320px, .95fr);
  gap: 30px 90px;
  align-items: end;
}

.community-judgment__intro .chapter {
  grid-column: 1 / -1;
}

.community-judgment__intro h2,
.community-paths__intro h2 {
  margin: 0;
  font: 600 clamp(46px, 5.5vw, 76px)/1.08 var(--serif);
  letter-spacing: -.045em;
}

.community-judgment__intro > p:last-child,
.community-paths__intro > p:last-child {
  margin: 0;
  color: rgba(6, 16, 13, .65);
  font-size: 16px;
  line-height: 1.95;
}

.judgment-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 92px;
  border-top: 1px solid var(--paper-line);
  border-left: 1px solid var(--paper-line);
}

.judgment-pair article {
  min-height: 260px;
  padding: 36px;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

.judgment-pair small {
  color: var(--verm-deep);
  font: 10px/1.5 var(--mono);
  letter-spacing: .12em;
}

.judgment-pair p {
  max-width: 520px;
  margin: 54px 0 0;
  font: 500 clamp(20px, 2.1vw, 29px)/1.65 var(--serif);
}

.review-status {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1.4fr;
  gap: 32px;
  margin-top: 42px;
  padding: 28px 34px;
  color: var(--bone);
  background: var(--green);
}

.review-status strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.review-status p {
  margin: 0;
  color: rgba(236, 228, 209, .7);
  line-height: 1.75;
}

.community-paths {
  position: relative;
  padding: 140px 0 150px;
  color: var(--bone);
  background:
    radial-gradient(circle at 82% 24%, rgba(188, 101, 63, .12), transparent 24%),
    var(--ink);
}

.community-paths__intro {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, .72fr);
  gap: 30px 90px;
  align-items: end;
}

.community-paths__intro .chapter {
  grid-column: 1 / -1;
}

.community-paths__intro > p:last-child {
  color: rgba(236, 228, 209, .58);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 84px;
  border-top: 1px solid rgba(236, 228, 209, .15);
  border-left: 1px solid rgba(236, 228, 209, .15);
}

.community-card {
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid rgba(236, 228, 209, .15);
  border-bottom: 1px solid rgba(236, 228, 209, .15);
}

.community-card small {
  color: var(--verm);
  font: 10px/1.5 var(--mono);
  letter-spacing: .12em;
}

.community-card h3 {
  margin: 54px 0 18px;
  font: 500 clamp(24px, 2.2vw, 32px)/1.25 var(--serif);
}

.community-card p {
  margin: 0;
  color: rgba(236, 228, 209, .64);
  font-size: 14px;
  line-height: 1.85;
}

.community-contact {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(236, 228, 209, .15);
  scroll-margin-top: 96px;
}

.community-contact p {
  margin: 0;
  color: rgba(236, 228, 209, .55);
}

.community-contact__copy {
  max-width: 540px;
}

.community-contact__copy strong {
  display: block;
  margin-bottom: 10px;
  color: var(--bone);
  font: 500 clamp(22px, 2vw, 30px)/1.3 var(--serif);
}

.community-contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 28px;
}

.community-contact__actions .text-link {
  color: var(--bone);
}

.community-contact__qq {
  padding: 0;
  color: var(--gold-pale);
  border: 0;
  border-bottom: 1px solid rgba(217, 199, 151, .38);
  background: transparent;
  font: 11px/1.8 var(--mono);
  letter-spacing: .1em;
  cursor: pointer;
}

.community-contact__qq:hover,
.community-contact__qq:focus-visible {
  color: var(--bone);
  border-bottom-color: var(--verm);
}

.more-hero {
  min-height: 82vh;
}

.more-hero__field,
.more-coda__field {
  position: absolute;
  inset: 0;
  opacity: .45;
}

.more-ledger {
  position: relative;
  overflow: hidden;
  padding: 130px 0 150px;
}

.more-ledger .paper-board {
  opacity: .2;
}

.more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--paper-line);
  border-left: 1px solid var(--paper-line);
}

.more-entry {
  position: relative;
  min-height: 430px;
  padding: 46px;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

.more-entry h2 {
  margin: 74px 0 24px;
  font: 600 clamp(34px, 3.6vw, 54px)/1.13 var(--serif);
  letter-spacing: -.04em;
}

.more-entry > p:not(.chapter) {
  max-width: 620px;
  margin: 0;
  color: rgba(6, 16, 13, .65);
  font-size: 15px;
  line-height: 1.9;
}

.more-entry .text-link {
  margin-top: 28px;
}

.more-entry--origin {
  color: var(--bone);
  background: var(--green);
}

.more-entry--origin .chapter {
  color: var(--gold-pale);
}

.more-entry--origin > p:not(.chapter) {
  color: rgba(236, 228, 209, .68);
}

.more-entry--origin .text-link {
  color: var(--bone);
}

.more-entry--contact {
  background: rgba(199, 163, 94, .1);
}

.more-coda {
  position: relative;
  display: flex;
  min-height: 78vh;
  align-items: center;
  overflow: hidden;
  padding: 130px 0;
  color: var(--bone);
  background: var(--ink);
}

.more-coda__inner {
  position: relative;
  z-index: 1;
}

.more-coda__inner > p {
  max-width: 640px;
  margin: 0;
  color: rgba(236, 228, 209, .58);
  font-size: 17px;
  line-height: 1.9;
}

.more-coda h2 {
  max-width: 1000px;
  margin: 96px 0 0;
  font: 600 clamp(54px, 7vw, 104px)/1.08 var(--serif);
  letter-spacing: -.055em;
}

@media (max-width: 1080px) {
  .position-route {
    grid-template-columns: minmax(150px, .65fr) 1fr 1.2fr;
  }

  .position-route__refs {
    grid-column: 2 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 22px;
  }

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

@media (max-width: 760px) {
  .position-route {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 22px;
  }

  .position-route__refs {
    grid-column: auto;
  }

  .community-hero,
  .more-hero {
    min-height: max(720px, 100svh);
    padding: 130px 0 90px;
  }

  .community-hero__intro .page-heading,
  .more-hero__intro .page-heading {
    font-size: clamp(50px, 15vw, 72px);
  }

  .community-hero__intro > p:last-child,
  .more-hero__intro > p:last-child {
    font-size: 16px;
  }

  .community-judgment,
  .community-paths,
  .more-ledger {
    padding: 96px 0 108px;
  }

  .community-judgment__intro,
  .community-paths__intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .community-judgment__intro .chapter,
  .community-paths__intro .chapter {
    grid-column: auto;
  }

  .judgment-pair,
  .community-grid,
  .more-grid {
    grid-template-columns: 1fr;
  }

  .judgment-pair {
    margin-top: 62px;
  }

  .judgment-pair article {
    min-height: 230px;
    padding: 28px 24px;
  }

  .judgment-pair p {
    margin-top: 36px;
  }

  .review-status {
    grid-template-columns: 1fr;
    padding: 26px 24px;
  }

  .community-grid {
    margin-top: 62px;
  }

  .community-card {
    min-height: 280px;
    padding: 28px 24px;
  }

  .community-card h3 {
    margin-top: 40px;
  }

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

  .community-contact__actions {
    justify-content: flex-start;
  }

  .more-entry {
    min-height: 390px;
    padding: 34px 26px;
  }

  .more-entry h2 {
    margin-top: 58px;
  }

  .more-coda {
    min-height: max(720px, 100svh);
    padding: 108px 0;
  }

  .more-coda h2 {
    margin-top: 80px;
    font-size: clamp(48px, 14vw, 70px);
  }
}

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

.music-row {
  min-height: 0;
  padding: 46px 0;
  grid-template-columns: 66px minmax(0, 1.35fr) minmax(270px, .65fr);
  align-items: start;
}

.music-row__copy > p {
  line-height: 1.85;
}

.music-row__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0 0;
  border-top: 1px solid var(--paper-line);
  border-left: 1px solid var(--paper-line);
}

.music-row__facts div {
  min-width: 0;
  padding: 13px 15px;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

.music-row__facts dt {
  color: var(--muted-dark);
  font: 9px/1.5 var(--mono);
  letter-spacing: .09em;
}

.music-row__facts dd {
  margin: 5px 0 0;
  color: rgba(6, 16, 13, .7);
  font-size: 12px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.music-row .audio-player--row {
  margin-top: 4px;
}

.position-identity {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(520px, 1.35fr);
  gap: 54px;
  margin-top: 86px;
  padding: 42px;
  color: var(--bone);
  background: var(--green);
}

.position-identity > div > p {
  margin: 0 0 20px;
  color: var(--gold-pale);
  font: 10px/1.5 var(--mono);
  letter-spacing: .13em;
}

.position-identity h3 {
  margin: 0;
  font: 500 clamp(28px, 3vw, 42px)/1.35 var(--serif);
  letter-spacing: -.03em;
}

.position-identity ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(236, 228, 209, .18);
  border-left: 1px solid rgba(236, 228, 209, .18);
}

.position-identity li {
  min-height: 115px;
  padding: 20px;
  border-right: 1px solid rgba(236, 228, 209, .18);
  border-bottom: 1px solid rgba(236, 228, 209, .18);
}

.position-identity li strong {
  display: block;
  color: var(--bone);
  font: 500 18px/1.4 var(--serif);
}

.position-identity li span {
  display: block;
  margin-top: 9px;
  color: rgba(236, 228, 209, .58);
  font-size: 12px;
  line-height: 1.65;
}

.position-access {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(560px, 1.4fr);
  color: var(--ink);
  border: 1px solid var(--paper-line);
  border-top: 0;
  background: rgba(246, 239, 223, .42);
}

.position-access > header {
  padding: 46px 42px;
  border-right: 1px solid var(--paper-line);
}

.position-access > header h3 {
  margin: 27px 0 0;
  color: var(--green);
  font: 600 clamp(28px, 3.2vw, 46px)/1.25 var(--serif);
  letter-spacing: -.04em;
}

.position-access > header > p:last-child {
  margin: 27px 0 0;
  color: rgba(6, 16, 13, .64);
  font-size: 13px;
  line-height: 1.9;
}

.position-access__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.position-access__facts article {
  min-height: 170px;
  padding: 28px 30px;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

.position-access__facts article:nth-child(even) {
  border-right: 0;
}

.position-access__facts article:nth-child(n + 3) {
  border-bottom: 0;
}

.position-access__facts small {
  color: var(--verm-readable);
  font: 9px/1 var(--mono);
  letter-spacing: .1em;
}

.position-access__facts strong {
  display: block;
  margin-top: 22px;
  color: var(--green);
  font: 600 18px/1.45 var(--serif);
}

.position-access__facts p {
  margin: 10px 0 0;
  color: rgba(6, 16, 13, .59);
  font-size: 11px;
  line-height: 1.75;
}

.position-flow {
  margin-top: 0;
}

.position-route {
  grid-template-columns: minmax(170px, .62fr) repeat(3, minmax(220px, 1fr));
}

.position-route header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-items: baseline;
}

.position-route header .position-route__refs {
  grid-column: 1 / -1;
  margin-top: 18px;
}

.position-route__advantage {
  align-self: stretch;
  margin: -34px -30px;
  margin-left: 0;
  padding: 34px 30px;
  background: rgba(18, 77, 64, .085);
  border-left: 1px solid rgba(18, 77, 64, .13);
}

.position-route__advantage strong {
  color: var(--green);
}

@media (max-width: 1080px) {
  .music-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .music-row .audio-player--row {
    grid-column: 2;
    margin-top: 22px;
  }

  .position-identity {
    grid-template-columns: 1fr;
  }

  .position-access {
    grid-template-columns: 1fr;
  }

  .position-access > header {
    border-right: 0;
    border-bottom: 1px solid var(--paper-line);
  }

  .position-route {
    grid-template-columns: minmax(170px, .65fr) 1fr 1fr;
  }

  .position-route__advantage {
    grid-column: 2 / -1;
    margin-top: 0;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .work-meta,
  .music-row__facts {
    grid-template-columns: 1fr;
  }

  .music-row {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 32px 0 38px;
  }

  .position-identity {
    margin-top: 60px;
    padding: 28px 24px;
  }

  .position-identity ul {
    grid-template-columns: 1fr;
  }

  .position-access > header {
    padding: 30px 24px;
  }

  .position-access__facts {
    grid-template-columns: 1fr;
  }

  .position-access__facts article,
  .position-access__facts article:nth-child(even),
  .position-access__facts article:nth-child(n + 3) {
    min-height: 0;
    padding: 25px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--paper-line);
  }

  .position-access__facts article:last-child {
    border-bottom: 0;
  }

  .position-route {
    grid-template-columns: 1fr;
  }

  .position-route__advantage {
    grid-column: auto;
    margin: 0;
    padding: 24px;
    border: 1px solid rgba(18, 77, 64, .13);
  }
}

.product-questions {
  position: relative;
  padding: clamp(112px, 11vw, 168px) 0;
  color: var(--bone);
  background:
    radial-gradient(circle at 16% 16%, rgba(27, 90, 73, .26), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(189, 103, 64, .11), transparent 30%),
    var(--ink);
  overflow: clip;
}

.product-questions::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(236, 228, 209, .14) 50%, transparent 50.1%),
    repeating-linear-gradient(0deg, transparent 0 96px, rgba(236, 228, 209, .05) 97px 98px);
}

.product-questions__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, .72fr) minmax(560px, 1.28fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
}

.product-questions__intro {
  position: sticky;
  top: 118px;
}

.product-questions__intro h2 {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--bone);
  font: 500 clamp(42px, 4.6vw, 68px)/1.12 var(--serif);
  letter-spacing: -.055em;
}

.product-questions__intro > p:last-child {
  max-width: 470px;
  margin: 38px 0 0;
  color: rgba(236, 228, 209, .6);
  font-size: 15px;
  line-height: 1.95;
}

.product-question-list {
  border-top: 1px solid rgba(236, 228, 209, .24);
}

.product-question {
  border-bottom: 1px solid rgba(236, 228, 209, .2);
}

.product-question summary {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: start;
  padding: 32px 0;
  list-style: none;
  cursor: pointer;
}

.product-question summary::-webkit-details-marker {
  display: none;
}

.product-question summary > span {
  padding-top: 8px;
  color: var(--verm);
  font: 10px/1.4 var(--mono);
  letter-spacing: .15em;
}

.product-question summary h3 {
  margin: 0;
  color: rgba(236, 228, 209, .9);
  font: 500 clamp(24px, 2.25vw, 34px)/1.45 var(--serif);
  letter-spacing: -.025em;
  transition: color .25s ease;
}

.product-question summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  color: var(--gold-pale);
  border: 1px solid rgba(236, 228, 209, .26);
  border-radius: 50%;
  font: 300 20px/29px var(--sans);
  text-align: center;
  transition: transform .28s ease, border-color .28s ease;
}

.product-question[open] summary h3,
.product-question summary:hover h3 {
  color: var(--bone);
}

.product-question[open] summary::after {
  content: "−";
  border-color: rgba(213, 175, 91, .62);
  transform: rotate(180deg);
}

.product-question__answer {
  max-width: 760px;
  padding: 0 46px 42px 68px;
}

.product-question__answer p {
  margin: 0;
  color: rgba(236, 228, 209, .65);
  font-size: 14px;
  line-height: 2;
}

.product-question__answer p + p {
  margin-top: 14px;
}

.product-question__answer .text-link {
  margin-top: 24px;
  color: var(--gold-pale);
}

@media (max-width: 1080px) {
  .product-questions__layout {
    grid-template-columns: minmax(260px, .62fr) minmax(460px, 1.38fr);
    gap: 58px;
  }
}

@media (max-width: 820px) {
  .product-questions {
    padding: 96px 0 110px;
  }

  .product-questions__layout {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .product-questions__intro {
    position: static;
  }

  .product-questions__intro h2 {
    font-size: clamp(40px, 11vw, 60px);
  }

  .product-question summary {
    grid-template-columns: 38px minmax(0, 1fr) 32px;
    gap: 12px;
    padding: 26px 0;
  }

  .product-question summary > span {
    padding-top: 6px;
  }

  .product-question summary h3 {
    font-size: clamp(22px, 6.8vw, 29px);
  }

  .product-question__answer {
    padding: 0 0 34px 50px;
  }
}

/* Music constitution: a codex page, not a document preview. */

.constitution-hero {
  position: relative;
  min-height: max(820px, 100svh);
  padding: 150px 0 112px;
  color: var(--bone);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 45%, rgba(27, 90, 73, .25), transparent 37%),
    linear-gradient(118deg, #04100c 0 58%, #0b211b 100%);
}

.page-back {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: clamp(16px, 2.1vw, 32px);
  z-index: 75;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 15px;
  color: var(--bone);
  border: 1px solid rgba(236, 228, 209, .24);
  border-radius: 999px;
  background: rgba(6, 16, 13, .74);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px) saturate(1.15);
  overflow: hidden;
  text-decoration: none;
  transition: width .32s cubic-bezier(.2, .75, .2, 1), color .25s ease,
    background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.page-back:hover,
.page-back:focus-visible {
  width: 132px;
  color: var(--gold-pale);
  border-color: rgba(217, 199, 151, .5);
  transform: translateY(-2px);
}

.page-back__arrow {
  position: relative;
  width: 17px;
  height: 1px;
  flex: 0 0 17px;
  background: currentColor;
  transition: transform .25s ease;
}

.page-back__arrow::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: rotate(45deg);
}

.page-back:hover .page-back__arrow,
.page-back:focus-visible .page-back__arrow {
  transform: translateX(-2px);
}

.page-back__label {
  min-width: 62px;
  opacity: 0;
  white-space: nowrap;
  font: 9px/1 var(--mono);
  letter-spacing: .08em;
  transform: translateX(-5px);
  transition: opacity .2s ease .06s, transform .25s ease .04s;
}

.page-back:hover .page-back__label,
.page-back:focus-visible .page-back__label {
  opacity: 1;
  transform: translateX(0);
}

body.is-light-scene .page-back {
  color: var(--green);
  border-color: rgba(18, 63, 54, .25);
  background: rgba(246, 239, 223, .84);
  box-shadow: 0 10px 28px rgba(18, 63, 54, .1);
}

body.is-light-scene .page-back:hover,
body.is-light-scene .page-back:focus-visible {
  color: var(--verm-readable);
  border-color: rgba(152, 70, 44, .42);
}

.constitution-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(236, 228, 209, .08) 50%, transparent 50.1%),
    repeating-linear-gradient(0deg, transparent 0 118px, rgba(236, 228, 209, .04) 119px 120px);
  opacity: .55;
}

.constitution-hero__field {
  opacity: .4;
}

.constitution-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 1.05fr) minmax(420px, .95fr);
  gap: clamp(68px, 9vw, 150px);
  align-items: center;
}

.constitution-hero__copy h1 {
  margin: 30px 0 0;
  color: var(--bone);
  font: 500 clamp(72px, 8.6vw, 132px)/.98 var(--serif);
  letter-spacing: -.065em;
}

.constitution-hero__lead {
  max-width: 650px;
  margin: 38px 0 0;
  color: rgba(236, 228, 209, .7);
  font-size: 17px;
  line-height: 1.9;
}

.constitution-hero__copy blockquote {
  max-width: 700px;
  margin: 42px 0 0;
  padding: 0 0 0 26px;
  color: var(--gold-pale);
  border-left: 1px solid var(--verm);
  font: 400 clamp(20px, 2vw, 27px)/1.8 var(--display);
  letter-spacing: .035em;
}

.constitution-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin: 48px 0 0;
  border-top: 1px solid rgba(236, 228, 209, .18);
  border-left: 1px solid rgba(236, 228, 209, .18);
}

.constitution-stats div {
  padding: 17px 19px 19px;
  border-right: 1px solid rgba(236, 228, 209, .18);
  border-bottom: 1px solid rgba(236, 228, 209, .18);
}

.constitution-stats dt {
  color: rgba(236, 228, 209, .46);
  font: 9px/1.4 var(--mono);
  letter-spacing: .13em;
}

.constitution-stats dd {
  margin: 9px 0 0;
  color: var(--bone);
  font: 500 27px/1 var(--serif);
}

.constitution-hero__link {
  margin-top: 34px;
  color: var(--gold-pale);
}

.constitution-orbit {
  position: relative;
  justify-self: center;
  width: min(40vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(236, 228, 209, .17);
  border-radius: 50%;
}

.constitution-orbit::before,
.constitution-orbit::after {
  content: "";
  position: absolute;
  inset: 50% -12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 228, 209, .16), transparent);
}

.constitution-orbit::after {
  transform: rotate(90deg);
}

.constitution-orbit i {
  --ring: 0;
  position: absolute;
  inset: calc(4% + var(--ring) * 4.7%);
  border: 1px solid rgba(236, 228, 209, calc(.19 - var(--ring) * .012));
  border-radius: 50%;
  transform: rotate(calc(var(--ring) * 19deg));
}

.constitution-orbit i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--ring-color, var(--gold));
  box-shadow: 0 0 20px rgba(199, 163, 94, .45);
}

.constitution-orbit i:nth-child(1) { --ring: 0; --ring-color: var(--verm); }
.constitution-orbit i:nth-child(2) { --ring: 1; }
.constitution-orbit i:nth-child(3) { --ring: 2; }
.constitution-orbit i:nth-child(4) { --ring: 3; --ring-color: var(--verm); }
.constitution-orbit i:nth-child(5) { --ring: 4; }
.constitution-orbit i:nth-child(6) { --ring: 5; }
.constitution-orbit i:nth-child(7) { --ring: 6; --ring-color: var(--verm); }
.constitution-orbit i:nth-child(8) { --ring: 7; }
.constitution-orbit i:nth-child(9) { --ring: 8; }

.constitution-orbit b,
.constitution-orbit strong,
.constitution-orbit > span {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  text-align: center;
}

.constitution-orbit b {
  top: calc(50% - 54px);
  color: var(--verm);
  font: 10px/1 var(--mono);
  letter-spacing: .18em;
}

.constitution-orbit strong {
  top: calc(50% - 30px);
  color: var(--bone);
  font: 500 clamp(48px, 6vw, 78px)/1 var(--serif);
}

.constitution-orbit > span {
  top: calc(50% + 48px);
  color: rgba(236, 228, 209, .46);
  font: 9px/1 var(--mono);
  letter-spacing: .25em;
}

.constitution-reader {
  position: relative;
  padding: clamp(112px, 11vw, 168px) 0;
  color: var(--ink);
  background: linear-gradient(118deg, var(--paper-light), #e4d7bd);
}

.constitution-reader__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  gap: clamp(66px, 8vw, 126px);
  align-items: start;
}

.constitution-toc {
  position: sticky;
  top: 104px;
  padding: 26px 0 0;
  border-top: 1px solid var(--paper-line);
}

.constitution-toc nav {
  display: grid;
  margin-top: 29px;
  border-top: 1px solid var(--paper-line);
}

.constitution-toc nav a {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 8px;
  padding: 13px 0;
  color: rgba(6, 16, 13, .7);
  border-bottom: 1px solid var(--paper-line);
  font-size: 12px;
  line-height: 1.5;
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}

.constitution-toc nav a:hover {
  padding-left: 5px;
  color: var(--verm-readable);
}

.constitution-toc nav span {
  color: var(--verm-readable);
  font: 9px/1.8 var(--mono);
  letter-spacing: .08em;
}

.constitution-toc__note {
  margin-top: 34px;
  padding: 20px;
  color: var(--bone);
  background: var(--green);
}

.constitution-toc__note strong {
  color: var(--gold-pale);
  font: 9px/1.5 var(--mono);
  letter-spacing: .1em;
}

.constitution-toc__note p {
  margin: 12px 0 0;
  color: rgba(236, 228, 209, .64);
  font-size: 11px;
  line-height: 1.8;
}

.constitution-source-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--green);
  font: 10px/1.5 var(--mono);
  text-underline-offset: 5px;
}

.constitution-document {
  min-width: 0;
  max-width: 1020px;
}

.constitution-loading,
.constitution-error {
  min-height: 240px;
  padding: 40px;
  border: 1px solid var(--paper-line);
}

.constitution-document > .constitution-note {
  margin-top: 0;
}

.constitution-note {
  position: relative;
  margin: 0 0 22px;
  padding: 24px 28px 24px 62px;
  color: var(--bone);
  background: linear-gradient(110deg, var(--green), #174d40);
}

.constitution-note::before {
  content: "宪";
  position: absolute;
  top: 22px;
  left: 23px;
  color: var(--gold-pale);
  font: 20px/1 var(--display);
}

.constitution-note p {
  margin: 0;
  color: rgba(236, 228, 209, .76);
  font-size: 13px;
  line-height: 1.85;
}

.constitution-note strong {
  color: var(--bone);
}

.constitution-chapter {
  scroll-margin-top: 100px;
  margin-top: 94px;
}

.constitution-chapter:first-of-type {
  margin-top: 76px;
}

.constitution-chapter > h2 {
  margin: 0 0 48px;
  padding: 0 0 28px;
  color: var(--ink);
  border-bottom: 1px solid var(--paper-line);
  font: 600 clamp(38px, 4.5vw, 66px)/1.18 var(--serif);
  letter-spacing: -.045em;
}

.constitution-chapter h3 {
  scroll-margin-top: 100px;
  margin: 72px 0 24px;
  color: var(--green);
  font: 600 clamp(24px, 2.5vw, 34px)/1.38 var(--serif);
  letter-spacing: -.025em;
}

.constitution-chapter p {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(6, 16, 13, .69);
  font-size: 14px;
  line-height: 1.95;
}

.constitution-chapter p > strong {
  color: var(--green);
  font-family: var(--serif);
}

.constitution-instructions {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: constitution-step;
  border-top: 1px solid var(--paper-line);
}

.constitution-instructions li {
  position: relative;
  counter-increment: constitution-step;
  padding: 19px 20px 19px 62px;
  color: rgba(6, 16, 13, .72);
  border-bottom: 1px solid var(--paper-line);
  font-size: 13px;
  line-height: 1.85;
}

.constitution-instructions li::before {
  content: counter(constitution-step, decimal-leading-zero);
  position: absolute;
  top: 23px;
  left: 18px;
  color: var(--verm-readable);
  font: 9px/1 var(--mono);
  letter-spacing: .08em;
}

.constitution-clauses {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--paper-line);
}

.constitution-clauses li {
  scroll-margin-top: 96px;
  position: relative;
  padding: 19px 22px 20px 30px;
  color: rgba(6, 16, 13, .7);
  border-bottom: 1px solid var(--paper-line);
  font-size: 13px;
  line-height: 1.9;
  transition: background-color .2s ease;
}

.constitution-clauses li::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--verm-readable);
}

.constitution-clauses li:hover,
.constitution-clauses li:target {
  background: rgba(18, 63, 54, .055);
}

.constitution-clauses strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 15px;
}

.constitution-table-wrap {
  max-width: 100%;
  margin: 28px 0 38px;
  overflow-x: auto;
  border: 1px solid var(--paper-line);
}

.constitution-table-wrap table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.constitution-table-wrap th,
.constitution-table-wrap td {
  padding: 13px 16px;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  text-align: left;
  vertical-align: top;
  font-size: 11px;
  line-height: 1.7;
}

.constitution-table-wrap th {
  color: var(--bone);
  background: var(--green);
  font: 10px/1.6 var(--mono);
  letter-spacing: .06em;
}

.constitution-table-wrap tr:last-child td {
  border-bottom: 0;
}

.constitution-table-wrap th:last-child,
.constitution-table-wrap td:last-child {
  border-right: 0;
}

.constitution-document pre {
  position: relative;
  margin: 30px 0 38px;
  padding: 30px;
  overflow-x: auto;
  color: rgba(236, 228, 209, .75);
  border-left: 3px solid var(--verm);
  background: var(--ink);
  font: 11px/1.85 var(--mono);
}

.constitution-document pre::before {
  content: attr(data-language);
  position: absolute;
  top: 10px;
  right: 13px;
  color: rgba(236, 228, 209, .3);
  font: 8px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.constitution-document :not(pre) > code {
  padding: .1em .35em;
  color: var(--verm-readable);
  background: rgba(189, 98, 64, .08);
  font: .9em/1.4 var(--mono);
}

.constitution-coda {
  position: relative;
  min-height: 78svh;
  padding: 140px 0;
  color: var(--bone);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 48%, rgba(31, 95, 76, .27), transparent 34%),
    var(--ink);
}

.constitution-coda__inner {
  max-width: 980px;
}

.constitution-coda h2 {
  margin: 68px 0 0;
  color: var(--bone);
  font: 500 clamp(58px, 8vw, 112px)/1.08 var(--serif);
  letter-spacing: -.06em;
}

.constitution-coda__inner > p:not(.chapter) {
  max-width: 650px;
  margin: 42px 0 0;
  color: rgba(236, 228, 209, .58);
  line-height: 1.9;
}

.constitution-coda .text-link {
  margin-top: 38px;
  color: var(--gold-pale);
}

@media (max-width: 1080px) {
  .constitution-hero__inner {
    grid-template-columns: 1fr minmax(330px, .7fr);
    gap: 50px;
  }

  .constitution-reader__layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 56px;
  }
}

@media (max-width: 820px) {
  .page-back {
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
    padding: 0 13px;
  }

  .page-back:hover,
  .page-back:focus-visible {
    width: 44px;
  }

  .page-back__label {
    display: none;
  }

  .constitution-hero {
    padding: 118px 0 94px;
  }

  .constitution-hero__inner {
    grid-template-columns: 1fr;
    gap: 74px;
  }

  .constitution-hero__copy h1 {
    font-size: clamp(64px, 19vw, 90px);
  }

  .constitution-hero__lead {
    font-size: 15px;
  }

  .constitution-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .constitution-orbit {
    width: min(86vw, 500px);
  }

  .constitution-reader {
    padding: 88px 0 108px;
  }

  .constitution-reader__layout {
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .constitution-toc {
    position: static;
  }

  .constitution-toc nav {
    grid-template-columns: 1fr 1fr;
  }

  .constitution-toc nav a:nth-child(odd) {
    border-right: 1px solid var(--paper-line);
    padding-right: 12px;
  }

  .constitution-toc nav a:nth-child(even) {
    padding-left: 12px;
  }

  .constitution-chapter {
    margin-top: 76px;
  }

  .constitution-chapter > h2 {
    font-size: clamp(36px, 10.5vw, 52px);
  }

  .constitution-chapter h3 {
    margin-top: 58px;
    font-size: clamp(23px, 6.6vw, 30px);
  }

  .constitution-note {
    padding: 22px 22px 22px 54px;
  }

  .constitution-note::before {
    left: 19px;
  }

  .constitution-clauses li {
    padding-right: 4px;
  }

  .constitution-coda {
    min-height: 680px;
    padding: 110px 0;
  }

  .constitution-coda h2 {
    font-size: clamp(48px, 13.5vw, 72px);
  }
}
