/* ============================================================
   Danny Lu Music — cinematic, black & white, desert-beige accent
   ============================================================ */

   :root {
    --bg:        #0a0a0a;
    --bg-2:      #121110;
    --panel:     #16150f;
    --ink:       #f5f3ef;
    --muted:     #a8a299;
    --faint:     #6f6a62;
    --line:      rgba(245, 243, 239, 0.14);
    --line-soft: rgba(245, 243, 239, 0.07);
    --beige:     #c9a87c;
    --beige-dim: rgba(201, 168, 124, 0.16);

    --serif: "Cormorant Garamond", "Hoefler Text", "Times New Roman", serif;
    --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

    --maxw: 1080px;
    --gutter: clamp(24px, 5vw, 56px);
    --hero-inset: clamp(28px, 5.5vw, 80px);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }

body {
    margin: 0;
    min-height: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

/* Subtle film grain over the whole page (cinematic texture) */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.08;
    margin: 0;
}

p { margin: 0 0 1.1em; color: var(--muted); }
strong { color: var(--ink); font-weight: 500; }

::selection { background: var(--beige-dim); color: var(--ink); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: 140px 0; border-top: 1px solid var(--line-soft); }
.section--tight { padding: 96px 0; }
.section--plain { border-top: 0; }

.eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--beige);
    margin: 0 0 28px;
}

.display { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.lead { font-size: clamp(1.15rem, 2.4vw, 1.5rem); color: var(--muted); font-weight: 300; }
.measure { max-width: 60ch; }
.center { text-align: center; }
.muted { color: var(--muted); }

.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px auto;
    max-width: 280px;
}
.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}
.divider__diamond {
    width: 7px;
    height: 7px;
    background: var(--beige);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ---------- navigation ---------- */
.nav-shell {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    pointer-events: none;
}
.nav-shell .nav,
.nav-shell .nav-links a,
.nav-shell .nav-toggle,
.nav-shell .nav-close {
    pointer-events: auto;
}
.nav {
    position: fixed;

    top: 24px; left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: var(--maxw);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 16px 36px;
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(245, 243, 239, 0.07);
    border-radius: 50px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.4s var(--ease);
}
.nav.nav--scrolled {
    top: 12px;
    background: rgba(10, 10, 10, 0.88);
    border-color: rgba(201, 168, 124, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8), 0 0 12px rgba(201, 168, 124, 0.05);
}
.nav-brand {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink);
    padding-left: 0.28em;
    display: flex;
    align-items: center;
}
.nav-brand::after {
    content: ".";
    color: var(--beige);
    font-size: 1.6rem;
    line-height: 0.8;
}
.nav-links { display: flex; gap: clamp(16px, 2.4vw, 34px); flex-wrap: wrap; align-items: center; }
.nav-links a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    position: relative;
    padding: 6px 0;
    transition: color 0.4s var(--ease);
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--beige);
    transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.is-active { color: var(--beige); }
.nav-links a.is-active::after { width: 100%; }


/* hamburger toggle (mobile only) */
.nav-toggle { display: none; width: 42px; height: 42px; padding: 0; background: none; border: 0; cursor: pointer; position: relative; z-index: 30; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--ink); transition: transform 0.35s var(--ease), opacity 0.2s var(--ease); }

.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-close { display: none; }
.nav-shell.is-open .nav-toggle span:nth-child(1),
.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-shell.is-open .nav-toggle span:nth-child(2),
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-shell.is-open .nav-toggle span:nth-child(3),
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-overlay { display: none; }

@media (min-width: 821px) {
    .nav-shell {
        position: fixed;
        top: 24px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 48px);
        max-width: var(--maxw);
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 16px 36px;
        background: rgba(10, 10, 10, 0.72);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(245, 243, 239, 0.07);
        border-radius: 50px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
        transition: all 0.4s var(--ease);
        pointer-events: auto;
    }
    .nav-shell.is-scrolled {
        top: 12px;
        background: rgba(10, 10, 10, 0.88);
        border-color: rgba(201, 168, 124, 0.2);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8), 0 0 12px rgba(201, 168, 124, 0.05);
    }
    .nav-shell .nav {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        width: auto;
        max-width: none;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex: 0 0 auto;
    }
    .nav-shell .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(16px, 2.4vw, 34px);
        width: auto;
        height: auto;
        margin: 0;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        transform: none;
        visibility: visible;
        pointer-events: auto;
        overflow: visible;
        flex: 1;
    }
    .nav-shell .nav-toggle { display: none; }
    .nav-shell .nav-close { display: none; }
    .nav-shell .nav-overlay { display: none; }
}

/* ---------- buttons ---------- */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    border: 1px solid rgba(245, 243, 239, 0.2);
    padding: 15px 32px;
    background: rgba(245, 243, 239, 0.02);
    cursor: pointer;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s var(--ease);
}
.btn::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background: rgba(201, 168, 124, 0.08);
    z-index: -1;
    transition: width 0.4s var(--ease);
}
.btn:hover { border-color: var(--beige); color: var(--beige); box-shadow: 0 4px 20px rgba(201, 168, 124, 0.12); }
.btn:hover::before { width: 100%; }

.btn--solid { background: var(--beige); color: #0a0a0a; border-color: var(--beige); font-weight: 600; }
.btn--solid::before { background: var(--ink); }
.btn--solid:hover { background: var(--ink); border-color: var(--ink); color: #0a0a0a; box-shadow: 0 6px 24px rgba(201, 168, 124, 0.25); }
.btn--solid:hover::before { width: 100%; }
.btn--sm { padding: 11px 22px; font-size: 10px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-row--center { justify-content: center; }

/* ---------- hero (homepage) ---------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--beige), rgba(245, 243, 239, 0.85));
    transform-origin: left center;
    pointer-events: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(120px, 14vh, 160px) 0 clamp(72px, 10vh, 100px);
    background: var(--bg);
}
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    will-change: transform;
}
@keyframes heroKenBurns { to { transform: scale(1.06); } }
.hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.55) 42%, rgba(10, 10, 10, 0.15) 68%, transparent 100%),
        radial-gradient(90% 70% at 78% 32%, transparent 0%, rgba(10, 10, 10, 0.25) 55%, rgba(10, 10, 10, 0.7) 100%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.hero-copy {
    max-width: min(560px, 92vw);
    text-align: left;
}
.hero .hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.04em;
    font-family: var(--serif);
    font-size: clamp(3rem, 9vw, 6.5rem);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 0.98;
    margin: 0 0 12px;
}
.hero-title__word {
    display: block;
    overflow: hidden;
    padding-bottom: 0.04em;
}
.hero-title__word > span {
    display: inline-block;
    transform: translateY(110%);
    animation: titleRise 1.15s var(--ease) forwards;
}
.hero-title__word:nth-child(1) > span { animation-delay: 0.18s; }
.hero-title__word:nth-child(2) > span { animation-delay: 0.34s; }
@keyframes titleRise { to { transform: translateY(0); } }
.hero-name-zh {
    font-family: var(--serif);
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    letter-spacing: 0.32em;
    color: var(--ink);
    margin: 0 0 20px;
}
.hero-role {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.85;
    margin: 0 0 22px;
    max-width: 48ch;
}
.hero-role__en {
    display: block;
    margin-top: 6px;
    color: var(--faint);
    font-size: 10px;
    letter-spacing: 0.14em;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 44px;
    line-height: 1.8;
}
.hero-eyebrow__line {
    display: block;
    width: 42px;
    height: 1px;
    background: var(--beige);
    transform-origin: left center;
    transform: scaleX(0);
    animation: lineGrow 1.1s var(--ease) 0.35s forwards;
}
@keyframes lineGrow { to { transform: scaleX(1); } }
.hero-quote {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-style: italic;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 32px;
    max-width: 36ch;
}
.scroll-cue {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--faint);
    animation: scrollPulse 2.5s var(--ease) infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.scroll-cue::after {
    content: "";
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, var(--faint), transparent);
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.45; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.55); opacity: 0.45; }
    50% { transform: scaleY(1); opacity: 1; }
}

.section--feature {
    background:
        radial-gradient(ellipse 70% 55% at 85% 20%, rgba(201, 168, 124, 0.08), transparent 50%),
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(201, 168, 124, 0.06), transparent 55%),
        var(--bg);
}
.section--story {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.journey-path--home {
    margin: 0 0 40px;
    justify-content: flex-start;
    max-width: 520px;
}
.journey-path--home .journey-path__segment {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.2s var(--ease);
}
.journey-path--home.is-visible .journey-path__segment { transform: scaleX(1); }
.journey-path--home .journey-path__point {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), color 0.4s var(--ease);
}
.journey-path--home.is-visible .journey-path__point {
    opacity: 1;
    transform: none;
}
.journey-path--home.is-visible .journey-path__point:nth-child(1) { transition-delay: 0.1s; }
.journey-path--home.is-visible .journey-path__point:nth-child(3) { transition-delay: 0.35s; }
.journey-path--home.is-visible .journey-path__point:nth-child(5) { transition-delay: 0.6s; }
.journey-path--home.is-visible .journey-path__segment:nth-child(2) { transition-delay: 0.22s; }
.journey-path--home.is-visible .journey-path__segment:nth-child(4) { transition-delay: 0.48s; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
    padding: 140px 0 72px;
    text-align: center;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line-soft);
    position: relative;
    overflow: hidden;
}
.page-hero--banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/danny-banner.jpg") center 35% / cover no-repeat;
    opacity: 0.22;
    filter: grayscale(100%) contrast(1.05);
}
.page-hero--banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.55), rgba(18, 17, 16, 0.92));
}
.page-hero .container { position: relative; z-index: 1; }

/* ---------- artist intro ---------- */
.artist-intro {
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) 1.15fr;
    gap: clamp(36px, 6vw, 80px);
    align-items: center;
}
.artist-intro--reverse {
    grid-template-columns: 1.15fr minmax(240px, 0.85fr);
}
.artist-intro--reverse .artist-intro__photo {
    order: 2;
}
.artist-intro__photo {
    border: 1px solid var(--line);
    background: var(--panel);
    overflow: hidden;
    filter: grayscale(100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}
.artist-intro__photo:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 124, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.artist-intro__photo img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 18%;
    transition: transform 0.8s var(--ease);
}
.artist-intro__photo:hover img { transform: scale(1.04); }

.feature { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.cover {
    position: relative;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(245, 243, 239, 0.1);
    filter: grayscale(100%);
    background: linear-gradient(145deg, #1c1b16, #0a0a09);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
    transition: all 0.6s var(--ease);
}
.cover:hover {
    transform: scale(1.03) translateY(-4px);
    border-color: var(--beige);
    filter: grayscale(0%);
    box-shadow: 0 28px 64px rgba(201, 168, 124, 0.15);
}
.cover-zh {
    font-family: var(--serif);
    font-size: clamp(3rem, 9vw, 6rem);
    letter-spacing: 0.1em;
    color: rgba(245, 243, 239, 0.92);
}
.song-zh { font-size: clamp(2.6rem, 7vw, 4.4rem); letter-spacing: 0.08em; }
.song-en { font-family: var(--serif); font-style: italic; font-size: 1.55rem; color: var(--muted); margin-top: 6px; }
.poem { font-family: var(--serif); font-style: italic; font-size: 1.35rem; line-height: 1.6; color: var(--ink); white-space: pre-line; margin: 28px 0 36px; border-left: 2px solid var(--beige-dim); padding-left: 20px; }

/* streaming links */

.streams { display: flex; flex-wrap: wrap; gap: 12px; }
.stream {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid rgba(245, 243, 239, 0.15);
    padding: 12px 20px;
    background: rgba(245, 243, 239, 0.02);
    border-radius: 30px;
    transition: all 0.4s var(--ease);
}
.stream:hover {
    color: #0a0a0a;
    background: var(--beige);
    border-color: var(--beige);
    box-shadow: 0 4px 16px rgba(201, 168, 124, 0.25);
    transform: translateY(-2px);
}
.stream--off {
    opacity: 0.4;
    cursor: not-allowed;
    border-style: dashed;
}

/* ---------- prose / story ---------- */
.prose { white-space: pre-line; }
.prose p, .prose { color: var(--muted); line-height: 1.8; }

/* hero journey path */
.story-hero .measure { margin-left: auto; margin-right: auto; }
.journey-path {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: clamp(48px, 8vw, 72px);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.journey-path__point {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--faint);
    white-space: nowrap;
    padding: 6px 0;
    transition: color 0.4s var(--ease);
}
.journey-path__segment {
    flex: 1 1 28px;
    min-width: 20px;
    max-width: 72px;
    height: 1px;
    margin: 0 12px;
    background: linear-gradient(90deg, var(--line), var(--beige), var(--line));
    position: relative;
}
.journey-path__segment::after {
    content: "";
    position: absolute;
    right: -3px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--beige);
    border-right: 1px solid var(--beige);
    transform: translateY(-50%) rotate(45deg);
}
.journey-path__point:last-child { color: var(--beige); }

/* story path timeline */
.story-path-section { overflow: hidden; }
.story-path {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 20px 0 40px;
}
.story-path::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--line-soft) 4%,
        rgba(201, 168, 124, 0.4) 15%,
        var(--beige) 50%,
        rgba(201, 168, 124, 0.4) 85%,
        var(--line-soft) 96%,
        transparent 100%
    );
}
.story-stop {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 0 32px;
    padding: 0 0 80px;
}
.story-stop:last-child { padding-bottom: 0; }
.story-stop__marker {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    padding-top: 32px;
    z-index: 2;
}
.story-stop__node {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid var(--beige);
    background: var(--bg);
    box-shadow: 0 0 0 6px var(--beige-dim);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.story-stop.is-visible .story-stop__node,
.story-stop:hover .story-stop__node {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px var(--beige-dim), 0 0 24px rgba(201, 168, 124, 0.4);
}
.story-stop__card {
    grid-row: 1;
    max-width: 400px;
    padding: 36px 36px 40px;
    border: 1px solid rgba(245, 243, 239, 0.06);
    background: rgba(22, 21, 15, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.story-stop:hover .story-stop__card {
    border-color: var(--beige);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(201, 168, 124, 0.12);
}
.story-stop--left .story-stop__card {
    grid-column: 1;
    justify-self: end;
    text-align: right;
}
.story-stop--right .story-stop__card {
    grid-column: 3;
    justify-self: start;
    text-align: left;
}
.story-stop__step {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    color: rgba(201, 168, 124, 0.25);
    margin-bottom: 8px;
    display: block;
}
.story-stop h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    margin-bottom: 12px;
    line-height: 1.15;
    color: var(--ink);
}
.story-stop .excerpt {
    font-style: italic;
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--beige);
    margin-bottom: 24px;
    line-height: 1.45;
}
.story-stop .prose { font-size: 15px; line-height: 1.8; }

.story-post { max-width: 64ch; margin: 0 auto; padding: 64px 0; border-top: 1px solid var(--line-soft); }
.story-post:first-of-type { border-top: 0; }
.story-post h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 8px;
    display: inline-block;
    position: relative;
}
.story-post h2::after {
    content: "";
    position: absolute;
    left: 50%; bottom: -4px;
    width: 0; height: 1px;
    background: var(--beige);
    transform: translateX(-50%);
    transition: width 0.4s var(--ease);
}
.story-post h2:hover::after { width: 100%; }
.story-post .excerpt { font-style: italic; font-family: var(--serif); font-size: 1.25rem; color: var(--beige); margin-bottom: 26px; }

/* ---------- videos ---------- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.video figure { margin: 0; }
.video .frame {
    position: relative; aspect-ratio: 16 / 9; border: 1px solid rgba(245, 243, 239, 0.1);
    background: linear-gradient(145deg, #1c1b16, #0a0a09); overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
    transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.video:hover .frame {
    border-color: var(--beige);
    box-shadow: 0 16px 48px rgba(201, 168, 124, 0.12);
}
.video .frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(100%); transition: filter 0.6s var(--ease); }
.video .frame:hover iframe { filter: grayscale(0%); }
.video .placeholder {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 10px; color: var(--faint);
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
}
.video figcaption { margin-top: 18px; font-family: var(--serif); font-size: 1.3rem; color: var(--ink); font-weight: 400; }

/* ---------- forms ---------- */
.field { margin-bottom: 26px; }
.field label {
    display: block; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 12px; font-weight: 500;
}
.input, .textarea {
    width: 100%; background: rgba(245, 243, 239, 0.02); color: var(--ink);
    border: 1px solid rgba(245, 243, 239, 0.12);
    border-bottom: 1px solid rgba(245, 243, 239, 0.25);
    padding: 16px 18px;
    border-radius: 4px;
    font-family: var(--sans); font-size: 15px; font-weight: 300;
    transition: all 0.4s var(--ease);
}
.input:focus, .textarea:focus {
    outline: none;
    background: rgba(245, 243, 239, 0.04);
    border-color: var(--beige);
    box-shadow: 0 4px 20px rgba(201, 168, 124, 0.08);
}
.textarea { min-height: 160px; resize: vertical; }
.form-narrow { max-width: 560px; }

.errors { list-style: none; margin: 0 0 24px; padding: 14px 18px; border: 1px solid rgba(190, 90, 70, 0.5); color: #e7b3a6; font-size: 14px; }
.errors li { margin: 2px 0; }

.flash {
    margin: 0 0 30px; padding: 16px 20px; border: 1px solid var(--beige);
    background: var(--beige-dim); color: var(--ink); font-size: 14px; letter-spacing: 0.02em;
    animation: flashIn 0.6s var(--ease) forwards;
}
@keyframes flashIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: none; }
}

/* ---------- footer ---------- */
.site-footer {
    border-top: 1px solid rgba(245, 243, 239, 0.08);
    background: #070707;
    padding: 80px 0 60px;
    text-align: center;
}
.site-footer .nav-brand { display: inline-block; font-size: 1.25rem; margin-bottom: 20px; color: var(--ink); }
.site-footer .links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.site-footer .links a {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
    transition: color 0.35s var(--ease);
    position: relative;
    padding-bottom: 4px;
}
.site-footer .links a::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 1px;
    background: var(--beige);
    transition: width 0.35s var(--ease);
}
.site-footer .links a:hover { color: var(--ink); }
.site-footer .links a:hover::after { width: 100%; }
.site-footer small { color: var(--faint); font-size: 11px; letter-spacing: 0.08em; display: block; margin-top: 8px; }

/* ---------- fade-in on load ---------- */
.reveal { opacity: 0; transform: translateY(18px); animation: reveal 1.1s var(--ease) forwards; }
.reveal.d1 { animation-delay: 0.12s; }
.reveal.d2 { animation-delay: 0.24s; }
.reveal.d3 { animation-delay: 0.36s; }
.reveal.d4 { animation-delay: 0.48s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

/* ---------- fade-in on scroll ---------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-on-scroll.is-visible { opacity: 1; transform: none; }
.reveal-on-scroll--left { transform: translateX(-32px); }
.reveal-on-scroll--right { transform: translateX(32px); }
.reveal-on-scroll--scale { transform: scale(0.94); }
.reveal-on-scroll--left.is-visible,
.reveal-on-scroll--right.is-visible,
.reveal-on-scroll--scale.is-visible { transform: none; }
.reveal-on-scroll.d1 { transition-delay: 0.12s; }
.reveal-on-scroll.d2 { transition-delay: 0.24s; }
.reveal-on-scroll.d3 { transition-delay: 0.36s; }
.reveal-on-scroll.d4 { transition-delay: 0.48s; }

.video-grid .video.reveal-on-scroll:nth-child(2) { transition-delay: 0.12s; }
.video-grid .video.reveal-on-scroll:nth-child(3) { transition-delay: 0.24s; }
.video-grid .video.reveal-on-scroll:nth-child(4) { transition-delay: 0.36s; }

.story-post.reveal-on-scroll:nth-child(2) { transition-delay: 0.12s; }
.story-post.reveal-on-scroll:nth-child(3) { transition-delay: 0.24s; }
.story-post.reveal-on-scroll:nth-child(4) { transition-delay: 0.36s; }

.story-stop.reveal-on-scroll:nth-child(2) { transition-delay: 0.12s; }
.story-stop.reveal-on-scroll:nth-child(3) { transition-delay: 0.24s; }
.story-stop.reveal-on-scroll:nth-child(4) { transition-delay: 0.36s; }
.story-stop.reveal-on-scroll:nth-child(5) { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { animation: none; opacity: 1; transform: none; }
    .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
    .scroll-cue { animation: none; }
    .scroll-cue__line { animation: none; }
    .hero-media img { animation: none; }
    .hero-title__word > span { animation: none; transform: none; }
    .hero-eyebrow__line { animation: none; transform: none; }
    .flash { animation: none; }
    .scroll-progress { display: none; }
}

/* ============================================================
   Admin
   ============================================================ */
.admin-body { background: var(--bg-2); }
.admin-shell { display: flex; min-height: 100vh; }
.admin-side {
    width: 240px; flex-shrink: 0; border-right: 1px solid var(--line);
    padding: 30px 24px; position: sticky; top: 0; height: 100vh;
}
.admin-side .brand { font-family: var(--serif); letter-spacing: 0.24em; text-transform: uppercase; font-size: 1.1rem; margin-bottom: 4px; }
.admin-side .tag { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--beige); margin-bottom: 36px; }
.admin-nav { display: flex; flex-direction: column; gap: 4px; }
.admin-nav a { padding: 11px 14px; font-size: 13px; letter-spacing: 0.08em; color: var(--muted); border-left: 2px solid transparent; }
.admin-nav a:hover { color: var(--ink); }
.admin-nav a.is-active { color: var(--ink); border-left-color: var(--beige); background: rgba(245,243,239,0.03); }
.admin-nav .badge { display: inline-block; min-width: 18px; text-align: center; margin-left: 8px; font-size: 11px; color: var(--bg); background: var(--beige); border-radius: 9px; padding: 0 6px; letter-spacing: 0; }
.admin-main { flex-grow: 1; min-width: 0; padding: 40px clamp(22px, 4vw, 56px); max-width: none; }
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 30px; flex-wrap: wrap; }
.admin-head h1 { font-size: 2rem; }
.admin-logout { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); background: none; border: 0; cursor: pointer; }
.admin-logout:hover { color: var(--beige); }

.table-wrap { width: 100%; overflow-x: auto; border: 1px solid var(--line); background: rgba(245, 243, 239, 0.015); }
.table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 680px; }
.table thead th {
    text-align: left; padding: 16px 22px;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); font-weight: 500;
    background: rgba(245, 243, 239, 0.04); border-bottom: 1px solid var(--line); white-space: nowrap;
}
.table tbody td { padding: 17px 22px; border-bottom: 1px solid var(--line-soft); color: var(--muted); vertical-align: middle; }
.table tbody tr { transition: background 0.25s var(--ease); }
.table tbody tr:hover { background: rgba(245, 243, 239, 0.03); }
.table tbody tr:last-child td { border-bottom: 0; }
.table tr.unread td { color: var(--ink); }
.actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.table .actions { white-space: nowrap; justify-content: flex-end; }
.table .col-num { width: 90px; }
.table .col-actions { text-align: right; width: 1%; white-space: nowrap; }
.count-pill { display: inline-block; border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.head-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pill { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 10px; border: 1px solid var(--line); color: var(--muted); white-space: nowrap; }
.pill--on { border-color: var(--beige); color: var(--beige); }
.pill--code { text-transform: none; letter-spacing: 0.04em; }
.pill--warn { border-color: #b5544a; color: #d98c82; text-transform: none; letter-spacing: 0.04em; }
.btn--danger:hover { border-color: #b5544a; color: #d98c82; }

.card { border: 1px solid var(--line); padding: 26px; background: rgba(245,243,239,0.02); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; margin-bottom: 40px; }
.stat .n { font-family: var(--serif); font-size: 2.6rem; line-height: 1; }
.stat .l { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.admin-login .box { width: 100%; max-width: 380px; border: 1px solid var(--line); padding: 44px 36px; }
.admin-login .brand { font-family: var(--serif); letter-spacing: 0.26em; text-transform: uppercase; text-align: center; font-size: 1.2rem; margin-bottom: 6px; }
.admin-login .tag { text-align: center; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--beige); margin-bottom: 32px; }
.link-back { display: inline-block; margin-top: 22px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }
.link-back:hover { color: var(--beige); }

.help { font-size: 12px; color: var(--faint); margin-top: 6px; letter-spacing: 0.02em; }

/* ---------- responsive ---------- */
@media (max-width: 820px) {
    .feature,
    .release-grid,
    .artist-intro,
    .artist-intro--reverse { grid-template-columns: 1fr; }
    .release-grid__header,
    .release-visual,
    .release-copy,
    .release-grid__streams { grid-column: 1; }
    .release-grid__header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .streams--release-platforms .streams--release__platforms { grid-template-columns: 1fr; }
    .artist-intro--reverse .artist-intro__photo { order: 0; }
    .cover { max-width: 360px; margin: 0 auto; }
    .artist-intro__photo { max-width: 360px; margin: 0 auto; }
    .hero-copy { max-width: none; }
    .hero-inner { padding-bottom: 0; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { text-align: center; }
    .scroll-cue { left: var(--gutter); transform: none; align-items: flex-start; }
    .hero-slide { object-position: 68% 24%; }
    .journey-path--home { max-width: none; justify-content: center; }
    .section { padding: 72px 0; }
    .page-hero { padding: 120px 0 56px; }

    .nav {
        top: 16px;
        left: 16px;
        right: 16px;
        width: auto;
        max-width: none;
        transform: none;
        padding: 13px 20px;
        background: rgba(12, 11, 10, 0.96);
        border: 1px solid rgba(245, 243, 239, 0.08);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        pointer-events: auto;
    }
    .nav.nav--scrolled,
    .nav-shell.is-scrolled .nav {
        top: 8px;
        padding: 10px 18px;
        background: rgba(8, 8, 8, 0.98);
        border-color: rgba(201, 168, 124, 0.2);
    }
    .nav-toggle { display: block; z-index: 25; }
    .nav-links {
        display: flex;
        position: fixed;
        inset: 0 0 0 auto;
        width: min(86vw, 320px);
        max-width: 100%;
        margin: 0;
        min-height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 0;
        padding: calc(20px + env(safe-area-inset-top, 0px)) 20px calc(24px + env(safe-area-inset-bottom, 0px));
        background: #0a0a0a;
        border: 0;
        border-left: 1px solid var(--line);
        border-radius: 0;
        box-shadow: -24px 0 60px rgba(0, 0, 0, 0.45);
        transform: translate3d(100%, 0, 0);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.42s var(--ease), visibility 0.42s var(--ease);
        z-index: 24;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav.is-open .nav-links,
    .nav-shell.is-open .nav-links {
        transform: translate3d(0, 0, 0);
        visibility: visible;
        pointer-events: auto;
    }
    .nav-links a {
        font-size: 14px;
        letter-spacing: 0.24em;
        padding: 18px 4px;
        border-bottom: 1px solid var(--line-soft);
        border-left: 2px solid transparent;
    }
    .nav-links a.is-active {
        color: var(--beige);
        border-left-color: var(--beige);
        border-bottom-color: var(--line-soft);
        padding-bottom: 18px;
    }
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 23;
        background: rgba(0, 0, 0, 0.62);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.42s var(--ease), visibility 0.42s var(--ease);
    }
    .nav-shell.is-open .nav-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-shell.is-open .nav {
        visibility: hidden;
        pointer-events: none;
    }
    .nav-shell.is-open .nav-toggle {
        display: none;
    }
    .nav-close {
        display: block;
        align-self: flex-end;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        margin: 0 0 12px;
        padding: 0;
        background: none;
        border: 0;
        cursor: pointer;
        position: relative;
    }
    .nav-close span {
        position: absolute;
        left: 11px;
        right: 11px;
        top: 50%;
        height: 1.5px;
        margin-top: -0.75px;
        background: var(--ink);
    }
    .nav-close span:first-child { transform: rotate(45deg); }
    .nav-close span:last-child { transform: rotate(-45deg); }

    .streams--release__platforms { grid-template-columns: 1fr; }
    .admin-side { width: auto; height: auto; position: static; border-right: 0; border-bottom: 1px solid var(--line); }
    .admin-nav { flex-direction: row; flex-wrap: wrap; }
    .admin-main { padding: 26px 16px; }
    .admin-head h1 { font-size: 1.7rem; }

    .journey-path {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-width: 220px;
    }
    .journey-path__segment {
        flex: none;
        width: 1px;
        height: 28px;
        min-width: 0;
        max-width: none;
        margin: 4px auto;
        background: linear-gradient(to bottom, var(--line), var(--beige), var(--line));
    }
    .journey-path__segment::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: -2px;
        transform: translateX(-50%) rotate(135deg);
    }
    .journey-path__point { text-align: center; }

    .story-path::before { left: 20px; transform: none; }
    .story-stop {
        grid-template-columns: auto 1fr;
        gap: 0 22px;
        padding-bottom: 56px;
    }
    .story-stop__marker {
        grid-column: 1;
        padding-top: 32px;
    }
    .story-stop__card,
    .story-stop--left .story-stop__card,
    .story-stop--right .story-stop__card {
        grid-column: 2;
        justify-self: stretch;
        max-width: none;
        text-align: left;
    }
}

/* ============================================================
   Premium artist sections (homepage landing + cards)
   ============================================================ */

/* section header + stage-light glow */
.section-head { max-width: 720px; margin: 0 0 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin: 6px 0 0; }
.section-head .lead { margin-top: 16px; }
.glow { position: relative; isolation: isolate; }
.glow::before {
    content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background: radial-gradient(58% 55% at 50% 0%, var(--beige-dim), transparent 70%);
    opacity: 0.7;
}

/* music motifs: play badge + equalizer + waveform divider */
.play-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 50%;
    border: 1px solid rgba(245, 243, 239, 0.55); background: rgba(10, 10, 10, 0.32);
    backdrop-filter: blur(2px);
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.play-badge::after {
    content: ""; border-style: solid; border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent var(--ink); margin-left: 3px;
}
.eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 16px; }
.eq span { width: 3px; height: 40%; background: var(--beige); animation: eq 1.1s var(--ease) infinite; }
.eq span:nth-child(2) { animation-delay: 0.15s; }
.eq span:nth-child(3) { animation-delay: 0.30s; }
.eq span:nth-child(4) { animation-delay: 0.45s; }
.eq span:nth-child(5) { animation-delay: 0.60s; }
@keyframes eq { 0%, 100% { height: 28%; } 50% { height: 100%; } }
.waveform { display: block; width: 100%; height: 40px; color: var(--line); }

/* hero: admin photo + cinematic vignette + CTA row */
.hero-photo {
    position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
    object-fit: cover; filter: grayscale(100%) contrast(1.05) brightness(0.66);
    animation: heroKenBurns 20s var(--ease) forwards;
}
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, transparent 28%, transparent 72%, var(--bg) 100%);
}
.hero-eq { justify-content: flex-start; margin-bottom: 22px; height: 20px; }
.hero-cta { justify-content: flex-start; gap: 12px; }
.hero-cta .btn { min-width: 0; }

/* About the artist */
.about-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(34px, 6vw, 84px); align-items: center; }
.about-portrait {
    width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border: 1px solid var(--line);
    filter: grayscale(100%); background: linear-gradient(160deg, #23211c, #0a0908);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.6s var(--ease);
}
.about-portrait:hover {
    filter: grayscale(0%);
    border-color: var(--beige);
    box-shadow: 0 24px 56px rgba(201, 168, 124, 0.12);
    transform: translateY(-2px);
}
.about-grid h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.about-title__en {
    display: block;
    margin-top: 8px;
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 400;
}
.about-roles {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--beige);
    margin: 16px 0 24px;
    line-height: 1.8;
}
.about-roles__en {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.18em;
}
.about-bio { margin-top: 0; }
.about-bio + .about-bio { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.about-bio--zh { color: var(--ink); }
.about-bio--en { color: var(--muted); font-style: italic; }
.about-sign { font-family: var(--serif); font-style: italic; font-size: 1.55rem; color: var(--beige); margin-top: 22px; }

/* Album cards (releases) */
.album-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 360px)); gap: 30px; justify-content: start; }
.album-card {
    border: 1px solid var(--line); background: rgba(245, 243, 239, 0.02); overflow: hidden;
    transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.album-card:hover { transform: translateY(-6px); border-color: var(--beige); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5); }
.album-card__cover {
    position: relative; aspect-ratio: 1 / 1; filter: grayscale(100%); overflow: hidden;
    display: flex; align-items: center; justify-content: center; transition: filter 0.5s var(--ease);
    background: radial-gradient(80% 80% at 30% 25%, rgba(201, 168, 124, 0.2), transparent 55%), linear-gradient(145deg, #23211c, #0a0908);
}
.album-card:hover .album-card__cover { filter: grayscale(0%); }
.album-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.album-card__cover .play-badge { position: absolute; }
.album-card:hover .play-badge { transform: scale(1.08); border-color: var(--beige); background: rgba(201, 168, 124, 0.22); }
.album-card__zh { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 3rem); color: rgba(245, 243, 239, 0.92); }
.album-card__body { padding: 22px 24px 26px; }
.album-badge { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--beige); margin-bottom: 8px; }
.album-card__body h3 { font-size: 1.55rem; }
.album-card__en { color: var(--muted); font-style: italic; font-family: var(--serif); margin-top: 2px; }
.album-card .streams { margin-top: 18px; }

/* Music video feature */
.video-feature { max-width: 940px; margin: 0 auto; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery__item {
    position: relative; aspect-ratio: 1 / 1; overflow: hidden; border: 1px solid var(--line);
    filter: grayscale(100%); background: linear-gradient(145deg, #1c1a17, #0a0908); transition: filter 0.6s var(--ease);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery__item:hover { filter: grayscale(0%); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--faint); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; padding: 10px; }
.gallery__cap {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 12px;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.85)); opacity: 0; transition: opacity 0.4s var(--ease);
}
.gallery__item:hover .gallery__cap { opacity: 1; }

/* Events */
.events-list { border-top: 1px solid var(--line-soft); }
.event-card {
    display: grid; grid-template-columns: 116px 1fr auto; gap: 28px; align-items: center;
    padding: 26px 6px; border-bottom: 1px solid var(--line-soft); transition: background 0.35s var(--ease);
}
.event-card:hover { background: rgba(245, 243, 239, 0.02); }
.event-date { text-align: center; border: 1px solid var(--line); padding: 12px 6px; }
.event-date .d { font-family: var(--serif); font-size: 2rem; line-height: 1; }
.event-date .m { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--beige); margin-top: 4px; }
.event-date .tba { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }
.event-info h3 { font-size: 1.5rem; }
.event-info .meta { color: var(--muted); margin-top: 6px; font-size: 15px; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
    border: 1px solid var(--line); background: rgba(245, 243, 239, 0.02); padding: 32px 30px;
    transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--beige); }
.testimonial-card .quote-mark { font-family: var(--serif); font-size: 3rem; line-height: 0.5; color: var(--beige); opacity: 0.5; display: block; margin-bottom: 14px; }
.testimonial-card .quote { font-family: var(--serif); font-style: italic; font-size: 1.3rem; line-height: 1.5; color: var(--ink); }
.testimonial-card .by { margin-top: 20px; font-size: 13px; letter-spacing: 0.03em; }
.testimonial-card .by strong { color: var(--ink); }
.testimonial-card .by span { color: var(--muted); }

/* Social row */
.social-row { display: flex; flex-wrap: wrap; gap: 12px; }
.social-link {
    display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); padding: 11px 18px;
    transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.social-link:hover { color: var(--beige); border-color: var(--beige); }

/* Booking */
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.booking-aside .lead { margin-bottom: 26px; }

/* Responsive */
@media (max-width: 1000px) {
    .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
    .about-grid, .booking-grid { grid-template-columns: 1fr; }
    .album-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .event-card { grid-template-columns: 84px 1fr; gap: 16px 18px; }
    .event-card .event-actions { grid-column: 1 / -1; }
}

/* ============================================================
   Hero crossfade slideshow + cinematic section backdrops
   ============================================================ */
.hero-slide {
    position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
    object-fit: cover;
    object-position: 72% center;
    filter: grayscale(100%) contrast(1.06) brightness(0.62);
    opacity: 0; transition: opacity 1.6s var(--ease); will-change: opacity;
}
.hero-slide.is-active { opacity: 1; animation: heroKenBurns 9s var(--ease) forwards; }

/* keep hero text legible over bright stage photos */
.hero .hero-title, .hero-role, .hero-quote { text-shadow: 0 2px 34px rgba(0, 0, 0, 0.55); }

/* section with a photographic backdrop + heavy dark overlay (gentle parallax on desktop) */
.section--bg { position: relative; isolation: isolate; }
.section--bg::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background-image: linear-gradient(rgba(10, 10, 10, 0.86), rgba(10, 10, 10, 0.93)), var(--bg-img);
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
@media (min-width: 821px) {
    .section--bg::before { background-attachment: fixed; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide { transition: none; animation: none; }
    .hero-slide.is-active { opacity: 1; }
    .section--bg::before { background-attachment: scroll; }
}

/* ============================================================
   Featured release block (Latest releases section)
   ============================================================ */
.release-feature {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: clamp(36px, 6vw, 80px);
}
.release-feature__media {
    position: relative;
    flex: 0 0 clamp(260px, 42%, 480px);
    min-width: 0;
    min-height: 0;
}
.release-feature__copy {
    flex: 1;
    min-width: 0;
}
.release-feature .song-zh { font-size: clamp(2.6rem, 6vw, 4rem); }
.release-feature .album-badge { margin-bottom: 14px; }
.release-feature .poem { margin-bottom: 0; }
.release-cover {
    cursor: default;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: none;
}
.release-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.release-cover:hover {
    transform: none;
    filter: grayscale(0%);
}
.release-cover:not(:has(img)) {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1c1b16, #0a0a09);
}
/* song covers are not videos — hide the play/video icon overlay */
.release-cover .play-badge,
.album-card__cover .play-badge { display: none; }
@media (max-width: 820px) {
    .release-feature {
        flex-direction: column;
        align-items: stretch;
    }
    .release-feature__media {
        flex: none;
        width: 100%;
        max-width: 420px;
        align-self: center;
    }
    .release-cover {
        position: relative;
        inset: auto;
        height: auto;
    }
    .release-cover img {
        height: auto;
    }
    .release-feature .poem { margin-bottom: 36px; }
}

/* ============================================================
   Distribution platforms
   ============================================================ */
.song-platforms {
    margin-top: 80px;
    padding-top: 56px;
    border-top: 1px solid var(--line-soft);
    overflow-x: clip;
}

.platform-distribution--inline .platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}

.platform-distribution--inline .platform-card {
    justify-content: center;
    gap: 8px;
    padding: 13px 12px;
    min-height: 48px;
    border-radius: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: none;
}

.platform-distribution--inline .platform-card:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, .42);
    transform: none;
}

.platform-distribution--inline .platform-card__icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    background: transparent;
    border-radius: 0;
}

.platform-distribution--inline .platform-icon--brand {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 3px;
}

.platform-distribution--inline .platform-card__label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .58);
    white-space: nowrap;
}

.platform-distribution--inline .platform-card__name,
.platform-distribution--inline .platform-card__status {
    color: inherit;
    overflow: visible;
    text-overflow: clip;
}

.platform-distribution--inline .platform-card__sep {
    margin: 0 .45em;
    opacity: 1;
}

.platform-distribution--compact.platform-distribution--inline .platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

@media (max-width: 820px) {
    .platform-distribution--inline .platform-grid,
    .platform-distribution--compact.platform-distribution--inline .platform-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .platform-distribution--inline .platform-grid,
    .platform-distribution--compact.platform-distribution--inline .platform-grid {
        grid-template-columns: 1fr;
    }
}

.platform-home {
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.platform-distribution--grouped {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.platform-section__title {
    margin: 0 0 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
}

.platform-section[data-status="live"] .platform-section__title { color: var(--beige); }
.platform-section[data-status="released"] .platform-section__title { color: #8bc9a0; }
.platform-section[data-status="pending"] .platform-section__title { color: var(--muted); }

.platform-distribution--grouped .platform-card {
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 4px;
}

.platform-distribution--grouped .platform-card__name {
    flex: 1;
    min-width: 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .78);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.platform-distribution--grouped:not(.platform-distribution--inline) .platform-card__label {
    display: none;
}

.platform-distribution--grouped .platform-card__region,
.platform-distribution--grouped .platform-card__updated {
    display: none;
}

.platform-distribution--cols-5 .platform-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
}

.platform-distribution--cols-5 .platform-card {
    min-width: 0;
    gap: 10px;
    padding: 12px 12px;
    justify-content: flex-start;
}

.platform-distribution--cols-5 .platform-card__icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.platform-distribution--cols-5 .platform-icon--brand {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.platform-distribution--cols-5 .platform-icon--initial {
    width: 28px;
    height: 28px;
    font-size: 10px;
}

.platform-distribution--cols-5 .platform-card__region,
.platform-distribution--cols-5 .platform-card__updated {
    display: none;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    width: 100%;
}
.platform-distribution--compact .platform-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}
.platform-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: rgba(255,255,255,.03);
    text-decoration: none;
    color: inherit;
    transition: border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}
.platform-card[href]:hover {
    border-color: rgba(201,168,124,.35);
    background: rgba(201,168,124,.06);
    transform: translateY(-2px);
}
.platform-card.is-hidden { display: none; }
.platform-card__icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}
.platform-icon {
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 8px;
}
.platform-icon--brand {
    object-fit: contain;
    filter: none;
}
.platform-icon--initial {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .02em;
    color: #fff;
    background: hsl(var(--icon-hue, 30) 55% 42%);
}

@media (max-width: 1100px) {
    .platform-distribution--cols-5 .platform-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .platform-distribution--cols-5 .platform-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .platform-distribution--cols-5 .platform-card__region,
    .platform-distribution--cols-5 .platform-card__updated {
        display: none;
    }
}

.platform-card__body { flex: 1; min-width: 0; }
.platform-card__name {
    display: block; font-size: 14px; font-weight: 500; color: var(--ink);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.platform-card__region { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }

.platform-song-label {
    margin: -12px 0 28px; font-size: 15px; color: var(--muted);
}
.platform-song-label em { color: var(--ink); font-style: normal; }
.platform-card__updated,
.platform-card__note {
    display: block; font-size: 11px; color: var(--muted); margin-top: 3px; line-height: 1.35;
}
.platform-card__note { font-style: italic; opacity: .85; }

@media (max-width: 480px) {
    .platform-distribution--cols-5 .platform-grid,
    .platform-grid { grid-template-columns: 1fr; }
}

