@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --ink: #0b0b0c;
  --paper: #f1efe8;
  --soft: #d9d6ce;
  --line: rgba(11, 11, 12, .18);
  --line-dark: rgba(255, 255, 255, .18);
  --blue: #3455f5;
  --white: #fff;
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --pad: clamp(24px, 4.7vw, 76px);
  --header: 78px;
}

html[lang="zh-Hant"] { --serif: 'Noto Serif TC', 'Microsoft JhengHei', 'PingFang TC', serif; --sans: 'Noto Sans TC', 'Microsoft JhengHei', 'PingFang TC', sans-serif; }
html[lang="zh-Hans"] { --serif: 'Noto Serif SC', 'Microsoft YaHei', 'PingFang SC', serif; --sans: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', sans-serif; }
html[lang^="zh"] body { letter-spacing: .01em; }
html[lang^="zh"] .home-hero h1, html[lang^="zh"] .page-hero h1, html[lang^="zh"] .release-title h1 { line-height: .94; letter-spacing: -.045em; }
html[lang^="zh"] .section-heading h2, html[lang^="zh"] .release-story h2, html[lang^="zh"] .studio-hero h1 { line-height: 1.02; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 15px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { color: inherit; font: inherit; }
button { cursor: pointer; }
::selection { color: white; background: var(--blue); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: -60px; padding: 12px 18px; background: var(--white); transition: top .2s; }
.skip-link:focus { top: 12px; }

.site-header { position: absolute; z-index: 30; top: 0; left: 0; width: 100%; height: var(--header); padding: 0 var(--pad); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: white; border-bottom: 1px solid rgba(255,255,255,.25); transition: color .3s, background .3s; }
body:not(.home) .site-header { position: relative; color: var(--ink); border-color: var(--line); background: var(--paper); }
.brand { display: inline-flex; justify-self: start; align-items: center; gap: 11px; letter-spacing: .11em; line-height: .95; font-weight: 600; font-size: 13px; }
.brand small { display: block; margin-top: 4px; font-size: 7px; letter-spacing: .32em; font-weight: 400; }
.brand-mark { width: 25px; height: 32px; fill: currentColor; }
.desktop-nav { display: flex; align-items: center; gap: 38px; }
.desktop-nav a { position: relative; padding: 28px 0; font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }
.desktop-nav a::after { content: ''; position: absolute; bottom: 22px; left: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transition: transform .3s; transform-origin: right; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current]::after { transform: scaleX(1); transform-origin: left; }
.header-cta { justify-self: end; font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }
.header-cta span { margin-left: 8px; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 24px; }
.language-switcher { display: flex; align-items: center; gap: 8px; }
.language-switcher a { min-width: 24px; padding: 4px 3px; color: currentColor; opacity: .48; text-align: center; font-size: 9px; letter-spacing: .08em; border-bottom: 1px solid transparent; }
.language-switcher a:hover, .language-switcher a[aria-current] { opacity: 1; border-color: currentColor; }
.mobile-languages { display: flex; gap: 12px; margin: 22px 0 8px; }
.mobile-languages a { min-width: 48px; padding: 12px !important; justify-content: center; border: 1px solid var(--line-dark) !important; font: 500 13px var(--sans) !important; }
.mobile-languages a[aria-current] { color: var(--ink); background: white; }
.menu-button, .mobile-panel { display: none; }

.section { padding: clamp(86px, 10vw, 160px) var(--pad); }
.section--dark { color: white; background: var(--ink); }
.section--line { border-top: 1px solid var(--line); }
.section-label { display: flex; gap: 18px; align-items: center; text-transform: uppercase; font-size: 10px; letter-spacing: .2em; font-weight: 600; }
.section-label span { color: #777; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(45px, 6vw, 90px); }
.section-heading > a { padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }
.section-heading h2 { margin: 32px 0 0; font: 400 clamp(48px, 6vw, 92px)/.9 var(--serif); letter-spacing: -.035em; }
.section-heading h2 em { color: var(--blue); font-weight: 400; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 40px; min-width: 220px; padding: 17px 20px; border: 1px solid; text-transform: uppercase; font-size: 10px; letter-spacing: .15em; transition: color .25s, background .25s; }
.button--light { color: var(--ink); background: white; border-color: white; }
.button--light:hover { color: white; background: transparent; }
.button--dark { color: white; background: var(--ink); border-color: var(--ink); }
.button--dark:hover { color: var(--ink); background: transparent; }

.home-hero { position: relative; min-height: 100svh; color: white; background: #111; overflow: hidden; }
.home-hero__media, .hero-shade { position: absolute; inset: 0; }
.home-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; animation: heroIn 1.6s cubic-bezier(.2,.7,.2,1) both; }
.hero-shade { background: linear-gradient(90deg, rgba(5,5,5,.69) 0%, rgba(5,5,5,.2) 55%, rgba(5,5,5,.08)), linear-gradient(0deg, rgba(5,5,5,.52) 0%, transparent 52%); }
.home-hero__topline { position: absolute; z-index: 1; top: calc(var(--header) + 23px); left: var(--pad); right: var(--pad); display: flex; justify-content: space-between; font-size: 9px; text-transform: uppercase; letter-spacing: .2em; }
.home-hero__content { position: absolute; z-index: 1; left: var(--pad); right: var(--pad); bottom: clamp(70px, 11vh, 130px); }
.kicker { margin: 0 0 27px; font-size: 10px; text-transform: uppercase; letter-spacing: .22em; }
.home-hero h1 { margin: 0; max-width: 900px; font: 400 clamp(67px, 9.4vw, 154px)/.75 var(--serif); letter-spacing: -.045em; }
.home-hero h1 em { display: inline-block; padding-left: clamp(25px, 7vw, 110px); font-weight: 400; }
.hero-release { position: absolute; right: 0; bottom: 10px; width: min(365px, 29vw); padding-top: 17px; display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; border-top: 1px solid rgba(255,255,255,.55); }
.hero-release > span { font: 400 24px var(--serif); }
.hero-release strong, .hero-release small { display: block; }
.hero-release strong { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.hero-release small { margin-top: 3px; opacity: .65; font-size: 9px; }
.circle-play { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; transition: background .3s, color .3s; }
.circle-play:hover { color: var(--ink); background: white; }
.play-icon { display: inline-grid; place-items: center; }
.play-icon svg { width: 24px; height: 24px; fill: currentColor; }
.scroll-cue { position: absolute; z-index: 2; right: var(--pad); bottom: 24px; display: flex; align-items: center; gap: 14px; text-transform: uppercase; letter-spacing: .15em; font-size: 8px; }
.scroll-cue i { width: 36px; height: 1px; background: currentColor; }
@keyframes heroIn { from { transform: scale(1.04); opacity: .3; } to { transform: scale(1); opacity: 1; } }

@media (min-width: 981px) {
  html[lang^="zh"] .home-hero h1 { max-width: 940px; font-size: clamp(68px, 8.1vw, 118px); }
  html[lang^="zh"] .page-hero h1 { font-size: clamp(66px, 8.7vw, 126px); }
}

.manifesto { display: grid; grid-template-columns: 1fr 2.8fr; min-height: 720px; }
.manifesto__copy { align-self: center; }
.manifesto__copy h2 { margin: 0; font: 400 clamp(56px, 7.3vw, 115px)/.86 var(--serif); letter-spacing: -.045em; }
.manifesto__copy h2 em { color: var(--blue); font-weight: 400; }
.manifesto__copy p { width: min(480px, 70%); margin: 50px 0 0 auto; color: #4d4c49; font-size: 17px; line-height: 1.65; }
.manifesto__note { grid-column: 2; align-self: end; display: flex; justify-content: space-between; align-items: flex-end; padding-top: 25px; border-top: 1px solid var(--line); }
.manifesto__note span { font-size: 9px; letter-spacing: .2em; }
.manifesto__note p { width: 290px; margin: 0; color: #6b6963; font-size: 12px; }

.feature-grid__items { display: grid; grid-template-columns: 1.28fr .72fr; gap: clamp(20px, 4vw, 65px); align-items: end; }
.release-card__image { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #202020; }
.release-card__image::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.08); transition: background .4s; }
.release-card__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.release-card__image .play-icon { position: absolute; z-index: 2; left: 50%; top: 50%; width: 64px; height: 64px; color: white; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; transform: translate(-50%, -50%); opacity: 0; transition: opacity .3s, background .3s; }
.release-card__image:hover img { transform: scale(1.025); }
.release-card__image:hover::after { background: rgba(0,0,0,.25); }
.release-card__image:hover .play-icon { opacity: 1; background: rgba(0,0,0,.2); }
.image-index { position: absolute; z-index: 2; left: 15px; bottom: 12px; color: white; font-size: 8px; letter-spacing: .15em; }
.release-card__meta { padding-top: 17px; display: flex; justify-content: space-between; gap: 20px; }
.release-card__meta h3 { margin: 0; font: 400 27px/1 var(--serif); }
.release-card__meta p { margin: 7px 0 0; color: #888; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.release-card__meta > span { color: #888; font-size: 10px; }
.release-card--large:nth-child(2) { margin-bottom: 8vw; }
.release-card--large:first-child .release-card__meta h3 { font-size: clamp(30px, 3vw, 50px); }

.artists-section { padding-bottom: clamp(100px, 13vw, 200px); }
.artist-grid, .roster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 48px); }
.artist-card:nth-child(2) { transform: translateY(65px); }
.artist-card__image { position: relative; display: block; overflow: hidden; background: #ddd; }
.artist-card__image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(.82); transition: transform .7s, filter .5s; }
.artist-card__image:hover img { transform: scale(1.025); filter: saturate(1); }
.artist-card__number { position: absolute; left: 14px; top: 14px; color: white; font-size: 9px; letter-spacing: .14em; }
.round-arrow { position: absolute; right: 14px; bottom: 14px; width: 45px; height: 45px; display: grid; place-items: center; color: white; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; transition: color .3s, background .3s, transform .3s; }
.artist-card__image:hover .round-arrow { color: var(--ink); background: white; transform: rotate(45deg); }
.artist-card__copy { padding-top: 16px; display: grid; grid-template-columns: 1fr auto; gap: 4px 15px; }
.artist-card__copy > span { grid-column: 1 / -1; color: #777; font-size: 8px; text-transform: uppercase; letter-spacing: .13em; }
.artist-card__copy h3 { margin: 0; font: 400 clamp(27px, 2.5vw, 41px)/1 var(--serif); }
.artist-card__copy p { margin: 5px 0 0; color: #777; font: 400 18px var(--serif); }
.archive-strip { background: #dedbd3; }
.release-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.5vw, 38px); }

.youtube-cta { position: relative; overflow: hidden; min-height: 720px; padding: clamp(100px, 13vw, 190px) var(--pad) 120px; color: white; text-align: center; background: var(--blue); }
.youtube-cta__eyebrow { font-size: 9px; text-transform: uppercase; letter-spacing: .23em; }
.youtube-cta h2 { margin: 35px 0 50px; font: 400 clamp(75px, 10vw, 160px)/.74 var(--serif); letter-spacing: -.05em; }
.youtube-cta h2 em { font-weight: 400; color: #adb9ff; }
.youtube-cta .button { position: relative; z-index: 1; }
.ticker { position: absolute; left: 0; right: 0; bottom: 26px; overflow: hidden; border-top: 1px solid rgba(255,255,255,.35); border-bottom: 1px solid rgba(255,255,255,.35); }
.ticker div { width: max-content; padding: 10px 0; font-size: 9px; letter-spacing: .28em; white-space: nowrap; animation: ticker 22s linear infinite; }
@keyframes ticker { to { transform: translateX(-50%); } }

.page-hero { padding: clamp(90px, 11vw, 170px) var(--pad); }
.page-hero h1 { margin: 50px 0 0; font: 400 clamp(70px, 11vw, 170px)/.76 var(--serif); letter-spacing: -.055em; }
.page-hero h1 em { color: var(--blue); font-weight: 400; }
.page-hero > p { width: min(450px, 100%); margin: 50px 0 0 auto; color: #55534e; font-size: 17px; }
.page-hero--editorial { min-height: 650px; border-bottom: 1px solid var(--line); }
.roster { padding-top: 70px; padding-bottom: 180px; }
.roster-grid .artist-card:nth-child(2) { transform: none; margin-top: 80px; }

.artist-hero { position: relative; height: calc(100svh - var(--header)); min-height: 650px; color: white; overflow: hidden; }
.artist-hero__image, .artist-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.artist-hero__image { object-fit: cover; }
.artist-hero__shade { background: linear-gradient(0deg, rgba(0,0,0,.55), transparent 60%), linear-gradient(90deg, rgba(0,0,0,.25), transparent 55%); }
.artist-hero__index { position: absolute; left: var(--pad); top: 35px; font-size: 9px; text-transform: uppercase; letter-spacing: .2em; }
.artist-hero__title { position: absolute; left: var(--pad); bottom: 55px; }
.artist-hero__title p { margin: 0 0 18px; font-size: 9px; text-transform: uppercase; letter-spacing: .22em; }
.artist-hero__title h1 { margin: 0; font: 400 clamp(77px, 11vw, 170px)/.75 var(--serif); letter-spacing: -.05em; }
.artist-hero__title > span { display: block; margin-top: 22px; font: 400 clamp(25px, 3vw, 44px) var(--serif); }
.artist-hero__genre { position: absolute; right: var(--pad); bottom: 58px; text-align: right; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; line-height: 1.8; }
.artist-intro { display: grid; grid-template-columns: 1fr 2.6fr; gap: 40px; }
.artist-intro > div:last-child { max-width: 900px; }
.artist-intro p:not(.artist-tagline) { width: 72%; margin: 30px 0 0 auto; color: #5a5853; font-size: 16px; line-height: 1.75; }
.artist-tagline { margin: 0; font: 400 clamp(42px, 5vw, 75px)/1 var(--serif); letter-spacing: -.025em; }
.artist-facts { display: grid; grid-template-columns: 1fr 2.6fr; gap: 40px; }
.artist-facts dl { margin: 0; }
.artist-facts dl div { display: grid; grid-template-columns: 1fr 2fr; padding: 18px 0; border-bottom: 1px solid var(--line); }
.artist-facts dt { color: #777; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.artist-facts dd { margin: 0; font: 400 24px var(--serif); }
.discography .section-heading > span { color: #777; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.empty-state { min-height: 260px; display: grid; place-items: center; text-align: center; border-top: 1px solid var(--line-dark); }

.page-hero--music { display: grid; grid-template-columns: 2fr 1fr; align-items: end; min-height: 620px; border-bottom: 1px solid var(--line); }
.page-hero--music h1 { margin-bottom: 0; }
.page-hero--music > p { margin-bottom: 20px; }
.filter-bar { position: sticky; z-index: 10; top: 0; padding: 18px var(--pad); display: flex; justify-content: space-between; align-items: center; gap: 25px; background: rgba(241,239,232,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.filter-tabs { display: flex; gap: 8px; }
.filter-tabs button { padding: 10px 17px; color: #666; background: transparent; border: 1px solid transparent; border-radius: 100px; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.filter-tabs button.is-active { color: var(--ink); border-color: var(--ink); }
.search-field { position: relative; display: block; width: min(250px, 30vw); }
.search-field input { width: 100%; padding: 10px 30px 10px 0; background: transparent; border: 0; border-bottom: 1px solid var(--line); outline: 0; font-size: 12px; }
.search-field input:focus { border-color: var(--ink); }
.search-field svg { position: absolute; right: 0; top: 9px; width: 17px; fill: none; stroke: currentColor; }
.music-archive { padding-top: 55px; }
.archive-count { margin-bottom: 45px; color: #777; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.archive-count span { color: var(--ink); }
.release-grid--archive { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 70px; }
.release-grid--archive > div[hidden] { display: none; }
.no-results { padding: 80px 0; text-align: center; font: 400 30px var(--serif); }

.release-header { padding-top: 48px; padding-bottom: 60px; }
.breadcrumbs { display: flex; gap: 10px; color: #777; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.breadcrumbs a:hover { color: var(--ink); }
.release-title { margin-top: 90px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.release-title p { margin: 0 0 22px; font-size: 9px; text-transform: uppercase; letter-spacing: .2em; }
.release-title h1 { max-width: 1000px; margin: 0; font: 400 clamp(67px, 9.4vw, 145px)/.78 var(--serif); letter-spacing: -.05em; }
.release-title > div > span { display: block; margin-top: 25px; font: 400 clamp(26px, 3vw, 44px) var(--serif); }
.artist-chip { flex: 0 0 auto; display: grid; grid-template-columns: 48px auto auto; align-items: center; gap: 13px; padding: 7px 0 7px 7px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.artist-chip img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.artist-chip span { font-size: 9px; color: #777; }
.artist-chip strong { display: block; color: var(--ink); font-size: 11px; }
.video-stage { padding-top: 0; padding-bottom: 0; background: var(--ink); }
.watch-layout { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(320px, .72fr); align-items: stretch; }
.watch-video { min-width: 0; }
.singalong-shell { position: relative; min-width: 0; }
.singalong-panel { position: absolute; inset: 0; display: flex; flex-direction: column; overflow: hidden; color: var(--ink); background: #f1efe8; border-left: 1px solid rgba(255,255,255,.15); }
.singalong-head { flex: none; padding: 22px 24px 17px; border-bottom: 1px solid rgba(11,11,12,.14); }
.singalong-head > div:first-child { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; }
.singalong-head span, .singalong-panel--pending > div > span { color: #777; font-size: 8px; text-transform: uppercase; letter-spacing: .16em; }
.singalong-head strong { font: 400 27px/1 var(--serif); }
.singalong-toggles { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 9px 16px; }
.singalong-toggles label { display: flex; align-items: center; gap: 7px; font-size: 10px; cursor: pointer; }
.singalong-toggles input { width: 15px; height: 15px; margin: 0; accent-color: var(--blue); }
.singalong-scroll { flex: 1; min-height: 0; padding: 25px 24px 40px; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: #aaa transparent; }
.singalong-scroll:focus-visible { outline: 2px solid var(--blue); outline-offset: -3px; }
.singalong-scroll::-webkit-scrollbar { width: 7px; }
.singalong-scroll::-webkit-scrollbar-thumb { background: #aaa; border: 2px solid #f1efe8; border-radius: 10px; }
.singalong-section + .singalong-section { margin-top: 38px; padding-top: 27px; border-top: 1px solid rgba(11,11,12,.13); }
.singalong-section h2 { margin: 0 0 24px; display: flex; gap: 12px; color: #696762; font: 600 8px/1.2 var(--sans); text-transform: uppercase; letter-spacing: .14em; }
.singalong-section h2 span { color: var(--blue); }
.singalong-line { padding-bottom: 18px; }
.singalong-line + .singalong-line { padding-top: 18px; border-top: 1px solid rgba(11,11,12,.075); }
.singalong-line p { margin: 0; }
.singalong-original { font: 400 20px/1.42 'Microsoft YaHei', 'Noto Sans SC', sans-serif; letter-spacing: .02em; }
.singalong-layer[hidden] { display: none; }
.singalong-pinyin { margin-top: 6px !important; color: var(--blue); font-size: 12px; line-height: 1.5; letter-spacing: .025em; }
.singalong-english { margin-top: 6px !important; color: #6b6862; font: italic 400 15px/1.4 var(--serif); }
.singalong-panel > footer { flex: none; min-height: 45px; padding: 13px 24px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid rgba(11,11,12,.14); }
.singalong-panel > footer span { overflow: hidden; color: #777; font-size: 8px; white-space: nowrap; text-overflow: ellipsis; }
.singalong-panel > footer a, .singalong-panel--pending a { font-size: 8px; text-transform: uppercase; letter-spacing: .11em; border-bottom: 1px solid; }
.singalong-panel--pending { justify-content: center; }
.singalong-panel--pending > div { padding: 40px; }
.singalong-panel--pending strong { margin: 20px 0; display: block; font: 400 clamp(34px, 3vw, 50px)/.94 var(--serif); }
.singalong-panel--pending p { margin: 0 0 30px; color: #696762; font: 400 15px/1.55 var(--serif); }
.video-player { width: 100%; aspect-ratio: 16/9; background: #111; }
.video-player iframe { display: block; width: 100%; height: 100%; border: 0; }
.video-fallback { margin: 0; padding: 13px 0 14px; color: #8c8c8c; font-size: 10px; text-align: right; text-transform: uppercase; letter-spacing: .12em; }
.video-fallback a { color: #f1efe8; border-bottom: 1px solid rgba(241,239,232,.45); }
.video-poster { position: relative; width: 100%; padding: 0; display: block; overflow: hidden; color: white; background: #111; border: 0; }
.video-poster > img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
button.video-poster::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.16); transition: background .3s; }
button.video-poster > .play-icon { position: absolute; z-index: 2; left: 50%; top: 50%; width: 88px; height: 88px; display: grid; place-items: center; border: 1px solid white; border-radius: 50%; transform: translate(-50%,-50%); }
button.video-poster > span:last-child { position: absolute; z-index: 2; left: 50%; top: calc(50% + 62px); transform: translateX(-50%); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
button.video-poster:hover::after { background: rgba(0,0,0,.33); }
.video-poster iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-poster--pending::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.05), rgba(0,0,0,.68)); }
.video-status { position: absolute; z-index: 2; right: 7%; top: 50%; width: 300px; transform: translateY(-50%); }
.video-status > span { display: block; margin-bottom: 18px; font-size: 9px; text-transform: uppercase; letter-spacing: .2em; }
.video-status strong { display: block; font: 400 clamp(47px, 5vw, 76px)/.8 var(--serif); }
.video-status a { display: inline-block; margin-top: 35px; padding-bottom: 5px; border-bottom: 1px solid; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.release-story { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(50px, 10vw, 170px); }
.release-story h2 { margin: 35px 0 0; font: 400 clamp(40px, 4.7vw, 72px)/1 var(--serif); letter-spacing: -.025em; }
.release-story > div:last-child > p { margin: 47px 0 65px; color: #55534f; font-size: 16px; line-height: 1.8; }
.release-details { margin: 0; border-top: 1px solid var(--line); }
.release-details > div { padding: 13px 0; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); }
.release-details dt { color: #777; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.release-details dd { margin: 0; font-size: 11px; }
.lyric-section { color: white; text-align: center; background: var(--blue); }
.lyric-section__head { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.lyric-section__head > a { padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.7); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.lyric-section .section-label { justify-content: center; color: rgba(255,255,255,.8); }
.lyric-section__head .section-label { justify-content: flex-start; }
.lyric-section .section-label span { color: rgba(255,255,255,.55); }
.lyric-section blockquote { max-width: 1100px; margin: 65px auto 35px; font: 400 clamp(47px, 6.4vw, 98px)/.95 var(--serif); letter-spacing: -.03em; }
.lyric-section blockquote span { color: #abb6ff; }
.lyric-section > p { font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.rights-callout { padding: 48px var(--pad); display: grid; grid-template-columns: .8fr 1.7fr auto; align-items: center; gap: clamp(30px, 6vw, 90px); color: white; background: #151516; border-bottom: 1px solid var(--line-dark); }
.rights-callout span { display: block; margin-bottom: 8px; color: #777; font-size: 8px; text-transform: uppercase; letter-spacing: .18em; }
.rights-callout strong { font: 400 27px var(--serif); }
.rights-callout p { margin: 0; color: #999; font-size: 11px; line-height: 1.7; }
.rights-callout > a { padding-bottom: 5px; border-bottom: 1px solid; white-space: nowrap; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.related .release-grid { grid-template-columns: repeat(3, 1fr); }

.lyrics-hero { padding-top: 55px; padding-bottom: clamp(70px, 8vw, 120px); }
.lyrics-hero__grid { margin-top: clamp(65px, 8vw, 120px); display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .45fr); align-items: end; gap: clamp(55px, 10vw, 150px); }
.lyrics-hero__grid > div > p { margin: 0 0 30px; color: #777; font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
.lyrics-hero h1 { margin: 0; font: 400 clamp(65px, 8.5vw, 132px)/.8 var(--serif); letter-spacing: -.045em; }
.lyrics-hero__grid > div > span { display: block; margin-top: 30px; font: 400 clamp(28px, 3.4vw, 48px) 'Microsoft YaHei', 'Noto Sans SC', sans-serif; }
.lyrics-hero aside img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.lyrics-hero aside dl { margin: 22px 0 0; border-top: 1px solid var(--line); }
.lyrics-hero aside dl > div { padding: 11px 0; display: grid; grid-template-columns: .9fr 1.4fr; gap: 15px; border-bottom: 1px solid var(--line); }
.lyrics-hero aside dt { color: #777; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.lyrics-hero aside dd { margin: 0; font-size: 10px; line-height: 1.45; }
.lyrics-toolbar { position: sticky; z-index: 20; top: 0; min-height: 68px; padding: 14px var(--pad); display: flex; justify-content: space-between; align-items: center; gap: 35px; color: white; background: rgba(11,11,12,.97); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.lyrics-toolbar > div { display: flex; align-items: center; gap: 30px; }
.lyrics-toolbar span { color: #777; font-size: 8px; text-transform: uppercase; letter-spacing: .16em; }
.lyrics-toolbar label { display: flex; align-items: center; gap: 9px; font-size: 11px; cursor: pointer; }
.lyrics-toolbar input { width: 16px; height: 16px; margin: 0; accent-color: var(--blue); }
.lyrics-toolbar label i { display: none; }
.lyrics-toolbar > a { color: #aaa; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.lyrics-toolbar > a:hover { color: white; }
.lyrics-sheet { padding-top: clamp(80px, 9vw, 140px); padding-bottom: clamp(90px, 11vw, 170px); }
.lyrics-block { max-width: 1120px; margin: 0 auto; padding: 0 0 clamp(75px, 8vw, 120px); display: grid; grid-template-columns: 190px minmax(0, 760px); gap: clamp(45px, 9vw, 135px); }
.lyrics-block + .lyrics-block { padding-top: clamp(75px, 8vw, 120px); border-top: 1px solid var(--line); }
.lyrics-block header span { color: var(--blue); font-size: 9px; letter-spacing: .16em; }
.lyrics-block h2 { margin: 14px 0 0; font: 400 clamp(28px, 2.8vw, 42px)/1 var(--serif); }
.lyrics-line { padding: 0 0 23px; }
.lyrics-line + .lyrics-line { padding-top: 23px; border-top: 1px solid rgba(11,11,12,.09); }
.lyrics-line p { margin: 0; }
.lyrics-original { font: 400 clamp(23px, 2.3vw, 34px)/1.38 'Microsoft YaHei', 'Noto Sans SC', sans-serif; letter-spacing: .025em; }
.lyrics-layer[hidden] { display: none; }
.lyrics-pinyin { margin-top: 9px !important; color: var(--blue); font-size: 15px; line-height: 1.55; letter-spacing: .035em; }
.lyrics-english { margin-top: 8px !important; color: #64615b; font: italic 400 clamp(18px, 1.65vw, 24px)/1.45 var(--serif); }
.lyrics-credit { padding-top: 70px; padding-bottom: 70px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: clamp(35px, 8vw, 110px); color: white; background: var(--ink); }
.lyrics-credit span { display: block; margin-bottom: 10px; color: #666; font-size: 8px; text-transform: uppercase; letter-spacing: .16em; }
.lyrics-credit strong { font: 400 clamp(26px, 2.5vw, 38px) var(--serif); }
.lyrics-credit p { margin: 8px 0 0; color: #777; font-size: 10px; }
.lyrics-credit > a { padding-bottom: 5px; border-bottom: 1px solid; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.lyrics-pending { min-height: 620px; text-align: center; }
.lyrics-pending > span { color: var(--blue); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
.lyrics-pending h2 { max-width: 900px; margin: 45px auto 30px; font: 400 clamp(47px, 6vw, 90px)/.95 var(--serif); }
.lyrics-pending h2 em { color: var(--blue); font-weight: 400; }
.lyrics-pending p { max-width: 620px; margin: 0 auto 45px; color: #666; line-height: 1.8; }

.studio-hero { position: relative; min-height: 740px; padding: clamp(105px, 14vw, 200px) var(--pad); overflow: hidden; color: white; background: #111; }
.studio-hero::after { content: ''; position: absolute; inset: 0; opacity: .22; background: radial-gradient(circle at 30% 20%, #3455f5, transparent 35%), repeating-linear-gradient(90deg, transparent 0 13%, rgba(255,255,255,.06) 13% 13.1%); }
.studio-hero > * { position: relative; z-index: 1; }
.studio-hero h1 { margin: 70px 0 0; font: 400 clamp(84px, 12vw, 180px)/.74 var(--serif); letter-spacing: -.06em; }
.studio-hero h1 em { color: #8296ff; font-weight: 400; }
.studio-hero > p { position: absolute; right: var(--pad); bottom: 80px; font-size: 14px; }
.studio-statement { display: grid; grid-template-columns: 1fr 2.5fr; gap: 50px; }
.studio-statement h2 { margin: 0; font: 400 clamp(45px, 5.4vw, 84px)/.98 var(--serif); }
.studio-statement p { width: min(520px, 75%); margin: 55px 0 0 auto; color: #595752; font-size: 16px; line-height: 1.8; }
.studio-founder { display: grid; grid-template-columns: 1fr 2.5fr; gap: 50px; }
.studio-founder > div:last-child > p { max-width: 700px; margin: 0; color: #67645e; font-size: 16px; line-height: 1.8; }
.studio-founder h2 { margin: 35px 0 55px; color: var(--blue); font: 400 clamp(58px, 7vw, 108px)/.88 var(--serif); letter-spacing: -.04em; }
.studio-founder dl { margin: 0; border-top: 1px solid var(--line); }
.studio-founder dl > div { padding: 15px 0; display: flex; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); }
.studio-founder dt { color: #777; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.studio-founder dd { margin: 0; font-size: 11px; }
.studio-ai { display: grid; grid-template-columns: 1fr 2.5fr; gap: 50px; color: white; background: var(--blue); }
.studio-ai h2 { margin: 0; font: 400 clamp(52px, 7vw, 108px)/.85 var(--serif); letter-spacing: -.04em; }
.studio-ai h2 em { color: #b4beff; font-weight: 400; }
.studio-ai p { width: min(620px, 78%); margin: 50px 0 35px auto; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.8; }
.studio-ai a { display: block; width: max-content; margin-left: auto; padding-bottom: 5px; border-bottom: 1px solid; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.studio-pillars { display: grid; grid-template-columns: 1fr 2.5fr; gap: 50px; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.pillar-grid article { padding-top: 20px; border-top: 1px solid var(--line-dark); }
.pillar-grid article > span { color: #777; font-size: 9px; }
.pillar-grid h3 { margin: 70px 0 17px; font: 400 35px var(--serif); }
.pillar-grid p { color: #999; font-size: 13px; line-height: 1.7; }
.studio-global { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(50px, 10vw, 150px); }
.studio-global h2 { margin: 40px 0 0; font: 400 clamp(58px, 7vw, 105px)/.82 var(--serif); }
.studio-global > div:last-child { align-self: end; }
.studio-global > div:last-child p { margin: 0 0 45px; color: #595752; font-size: 16px; line-height: 1.8; }
.contact-cta { padding: clamp(100px, 13vw, 190px) var(--pad); color: white; text-align: center; background: var(--blue); }
.contact-cta > p { font-size: 9px; text-transform: uppercase; letter-spacing: .22em; }
.contact-cta h2 { margin: 45px 0; font: 400 clamp(57px, 8vw, 125px)/.82 var(--serif); }
.contact-cta a { display: inline-block; padding-bottom: 6px; border-bottom: 1px solid; font-size: 12px; }
.legal-hero { min-height: 700px; padding: clamp(100px, 12vw, 180px) var(--pad) 80px; color: white; background: var(--ink); }
.legal-hero h1 { margin: 75px 0 45px; font: 400 clamp(67px, 9.5vw, 145px)/.78 var(--serif); letter-spacing: -.05em; }
.legal-hero h1 em { color: #8193ff; font-weight: 400; }
.legal-hero > p { color: #777; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.legal-hero--terms { color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); }
.legal-hero--terms h1 em { color: var(--blue); }
.legal-layout { display: grid; grid-template-columns: minmax(180px, .7fr) 2.5fr; gap: clamp(50px, 9vw, 140px); align-items: start; }
.legal-layout > aside { position: sticky; top: 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.legal-layout > aside > span { margin-bottom: 15px; color: #888; font-size: 8px; text-transform: uppercase; letter-spacing: .16em; }
.legal-layout > aside a { color: #666; font-size: 11px; }
.legal-layout > aside a:hover { color: var(--ink); }
.legal-copy { max-width: 900px; }
.legal-copy section { padding: 55px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 40px; }
.legal-copy .legal-lead { padding-top: 0; }
.legal-copy .legal-lead > p { margin: 0 0 25px; color: var(--blue); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.legal-copy h2 { margin: 0; font: 400 clamp(42px, 4.4vw, 67px)/1 var(--serif); letter-spacing: -.025em; }
.legal-copy h3 { margin: 0 0 25px; font: 400 clamp(27px, 2.5vw, 38px) var(--serif); }
.legal-copy section:not(.legal-lead) > p { color: #56544f; font-size: 15px; line-height: 1.85; }
.legal-copy section > p + p { margin-top: 22px; }
.legal-copy section a { color: var(--blue); border-bottom: 1px solid currentColor; }
.legal-contact { margin-top: 70px; padding: 30px 0; display: flex; justify-content: space-between; gap: 30px; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.legal-contact span { font: 400 25px var(--serif); }
.legal-contact a { font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.not-found { min-height: 70vh; padding: 100px var(--pad); text-align: center; }
.not-found > span { color: #777; font-size: 10px; letter-spacing: .2em; }
.not-found h1 { margin: 40px 0 20px; font: 400 clamp(70px, 10vw, 150px)/.8 var(--serif); }
.not-found p { margin-bottom: 40px; color: #777; }

.site-footer { padding: 80px var(--pad) 30px; color: #aaa; background: var(--ink); }
.footer-top { padding-bottom: 70px; display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid var(--line-dark); }
.brand--footer { color: white; }
.footer-top p { margin: 0; text-align: right; font-size: 12px; line-height: 1.7; }
.footer-grid { padding: 55px 0 90px 35%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; font-size: 11px; }
.footer-grid a:hover { color: white; }
.footer-label { margin-bottom: 12px; color: #555; font-size: 8px; text-transform: uppercase; letter-spacing: .18em; }
.footer-rights { padding: 25px 0; display: grid; grid-template-columns: 1fr 2fr; gap: 30px; border-top: 1px solid var(--line-dark); }
.footer-rights strong { color: #777; font: 400 21px var(--serif); }
.footer-rights p { max-width: 720px; margin: 0 0 0 auto; color: #5f5f5f; font-size: 9px; line-height: 1.7; }
.footer-bottom { padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid var(--line-dark); color: #555; font-size: 8px; text-transform: uppercase; letter-spacing: .15em; }

[data-reveal] { transition: opacity .7s, transform .7s; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --header: 68px; }
  .desktop-nav, .header-actions { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button { position: relative; z-index: 2; display: grid; width: 40px; height: 40px; place-content: center; gap: 6px; color: inherit; background: transparent; border: 0; }
  .menu-button span { width: 22px; height: 1px; background: currentColor; transition: transform .3s; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-panel { position: fixed; z-index: 1; inset: 0; padding: 115px var(--pad) 50px; display: flex; flex-direction: column; justify-content: center; color: white; background: var(--ink); transform: translateY(-102%); transition: transform .45s cubic-bezier(.7,0,.2,1); }
  .mobile-panel.is-open { transform: translateY(0); }
  .mobile-panel a { padding: 18px 0; display: flex; gap: 25px; align-items: baseline; border-bottom: 1px solid var(--line-dark); font: 400 48px/1 var(--serif); }
  .mobile-panel a span { width: 25px; color: #777; font: 400 9px var(--sans); }
  .site-header:has(.mobile-panel.is-open) { position: fixed; color: white; border-color: var(--line-dark); background: var(--ink); }
  .home-hero h1 { font-size: clamp(60px, 12vw, 110px); }
  .hero-release { position: static; width: 50%; margin: 45px 0 0 auto; }
  .manifesto, .artist-intro, .artist-facts, .studio-statement, .studio-founder, .studio-ai, .studio-pillars { grid-template-columns: 1fr; }
  .manifesto { gap: 60px; }
  .manifesto__note { grid-column: 1; }
  .release-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-strip .release-card:nth-child(n+3) { display: none; }
  .page-hero--music { grid-template-columns: 1fr; }
  .release-title { align-items: flex-start; flex-direction: column; }
  .release-story { grid-template-columns: 1fr; }
  .artist-intro p:not(.artist-tagline) { width: 78%; }
  .artist-facts dl, .studio-statement > div, .studio-founder > div, .studio-ai > div, .studio-pillars > div { width: 78%; margin-left: auto; }
  .lyrics-hero__grid { grid-template-columns: 1fr; }
  .lyrics-hero aside { width: min(480px, 70%); margin-left: auto; }
  .lyrics-block { grid-template-columns: 150px minmax(0, 1fr); gap: 55px; }
  .lyrics-credit { grid-template-columns: 1fr 1fr; }
  .lyrics-credit > a { justify-self: start; }
  .studio-global { grid-template-columns: 1fr; }
  .watch-layout { grid-template-columns: 1fr; }
  .singalong-shell { height: min(66vh, 620px); min-height: 470px; }
  .singalong-panel { position: relative; inset: auto; height: 100%; border-top: 1px solid rgba(255,255,255,.15); border-left: 0; }
}

@media (max-width: 680px) {
  :root { --pad: 20px; }
  .section { padding-top: 85px; padding-bottom: 85px; }
  .home-hero { min-height: 750px; }
  .home-hero__media img { object-position: 62% center; }
  .home-hero__topline span:last-child, .scroll-cue { display: none; }
  .home-hero__content { bottom: 45px; }
  .home-hero h1 { font-size: clamp(60px, 20vw, 92px); line-height: .78; }
  .home-hero h1 em { padding-left: 0; }
  .hero-release { width: 100%; margin-top: 55px; }
  .hero-release > span { font-size: 19px; }
  .manifesto { min-height: auto; }
  .manifesto__copy p { width: 100%; }
  .manifesto__note { align-items: flex-start; flex-direction: column; gap: 18px; }
  .manifesto__note p { width: 100%; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .section-heading > a { margin-top: 12px; }
  .feature-grid__items, .artist-grid, .roster-grid, .release-grid, .release-grid--archive, .related .release-grid { grid-template-columns: 1fr; }
  .release-card--large:nth-child(2), .artist-card:nth-child(2), .roster-grid .artist-card:nth-child(2) { margin: 0; transform: none; }
  .release-card__image .play-icon { opacity: 1; width: 48px; height: 48px; }
  .artist-grid { gap: 55px; }
  .archive-strip .release-card:nth-child(n+3) { display: block; }
  .youtube-cta { min-height: 580px; }
  .youtube-cta h2 { font-size: 22vw; }
  .page-hero { min-height: 540px; }
  .page-hero h1 { margin-top: 70px; font-size: 20vw; }
  .page-hero > p { margin-top: 70px; }
  .artist-hero { min-height: 630px; }
  .artist-hero__image { object-position: 58% center; }
  .artist-hero__title h1 { font-size: 21vw; }
  .artist-hero__genre { display: none; }
  .artist-intro p:not(.artist-tagline), .artist-facts dl, .studio-statement > div, .studio-pillars > div { width: 100%; }
  .artist-facts dl div { grid-template-columns: 1fr; gap: 6px; }
  .page-hero--music > p { margin: 70px 0 0; }
  .filter-bar { align-items: stretch; flex-direction: column; }
  .filter-tabs { overflow-x: auto; }
  .filter-tabs button { flex: 0 0 auto; }
  .search-field { width: 100%; }
  .release-title { margin-top: 60px; }
  .release-title h1 { font-size: 19vw; }
  .artist-chip { width: 100%; }
  .video-stage { padding-left: 0; padding-right: 0; }
  .singalong-shell { height: min(70vh, 590px); min-height: 500px; }
  .singalong-head { padding: 20px; }
  .singalong-scroll { padding: 25px 20px 38px; }
  .singalong-panel > footer { padding-right: 20px; padding-left: 20px; }
  .singalong-panel--pending > div { padding: 32px 20px; }
  .video-poster--pending::after { background: linear-gradient(0deg, rgba(0,0,0,.8), transparent 80%); }
  .video-status { left: 22px; right: 22px; top: auto; bottom: 24px; width: auto; transform: none; }
  .video-status strong { font-size: 46px; }
  .video-status a { margin-top: 20px; }
  .release-story h2 { font-size: 42px; }
  .rights-callout { grid-template-columns: 1fr; }
  .lyric-section__head { align-items: flex-start; flex-direction: column; }
  .lyric-section blockquote { font-size: 45px; }
  .lyrics-hero { padding-top: 38px; }
  .lyrics-hero__grid { margin-top: 55px; gap: 50px; }
  .lyrics-hero h1 { font-size: 17vw; }
  .lyrics-hero aside { width: 100%; }
  .lyrics-toolbar { position: sticky; min-height: auto; padding-top: 17px; padding-bottom: 17px; align-items: flex-start; }
  .lyrics-toolbar > div { flex-wrap: wrap; gap: 12px 22px; }
  .lyrics-toolbar span { flex: 0 0 100%; }
  .lyrics-toolbar > a { display: none; }
  .lyrics-block { padding-bottom: 70px; grid-template-columns: 1fr; gap: 35px; }
  .lyrics-block + .lyrics-block { padding-top: 70px; }
  .lyrics-original { font-size: 24px; }
  .lyrics-pinyin { font-size: 14px; }
  .lyrics-english { font-size: 19px; }
  .lyrics-credit { grid-template-columns: 1fr; }
  .lyrics-credit > a { margin-top: 15px; }
  .studio-founder > div { width: 100%; }
  .studio-founder dl > div { align-items: flex-start; flex-direction: column; gap: 7px; }
  .studio-hero { min-height: 650px; }
  .studio-hero h1 { font-size: 22vw; }
  .studio-hero > p { left: var(--pad); right: auto; }
  .studio-ai > div, .studio-ai p { width: 100%; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-grid h3 { margin-top: 30px; }
  .legal-hero { min-height: 610px; }
  .legal-hero h1 { font-size: 19vw; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-layout > aside { position: static; padding-bottom: 35px; border-bottom: 1px solid var(--line); }
  .legal-copy h2 { font-size: 42px; }
  .legal-contact { align-items: flex-start; flex-direction: column; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; gap: 30px; }
  .footer-top p { text-align: left; }
  .footer-grid { padding-left: 0; grid-template-columns: 1fr 1fr; row-gap: 50px; }
  .footer-rights { grid-template-columns: 1fr; }
  .footer-rights p { margin: 0; }
}

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