:root {
  --ink: #17140f;
  --indigo: #17172a;
  --ivory: #f2eadb;
  --paper: #e8deca;
  --saffron: #d69a2d;
  --rust: #9d3b2d;
  --leaf: #244c3c;
  --line: rgba(23, 20, 15, .19);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; color: var(--ink); background: var(--ivory); font-family: var(--sans); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
button, a { font: inherit; }
a { color: inherit; }
img, video, iframe { display: block; max-width: 100%; }
button { cursor: pointer; }
cite { font-style: italic; }
.skip-link { position: fixed; left: 1rem; top: -10rem; z-index: 200; background: white; color: black; padding: .7rem 1rem; }
.skip-link:focus { top: 1rem; }
.section { padding: 9rem max(5vw, 1.4rem); }
.section-dark, .section-ink { color: var(--ivory); background: var(--indigo); }
.display { margin: 0; font: 400 clamp(3.2rem, 7vw, 7.8rem)/.92 var(--serif); letter-spacing: -.045em; }
.display em { color: var(--rust); font-weight: 400; }
.section-dark .display em, .section-ink .display em { color: var(--saffron); }
.lead { font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.45; }
.micro, .eyebrow { margin: 0 0 1.2rem; font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.saffron { color: var(--saffron); }
.rust { color: var(--rust); }
.gold { color: #e2b45c; }
.section-label { display: flex; gap: 1rem; margin-bottom: 5rem; padding-top: .7rem; border-top: 1px solid var(--line); font-size: .72rem; letter-spacing: .17em; text-transform: uppercase; }
.section-label span:first-child { width: 4rem; color: var(--rust); }
.section-label.light { border-color: rgba(242,234,219,.25); }
.section-label.light span:first-child { color: var(--saffron); }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: 3.5rem; border: 0; border-radius: 0; padding: .9rem 1.25rem; font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-saffron { color: var(--ink); background: var(--saffron); }
.button-ivory { color: var(--ink); background: var(--ivory); }
.button-ink { color: var(--ivory); background: var(--ink); }
.button-outline { color: var(--ivory); background: transparent; border: 1px solid rgba(242,234,219,.5); }
.text-link { display: inline-flex; gap: 1rem; padding-bottom: .2rem; border-bottom: 1px solid; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.text-link.light { color: var(--ivory); }

.sound-launch { display: grid; place-items: center; width: 4.6rem; height: 4.6rem; padding: 0; border: 1px solid rgba(242,234,219,.55); border-radius: 50%; color: var(--ink); background: var(--saffron); box-shadow: 0 0 0 0 rgba(214,154,45,.35); transition: border-color .25s, background .25s, transform .25s, box-shadow .25s; }
.sound-launch:hover { transform: scale(1.06); border-color: var(--ivory); box-shadow: 0 0 0 .7rem rgba(214,154,45,.12); }
.sound-launch-wave { display: flex; align-items: center; justify-content: center; gap: 3px; width: 3.5rem; height: 3.5rem; }
.sound-launch-wave i { width: 2px; height: 10px; background: currentColor; animation: soundWave .8s ease-in-out infinite alternate; }
.sound-launch-wave i:nth-child(2), .sound-launch-wave i:nth-child(4) { height: 20px; animation-delay: -.2s; }
.sound-launch-wave i:nth-child(3) { height: 27px; animation-delay: -.4s; }
@keyframes soundWave { to { transform: scaleY(.36); } }

.music-dock { position: fixed; right: 1rem; bottom: 1rem; z-index: 120; width: min(30rem, calc(100vw - 2rem)); overflow: hidden; border: 1px solid rgba(242,234,219,.28); color: var(--ivory); background: #0c0c12; box-shadow: 0 1.5rem 5rem rgba(0,0,0,.42); transform: translateY(calc(100% + 2rem)); opacity: 0; transition: transform .26s ease, opacity .26s ease; }
.music-dock[hidden] { display: none; }
.music-dock.is-open { transform: none; opacity: 1; }
.music-dock-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 1rem; border-bottom: 1px solid rgba(242,234,219,.14); }
.music-dock-head span { display: grid; }
.music-dock-head b { color: var(--saffron); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; }
.music-dock-head small { color: rgba(242,234,219,.66); font-size: .7rem; }
.music-dock-head button { width: 2.2rem; height: 2.2rem; padding: 0; border: 1px solid rgba(242,234,219,.25); color: var(--ivory); background: transparent; font-size: 1.4rem; line-height: 1; }
.music-dock-frame { aspect-ratio: 16 / 9; background: #000; }
.music-dock-frame iframe { width: 100%; height: 100%; border: 0; }

.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; height: 6rem; padding: 0 max(4vw, 1.25rem); color: var(--ivory); border-bottom: 1px solid rgba(242,234,219,.2); }
.site-header.is-fixed { position: fixed; height: 4.5rem; color: var(--ink); background: rgba(242,234,219,.94); border-color: var(--line); backdrop-filter: blur(14px); }
.wordmark { display: flex; align-items: baseline; gap: .28rem; text-decoration: none; }
.wordmark span { font-weight: 600; letter-spacing: .15em; }
.wordmark em { color: var(--saffron); font: 400 1.4rem var(--serif); }
.site-nav { display: flex; align-items: center; gap: 2.3rem; }
.site-nav a { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.nav-cta { padding: .65rem 1rem; border: 1px solid currentColor; }
.menu-button { display: none; color: inherit; background: none; border: 0; }

.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: 1.55fr .75fr; color: var(--ivory); background: var(--ink); overflow: hidden; }
.hero-award-film { position: absolute; inset: 0 34% 0 0; overflow: hidden; background: #060606; }
.hero-award-film video { width: 100%; height: 100%; object-fit: cover; object-position: 66% center; filter: saturate(.68) contrast(1.06); }
.hero-award-film span { position: absolute; left: 1.2rem; bottom: 1rem; z-index: 3; font-size: .56rem; letter-spacing: .15em; text-transform: uppercase; }
.hero-portrait { position: absolute; inset: 0 0 0 66%; background: url("assets/images/rohit-portrait.jpg") 56% center/cover no-repeat; filter: saturate(.68) contrast(1.04); border-left: 1px solid rgba(242,234,219,.2); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,12,9,.88) 0%, rgba(14,12,9,.35) 52%, rgba(14,12,9,.12) 76%), linear-gradient(0deg, rgba(14,12,9,.82), transparent 58%); }
.hero-copy { position: relative; z-index: 2; align-self: end; grid-column: 1 / -1; width: min(100%, 90rem); padding: 10rem max(5vw, 1.4rem) 5rem; }
.hero h1 { max-width: 78rem; margin: 0; font: 400 clamp(4.4rem, 8.3vw, 9rem)/.86 var(--serif); letter-spacing: -.055em; text-wrap: balance; }
.hero h1 em { color: var(--saffron); font-weight: 400; }
.hero-intro { max-width: 41rem; margin: 2rem 0; color: rgba(242,234,219,.82); font-size: clamp(1.1rem, 1.6vw, 1.4rem); }
.hero-actions { display: flex; align-items: center; gap: 2rem; }
.support-cue { display: grid; padding: .8rem 0 .8rem 1.25rem; border-left: 1px solid rgba(242,234,219,.35); color: var(--ivory); text-decoration: none; transition: border-color .2s, transform .2s; }
.support-cue:hover { border-color: var(--saffron); transform: translateX(3px); }
.support-cue small { color: rgba(242,234,219,.55); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.support-cue strong { font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.support-cue strong span { color: var(--saffron); }
.hero-medal { position: absolute; z-index: 3; right: 2rem; bottom: 2rem; display: grid; width: 15rem; padding: 1.2rem; color: var(--ink); background: var(--saffron); border-radius: 50% 50% 0 0; text-align: center; }
.hero-medal strong { font: 400 1.7rem var(--serif); }
.hero-medal span, .hero-medal small { font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; }
.ticker { overflow: hidden; color: var(--ink); background: var(--saffron); }
.ticker > div { display: flex; width: max-content; align-items: center; gap: 2.5rem; padding: .9rem 0; animation: ticker 30s linear infinite; }
.ticker span { font-size: .75rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.ticker i { font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.manifesto { background-color: var(--ivory); background-image: radial-gradient(rgba(157,59,45,.17) .8px, transparent .8px); background-size: 18px 18px; }
.manifesto-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: start; }
.manifesto-copy { padding-top: 1rem; }
.manifesto-copy > p:not(.lead) { color: rgba(23,20,15,.7); }
blockquote { margin: 3rem 0 0; padding: 1.5rem 0 1.5rem 1.7rem; border-left: 4px solid var(--rust); font: italic 2rem/1.2 var(--serif); }
.story-image { position: relative; margin-top: 8rem; }
.story-image img { width: 100%; height: min(66vw, 51rem); object-fit: cover; filter: saturate(.78); }
.story-image p { position: absolute; right: 0; bottom: 0; display: grid; margin: 0; padding: 1.2rem 1.4rem; color: var(--ivory); background: var(--rust); font: 1.4rem var(--serif); }

.kaatuka { padding: 9rem max(5vw, 1.4rem); }
.feature-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 7vw; align-items: center; }
.feature-copy > p:not(.micro) { max-width: 37rem; margin: 2rem 0; color: rgba(242,234,219,.7); }
.credit-line { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1rem; padding: .85rem 0; border-top: 1px solid rgba(242,234,219,.18); font-size: .78rem; }
.credit-line span { color: rgba(242,234,219,.5); text-transform: uppercase; letter-spacing: .1em; }
.credit-line strong { font-weight: 500; }
.kaatuka-spotify { padding: clamp(1rem, 2vw, 1.5rem); border: 1px solid rgba(214,154,45,.5); background: #0e0e13; }
.kaatuka-spotify iframe { width: 100%; height: 352px; border: 0; border-radius: 12px; background: #121212; }

.momentum { background-color: var(--ivory); background-image: linear-gradient(rgba(157,59,45,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(157,59,45,.08) 1px, transparent 1px); background-size: 5rem 5rem; }
.momentum-intro { width: min(100%, 76rem); margin: 0 auto 6rem; }
.momentum-intro .micro { margin-bottom: 2rem; }
.momentum-intro .display { max-width: 72rem; font-size: clamp(3.2rem, 6.2vw, 6.8rem); }
.momentum-intro .lead { max-width: 51rem; margin: 2.5rem 0 0; }
.sonu-feature { display: grid; grid-template-columns: 1.35fr .65fr; min-height: 42rem; color: var(--ivory); background: var(--indigo); }
.sonu-video { min-width: 0; background: #050506; }
.sonu-video iframe { width: 100%; height: 100%; min-height: 42rem; border: 0; }
.sonu-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 5rem); }
.sonu-copy h3 { margin: 0 0 1.5rem; font: 400 clamp(3.2rem, 5vw, 6rem)/.9 var(--serif); letter-spacing: -.04em; }
.sonu-copy > p:not(.micro) { margin: 0 0 2rem; color: rgba(242,234,219,.7); }
.credit-line.ink { border-color: rgba(242,234,219,.18); }
.sonu-copy .text-link { align-self: flex-start; margin-top: 2rem; }
.covers { margin-top: 8rem; padding-top: 4rem; border-top: 1px solid var(--line); }
.covers-statement { width: min(100%, 76rem); margin: 0 auto 4rem; }
.covers-statement h3 { margin: 0 0 1.5rem; font: 400 clamp(3.2rem, 6vw, 6.5rem)/.9 var(--serif); letter-spacing: -.04em; }
.covers-statement h3 em { color: var(--rust); font-weight: 400; }
.covers-statement .micro { margin-bottom: 2rem; }
.cover-summary { max-width: 40rem; margin: 2rem 0 0; }
.cover-summary p { margin: 0; color: rgba(23,20,15,.68); }
.hashtag { display: inline-block; margin-top: 1.5rem; color: var(--rust); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-decoration-thickness: 1px; text-underline-offset: .35em; text-transform: uppercase; }
.cover-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.cover-tile { min-width: 0; height: 34rem; overflow: hidden; border: 1px solid var(--line); background: white; }
.cover-tile iframe { width: 100%; height: 100%; border: 0; }

.poraga-video { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #050506; }
.poraga-video iframe { width: 100%; height: 100%; border: 0; }

.poraga { background: var(--paper); }
.poraga-header { display: grid; grid-template-columns: 1fr .7fr; gap: 8vw; align-items: end; margin-bottom: 5rem; }
.poraga-header .lead { max-width: 38rem; }
.poraga-intro { display: grid; gap: 1.5rem; }
.poraga-momentum { display: flex; gap: 1rem; align-items: center; padding-top: 1.3rem; border-top: 1px solid var(--line); }
.poraga-momentum strong { color: var(--rust); font: 400 clamp(3.5rem, 6vw, 6rem)/.8 var(--serif); }
.poraga-momentum span { font-size: .72rem; font-weight: 600; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
.poraga-intro > small { color: rgba(23,20,15,.55); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.poraga-video { width: 100%; }
.poraga-credits { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.poraga-credits p { display: grid; margin: 0; padding: 1.6rem 1rem 1rem 0; border-right: 1px solid var(--line); }
.poraga-credits span { margin-bottom: .35rem; color: rgba(23,20,15,.53); font-size: .69rem; letter-spacing: .12em; text-transform: uppercase; }
.poraga-credits strong { font-weight: 500; }
.poraga-credits.single { grid-template-columns: 1fr; }
.poraga-credits.single p { grid-template-columns: minmax(12rem, .5fr) 1fr; align-items: baseline; border-right: 0; }

.award { display: grid; grid-template-columns: 1.1fr .9fr; gap: 7vw; padding: 9rem max(5vw, 1.4rem); }
.award-image img { width: 100%; height: 100%; min-height: 50rem; object-fit: cover; object-position: 66% center; filter: saturate(.75); }
.award-copy { align-self: center; }
.award-copy .lead { color: rgba(242,234,219,.72); }
.award-count { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: center; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(242,234,219,.2); }
.award-count strong { color: var(--saffron); font: 400 5rem/.8 var(--serif); }
.award-count span { max-width: 20rem; color: rgba(242,234,219,.62); font-size: .82rem; }
.recognition-notes { grid-column: 1 / -1; display: grid; grid-template-columns: .7fr 1.3fr; gap: 6vw; align-items: center; margin-top: 2rem; padding: 4rem 0 0; border-top: 1px solid rgba(242,234,219,.2); }
.recognition-notes p { margin: 0; }
.recognition-notes .recognition-kicker { color: var(--saffron); font-size: .66rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.recognition-notes h3 { margin: 1.2rem 0 1.5rem; font: 400 clamp(2.8rem, 5vw, 5.5rem)/.9 var(--serif); letter-spacing: -.04em; }
.recognition-notes h3 em { color: var(--saffron); font-weight: 400; }
.recognition-notes > div > p:last-child { max-width: 31rem; color: rgba(242,234,219,.7); font-size: clamp(1rem, 1.5vw, 1.3rem); }
.tweet-embed { display: grid; justify-items: center; padding: 1rem; background: #000 url("assets/images/allu-arjun-post.png") center 1rem/min(calc(100% - 2rem), 42rem) auto no-repeat; box-shadow: 0 2rem 5rem rgba(0,0,0,.24); }
.tweet-embed iframe { width: 100%; height: 390px; border: 0; color-scheme: dark; }
.tweet-embed a { justify-self: start; padding: .8rem .5rem 0; color: rgba(242,234,219,.68); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }

.discography { background: var(--ivory); }
.discography-head { display: grid; grid-template-columns: 1fr .55fr; align-items: end; gap: 5vw; margin-bottom: 5rem; }
.discography-head > p { max-width: 30rem; }
.track { display: grid; grid-template-columns: 4rem 1.2fr 1fr auto; gap: 1rem; align-items: center; padding: 1.5rem 0; border-top: 1px solid var(--line); text-decoration: none; transition: color .2s, padding .2s; }
.track:last-child { border-bottom: 1px solid var(--line); }
.track:hover { color: var(--rust); padding-left: .7rem; }
.track span, .track small, .track b { font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.track strong { font: 400 clamp(1.5rem, 2.6vw, 2.7rem) var(--serif); }
.track small { color: rgba(23,20,15,.55); }
.platform-bar { display: flex; gap: 2rem; margin-top: 2rem; }
.platform-bar a { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.live { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: 6vw; align-items: end; padding: 9rem max(5vw, 1.4rem); }
.live-title-block { align-self: start; }
.live-title-block .lead { max-width: 38rem; margin: 2.5rem 0 1.2rem; color: rgba(242,234,219,.78); }
.live-single { width: 100%; height: min(57vw, 48rem); object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.05); }
.live-formats { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 2rem; border-top: 1px solid rgba(242,234,219,.2); }
.live-formats article { min-height: 15rem; padding: 1.5rem 1.5rem 2rem 0; border-right: 1px solid rgba(242,234,219,.2); }
.live-formats article + article { padding-left: 1.5rem; }
.live-formats article span { color: var(--saffron); font-size: .64rem; letter-spacing: .12em; }
.live-formats h3 { margin: 2.5rem 0 .7rem; font: 400 2rem/1 var(--serif); }
.live-formats article p { margin: 0; color: rgba(242,234,219,.58); font-size: .84rem; }
.live-contact { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-top: 2rem; border-top: 1px solid rgba(242,234,219,.2); }
.live-contact p { margin: 0; font: italic clamp(1.5rem, 2.6vw, 2.7rem) var(--serif); }

.booking { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: center; background: var(--saffron); }
.booking-image img { width: 100%; max-height: 48rem; object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.03); }
.booking-copy .section-label { margin-bottom: 3rem; }
.booking-copy .lead { max-width: 45rem; }
.booking-copy .button { margin-top: 1rem; }
.booking-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 3rem; }
.booking-tags span { padding: .5rem .9rem; border: 1px solid rgba(23,20,15,.32); border-radius: 4rem; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.payment { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; padding: 7rem max(5vw, 1.4rem); color: var(--ivory); background: var(--leaf); }
.payment h2 { margin: 0; font: 400 clamp(3rem, 6vw, 6rem)/.95 var(--serif); letter-spacing: -.04em; }
.payment > div:last-child { max-width: 35rem; align-self: end; }
.payment .button { margin-top: 1.4rem; }

.site-footer { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding: 5rem max(5vw, 1.4rem) 2rem; color: var(--ivory); background: var(--ink); }
.footer-mark { display: grid; align-content: start; justify-items: start; gap: 1.25rem; }
.footer-mark > div { display: flex; align-items: baseline; gap: .45rem; }
.footer-mark span { font-size: 1.2rem; font-weight: 600; letter-spacing: .16em; }
.footer-mark em { color: var(--saffron); font: 400 2rem var(--serif); }
.footer-mark small { display: block; margin: 0; color: rgba(242,234,219,.45); font-size: .72rem; letter-spacing: .03em; }
.footer-nav, .footer-legal { display: grid; align-content: start; gap: .7rem; }
.footer-nav a, .footer-legal a { font-size: .76rem; text-decoration: none; }
.footer-legal a { color: rgba(242,234,219,.62); }
.footer-meta { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-top: 3rem; padding-top: 1rem; border-top: 1px solid rgba(242,234,219,.17); color: rgba(242,234,219,.45); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* policy and contact pages */
.legal-page { background: var(--ivory); }
.legal-header { position: static; color: var(--ink); border-color: var(--line); }
.legal-main { width: min(100% - 2rem, 58rem); margin: 0 auto; padding: 7rem 0; }
.legal-main h1 { font: 400 clamp(3.5rem, 8vw, 7rem)/.9 var(--serif); letter-spacing: -.05em; }
.legal-main h2 { margin-top: 3rem; font: 400 2rem var(--serif); }
.legal-main p, .legal-main li { color: rgba(23,20,15,.72); }
.legal-main a { color: var(--rust); }
.legal-updated { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.legal-page .footer-mark { display: flex; align-items: baseline; gap: .45rem; }

@media (max-width: 860px) {
  .section, .kaatuka, .live, .award { padding-top: 6.5rem; padding-bottom: 6.5rem; }
  .menu-button { display: flex; align-items: center; gap: .45rem; }
  .menu-button i { width: 18px; height: 1px; background: currentColor; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; color: var(--ink); background: var(--ivory); padding: 1rem 1.4rem 1.5rem; border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .8rem 0; }
  .nav-cta { border: 0; }
  .hero { min-height: 1050px; display: block; }
  .hero-award-film { inset: 0 0 44% 0; }
  .hero-award-film video { object-position: 64% center; }
  .hero-portrait { inset: 56% 0 0 0; background-position: 62% 34%; border-left: 0; border-top: 1px solid rgba(242,234,219,.2); }
  .hero-shade { background: linear-gradient(0deg, rgba(14,12,9,.96) 0%, rgba(14,12,9,.5) 64%, rgba(14,12,9,.2)); }
  .hero-copy { position: absolute; bottom: 0; padding-bottom: 3.5rem; }
  .hero h1 { font-size: clamp(3.5rem, 14vw, 6.5rem); }
  .hero-medal { top: 6.8rem; right: 1rem; bottom: auto; width: 11.5rem; }
  .hero-medal strong { font-size: 1.35rem; }
  .hero-award-film span { display: none; }
  .manifesto-grid, .feature-grid, .sonu-feature, .poraga-header, .award, .discography-head, .booking, .payment { grid-template-columns: 1fr; }
  .manifesto-grid, .feature-grid, .award, .booking { gap: 4rem; }
  .manifesto-copy { padding: 0; }
  .story-image { margin-top: 5rem; }
  .story-image img { height: 75vw; }
  .sonu-feature { min-height: 0; }
  .sonu-video iframe { min-height: 0; aspect-ratio: 16/9; }
  .covers { margin-top: 6rem; }
  .cover-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .poraga-header { align-items: start; }
  .poraga-credits { grid-template-columns: 1fr; }
  .poraga-credits p { border-right: 0; }
  .award-image img { min-height: 0; height: 65vw; }
  .recognition-notes { grid-template-columns: 1fr; }
  .live { grid-template-columns: 1fr; }
  .live-single { height: 72vw; }
  .live-formats { grid-template-columns: 1fr 1fr; }
  .track { grid-template-columns: 2.3rem 1fr auto; }
  .track small { grid-column: 2; }
  .track b { grid-column: 3; grid-row: 1 / 3; }
  .booking-image img { max-height: 34rem; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-mark { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .section-label { margin-bottom: 3rem; }
  .display { font-size: clamp(3rem, 15vw, 4.8rem); }
  .feature-copy .display { font-size: clamp(2.65rem, 11.8vw, 4rem); }
  .hero-actions, .platform-bar { align-items: flex-start; flex-direction: column; }
  .hero-intro { font-size: 1.05rem; }
  .hero { min-height: 930px; }
  .hero-medal { top: 5.2rem; width: 10.5rem; padding: .9rem; }
  .hero-copy { padding-bottom: 2.7rem; }
  .hero h1 { font-size: clamp(3.15rem, 14vw, 5rem); }
  .hero-actions { gap: 1rem; }
  .support-cue { margin: .5rem 0 0; }
  .sound-launch { width: 4.2rem; height: 4.2rem; }
  .music-dock { right: .5rem; bottom: .5rem; width: calc(100vw - 1rem); }
  .story-image p { position: static; }
  .credit-line { grid-template-columns: 1fr; }
  .kaatuka-spotify { padding: 1rem; }
  .kaatuka-spotify iframe { height: 352px; }
  .sonu-copy { padding: 2rem 1.5rem 2.5rem; }
  .cover-grid { display: flex; gap: .8rem; margin-inline: -1.4rem; padding: 0 1.4rem 1rem; overflow-x: auto; scroll-snap-type: x mandatory; }
  .cover-tile { flex: 0 0 86vw; scroll-snap-align: center; }
  .recognition-notes { gap: 3rem; }
  .tweet-embed iframe { height: 410px; }
  .live-formats { grid-template-columns: 1fr; }
  .live-formats article, .live-formats article + article { min-height: 0; padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid rgba(242,234,219,.2); }
  .live-formats h3 { margin-top: 1rem; }
  .live-contact { align-items: flex-start; flex-direction: column; }
  .poraga-credits.single p { grid-template-columns: 1fr; }
  .poraga-credits { margin-top: 1rem; }
  .track { grid-template-columns: 2rem 1fr; }
  .track b { display: none; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-mark { align-items: start; }
  .footer-meta { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
