@font-face {
  font-family: "Alibaba PuHuiTi Heavy";
  src: url("assets/fonts/alibaba-puhuiti-heavy-headings.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --bone: #f1eadc;
  --paper: #fffdf7;
  --ink: #151513;
  --soft-ink: #6f675c;
  --line: #c9bead;
  --orange: #ff5a14;
  --apricot: #f1a163;
  --honey: #f4d34f;
  --olive: #7d8264;
  --display: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, "PingFang SC", sans-serif;
  --heavy: "Alibaba PuHuiTi Heavy", "Arial Black", "Avenir Next Heavy", "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --page: min(1320px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: #070706;
}
html:has(.music-page),
.music-page { background: var(--bone); }
html:has(.creations-page),
.creations-page { background: #9f9d98; }
html:has(.site-header.is-scrolled),
html:has(.menu-button[aria-expanded="true"]) {
  background: var(--bone);
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--bone);
  font-family: var(--sans);
  letter-spacing: 0;
  overflow-x: clip;
}
body::after {
  content: "";
  position: fixed;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
video { display: block; }
button { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.page-shell { width: var(--page); margin-inline: auto; }
.display { font-family: var(--display); }
.kicker, .meta, .nav-link, .footer-link {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: -1px;
  left: 0;
  width: 100%;
  padding-top: calc(env(safe-area-inset-top, 0px) + 1px);
  color: #fbf7ef;
  transition: color .3s ease, background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled { color: var(--ink); background: rgba(242, 238, 228, .93); border-bottom: 1px solid rgba(38,35,31,.18); backdrop-filter: blur(12px); }
.header-inner { width: var(--page); min-height: 76px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; }
.wordmark { position: relative; font-family: var(--display); font-size: 24px; font-weight: 600; }
.wordmark-menu { display: none; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.nav-link { position: relative; padding-block: 10px; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 1px; background: currentColor; transition: right .25s ease; }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { right: 0; }
.contact-link { color: var(--orange); }
.menu-button { display: none; width: 42px; height: 42px; padding: 12px 8px; color: inherit; border: 0; background: transparent; }
.menu-button i { display: block; width: 25px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .2s ease; }

.hero {
  position: relative;
  min-height: max(690px, 100svh);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-tint { display: none; }
.hero-wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,10,8,.06) 0%, rgba(12,10,8,.08) 52%, rgba(12,10,8,.48) 100%); }
.hero-content { position: relative; z-index: 2; width: var(--page); margin-inline: auto; padding: 150px 0 56px; color: #fbf7ef; }
.hero-line { display: flex; justify-content: space-between; gap: 32px; align-items: flex-end; }
.hero h1 { max-width: 970px; margin: 0; font-size: clamp(62px, 9vw, 138px); line-height: .86; font-weight: 500; }
.hero-cn { display: block; margin-top: 18px; font-family: var(--sans); font-size: clamp(18px, 2vw, 31px); font-weight: 500; }
.hero-side { width: 260px; margin: 0 0 10px; font-size: 14px; line-height: 1.8; }
.hero-footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 54px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.42); }
.hero-footer span { font-size: 11px; text-transform: uppercase; }
.scroll-cue {
  display: inline-block;
  line-height: 1.25;
  text-align: right;
}
.mobile-break { display: none; }

.home-page { background: var(--paper); }
.home-hero {
  min-height: max(720px, 100svh);
  align-items: stretch;
  color: #fffdf7;
  background: #070706;
}
.home-hero .hero-media {
  transform: scale(1.018);
  animation: hero-push 14s ease-out both;
}
.home-hero .hero-wash {
  background:
    radial-gradient(ellipse at 50% 46%, rgba(8,8,7,0) 34%, rgba(8,8,7,.48) 100%),
    linear-gradient(rgba(8,8,7,.34), rgba(8,8,7,.44));
  pointer-events: none;
}
.home-hero-grid {
  position: relative;
  z-index: 2;
  width: var(--page);
  min-height: max(720px, 100svh);
  margin-inline: auto;
  padding: 116px 0 42px;
  pointer-events: none;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-items: end;
}
.hero-label {
  align-self: start;
  margin: 0;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero-title-block { align-self: end; margin-bottom: 22px; }
.home-hero .home-title {
  max-width: min(780px, 58vw);
  margin: 0;
  font-family: "Arial Black", "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, "PingFang SC", sans-serif;
  font-size: clamp(78px, 8.5vw, 115px);
  font-weight: 900;
  line-height: .78;
  text-transform: uppercase;
}
.home-hero .home-title span { display: block; }
.home-hero .home-title-cut {
  width: max-content;
  max-width: 100%;
  margin-left: 3.6vw;
  padding: .03em .1em .12em;
  color: #11110f;
  background: var(--orange);
  transform: rotate(-1.4deg);
}
.home-hero .hero-cn {
  margin-top: 18px;
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 800;
}
.home-hero .hero-side {
  position: absolute;
  right: 0;
  bottom: 116px;
  width: min(320px, 26vw);
  margin: 0;
  color: rgba(255,253,247,.94);
  font-weight: 650;
  text-align: right;
}
.home-hero .hero-footer {
  margin-top: 0;
  padding-top: 18px;
  border-color: rgba(255,253,247,.52);
}

.studio-manifesto {
  position: relative;
  padding: 110px 0 122px;
  color: var(--ink);
  background: var(--orange);
  overflow: hidden;
}
.studio-manifesto::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22px;
  background: repeating-linear-gradient(90deg, #11110f 0 30px, transparent 30px 60px);
  opacity: .92;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: .75fr 2.4fr .9fr;
  gap: 5vw;
  align-items: end;
}
.manifesto-copy {
  font-family: var(--display);
  font-size: clamp(56px, 8.6vw, 132px);
  font-weight: 850;
  line-height: .78;
  text-transform: uppercase;
}
.manifesto-copy p { margin: 0; }
.manifesto-copy span {
  color: var(--orange);
  -webkit-text-stroke: 2px var(--ink);
}
.manifesto-note {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.75;
}

.studio-board {
  padding: 102px 0 116px;
  background:
    linear-gradient(#ded8cd 1px, transparent 1px),
    linear-gradient(90deg, #ded8cd 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  border-bottom: 1px solid var(--ink);
}
.board-heading {
  display: grid;
  grid-template-columns: .75fr 1.55fr .8fr;
  gap: 4vw;
  align-items: end;
  margin-bottom: 52px;
}
.board-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 8vw, 116px);
  font-weight: 850;
  line-height: .78;
  text-transform: uppercase;
}
.board-heading h2 span {
  display: block;
  white-space: nowrap;
}
.board-heading p:last-child {
  margin: 0 0 8px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.8;
}
.workbench {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: rgba(255,253,247,.74);
}
.bench-photo {
  position: absolute;
  z-index: 4;
  top: 56px;
  right: 8%;
  width: min(430px, 34vw);
  padding: 10px 10px 34px;
  background: #e8e2d7;
  box-shadow: 10px 12px 0 var(--ink);
  transform: rotate(3.2deg);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.bench-photo:hover { transform: rotate(1deg) translateY(-8px); }
.bench-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
}
.bench-photo span {
  display: block;
  padding-top: 10px;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}
.bench-card {
  position: absolute;
  z-index: 5;
  left: 7%;
  bottom: 70px;
  width: min(320px, 28vw);
  min-height: 270px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(-4deg);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.bench-card:hover { transform: rotate(-1deg) translateY(-7px); }
.bench-card-dark { color: var(--paper); background: var(--ink); }
.bench-card strong {
  margin-top: 28px;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
}
.bench-card p {
  margin: 24px 0 0;
  color: rgba(255,253,247,.72);
  font-size: 13px;
  line-height: 1.65;
}
.bench-note {
  position: absolute;
  z-index: 6;
  right: 38%;
  bottom: 52px;
  width: 250px;
  min-height: 170px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: var(--honey);
  transform: rotate(5deg);
  box-shadow: 7px 8px 0 var(--orange);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.bench-note:hover { transform: rotate(2deg) translateY(-6px); }
.bench-note span {
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.bench-note strong {
  font-size: 28px;
  line-height: .98;
}
.bench-scribble {
  position: absolute;
  z-index: 5;
  left: 7%;
  top: 220px;
  padding: 14px 17px;
  color: var(--ink);
  background: #fffdf7;
  border: 1px solid var(--ink);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.05;
  text-transform: uppercase;
  text-decoration: none;
  transform: rotate(7deg);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.bench-scribble:hover { transform: rotate(4deg) translateY(-5px); }
.bench-sequencer {
  position: absolute;
  left: 48px;
  top: 64px;
  display: grid;
  grid-template-columns: repeat(8, 24px);
  gap: 6px;
}
.bench-sequencer span {
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  background: var(--paper);
  animation: beat 1.6s steps(1) infinite;
}
.bench-sequencer span.on { background: var(--orange); }
.bench-sequencer span:nth-child(2n) { animation-delay: .2s; }
.workbench::before {
  content: "MAKE THINGS MOVE.";
  position: absolute;
  left: 32px;
  bottom: 230px;
  max-width: 920px;
  color: rgba(21,21,19,.1);
  font-family: var(--display);
  font-size: clamp(80px, 12vw, 168px);
  font-weight: 850;
  line-height: .75;
  text-transform: uppercase;
}

@keyframes hero-push { from { transform: scale(1.07); } to { transform: scale(1.018); } }
@keyframes beat { 50% { background: var(--ink); } }

.intro-band { padding: 122px 0; border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 8vw; align-items: start; }
.intro-copy { max-width: 900px; margin: 0; font-family: var(--display); font-size: clamp(39px, 5.2vw, 76px); line-height: 1.04; font-weight: 500; }
.intro-copy em { color: var(--orange); font-weight: 500; }

.section { padding: 112px 0; }
.section-top { display: grid; grid-template-columns: 1fr 2fr; gap: 8vw; align-items: end; margin-bottom: 55px; }
.section-title { margin: 0; font-family: var(--display); font-size: clamp(48px, 6vw, 86px); line-height: .95; font-weight: 500; }
.section-intro { max-width: 520px; margin: 0; color: var(--soft-ink); font-size: 15px; line-height: 1.8; }
.text-link { display: inline-flex; gap: 12px; align-items: center; margin-top: 28px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 12px; text-transform: uppercase; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(4px, -3px); }

.current-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; }
.current-item { position: relative; min-height: 520px; overflow: hidden; background: var(--paper); }
.current-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.current-item:hover img { transform: scale(1.025); }
.current-item.secondary { background: #d9c08e; padding: 38px; display: flex; flex-direction: column; justify-content: space-between; }
.current-overlay { position: absolute; inset: auto 0 0; padding: 32px; color: #fff; background: linear-gradient(transparent, rgba(29,23,18,.72)); }
.current-overlay h3, .current-item.secondary h3 { margin: 8px 0 0; font-family: var(--display); font-size: clamp(38px, 4vw, 58px); font-weight: 500; }
.current-item.secondary p { max-width: 390px; margin: 0; font-size: 16px; line-height: 1.75; }
.status-line { display: flex; justify-content: space-between; gap: 18px; padding-top: 16px; border-top: 1px solid rgba(38,35,31,.4); }

.creation-list { border-top: 1px solid var(--line); }
.creation-row { display: grid; grid-template-columns: 90px 1fr 220px 24px; gap: 28px; align-items: center; min-height: 116px; border-bottom: 1px solid var(--line); transition: color .2s ease, padding .25s ease; }
.creation-row:hover { color: var(--orange); padding-inline: 12px; }
.creation-row h3 { margin: 0; font-family: var(--display); font-size: clamp(30px, 4vw, 52px); font-weight: 500; }
.creation-row p { margin: 0; color: var(--soft-ink); font-size: 13px; line-height: 1.5; }

.home-navigation {
  padding: clamp(88px, 10vw, 148px) 0;
  color: var(--paper);
  background: var(--ink);
}
.home-navigation-inner {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(440px, 1.2fr);
  gap: clamp(54px, 10vw, 160px);
  align-items: start;
}
.home-navigation-heading {
  position: sticky;
  top: 118px;
}
.home-navigation .kicker { color: var(--orange); }
.home-navigation-heading h2 {
  margin: 26px 0 36px;
  font-family: var(--display);
  font-size: clamp(48px, 5.8vw, 86px);
  font-weight: 850;
  line-height: .86;
  text-transform: uppercase;
}
.home-navigation-heading h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--paper);
}
.home-navigation-heading > p:last-child {
  max-width: 330px;
  margin: 0;
  color: rgba(255,253,247,.66);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}
.home-navigation-links { border-top: 1px solid rgba(255,253,247,.42); }
.home-navigation-links a {
  position: relative;
  min-height: 155px;
  padding: 25px 42px 25px 0;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 10px 26px;
  align-content: center;
  color: inherit;
  border-bottom: 1px solid rgba(255,253,247,.26);
  transition: color .25s ease, padding-left .3s cubic-bezier(.2,.8,.2,1), background-color .25s ease;
}
.home-navigation-links a:hover,
.home-navigation-links a:focus-visible {
  padding-left: 18px;
  color: var(--ink);
  background: var(--orange);
  outline: 0;
}
.home-navigation-links .meta {
  grid-row: span 2;
  align-self: start;
  padding-top: 8px;
  color: rgba(255,253,247,.58);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  transition: color .25s ease;
}
.home-navigation-links strong {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 650;
  line-height: 1;
}
.home-navigation-links a > span:not(.meta) {
  color: rgba(255,253,247,.64);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  transition: color .25s ease;
}
.home-navigation-links .external-arrow {
  position: absolute;
  top: 30px;
  right: 4px;
  font-size: 20px;
  transition: transform .25s ease;
}
.home-navigation-links a:hover .meta,
.home-navigation-links a:focus-visible .meta,
.home-navigation-links a:hover > span:not(.meta),
.home-navigation-links a:focus-visible > span:not(.meta) { color: rgba(21,21,19,.72); }
.home-navigation-links a:hover .external-arrow,
.home-navigation-links a:focus-visible .external-arrow { transform: translate(5px, -5px); }

.external-arrow {
  display: inline-block;
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 13L13 3M6 3h7v7' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 13L13 3M6 3h7v7' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
}
.quote-link,
.music-invitation-bottom a { display: inline-flex; align-items: center; gap: .55em; }

.quote-band { padding: 120px 0; color: var(--paper); background: var(--ink); }
.quote-band blockquote { max-width: 1050px; margin: 0; font-family: var(--display); font-size: clamp(51px, 7vw, 102px); line-height: .96; font-weight: 500; }
.quote-band footer { margin-top: 38px; color: #aca59a; font-size: 12px; }

.page-hero { padding: 170px 0 90px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 1120px; margin: 22px 0 0; font-family: var(--display); font-size: clamp(68px, 10vw, 154px); line-height: .86; font-weight: 500; }
.page-hero .lead { max-width: 660px; margin: 38px 0 0 auto; color: var(--soft-ink); font-size: 17px; line-height: 1.8; }

.music-page .site-header {
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.music-page .site-header.is-scrolled {
  color: var(--ink);
  background: rgba(242, 238, 228, .93);
  border-bottom-color: rgba(38,35,31,.18);
  backdrop-filter: blur(12px);
}
.music-hero {
  min-height: max(700px, 100svh);
  padding: 150px 0 46px;
  display: flex;
  color: var(--ink);
  background: var(--bone);
}
.music-hero .kicker { color: var(--orange); }
.music-hero-grid {
  display: grid;
  grid-template-columns: .6fr 2.2fr .9fr;
  grid-template-rows: auto 1fr auto;
  gap: 36px 4vw;
  align-items: end;
}
.music-hero .kicker { align-self: start; }
.music-hero h1 {
  grid-column: 2 / -1;
  align-self: center;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(70px, 9.5vw, 142px);
  font-weight: 850;
  line-height: .78;
  text-transform: uppercase;
}
.music-hero h1 span {
  color: var(--bone);
  -webkit-text-stroke: 2px var(--orange);
}
.music-hero > .page-shell > p:not(.kicker) {
  grid-column: 2;
  max-width: 580px;
  margin: 0;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.75;
}
.music-hero-meta {
  grid-column: 3;
  display: grid;
  padding-top: 10px;
  border-top: 1px solid rgba(21,21,19,.56);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}
.music-hero-meta a {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(21,21,19,.18);
  transition: color .2s ease, padding-left .2s ease;
}
.music-hero-meta a:hover,
.music-hero-meta a:focus-visible {
  padding-left: 7px;
  color: var(--orange);
}
.music-hero-meta a span:last-child {
  font-size: 14px;
  transition: transform .2s ease;
}
.music-hero-meta a:hover span:last-child,
.music-hero-meta a:focus-visible span:last-child { transform: translateY(3px); }
.yearly-album,
.produced-music,
.open-seeds { scroll-margin-top: 76px; }

.yearly-album {
  padding: 112px 0 126px;
  background: linear-gradient(
    to bottom,
    var(--bone) 0,
    var(--paper) 180px,
    var(--paper) 100%
  );
}
.music-section-heading {
  display: grid;
  grid-template-columns: .6fr 2.2fr .9fr;
  gap: 4vw;
  align-items: end;
  margin-bottom: 64px;
}
.music-section-heading > div { grid-column: 2 / -1; }
.music-section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 116px);
  font-weight: 850;
  line-height: .78;
  text-transform: uppercase;
}
.album-status {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}
.album-status span {
  width: 10px;
  height: 10px;
  background: var(--orange);
  animation: status-pulse 1.8s steps(1) infinite;
}
.yearly-layout {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) 1.1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.yearly-cover {
  margin: 0;
  padding: 12px 12px 38px;
  background: #e8e2d7;
  box-shadow: 12px 14px 0 var(--ink);
  transform: rotate(-2deg);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.yearly-cover:hover { transform: rotate(0deg) translateY(-6px); }
.yearly-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.yearly-cover figcaption {
  padding-top: 13px;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}
.yearly-note {
  max-width: 590px;
  margin: 0 0 50px;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.85;
}
.music-track-list,
.produced-list,
.open-seed-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.music-track-list { border-top: 1px solid var(--ink); }
.music-track-list li {
  min-height: 76px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.music-track-list strong {
  font-size: clamp(21px, 2.1vw, 31px);
  font-weight: 650;
}
.track-number,
.track-state {
  color: var(--soft-ink);
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}
.track-state { text-align: right; }
.music-track-list .album-more-row {
  min-height: 88px;
  color: var(--soft-ink);
}
.album-more-row .track-number {
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
}
.music-track-list .album-more-row strong {
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 850;
  text-transform: uppercase;
}
.album-more-row .track-state { color: var(--orange); }

.produced-music {
  padding: 112px 0 126px;
  color: var(--paper);
  background: var(--ink);
}
.produced-heading {
  display: grid;
  grid-template-columns: .6fr 2.2fr .9fr;
  gap: 4vw;
  align-items: end;
  margin-bottom: 70px;
}
.produced-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6.4vw, 96px);
  font-weight: 850;
  line-height: .8;
  text-transform: uppercase;
}
.produced-heading h2 span { display: block; white-space: nowrap; }
.produced-heading h2 .produced-title-line { color: inherit; }
.produced-heading h2 .produced-title-name { color: var(--orange); }
.produced-heading > p:last-child {
  margin: 0 0 8px;
  color: rgba(255,253,247,.66);
  font-size: 14px;
  line-height: 1.8;
}
.produced-list { border-top: 1px solid rgba(255,253,247,.5); }
.produced-list li {
  min-height: 190px;
  padding-block: 34px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(255,253,247,.3);
  transition: color .25s ease, padding .3s cubic-bezier(.2,.8,.2,1);
}
.produced-list li:hover {
  padding-inline: 16px;
  color: var(--orange);
}
.produced-track-leading > span,
.produced-list small {
  color: rgba(255,253,247,.62);
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}
.produced-list strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 650;
  line-height: 1;
}
.produced-track-leading {
  display: flex;
  gap: 15px;
  align-items: center;
}
.audio-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,253,247,.72);
  border-radius: 50%;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.audio-toggle:hover,
.audio-toggle:focus-visible,
[data-audio-player].is-playing .audio-toggle {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.05);
}
.audio-toggle > span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}
[data-audio-player].is-playing .audio-toggle > span {
  width: 9px;
  height: 12px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 3px, transparent 3px 6px, currentColor 6px 9px);
}
.audio-timeline { margin-top: 18px; }
.audio-timeline > div {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  color: rgba(255,253,247,.52);
  font-size: 9px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.audio-scrubber {
  --progress: 0%;
  width: 100%;
  height: 18px;
  margin: 0;
  padding: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.audio-scrubber::-webkit-slider-runnable-track {
  height: 2px;
  background: linear-gradient(to right, var(--orange) 0 var(--progress), rgba(255,253,247,.28) var(--progress) 100%);
}
.audio-scrubber::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  margin-top: -5px;
  appearance: none;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
}
.audio-scrubber::-moz-range-track {
  height: 2px;
  background: rgba(255,253,247,.28);
}
.audio-scrubber::-moz-range-progress { height: 2px; background: var(--orange); }
.audio-scrubber::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
}
.produced-credit {
  display: grid;
  gap: 7px;
  text-align: right;
}
.produced-credit > span {
  color: var(--paper);
  font-size: 14px;
  font-weight: 650;
}
.produced-list small { text-align: inherit; }

.open-seeds {
  padding: 112px 0 126px;
  color: var(--ink);
  background: var(--bone);
}
.seed-heading {
  display: grid;
  grid-template-columns: 2fr .8fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 62px;
}
.seed-heading h2 {
  max-width: 960px;
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(50px, 5.2vw, 78px);
  font-weight: 850;
  line-height: .82;
  text-transform: uppercase;
}
.seed-heading h2 > span {
  display: block;
  white-space: nowrap;
}
.seed-heading h2 .seed-title-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}
.seed-heading > p {
  margin: 0 0 8px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.8;
}
.open-seed-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  border-top: 1px solid var(--ink);
}
.open-seed-list li {
  min-height: 134px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.open-seed-list button {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}
.open-seed-list button > span {
  margin-left: 2px;
  font-size: 10px;
}
.open-seed-list .audio-toggle:hover,
.open-seed-list .audio-toggle:focus-visible,
.open-seed-list [data-audio-player].is-playing .audio-toggle {
  color: var(--paper);
  background: var(--orange);
  border-color: var(--orange);
}
.open-seed-track { min-width: 0; }
.open-seed-label {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}
.open-seed-list strong {
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 650;
}
.open-seed-list small {
  color: var(--soft-ink);
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}
.open-seed-list .audio-timeline { margin-top: 12px; }
.open-seed-list .audio-timeline > div { color: var(--soft-ink); }
.open-seed-list .audio-scrubber::-webkit-slider-runnable-track {
  background: linear-gradient(to right, var(--orange) 0 var(--progress), rgba(21,21,19,.24) var(--progress) 100%);
}
.open-seed-list .audio-scrubber::-moz-range-track { background: rgba(21,21,19,.24); }

.music-invitation {
  padding: 112px 0 72px;
  color: var(--paper);
  background: var(--ink);
}
.music-invitation h2 {
  max-width: 1180px;
  margin: 28px 0 70px;
  font-family: var(--display);
  font-size: clamp(58px, 7.8vw, 112px);
  font-weight: 850;
  line-height: .8;
  text-transform: uppercase;
}
.music-invitation h2 span { color: var(--orange); }
.music-invitation-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  border-top: 1px solid rgba(255,253,247,.46);
}
.music-invitation-bottom p {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
}
.music-invitation-bottom a {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--paper);
  color: var(--paper);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  transition:
    color .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}
.music-invitation-bottom a:hover,
.music-invitation-bottom a:focus-visible {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

@keyframes status-pulse { 50% { opacity: .22; } }

.album-feature { display: grid; grid-template-columns: minmax(320px, 1fr) 1fr; gap: 7vw; align-items: center; }
.album-art { position: relative; aspect-ratio: 1; overflow: hidden; background: #e7dcc8; }
.album-art img { width: 100%; height: 100%; object-fit: cover; }
.album-art::after { content: "WORKING COVER · 2026"; position: absolute; left: 22px; right: 22px; bottom: 18px; padding-top: 10px; border-top: 1px solid rgba(38,35,31,.45); font-size: 10px; }
.album-info h2 { margin: 16px 0 20px; font-family: var(--display); font-size: clamp(54px, 7vw, 96px); line-height: .9; font-weight: 500; }
.album-info p { max-width: 560px; color: var(--soft-ink); line-height: 1.8; }
.track-progress { margin-top: 46px; }
.track-progress div { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 12px; }

.seed-list { border-top: 1px solid var(--line); }
.seed-row { display: grid; grid-template-columns: 58px 1fr 150px 100px; gap: 24px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); }
.play-seed { width: 44px; height: 44px; border: 1px solid var(--ink); border-radius: 50%; color: var(--ink); background: transparent; cursor: default; }
.seed-row h3 { margin: 0 0 5px; font-family: var(--display); font-size: 27px; font-weight: 500; }
.seed-row p, .seed-row span { margin: 0; color: var(--soft-ink); font-size: 11px; }
.project-index { border-top: 1px solid var(--line); }
.project-entry { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 4vw; padding: 54px 0; border-bottom: 1px solid var(--line); }
.project-entry h2 { margin: 0; font-family: var(--display); font-size: clamp(52px, 7vw, 96px); line-height: .9; font-weight: 500; }
.project-entry p { max-width: 520px; margin: 8px 0 0; color: var(--soft-ink); line-height: 1.8; }
.project-entry .text-link { grid-column: 3; justify-self: start; }

/* Creations */
.light-header .site-header { color: var(--ink); }
.creations-hero {
  position: relative;
  min-height: max(700px, 96svh);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 46px;
  background: #9f9d98;
  border-bottom: 1px solid rgba(21,21,19,.25);
}
.creations-watermark {
  position: absolute;
  z-index: 0;
  left: -10%;
  top: 48%;
  width: 125%;
  display: grid;
  gap: 22px;
  transform: translateY(-50%) rotate(-10deg);
  pointer-events: none;
  color: rgba(21,21,19,.065);
  font-family: var(--display);
  font-size: 92px;
  font-weight: 850;
  line-height: .78;
  white-space: nowrap;
}
.creations-watermark span:nth-child(even) { transform: translateX(-7%); }
.creations-hero-grid { position: relative; z-index: 1; }
.creations-hero h1 {
  margin: 34px 0 0;
  font-family: var(--display);
  font-size: 132px;
  font-weight: 850;
  line-height: .78;
  text-transform: uppercase;
}
.creations-hero h1 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--paper);
}
.creations-intro {
  max-width: 590px;
  margin: 54px 0 52px auto;
  color: #474641;
  font-size: 17px;
  line-height: 1.9;
}
.creations-hero-meta {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(21,21,19,.3);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}
.creation-project { padding: 104px 0 112px; }
.seedemo-project { background: var(--paper); }
.logic-lab-project { color: var(--paper); background: var(--ink); }
.creation-project-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  gap: 8vw;
  align-items: center;
}
.creation-project-grid-reverse { grid-template-columns: minmax(0, .92fr) minmax(0, 1fr); }
.creation-project-grid-reverse .creation-visual { grid-column: 2; grid-row: 1; }
.creation-project-grid-reverse .creation-copy { grid-column: 1; grid-row: 1; }
.creation-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.creation-visual img { position: relative; z-index: 1; display: block; }
.seedemo-project .creation-visual { min-height: 650px; }
.seedemo-project .creation-visual img { width: min(58%, 360px); }
.logic-lab-project .creation-visual img { width: min(100%, 650px); }
.creation-ghost-word {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  color: rgba(21,21,19,.055);
  font-family: var(--display);
  font-size: 120px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}
.logic-lab-project .creation-ghost-word { color: rgba(255,253,247,.055); }
.creation-copy { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.creation-project-topline {
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}
.logic-lab-project .creation-project-topline { border-color: rgba(255,253,247,.35); }
.creation-copy h2 {
  margin: 48px 0 40px;
  font-family: var(--display);
  font-size: 84px;
  font-weight: 850;
  line-height: .86;
}
.creation-copy h2 > span {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.25;
}
.creation-copy > p {
  max-width: 580px;
  margin: 0 0 20px;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.9;
}
.logic-lab-project .creation-copy > p { color: rgba(255,253,247,.65); }
.creation-project-footer {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  border-top: 1px solid var(--line);
}
.logic-lab-project .creation-project-footer { border-color: rgba(255,253,247,.35); }
.creation-status,
.creation-principles {
  max-width: 330px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.6;
  text-transform: uppercase;
}
.creation-status span {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--orange);
}
.logic-lab-project .creation-principles { color: rgba(255,253,247,.55); }
.creation-link {
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  transition: color .2s ease, gap .2s ease;
}
.creation-link:hover,
.creation-link:focus-visible { color: var(--orange); gap: 36px; }
.creators-club {
  padding: 82px 0 90px;
  color: var(--ink);
  background: var(--bone);
}
.creators-club-grid {
  min-height: 390px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 8vw;
  align-items: stretch;
}
.creators-club-heading,
.creators-club-copy {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.creators-club-heading { border-top: 0; }
.creators-club-heading h2 {
  margin: 62px 0 0;
  font-family: var(--display);
  font-size: 88px;
  font-weight: 850;
  line-height: .84;
  text-transform: uppercase;
}
.creators-club-heading > p {
  margin: 16px 0 0;
  color: transparent;
  font-family: var(--display);
  font-size: 54px;
  font-weight: 850;
  line-height: .9;
  text-transform: uppercase;
  -webkit-text-stroke: 1.5px var(--orange);
}
.creators-club-copy { display: flex; flex-direction: column; }
.creators-club-copy > p {
  max-width: 510px;
  margin: 62px 0 34px;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.9;
}
.creators-club-status {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}
.creators-club-status span {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--orange);
  animation: status-pulse 1.5s ease-in-out infinite;
}
.creations-footer {
  color: var(--paper);
  background: var(--ink);
  border-top: 0;
}
.creations-footer p,
.creations-footer .footer-bottom { color: rgba(255,253,247,.58); }
.creations-footer .footer-bottom { border-color: rgba(255,253,247,.26); }
.creations-footer .footer-link:hover,
.creations-footer .footer-link:focus-visible { color: var(--orange); }

@media (max-width: 1200px) {
  .creations-hero h1 { font-size: 104px; }
  .creation-copy h2 { font-size: 70px; }
  .creation-project-grid { gap: 6vw; }
}

.about-page { background: var(--ink); }
html:has(.about-page) { background: var(--ink); }
.about-hero {
  position: relative;
  min-height: 100svh;
  padding: 132px 0 0;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.about-hero-type {
  position: absolute;
  top: 18%;
  left: -2%;
  color: rgba(255,253,247,.035);
  font-size: min(23vw, 340px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.about-hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 132px);
  display: grid;
  grid-template-columns: minmax(430px, .92fr) minmax(500px, 1.08fr);
  gap: 42px;
  align-items: end;
}
.about-hero-copy {
  position: relative;
  z-index: 3;
  padding: 0 0 74px;
}
.about-hero-copy h1 {
  margin: 42px 0 46px;
  font-size: 106px;
  font-weight: 900;
  line-height: .8;
}
.about-hero-copy h1 span {
  display: inline-block;
  margin-top: 12px;
  padding: .06em .11em .12em;
  color: var(--ink);
  background: var(--orange);
  transform: rotate(-1.2deg);
}
.about-hero-lead {
  max-width: 560px;
  margin: 0;
  color: rgba(255,253,247,.72);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.85;
}
.about-portrait-stage {
  --portrait-window-top: calc(42% - 74px);
  --portrait-window-radius: calc(29% + 37px);
  --portrait-window-center-x: calc(-3vw + var(--portrait-window-radius));
  --portrait-window-center-y: calc(var(--portrait-window-top) + var(--portrait-window-radius));
  position: relative;
  z-index: 2;
  min-height: 680px;
  margin: 0;
  align-self: stretch;
  isolation: isolate;
}
.about-portrait-window {
  position: absolute;
  right: calc((100vw - var(--page)) / -2);
  bottom: 0;
  width: calc(100% + (100vw - var(--page)) / 2 + 3vw);
  height: calc(58% + 74px);
  overflow: hidden;
  color: rgba(21,21,19,.06);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(201,190,173,.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,190,173,.45) 1px, transparent 1px);
  background-size: 42px 42px;
  border-radius: 999px 0 0 999px;
  transform: translateX(1px);
}
.about-portrait-window span {
  position: absolute;
  left: 30px;
  bottom: 22px;
  width: 120%;
  font-size: 76px;
  font-weight: 900;
  line-height: .8;
  white-space: nowrap;
  transform: rotate(-7deg);
  transform-origin: left bottom;
}
.about-cutout {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  width: min(100%, 590px);
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(16px 10px 0 rgba(255,92,25,.88));
  transform: translateX(-50%);
}
.about-cutout-clip {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  mask-image:
    linear-gradient(#000 0 0),
    radial-gradient(ellipse var(--portrait-window-radius) var(--portrait-window-radius) at var(--portrait-window-center-x) var(--portrait-window-center-y), #000 99%, transparent 100%),
    linear-gradient(#000 0 0);
  mask-size:
    100% var(--portrait-window-top),
    100% 100%,
    calc(100% - var(--portrait-window-center-x)) calc(100% - var(--portrait-window-top));
  mask-position: top left, top left, bottom right;
  mask-repeat: no-repeat;
  mask-composite: add, add;
  -webkit-mask-image:
    linear-gradient(#000 0 0),
    radial-gradient(ellipse var(--portrait-window-radius) var(--portrait-window-radius) at var(--portrait-window-center-x) var(--portrait-window-center-y), #000 99%, transparent 100%),
    linear-gradient(#000 0 0);
  -webkit-mask-size:
    100% var(--portrait-window-top),
    100% 100%,
    calc(100% - var(--portrait-window-center-x)) calc(100% - var(--portrait-window-top));
  -webkit-mask-position: top left, top left, bottom right;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: source-over, source-over;
}
.about-portrait-stage figcaption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 18px;
  left: 0;
  padding-top: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,253,247,.65);
  border-top: 1px solid rgba(255,253,247,.34);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-origin {
  padding: 112px 0 128px;
  color: var(--paper);
  background: var(--ink);
}
.about-origin-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 70px;
}
.about-section-mark {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-direction: column;
  color: rgba(255,253,247,.55);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.about-origin-copy h2 {
  max-width: 960px;
  margin: 0;
  font-size: 104px;
  font-weight: 900;
  line-height: .82;
}
.about-origin-copy h2 span { color: var(--orange); }
.about-origin-story {
  max-width: 760px;
  margin: 80px 0 0 auto;
  border-top: 1px solid rgba(255,253,247,.32);
}
.about-origin-story p {
  margin: 0;
  padding: 24px 0;
  color: rgba(255,253,247,.82);
  border-bottom: 1px solid rgba(255,253,247,.2);
  font-size: 16px;
  line-height: 1.9;
}
.about-origin-story strong { color: var(--paper); font-weight: 700; }

.about-energy {
  padding: 118px 0 132px;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(201,190,173,.38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,190,173,.38) 1px, transparent 1px);
  background-size: 48px 48px;
}
.about-energy-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}
.about-energy-heading h2 {
  margin: 0;
  font-size: 94px;
  font-weight: 900;
  line-height: .84;
}
.about-energy-heading h2 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}
.about-energy-copy {
  max-width: 800px;
  margin: 88px 0 0 auto;
  border-top: 1px solid var(--ink);
}
.about-energy-copy p {
  margin: 0;
  padding: 28px 0;
  color: var(--soft-ink);
  border-bottom: 1px solid var(--ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9;
}
.about-energy-close {
  margin-top: 138px;
  padding-top: 26px;
  border-top: 1px solid var(--ink);
}
.about-energy-close h3 {
  margin: 54px 0 0;
  font-size: 96px;
  font-weight: 900;
  line-height: .82;
}
.about-energy-close h3 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}
.about-reasons {
  margin-top: 92px;
  border-top: 1px solid var(--ink);
}
.about-reasons article {
  min-height: 156px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 80px minmax(260px, .8fr) minmax(300px, 1fr);
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}
.about-reasons article > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}
.about-reasons h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
}
.about-reasons p {
  max-width: 520px;
  margin: 0 0 0 auto;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.8;
}

.about-path { padding: 118px 0 132px; background: var(--bone); }
.about-path-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 70px;
}
.about-path-heading h2 {
  max-width: 1000px;
  margin: 0;
  font-size: 82px;
  font-weight: 900;
  line-height: .86;
}
.about-path-heading h2 span { color: var(--orange); }
.about-path-list { margin-top: 92px; border-top: 1px solid var(--ink); }
.about-path-row {
  min-height: 132px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 110px minmax(240px, .75fr) minmax(320px, 1fr);
  gap: 50px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}
.about-path-row > span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.about-path-row strong { font-size: 30px; }
.about-path-row p {
  max-width: 570px;
  margin: 0 0 0 auto;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.75;
}
.about-path-row.is-orange {
  margin-inline: -24px;
  padding-inline: 24px;
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}
.about-path-row.is-orange p { color: rgba(21,21,19,.74); }

.about-invitation {
  min-height: 72svh;
  padding: 112px 0 92px;
  display: flex;
  align-items: center;
  color: var(--paper);
  background: var(--ink);
}
.about-invitation h2 {
  margin: 46px 0 72px;
  font-size: 84px;
  font-weight: 900;
  line-height: .84;
}
.about-invitation h2 span { color: var(--orange); }
.about-invitation .page-shell > div {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  border-top: 1px solid rgba(255,253,247,.35);
}
.about-invitation .page-shell > div p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,253,247,.68);
  line-height: 1.8;
}
.about-invitation a {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--paper);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}
.about-invitation a:hover,
.about-invitation a:focus-visible { color: var(--ink); background: var(--orange); border-color: var(--orange); }
.about-footer { background: var(--bone); }

.work-page { background: var(--paper); }
.coproduce-hero {
  position: relative;
  min-height: max(720px, 100svh);
  padding: 126px 0 42px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(ellipse at 50% 46%, rgba(8,8,7,0) 34%, rgba(8,8,7,.48) 100%),
    linear-gradient(rgba(8,8,7,.34), rgba(8,8,7,.44)),
    url("./assets/coproduce-hero.jpg") center center / cover no-repeat,
    var(--ink);
}
.coproduce-hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(max(720px, 100svh) - 168px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 16px 1fr auto auto;
  gap: 24px;
}
.coproduce-hero h1 {
  grid-row: 2;
  margin: auto 0 12px;
  align-self: end;
  font-size: clamp(68px, 9.2vw, 136px);
  font-weight: 900;
  line-height: .78;
  white-space: nowrap;
}
.coproduce-hero h1 span {
  display: inline-block;
  padding: .1em .08em .1em;
  color: var(--ink);
  background: var(--orange);
  transform: rotate(-1deg);
}
.coproduce-hero-statement {
  grid-row: 3;
  width: 100%;
  max-width: none;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(360px, 1fr);
  gap: 8vw;
  align-items: end;
}
.coproduce-hero-statement p:last-child {
  max-width: 560px;
  margin: 0 0 0 auto;
  color: rgba(255,253,247,.72);
  font-size: 15px;
  line-height: 1.85;
}
.coproduce-hero-en {
  margin: 0;
  color: var(--paper);
  font-family: var(--heavy);
  font-size: 27px;
  font-weight: 900;
  line-height: .95;
}
.coproduce-hero-meta {
  grid-row: 4;
  padding-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,253,247,.42);
  font-size: 10px;
  font-weight: 700;
}
.coproduce-hero-meta span:nth-child(2) { text-align: center; }
.coproduce-hero-meta span:last-child { text-align: right; }

.coproduce-definition,
.coproduce-process { padding: 116px 0 126px; }
.coproduce-definition {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(21,21,19,.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,21,19,.085) 1px, transparent 1px);
  background-size: 40px 40px;
}
.coproduce-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 70px;
}
.coproduce-heading h2 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 900;
  line-height: .82;
}
.coproduce-heading h2 span { color: var(--orange); }
.coproduce-story-list {
  max-width: 860px;
  margin: 74px auto 0;
}
.coproduce-story-list p {
  min-height: 0;
  margin: 0 0 30px;
  padding: 0;
  display: block;
  color: var(--soft-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
  text-align: center;
}
.coproduce-story-number {
  display: none;
}
.coproduce-story-copy {
  display: block;
  max-width: none;
  text-wrap: pretty;
}
.coproduce-story-list p:nth-child(2) .coproduce-story-copy,
.coproduce-story-list p:nth-child(5) .coproduce-story-copy {
  max-width: none;
  margin-left: 0;
}
.coproduce-story-lead strong {
  display: block;
  max-width: 760px;
  margin: 0 auto 12px;
  color: var(--ink);
  font-family: var(--heavy);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 900;
  line-height: 1.16;
  text-wrap: balance;
}
.coproduce-story-signal {
  min-height: 0 !important;
  margin: 34px 0 !important;
  padding: 0 !important;
  color: var(--ink) !important;
  background: transparent;
  border: 0 !important;
  box-shadow: none;
  transform: none;
}
.coproduce-story-signal strong {
  display: inline;
  padding: 0;
  color: var(--ink);
  background: none;
  font-family: var(--heavy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.65;
  text-decoration-line: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.coproduce-story-close {
  min-height: 0 !important;
  margin: 0 0 30px !important;
  padding: 0 !important;
  border: 0 !important;
}
.coproduce-story-close strong {
  display: inline;
  max-width: none;
  margin: 0;
  color: inherit;
  font: inherit;
}

.coproduce-boundaries {
  padding: 116px 0 126px;
  color: var(--paper);
  background: var(--ink);
}
.coproduce-heading-light h2 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}
.coproduce-boundary-list {
  max-width: 820px;
  margin: 72px auto 0;
}
.coproduce-boundary-list p {
  min-height: 0;
  margin: 0 0 30px;
  padding: 0;
  display: block;
  color: rgba(255,253,247,.7);
  border: 0;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}
.coproduce-boundary-number {
  display: none;
}
.coproduce-boundary-copy {
  display: block;
  max-width: none;
  text-wrap: pretty;
  transition: none;
}
.coproduce-boundary-copy strong {
  display: inline;
  margin: 0;
  color: var(--paper);
  font-size: 17px;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.coproduce-boundary-list p:nth-child(even) .coproduce-boundary-copy {
  max-width: none;
  margin-left: 0;
}
.coproduce-boundary-list p:hover .coproduce-boundary-copy { transform: none; }

.coproduce-definition .coproduce-heading,
.coproduce-boundaries .coproduce-heading {
  display: block;
}
.coproduce-definition .coproduce-heading h2,
.coproduce-boundaries .coproduce-heading h2 {
  max-width: 900px;
  margin: 70px auto 0;
  text-align: center;
}
.coproduce-definition .coproduce-heading h2 {
  font-family: var(--heavy);
  font-weight: 900;
}

.coproduce-process {
  padding: 84px 0 88px;
  background: var(--bone);
}
.coproduce-process-list { margin-top: 56px; border-top: 1px solid var(--ink); }
.coproduce-process-list article {
  min-height: 108px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 180px;
  gap: 44px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  transition: padding .25s ease, background .25s ease;
}
.coproduce-process-list article:hover { margin-inline: -18px; padding-inline: 18px; background: var(--orange); }
.coproduce-process-list article > span { font-size: 11px; font-weight: 800; }
.coproduce-process-list h3 { margin: 0 0 6px; font-size: 26px; line-height: 1.2; }
.coproduce-process-list p { max-width: 650px; margin: 0; color: var(--soft-ink); font-size: 13px; line-height: 1.6; }
.coproduce-process-list article:hover p { color: rgba(21,21,19,.72); }
.coproduce-process-list strong { color: var(--orange); font-size: 12px; text-align: right; }
.coproduce-process-list article:hover strong { color: var(--ink); }

.coproduce-apply {
  position: relative;
  min-height: 86svh;
  padding: 116px 0 116px;
  display: flex;
  align-items: center;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}
.coproduce-apply::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0 30px,
    var(--ink) 30px 60px
  );
}
.coproduce-apply h2 {
  margin: 46px 0 76px;
  font-size: clamp(70px, 10vw, 150px);
  font-weight: 900;
  line-height: .75;
}
.coproduce-apply h2 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}
.coproduce-apply-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: center;
  border-top: 1px solid rgba(255,253,247,.45);
}
.coproduce-apply-bottom p {
  max-width: 640px;
  margin: 0;
  color: rgba(255,253,247,.72);
  font-size: 15px;
  line-height: 1.85;
}
.coproduce-apply-button {
  min-height: 54px;
  padding: 0 19px;
  display: inline-flex;
  gap: 36px;
  align-items: center;
  color: var(--ink);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: color .2s ease, background .2s ease;
}
.coproduce-apply-button:hover,
.coproduce-apply-button:focus-visible {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 6px 6px 0 rgba(255,253,247,.9);
  transform: translate(-3px, -3px);
}

.application-dialog {
  width: min(720px, calc(100vw - 36px));
  max-height: min(820px, calc(100dvh - 36px));
  margin: auto;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 0;
  overflow: auto;
}
.application-dialog::backdrop {
  background: rgba(8,8,7,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.application-dialog-inner { position: relative; padding: 52px; }
.application-dialog-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  font-weight: 300;
  line-height: 36px;
}
.application-dialog h2 {
  max-width: 560px;
  margin: 42px 0 24px;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 900;
  line-height: .9;
}
.application-dialog-intro {
  max-width: 570px;
  margin: 0 0 42px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.8;
}
.application-form { display: grid; gap: 28px; }
.application-form label { display: grid; gap: 10px; }
.application-form label > span { font-size: 11px; font-weight: 800; text-transform: uppercase; }
.application-form input,
.application-form textarea {
  width: 100%;
  padding: 15px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: 0;
  resize: vertical;
  font: inherit;
  font-size: 16px;
  line-height: 1.6;
}
.application-form input:focus,
.application-form textarea:focus { border-bottom-color: var(--orange); box-shadow: 0 1px 0 var(--orange); }
.application-form-note,
.application-form-status {
  margin: 0;
  color: var(--soft-ink);
  font-size: 11px;
  line-height: 1.6;
}
.application-form button {
  min-height: 54px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}
.application-form button:hover,
.application-form button:focus-visible { color: var(--ink); background: var(--orange); border-color: var(--orange); }
body:has(.application-dialog[open]) { overflow: hidden; }
.application-dialog[open] { animation: application-in .24s ease-out both; }
@keyframes application-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.site-footer.work-footer {
  color: var(--ink);
  background: var(--orange);
  border-top: 0;
}
.work-footer .footer-bottom {
  color: rgba(21,21,19,.72);
  border-top-color: rgba(21,21,19,.42);
}

.site-footer { padding: 66px 0 38px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(190px, 1fr) auto; gap: 50px; align-items: start; }
.footer-brand p { max-width: 310px; margin-bottom: 0; }
.footer-name { font-family: var(--display); font-size: 40px; font-weight: 600; }
.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(82px, auto)); gap: 12px 24px; }
.footer-socials { display: flex; gap: 4px; align-items: center; margin-top: -10px; }
.footer-social {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: currentColor;
  opacity: .64;
  transition: opacity .2s ease, transform .2s ease;
}
.footer-social svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-social[aria-label="小红书"] svg { display: none; }
.footer-social[aria-label="小红书"]::before {
  content: "小红书";
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 5px;
  font-family: var(--heavy);
  font-size: 5.4px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
  -webkit-mask: none;
  mask: none;
}
.footer-social:hover,
.footer-social:focus-visible { opacity: 1; transform: translateY(-3px); outline: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 70px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--soft-ink); font-size: 10px; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 901px) {
  .music-hero {
    background: linear-gradient(
      to bottom,
      var(--bone) 0,
      var(--bone) calc(100% - 44px),
      var(--paper) 100%
    );
  }
  .music-hero-grid {
    width: min(1160px, calc(100vw - 96px));
    grid-template-columns: minmax(0, 1fr) 270px;
    grid-template-rows: auto auto;
    gap: 34px 58px;
    align-content: center;
  }
  .music-hero h1 {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(68px, 8.4vw, 124px);
  }
  .music-hero > .page-shell > p:not(.kicker) {
    grid-column: 1;
    grid-row: 2;
    max-width: 640px;
  }
  .music-hero-meta {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
  }
  .yearly-album { background: var(--paper); }
}

@media (max-width: 900px) {
  :root { --page: calc(100vw - 36px); }
  .site-header { position: absolute; }
  .header-inner {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 66px auto;
    align-items: center;
  }
  .site-header.is-menu-open,
  .site-header:has(.menu-button[aria-expanded="true"]) {
    color: var(--ink);
    background: rgba(242, 238, 228, .83);
    border-bottom: 1px solid rgba(255, 253, 247, .68);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .desktop-nav {
    display: none;
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: -8px;
    padding: 0 0 18px;
    background: transparent;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .desktop-nav.is-open { display: flex; color: var(--ink); }
  .desktop-nav .nav-link {
    width: 100%;
    min-height: 44px;
    padding: 8px 0;
    font-family: var(--display);
    font-size: 29px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: none;
  }
  .desktop-nav .nav-link::after { display: none; }
  .desktop-nav .nav-link[aria-current="page"] {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 7px;
  }
  .desktop-nav .nav-home-link { display: none; }
  .site-header.is-menu-open .wordmark {
    align-self: stretch;
    justify-self: stretch;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.2;
  }
  .site-header.is-menu-open .wordmark-default { display: none; }
  .site-header.is-menu-open .wordmark-menu { display: inline; }
  .home-page .site-header.is-menu-open .wordmark::after { display: none; }
  .home-page .site-header.is-menu-open .wordmark-menu {
    position: relative;
  }
  .home-page .site-header.is-menu-open .wordmark-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    background: currentColor;
  }
  .menu-button { display: block; }
  .menu-button[aria-expanded="true"] i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: 760px; }
  .hero-media { object-position: 58% center; }
  .hero-content { padding-bottom: 30px; }
  .hero-line { display: block; }
  .hero h1 { font-size: clamp(67px, 20vw, 100px); }
  .hero-side { width: auto; max-width: 310px; margin-top: 28px; }
  .hero-footer { margin-top: 32px; }
  .home-hero { min-height: 100svh; }
  .home-hero .hero-media { object-position: center; }
  .home-hero-grid {
    min-height: max(760px, 100svh);
    padding: 92px 0 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-label { margin-bottom: auto; padding-top: 16px; }
  .hero-title-block {
    width: calc(100vw - 48px);
    margin-left: calc((var(--page) - 100vw) / 2 + 24px);
    align-self: flex-start;
  }
  .home-hero .home-title {
    max-width: 100%;
    font-size: clamp(55px, 15.2vw, 62px);
    line-height: .78;
  }
  .home-hero .home-title-cut {
    width: fit-content;
    margin-left: .55em;
    padding-right: .1em;
  }
  .home-hero .hero-cn { max-width: none; font-size: 20px; }
  .home-hero .hero-side {
    position: static;
    width: auto;
    max-width: 335px;
    margin-left: auto;
    margin-top: 24px;
    font-size: 13px;
    text-align: right;
  }
  .home-hero .hero-footer {
    width: 100%;
    margin-top: 34px;
  }
  .home-hero .scroll-cue {
    width: min(132px, 38vw);
    margin-left: auto;
    justify-content: flex-end;
    font-size: clamp(10px, 2.7vw, 11px);
    line-height: 1.25;
    text-align: right;
  }
  .home-hero .mobile-break { display: block; }
  .studio-manifesto { padding: 76px 0 88px; }
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .manifesto-copy {
    font-size: clamp(52px, 16vw, 88px);
    line-height: .82;
  }
  .manifesto-copy span { -webkit-text-stroke-width: 1.3px; }
  .manifesto-note { max-width: 360px; }
  .studio-board { padding: 76px 0 84px; background-size: 26px 26px; }
  .board-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 34px;
  }
  .board-heading h2 {
    font-size: clamp(43px, 12vw, 64px);
    line-height: .84;
  }
  .workbench {
    min-height: 720px;
  }
  .workbench::before {
    left: 16px;
    bottom: 300px;
    font-size: 82px;
  }
  .bench-photo {
    top: 62px;
    right: -8px;
    width: min(320px, 78vw);
  }
  .bench-card {
    left: 18px;
    bottom: 52px;
    width: min(260px, 74vw);
    min-height: 230px;
    padding: 21px;
  }
  .bench-note {
    right: 14px;
    bottom: 250px;
    width: 178px;
    min-height: 130px;
    padding: 16px;
  }
  .bench-note strong { font-size: 22px; }
  .bench-scribble {
    left: 24px;
    top: 340px;
    font-size: 13px;
  }
  .bench-sequencer { display: none; }
  .intro-band, .section { padding: 78px 0; }
  .intro-grid, .section-top { grid-template-columns: 1fr; gap: 28px; }
  .home-navigation { padding: 82px 0 88px; }
  .home-navigation-inner { display: block; }
  .home-navigation-heading { position: static; margin-bottom: 52px; }
  .home-navigation-heading h2 { margin: 20px 0 28px; font-size: clamp(48px, 14vw, 70px); }
  .home-navigation-links a {
    min-height: 136px;
    padding: 21px 34px 21px 0;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .home-navigation-links .meta { grid-row: auto; padding-top: 0; }
  .home-navigation-links strong { font-size: clamp(27px, 8.2vw, 39px); }
  .home-navigation-links a > span:not(.meta) { max-width: 280px; font-size: 12px; }
  .home-navigation-links .external-arrow { top: 26px; right: 2px; font-size: 18px; }
  .current-grid { grid-template-columns: 1fr; }
  .current-item { min-height: 430px; }
  .creation-row { grid-template-columns: 50px 1fr 20px; min-height: 100px; }
  .creation-row p { display: none; }
  .page-hero { padding: 130px 0 70px; }
  .page-hero h1 { font-size: clamp(70px, 22vw, 120px); }
  .page-hero .lead { margin-left: 0; }
  .music-hero {
    min-height: 760px;
    padding: 112px 0 34px;
  }
  .music-hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 16px 1fr auto auto;
    gap: 26px;
  }
  .music-hero h1 {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    font-size: clamp(66px, 16vw, 104px);
    line-height: .8;
  }
  .music-hero h1 span { -webkit-text-stroke-width: 1.3px; }
  .music-hero > .page-shell > p:not(.kicker),
  .music-hero-meta { grid-column: 1; }
  .music-hero > .page-shell > p:not(.kicker) {
    grid-row: 3;
    max-width: 520px;
  }
  .music-hero-meta {
    grid-row: 4;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    font-size: 11px;
  }
  .yearly-album,
  .produced-music,
  .open-seeds { padding: 78px 0 88px; }
  .music-section-heading,
  .produced-heading,
  .seed-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 46px;
  }
  .music-section-heading > div { grid-column: 1; }
  .music-section-heading h2,
  .produced-heading h2,
  .seed-heading h2 {
    font-size: clamp(54px, 13vw, 80px);
  }
  .yearly-layout { grid-template-columns: 1fr; gap: 64px; }
  .yearly-cover {
    width: min(600px, calc(100% - 14px));
  }
  .produced-heading > p:last-child,
  .seed-heading > p { max-width: 520px; }
  .produced-list li {
    min-height: 0;
    padding: 26px 0 30px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
  }
  .produced-track-leading {
    align-self: start;
    padding-top: 6px;
    flex-direction: column;
    gap: 10px;
  }
  .audio-toggle { width: 42px; height: 42px; }
  .audio-timeline { margin-top: 14px; }
  .produced-credit {
    grid-column: 2;
    padding-bottom: 0;
    text-align: left;
  }
  .open-seed-list { grid-template-columns: 1fr; column-gap: 0; }
  .music-invitation { padding: 82px 0 54px; }
  .music-invitation h2 {
    margin-bottom: 54px;
    font-size: clamp(54px, 12.6vw, 80px);
    line-height: .84;
  }
  .album-feature, .about-opening { grid-template-columns: 1fr; }
  .album-art { max-width: 620px; }
  .project-entry { grid-template-columns: 48px 1fr; }
  .project-entry > div:last-of-type { grid-column: 2; }
  .project-entry .text-link { grid-column: 2; }
  .about-image { position: relative; top: 0; height: 62vh; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .footer-socials { justify-self: end; }
}

@media (max-width: 560px) {
  .hero-cn { max-width: 270px; }
  .section-title { font-size: 52px; }
  .current-item.secondary { padding: 28px 22px; }
  .seed-row { grid-template-columns: 48px 1fr auto; gap: 14px; }
  .seed-row > span:nth-of-type(1) { display: none; }
  .music-hero { min-height: max(680px, 100svh); }
  .music-hero h1 { font-size: clamp(48px, 14vw, 62px); }
  .music-hero-meta {
    grid-template-columns: 1fr;
    gap: 0;
    font-size: 12px;
  }
  .music-hero-meta a { min-height: 36px; }
  .music-section-heading h2,
  .produced-heading h2 { font-size: clamp(48px, 14.8vw, 68px); }
  .produced-heading h2 { font-size: clamp(42px, 12.2vw, 52px); }
  .seed-heading h2 { font-size: 42.5px; }
  .seed-heading h2 > span:nth-child(2) { font-size: 47px; }
  .seed-heading h2 > span:nth-child(3) { font-size: 38.8px; }
  .seed-heading h2 > span { white-space: nowrap; }
  .album-status { margin-top: 22px; }
  .yearly-note { margin-bottom: 34px; }
  .music-track-list li {
    min-height: 72px;
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }
  .track-state { display: none; }
  .album-more-row .track-state {
    grid-column: 2;
    display: block;
    text-align: left;
  }
  .produced-list li { padding-top: 34px; padding-bottom: 30px; }
  .produced-list strong { font-size: clamp(31px, 9.2vw, 46px); }
  .open-seed-list li {
    grid-template-columns: 48px 1fr;
    gap: 13px;
  }
  .open-seed-label { align-items: flex-start; flex-direction: column; gap: 4px; }
  .music-invitation h2 { font-size: clamp(47px, 14vw, 64px); }
  .music-invitation-bottom {
    align-items: stretch;
    flex-direction: column;
  }
  .music-invitation-bottom a { justify-content: space-between; }
  .project-entry { padding: 38px 0; }
  .site-footer { padding: 50px 0 30px; }
  .site-footer .page-shell { width: min(calc(100vw - 52px), 330px); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-brand p { max-width: 250px; font-size: 12px; line-height: 1.65; }
  .footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px 20px; }
  .footer-socials { justify-self: start; margin: -8px 0 0 -10px; }
  .footer-bottom { margin-top: 46px; padding-top: 16px; font-size: 9px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 1100px) {
  .coproduce-hero h1 { font-size: clamp(66px, 9vw, 100px); }
  .coproduce-heading { grid-template-columns: 140px minmax(0, 1fr); gap: 48px; }
}

@media (max-width: 900px) {
  .coproduce-hero {
    min-height: max(720px, 100svh);
    padding: 106px 0 30px;
  }
  .coproduce-hero-grid {
    min-height: calc(max(720px, 100svh) - 136px);
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto auto;
    gap: 24px;
  }
  .coproduce-hero h1 {
    margin: auto 0 10px;
    align-self: end;
    font-size: clamp(58px, 10vw, 88px);
  }
  .coproduce-hero-statement {
    max-width: 600px;
    margin: 0 0 18px auto;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .coproduce-hero-statement p:last-child { max-width: 520px; margin-left: auto; }
  .coproduce-definition,
  .coproduce-boundaries,
  .coproduce-process { padding: 82px 0 92px; }
  .coproduce-heading { grid-template-columns: 1fr; gap: 34px; }
  .coproduce-heading h2 { font-size: 72px; }
  .coproduce-definition .coproduce-heading h2,
  .coproduce-boundaries .coproduce-heading h2 { margin-top: 54px; }
  .coproduce-story-list { margin-top: 54px; }
  .coproduce-boundary-list { margin-top: 62px; }
  .coproduce-process-list { margin-top: 62px; }
  .coproduce-process-list article {
    grid-template-columns: 54px minmax(0, 1fr) 100px;
    gap: 24px;
  }
  .coproduce-process {
    padding: 64px 0 68px;
  }
  .coproduce-process-list { margin-top: 42px; }
  .coproduce-apply { min-height: 0; padding: 88px 0 76px; }
  .coproduce-apply h2 { margin: 42px 0 62px; font-size: 92px; }
  .coproduce-apply-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .coproduce-hero {
    min-height: max(700px, 100svh);
    padding: 98px 0 26px;
    background-position: center, center, 54% center, center;
  }
  .coproduce-hero-grid { min-height: calc(max(700px, 100svh) - 124px); }
  .coproduce-hero h1 {
    margin-bottom: 4px;
    font-size: clamp(42px, 13vw, 56px);
    line-height: .76;
  }
  .coproduce-hero h1 span { padding-inline: .055em; }
  .coproduce-hero-en { font-size: 22px; }
  .coproduce-hero-statement {
    width: 91%;
    margin-left: auto;
    margin-bottom: 8px;
  }
  .coproduce-hero-statement p:last-child { font-size: 13px; line-height: 1.75; }
  .coproduce-hero-meta { gap: 10px; font-size: 8px; }
  .coproduce-definition,
  .coproduce-boundaries,
  .coproduce-process { padding: 66px 0 74px; }
  .coproduce-process { padding: 44px 0 50px; }
  .coproduce-heading { gap: 30px; }
  .coproduce-heading h2 { font-size: 48px; line-height: .84; }
  .coproduce-heading-light h2 span { -webkit-text-stroke-width: 1.4px; }
  .coproduce-definition .coproduce-heading h2,
  .coproduce-boundaries .coproduce-heading h2 { margin-top: 42px; }
  .coproduce-story-list { margin-top: 42px; }
  .coproduce-story-list p {
    margin-bottom: 24px;
    padding: 0;
    font-size: 14px;
    line-height: 1.85;
  }
  .coproduce-story-lead strong { font-size: 24px; }
  .coproduce-story-signal {
    margin: 34px 0 !important;
    padding: 0 !important;
    box-shadow: none;
    transform: none;
  }
  .coproduce-story-signal strong { font-size: 17px; }
  .coproduce-story-close {
    min-height: 0 !important;
    margin: 0 0 24px !important;
    padding: 0 !important;
  }
  .coproduce-story-close strong { font: inherit; }
  .coproduce-boundary-list,
  .coproduce-process-list { margin-top: 48px; }
  .coproduce-process .coproduce-heading { gap: 18px; }
  .coproduce-process .coproduce-heading h2 { font-size: 40px; }
  .coproduce-process .page-shell {
    width: calc(100vw - clamp(44px, 12vw, 64px));
  }
  .coproduce-process-list { margin-top: 28px; }
  .coproduce-boundary-list p {
    margin-bottom: 26px;
    padding: 0;
    font-size: 14px;
    line-height: 1.78;
  }
  .coproduce-boundary-copy strong { font-size: 16px; line-height: inherit; }
  .coproduce-boundary-list p:hover .coproduce-boundary-copy { transform: none; }
  .coproduce-process-list article {
    min-height: 0;
    padding: clamp(16px, 4.4vw, 20px) 0 clamp(18px, 5vw, 23px);
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: clamp(9px, 2.6vw, 12px);
    align-items: start;
  }
  .coproduce-process-list article > span {
    grid-column: 1;
    grid-row: 1;
  }
  .coproduce-process-list article > div {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }
  .coproduce-process-list article:hover {
    margin-inline: 0;
    padding-inline: 0;
  }
  .coproduce-process-list h3 { margin-bottom: 4px; font-size: 19px; }
  .coproduce-process-list p { font-size: 12px; line-height: 1.55; }
  .coproduce-process-list strong {
    grid-column: 3;
    grid-row: 1;
    margin-top: 0;
    font-size: 9px;
    text-align: right;
  }
  .coproduce-apply {
    min-height: max(680px, 82svh);
    padding: 100px 0 116px;
  }
  .coproduce-apply .page-shell { width: calc(100vw - 28px); }
  .coproduce-apply h2 { margin: 36px 0 52px; font-size: 51px; line-height: .8; }
  .coproduce-apply h2 span { -webkit-text-stroke-width: 1.4px; }
  .coproduce-apply-bottom { gap: 34px; }
  .coproduce-apply-bottom p { font-size: 14px; line-height: 1.8; }
  .coproduce-apply-button {
    width: 100%;
    justify-content: space-between;
  }
  .application-dialog { width: calc(100vw - 24px); max-height: calc(100dvh - 24px); }
  .application-dialog-inner { padding: 34px 22px 28px; }
  .application-dialog-close { top: 16px; right: 16px; }
  .application-dialog h2 { margin-top: 54px; font-size: 42px; }
  .application-dialog-intro { margin-bottom: 34px; }
}

@media (max-width: 900px) {
  .creations-hero {
    min-height: max(680px, 92svh);
    padding: 118px 0 34px;
  }
  .creations-hero h1 { margin-top: 28px; font-size: 76px; }
  .creations-intro { max-width: 520px; margin: 50px 0 44px auto; }
  .creation-project { padding: 78px 0 88px; }
  .creation-project-grid,
  .creation-project-grid-reverse {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 58px;
  }
  .creation-project-grid-reverse .creation-visual,
  .creation-project-grid-reverse .creation-copy {
    grid-column: 1;
    grid-row: auto;
  }
  .creation-visual { min-height: 470px; }
  .seedemo-project .creation-visual { min-height: 650px; }
  .creation-copy h2 { font-size: 68px; }
  .creation-project-footer { margin-top: 52px; }
  .creators-club-grid { min-height: 0; grid-template-columns: 1fr; gap: 58px; }
  .creators-club-heading h2 { font-size: 68px; }
  .creators-club-heading > p { font-size: 44px; }
  .creators-club-copy > p { margin-top: 42px; }
}

@media (max-width: 560px) {
  .creations-hero {
    min-height: max(680px, 100svh);
    padding: 108px 0 28px;
  }
  .creations-hero h1 { margin-top: 25px; font-size: 50px; line-height: .8; }
  .creations-hero h1 span { -webkit-text-stroke-width: 1.4px; }
  .creations-watermark {
    left: -42%;
    top: 46%;
    width: 190%;
    gap: 26px;
    transform: translateY(-50%) rotate(-13deg);
    font-size: 66px;
    line-height: .82;
  }
  .creations-intro { margin: 42px 0 38px; font-size: 15px; line-height: 1.85; }
  .creations-hero-meta { font-size: 9px; }
  .creation-project { padding: 64px 0 72px; }
  .creation-project-grid,
  .creation-project-grid-reverse { gap: 42px; }
  .creation-visual { min-height: 430px; }
  .seedemo-project .creation-visual { min-height: 430px; }
  .seedemo-project .creation-visual img { width: min(56%, 250px); }
  .logic-lab-project .creation-visual img { width: min(112%, 450px); }
  .creation-ghost-word { font-size: 74px; }
  .creation-copy h2 { margin: 36px 0 30px; font-size: 52px; }
  .creation-copy h2 > span { margin-top: 13px; font-size: 17px; }
  .creation-copy > p { font-size: 15px; line-height: 1.85; }
  .creation-project-footer {
    margin-top: 42px;
    align-items: stretch;
    flex-direction: column;
  }
  .creation-link { width: 100%; justify-content: space-between; }
  .creators-club { padding: 64px 0 72px; }
  .creators-club-grid { gap: 48px; }
  .creators-club-heading h2 { margin-top: 42px; font-size: 50px; }
  .creators-club-heading > p { margin-top: 12px; font-size: 33px; }
  .creators-club-copy > p { margin: 36px 0 42px; font-size: 15px; }
}

@media (max-width: 1200px) {
  .about-hero-grid { grid-template-columns: minmax(390px, .9fr) minmax(430px, 1.1fr); gap: 24px; }
  .about-hero-copy h1 { font-size: 86px; }
  .about-portrait-stage {
    --portrait-window-center-x: calc((var(--page) - 100vw) / 2 + var(--portrait-window-radius));
    min-height: 620px;
  }
  .about-portrait-window { right: -3vw; }
  .about-origin-copy h2 { font-size: 86px; }
  .about-energy-heading h2 { font-size: 78px; }
  .about-energy-close h3 { font-size: 78px; }
  .about-path-heading h2 { font-size: 70px; }
  .about-invitation h2 { font-size: 70px; }
}

@media (max-width: 900px) {
  .about-hero { min-height: 0; padding: 112px 0 0; }
  .about-hero-type { top: 16%; left: -4%; font-size: 34vw; }
  .about-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-hero-copy { padding-bottom: 0; }
  .about-hero-copy h1 { margin: 32px 0 38px; font-size: 78px; }
  .about-hero-lead { max-width: 620px; }
  .about-portrait-stage {
    width: min(680px, 100%);
    min-height: 630px;
    margin-left: auto;
  }
  .about-cutout-clip { mask: none; -webkit-mask: none; }
  .about-portrait-window {
    right: -5vw;
    bottom: 0;
    width: calc(100% + 5vw);
    height: calc(57% + 72px);
  }
  .about-cutout { width: min(92%, 570px); }
  .about-origin,
  .about-energy,
  .about-path { padding: 84px 0 94px; }
  .about-origin-grid,
  .about-energy-heading,
  .about-path-heading { grid-template-columns: 1fr; gap: 42px; }
  .about-section-mark {
    padding-bottom: 16px;
    flex-direction: row;
    border-bottom: 1px solid rgba(255,253,247,.3);
  }
  .about-origin-copy h2 { font-size: 72px; }
  .about-origin-story { margin-top: 62px; }
  .about-energy-heading h2 { font-size: 66px; }
  .about-energy-copy { margin-top: 62px; }
  .about-energy-close { margin-top: 104px; }
  .about-energy-close h3 { font-size: 62px; }
  .about-reasons { margin-top: 62px; }
  .about-reasons article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 24px;
  }
  .about-reasons p { grid-column: 2; margin: 0; }
  .about-path-heading h2 { font-size: 60px; }
  .about-path-list { margin-top: 64px; }
  .about-path-row {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 24px;
  }
  .about-path-row p { grid-column: 2; margin: 0; }
  .about-invitation { min-height: 0; padding: 90px 0 84px; }
  .about-invitation h2 { font-size: 58px; }
}

@media (max-width: 560px) {
  .about-hero { padding: 102px 0 0; }
  .about-hero-type { top: 17%; left: -8%; font-size: 38vw; }
  .about-hero-grid { gap: 4px; }
  .about-hero-copy h1 { margin: 28px 0 32px; font-size: 50px; line-height: .82; }
  .about-hero-copy h1 span { margin-top: 9px; }
  .about-hero-lead { font-size: 15px; line-height: 1.8; }
  .about-portrait-stage {
    width: calc(100% + 18px);
    min-height: 470px;
    margin-top: -34px;
    margin-left: -18px;
  }
  .about-portrait-window {
    right: -18px;
    bottom: 0;
    width: calc(100% + 18px);
    height: calc(59% + 56px);
    background-size: 34px 34px;
  }
  .about-portrait-window span {
    left: 18px;
    bottom: 14px;
    font-size: 48px;
  }
  .about-cutout {
    width: min(108%, 470px);
    filter: drop-shadow(9px 8px 0 rgba(255,92,25,.88));
  }
  .about-portrait-stage figcaption {
    left: 18px;
    font-size: 8px;
  }
  .about-origin,
  .about-energy,
  .about-path { padding: 66px 0 74px; }
  .about-origin-grid,
  .about-energy-heading,
  .about-path-heading { gap: 34px; }
  .about-origin-copy h2 { font-size: 48px; line-height: .84; }
  .about-origin-copy h2 span {
    font-size: .82em;
    white-space: nowrap;
  }
  .about-origin-story { margin-top: 48px; }
  .about-origin-story p { padding: 20px 0; font-size: 15px; line-height: 1.85; }
  .about-energy { background-size: 36px 36px; }
  .about-energy-heading h2 { font-size: 46px; }
  .about-energy-heading h2 span { -webkit-text-stroke-width: 1.4px; }
  .about-energy-copy { margin-top: 48px; }
  .about-energy-copy p {
    padding: 22px 0;
    font-size: 15px;
    line-height: 1.85;
  }
  .about-energy-close {
    margin-top: 76px;
    padding-top: 20px;
  }
  .about-energy-close h3 {
    margin-top: 38px;
    font-size: 42px;
    line-height: .86;
  }
  .about-energy-close h3 span { -webkit-text-stroke-width: 1.4px; }
  .about-reasons { margin-top: 48px; }
  .about-reasons article {
    min-height: 0;
    padding: 24px 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }
  .about-reasons h3 { font-size: 23px; }
  .about-reasons p { font-size: 14px; line-height: 1.75; }
  .about-path-heading h2 { font-size: 42px; line-height: .9; }
  .about-path-list { margin-top: 48px; }
  .about-path-row {
    min-height: 0;
    padding: 24px 0;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
  }
  .about-path-row strong { font-size: 23px; }
  .about-path-row p { grid-column: 1 / -1; padding-left: 78px; font-size: 13px; }
  .about-path-row.is-orange { margin-inline: -18px; padding-inline: 18px; }
  .about-invitation { padding: 72px 0 68px; }
  .about-invitation h2 { margin: 36px 0 52px; font-size: 42px; line-height: .9; }
  .about-invitation .page-shell > div {
    align-items: stretch;
    flex-direction: column;
  }
  .about-invitation a { justify-content: space-between; }
}

@media (max-width: 389px) {
  .seed-heading h2 { font-size: 40.5px; }
  .seed-heading h2 > span:nth-child(2) { font-size: 44.6px; }
  .seed-heading h2 > span:nth-child(3) { font-size: 36.7px; }
}

@media (max-width: 370px) {
  .seed-heading h2 { font-size: 39.2px; }
  .seed-heading h2 > span:nth-child(2) { font-size: 43.2px; }
  .seed-heading h2 > span:nth-child(3) { font-size: 35.5px; }
}

@media (max-width: 360px) {
  .seed-heading h2 { font-size: 36.7px; }
  .seed-heading h2 > span:nth-child(2) { font-size: 40.5px; }
  .seed-heading h2 > span:nth-child(3) { font-size: 33.3px; }
}

@media (max-width: 340px) {
  .seed-heading h2 { font-size: 35.5px; }
  .seed-heading h2 > span:nth-child(2) { font-size: 39.3px; }
  .seed-heading h2 > span:nth-child(3) { font-size: 32.3px; }
}

@media (max-width: 330px) {
  .seed-heading h2 { font-size: 34.1px; }
  .seed-heading h2 > span:nth-child(2) { font-size: 37.5px; }
  .seed-heading h2 > span:nth-child(3) { font-size: 31px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
