:root {
  --ink: #f5f1e8;
  --muted: rgba(245, 241, 232, 0.58);
  --night: #05070b;
  --blue: #5bc8f3;
  --gold: #efba64;
  --line: rgba(245, 241, 232, 0.14);
  --pad: clamp(1.25rem, 3.3vw, 3.75rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--night);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.interface-only {
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}
body.interface-only .site-header,
body.interface-only main > section:not(.hero):not(.collection-page):not(.app-section),
body.interface-only footer,
body.interface-only .hero-copy,
body.interface-only .interaction-hint,
body.interface-only .field-control { display: none; }
body.interface-only .hero {
  height: 100svh;
  scroll-snap-align: start;
}
body.interface-only .hero-stage { position: relative; height: 100svh; min-height: 0; }
body.interface-only #rhythm-field {
  cursor: pointer;
  outline: none;
  touch-action: pan-y;
  user-select: none;
}

.intro-gate {
  position: absolute;
  z-index: 20;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse 42% 34% at center, rgba(5, 7, 11, .84), rgba(5, 7, 11, .24) 62%, transparent 84%);
  opacity: 1;
  transition: opacity .72s ease, visibility .72s step-end;
  touch-action: none;
}

.intro-gate.is-dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-gate-copy {
  width: min(86vw, 510px);
  text-align: center;
}

.intro-question,
.intro-answer button,
.intro-dismiss {
  border: 0;
  background: transparent;
  color: rgba(250, 247, 239, .88);
  font: inherit;
  cursor: pointer;
}

.intro-question {
  padding: .6rem 1rem;
  font-size: clamp(14px, 1.7vw, 19px);
  font-weight: 300;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.intro-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height .65s ease, opacity .5s ease, transform .5s ease;
}

.intro-answer.is-open {
  max-height: 230px;
  opacity: 1;
  transform: translateY(0);
}

.intro-answer p {
  margin: 1rem auto 1.25rem;
  color: rgba(238, 238, 233, .68);
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 300;
  line-height: 1.55;
  text-wrap: balance;
}

.intro-answer button,
.intro-dismiss {
  padding: .55rem .8rem;
  color: rgba(245, 241, 232, .54);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.intro-answer button:hover,
.intro-dismiss:hover { color: rgba(245, 241, 232, .92); }
.intro-dismiss { display: block; margin: .45rem auto 0; }
.intro-dismiss span {
  display: inline-block;
  margin-right: .42rem;
  font-size: 1.25em;
  animation: intro-swipe-hint 1.9s ease-in-out infinite;
}
.intro-answer.is-open + .intro-dismiss { display: none; }

@keyframes intro-swipe-hint {
  0%, 100% { transform: translateX(-3px); opacity: .48; }
  50% { transform: translateX(3px); opacity: .9; }
}

.listen-status {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 45%;
  bottom: auto;
  margin: 0;
  color: rgba(245, 241, 232, .55);
  width: min(70vw, 260px);
  min-height: 108px;
  display: grid;
  place-content: center;
  gap: .38rem;
  padding: 1rem 1.5rem;
  background: radial-gradient(ellipse at center, rgba(5, 7, 11, .68) 0 24%, rgba(5, 7, 11, .3) 58%, transparent 82%);
  transform: translate(-50%, -50%);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.65;
  transition: color .35s ease, opacity .35s ease;
  pointer-events: none;
}

.listen-status span { display: block; }
.listen-status .recording-heading::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: .55rem;
  border-radius: 50%;
  background: #b86cff;
  box-shadow: 0 0 10px rgba(184, 108, 255, .65);
  vertical-align: .04em;
}

.listen-status .recording-arrow {
  display: inline-block;
  margin: 0 .28rem;
  color: rgba(212, 178, 244, .92);
  font-size: 1.35em;
  font-weight: 700;
  line-height: .7;
  transform: translateY(.05em);
}

.listen-status.is-listening { color: rgba(238, 226, 216, .78); }

.form-label {
  position: absolute;
  z-index: 6;
  top: 45%;
  left: 50%;
  bottom: auto;
  width: min(100vw, 900px);
  min-height: 270px;
  margin: 0;
  display: grid;
  place-items: center;
  place-content: center;
  color: rgba(250, 247, 239, .9);
  background: radial-gradient(ellipse 64% 58% at center, rgba(5, 7, 11, .9) 0 16%, rgba(5, 7, 11, .62) 42%, rgba(5, 7, 11, .2) 67%, transparent 88%);
  transform: translate(-50%, -50%);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(13px, 1.9vw, 18px);
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: normal;
  text-shadow: 0 0 8px #05070b, 0 0 20px #05070b;
  transition: opacity .3s ease;
  pointer-events: none;
}

.form-label .form-prefix,
.form-label .form-intention {
  display: block;
  font-weight: 400;
}

.form-label .form-prefix {
  margin-bottom: .56rem;
  color: rgba(250, 247, 239, .68);
  font-size: .62em;
  letter-spacing: .17em;
}

.form-label .form-intention {
  line-height: 1.35;
  transition: opacity .28s ease;
}

.recording-back {
  position: absolute;
  z-index: 9;
  top: clamp(1.2rem, 4vh, 2.5rem);
  left: var(--pad);
  padding: .45rem .55rem;
  color: rgba(225, 237, 241, .62);
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .35s ease, transform .35s ease, color .25s ease;
  pointer-events: none;
  cursor: pointer;
}

.recording-back span { margin-right: .4rem; }
.recording-back:hover { color: rgba(255, 245, 220, .9); }
.recording-back.is-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.category-example {
  position: absolute;
  z-index: 7;
  top: calc(45% + 20px);
  left: 50%;
  width: min(80vw, 480px);
  margin: 0;
  color: rgba(218, 232, 237, .74);
  transform: translateX(-50%);
  text-align: center;
  font-size: clamp(11px, 1.35vw, 14px);
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: opacity .32s ease;
  pointer-events: none;
}

.swipe-demo {
  position: absolute;
  z-index: 7;
  top: calc(45% + 104px);
  left: 50%;
  width: 25px;
  height: 32px;
  color: rgba(230, 239, 241, .7);
  filter: drop-shadow(0 0 8px rgba(92, 194, 237, .24));
  opacity: 0;
  pointer-events: none;
}

.swipe-demo.is-ready:not(.is-dismissed) {
  animation: demonstrate-swipe 3.6s cubic-bezier(.42, 0, .3, 1) .35s both;
}

.swipe-demo svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: currentColor;
  stroke: none;
}

.swipe-demo.is-dismissed { display: none; }

@keyframes demonstrate-swipe {
  0% { opacity: 0; transform: translate(-50%, 5px); }
  7% { opacity: .88; transform: translate(-50%, 0); }
  17% { opacity: .88; transform: translate(calc(-50% - 34px), 0); }
  23% { opacity: .7; transform: translate(-50%, 0); }
  33% { opacity: .88; transform: translate(calc(-50% - 34px), 0); }
  40% { opacity: .72; transform: translate(-50%, 0); }
  57% { opacity: .72; transform: translate(-50%, 0); }
  67% { opacity: .88; transform: translate(calc(-50% + 34px), 0); }
  73% { opacity: .7; transform: translate(-50%, 0); }
  83% { opacity: .88; transform: translate(calc(-50% + 34px), 0); }
  90% { opacity: .72; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 0); }
}

.recording-prompt {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: clamp(5.2rem, 11vh, 7.5rem);
  width: min(86vw, 580px);
  transform: translateX(-50%);
  color: rgba(250, 247, 239, .76);
  text-align: center;
  font-size: clamp(13px, 1.55vw, 17px);
  font-weight: 300;
  line-height: 1.48;
  letter-spacing: .025em;
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
}

.recording-prompt p {
  margin: 0;
  white-space: pre-line;
  text-wrap: balance;
}

.how-button {
  position: absolute;
  z-index: 9;
  top: clamp(10.55rem, 20.4vh, 12.75rem);
  left: calc(var(--pad) + 12px);
  display: block;
  padding: .35rem .55rem;
  color: rgba(245, 241, 232, .52);
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 10px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: .08em;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: color .25s ease, opacity .45s ease;
}

.why-button { top: clamp(12.2rem, 23.5vh, 14.3rem); }

.how-button svg {
  width: 14px;
  height: 14px;
  overflow: visible;
  fill: currentColor;
  stroke: none;
}

.how-button svg .info-cut { fill: #070a10; }

.quick-access-button,
.explore-button {
  position: absolute;
  z-index: 9;
  top: clamp(7.3rem, 14.2vh, 9.4rem);
  left: calc(var(--pad) + 12px);
  padding: .35rem .55rem;
  color: rgba(245, 241, 232, .52);
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .08em;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: color .25s ease, opacity .45s ease;
}

.explore-button { top: clamp(8.9rem, 17.3vh, 10.95rem); }

.quick-access-button span,
.explore-button span {
  display: inline-block;
  margin-left: .28rem;
  transform: translateY(-1px);
  transition: transform .28s ease;
}

.quick-access-button.is-visible,
.explore-button.is-visible { opacity: 1; pointer-events: auto; }
.quick-access-button:hover,
.explore-button:hover { color: rgba(245, 241, 232, .86); }
.quick-access-button[aria-expanded='true'] span,
.explore-button[aria-expanded='true'] span { transform: translateY(1px) rotate(180deg); }

.quick-access-button[aria-expanded='true'] ~ .explore-button,
.quick-access-button[aria-expanded='true'] ~ .how-button,
.explore-button[aria-expanded='true'] ~ .how-button {
  opacity: 0;
  pointer-events: none;
}

.how-button.is-visible { opacity: 1; pointer-events: auto; }
.how-button:hover { color: rgba(245, 241, 232, .86); }

.quick-access-panel {
  position: absolute;
  z-index: 10;
  top: clamp(9.2rem, 17.7vh, 10.8rem);
  left: calc(var(--pad) + 20px);
  width: max-content;
  max-width: min(78vw, 210px);
  max-height: min(72vh, 560px);
  padding: .3rem 0;
  overflow-y: auto;
  border: 1px solid rgba(149, 221, 249, .07);
  border-radius: .75rem;
  background: rgba(5, 9, 14, .4);
  box-shadow: 0 .8rem 2.8rem rgba(0, 0, 0, .2);
  backdrop-filter: blur(13px);
  transform: translateY(-7px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}

.explore-panel {
  top: clamp(10.8rem, 20.6vh, 12.8rem);
}

.quick-access-panel .quick-access-section-heading {
  margin: .32rem .72rem .16rem;
  padding-top: .48rem;
  border-top: 1px solid rgba(149, 221, 249, .09);
  color: rgba(235, 242, 242, .34);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.quick-access-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quick-access-panel button {
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  min-height: 29px;
  padding: .36rem .72rem;
  color: rgba(235, 242, 242, .62);
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .065em;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}

.quick-access-panel svg {
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  fill: currentColor;
  opacity: .72;
}

.quick-access-panel button:hover,
.quick-access-panel button:focus-visible {
  color: rgba(255, 248, 231, .92);
  background: rgba(113, 194, 228, .08);
  outline: none;
}

.about-state {
  position: absolute;
  z-index: 20;
  inset: 0;
  display: grid;
  place-content: center;
  padding: var(--pad);
  color: var(--ink);
  background: radial-gradient(circle at 50% 42%, rgb(22, 31, 43), rgb(5, 7, 11) 64%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
}

.about-state.is-open {
  opacity: 1;
  pointer-events: auto;
}

.about-copy {
  width: min(82vw, 620px);
  text-align: center;
  opacity: 0;
  transform: scale(.55);
  transform-origin: center;
  transition: opacity .72s ease, transform 1.05s cubic-bezier(.2, .72, .22, 1);
}

.about-state.is-open .about-copy {
  opacity: 1;
  transform: scale(1);
}

.about-copy > p:first-child {
  margin: 0 0 1.2rem;
  color: rgba(167, 206, 224, .58);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 250;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.about-copy > p:last-child {
  max-width: 540px;
  margin: 0 auto;
  color: rgba(235, 240, 240, .64);
  font-size: clamp(13px, 1.6vw, 17px);
  font-weight: 300;
  line-height: 1.65;
}

.about-back {
  position: absolute;
  top: clamp(1.2rem, 4vh, 2.5rem);
  left: var(--pad);
  padding: .45rem .55rem;
  color: rgba(225, 237, 241, .65);
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.next-state {
  position: absolute;
  z-index: 8;
  inset: 0;
  display: grid;
  place-content: center;
  gap: .8rem;
  color: var(--ink);
  text-align: center;
  opacity: 0;
  transform: scale(.52);
  transform-origin: center;
  transition:
    opacity .82s ease,
    transform 1.05s cubic-bezier(.2, .72, .22, 1);
  pointer-events: none;
}

.next-state.is-visible {
  opacity: 1;
  transform: scale(1);
}

.next-state-label {
  margin: 0;
  color: rgba(245, 241, 232, .48);
  font-size: 10px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.next-state-pillar {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -.045em;
}

.record-peek {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  width: 100%;
  height: clamp(62px, 9vh, 86px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 235, 194, .12);
  border-bottom: 0;
  background: #09111e;
  box-shadow: 0 -12px 46px rgba(56, 108, 150, .08);
  opacity: .58;
  transition: opacity .55s ease, transform .55s ease;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.record-peek img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(.76) brightness(.7);
}

.record-peek span {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 50%;
  color: rgba(255, 243, 215, .72);
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .95);
}

.record-peek span b {
  display: inline-block;
  margin-left: .42rem;
  font-size: 12px;
  font-weight: 300;
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%, 100% { transform: translateY(-1px); opacity: .52; }
  50% { transform: translateY(4px); opacity: 1; }
}

.collection-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #071018;
  scroll-snap-align: start;
}

.collection-page > img {
  display: block;
  width: 100%;
  height: 100svh;
  object-fit: cover;
  object-position: center;
  filter: saturate(.88) brightness(.76);
}

.collection-page::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5, 7, 11, .5), transparent 30%, transparent 72%, rgba(5, 7, 11, .5)),
    radial-gradient(circle at center, transparent 42%, rgba(5, 7, 11, .2));
  pointer-events: none;
}

.collection-heading {
  position: absolute;
  z-index: 2;
  top: clamp(2rem, 6vh, 4rem);
  left: 50%;
  color: rgba(250, 247, 239, .88);
  transform: translateX(-50%);
  text-align: center;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .85);
}

.app-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-content: center;
  padding: var(--pad);
  overflow: hidden;
  scroll-snap-align: start;
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(55, 117, 151, .2), transparent 34%),
    #05070b;
}

.app-section::before {
  content: '';
  position: absolute;
  inset: 10% 14%;
  border: 1px solid rgba(126, 196, 225, .08);
  border-radius: 50%;
  filter: blur(.2px);
  pointer-events: none;
}

.app-section > p {
  margin: 0 0 .85rem;
  color: rgba(245, 241, 232, .46);
  font-size: 10px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.app-section > h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 7vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -.045em;
}

.app-section-records {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(239, 186, 100, .15), transparent 34%),
    radial-gradient(ellipse at 68% 55%, rgba(91, 200, 243, .12), transparent 38%),
    #06090e;
}

.app-section-settings {
  background:
    radial-gradient(circle at center, rgba(117, 78, 158, .17), transparent 37%),
    #05070b;
}

.app-section-me {
  background:
    radial-gradient(circle at 50% 38%, rgba(239, 186, 100, .12), transparent 32%),
    #05070b;
}

.collection-heading p {
  margin: 0 0 .55rem;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.collection-heading h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -.045em;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.02em;
  mix-blend-mode: difference;
}

.wordmark {
  justify-self: start;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.16em;
}

.wordmark span {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  vertical-align: top;
}

nav { display: flex; gap: 2rem; color: rgba(255,255,255,.68); }
nav a, .quiet-link { transition: opacity .25s ease; }
nav a:hover, .quiet-link:hover { opacity: .55; }
.quiet-link { justify-self: end; }

.hero { height: 190vh; position: relative; }
.hero-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(19, 44, 66, .24), transparent 42%),
    #05070b;
}

#rhythm-field { position: absolute; inset: 0; width: 100%; height: 100%; }
.ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 0 24%, rgba(17,39,57,.14) 52%, rgba(8,22,34,.82) 100%),
    linear-gradient(to bottom, rgba(5,7,11,.16), transparent 18%, transparent 78%, rgba(5,7,11,.78));
  mix-blend-mode: screen;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(5rem, 10vh, 8rem);
  width: min(90vw, 620px);
  text-align: center;
  transform: translateX(-50%);
  opacity: 0;
}

.eyebrow, .section-index {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.055em;
}

.interaction-hint {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 1.35rem;
  margin: 0;
  color: rgba(255,255,255,.4);
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.interaction-hint span { padding: 0 .45rem; color: var(--gold); }

.field-control {
  position: absolute;
  z-index: 6;
  right: var(--pad);
  bottom: 1.1rem;
  display: flex;
  gap: .65rem;
  align-items: center;
  padding: .7rem .9rem;
  color: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  font: inherit;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.control-pulse { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 9px var(--gold); }

.section-shell { padding: clamp(7rem, 14vw, 13rem) var(--pad); }
.manifesto {
  min-height: 90vh;
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 3fr;
  gap: 3rem;
  align-items: start;
  border-top: 1px solid var(--line);
}

.manifesto-copy { max-width: 930px; }
.manifesto h2, .world h2, .closing h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 6.6vw, 7.5rem);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.06em;
}
.manifesto-copy > p {
  max-width: 570px;
  margin: 3.5rem 0 0 auto;
  color: rgba(245,241,232,.7);
  font-size: clamp(1.05rem, 1.55vw, 1.4rem);
  line-height: 1.55;
}

.world { background: #ece8df; color: #12100d; }
.world .section-index { color: rgba(18,16,13,.52); }
.world-heading {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 3fr;
  gap: 3rem;
  margin-bottom: clamp(5rem, 10vw, 9rem);
}

.art-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem; }
.art-card { margin: 0; }
.art-card-large { grid-row: span 2; }
.art-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(.84) contrast(1.03);
}
.art-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0 1.8rem;
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.art-card figcaption span:last-child { color: rgba(18,16,13,.5); }

.principle {
  min-height: 82vh;
  display: grid;
  place-content: center;
  text-align: center;
  background: #0a0d12;
}
.principle-mark { display: flex; justify-content: center; gap: 7px; margin-bottom: 3rem; }
.principle-mark span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 15px rgba(239,186,100,.8); opacity: .4; }
.principle-mark span:nth-child(3) { opacity: 1; }
.principle blockquote {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.06em;
}

.closing { position: relative; min-height: 100vh; display: grid; place-items: center; overflow: hidden; text-align: center; }
.closing > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.74); transform: scale(1.035); }
.closing-scrim { position: absolute; inset: 0; background: rgba(2,6,14,.55); box-shadow: inset 0 0 220px #02050c; }
.closing-copy { position: relative; z-index: 2; }
.closing h2 { font-size: clamp(4rem, 10vw, 11rem); }
.closing a { display: inline-block; margin-top: 3rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.5); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

footer { min-height: 96px; padding: 0 var(--pad); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: rgba(255,255,255,.48); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
footer span:first-child { color: white; font-size: 12px; }
footer span:last-child { justify-self: end; }

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .hero-logo { width: min(86vw, 470px); opacity: .28; }
  .hero-copy { bottom: 5rem; }
  .interaction-hint { left: var(--pad); transform: none; }
  .field-control { right: var(--pad); }
  .field-control span:last-child { display: none; }
  .manifesto, .world-heading { grid-template-columns: 1fr; gap: 2rem; }
  .manifesto-copy > p { margin-left: 0; }
  .art-grid { grid-template-columns: 1fr; }
  .art-card-large { grid-row: auto; }
  footer { grid-template-columns: 1fr auto; }
  footer span:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #rhythm-field { opacity: .72; }
  .record-peek span b { animation: none; }
}
