/* ==========================================================================
   SOOFI STUDIO V2 — app.css
   Single source of truth for public styling. No CSS lives inside PHP.

   DIRECTION
   V1 ran black end to end, which fought the brand: the logo says "home of
   positive pop" and the artist bios talk about hope and good energy. V2
   inverts the ratio rather than the palette. Warm paper is the default
   surface; ink is an anchor used two or three times per page; orange is
   reserved for the single action that matters in a block.

   1 Tokens · 2 Base · 3 A11y · 4 Utilities · 5 Type · 6 Buttons · 7 Bands
   8 Header · 9 Footer · 10 Hero · 11 Sections · 12 Capability/proof
   13 Releases · 14 Artists · 15 News · 16 Services · 17 Enquiry
   18 Player · 19 Empty/404 · 20 Responsive
   ========================================================================== */


/* == 1. TOKENS ============================================================ */

:root {
    --paper:      #f7f4ef;
    --paper-2:    #f0ebe2;
    --paper-3:    #e7e0d4;
    --ink:        #14120f;
    --ink-raised: #1e1b17;

    --tx:     #14120f;
    --tx-2:   #4a443c;
    --tx-3:   #786f64;
    --tx-4:   #9a9084;

    --tx-inv:   #f7f4ef;
    --tx-inv-2: #b3aa9e;
    --tx-inv-3: #857c72;

    --line:      rgba(20, 18, 15, .13);
    --line-soft: rgba(20, 18, 15, .07);
    --line-inv:  rgba(247, 244, 239, .16);

    /* --accent is the surface orange. --accent-tx is darkened so orange text
       on paper still clears 4.5:1; one value for both failed contrast. */
    --accent:      #f2540d;
    --accent-tx:   #c23e05;
    --accent-hi:   #ff7038;
    --accent-wash: rgba(242, 84, 13, .09);

    --font-display: "Bricolage Grotesque", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-body:    "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Deliberately smaller than v1. One large moment per page, then
       everything steps down. Constant shouting reads as amateur. */
    --fs-display: clamp(2.5rem, 1.7rem + 3.2vw, 4.25rem);
    --fs-h1:      clamp(2.25rem, 1.5rem + 3vw, 3.75rem);
    --fs-h2:      clamp(1.875rem, 1.35rem + 2.1vw, 2.875rem);
    --fs-h3:      clamp(1.125rem, 1.02rem + .45vw, 1.375rem);
    --fs-lead:    clamp(1.0625rem, 1rem + .35vw, 1.1875rem);
    --fs-small:   .875rem;
    --fs-micro:   .6875rem;

    --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px; --sp-5: 24px;
    --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 96px;
    --section-y: clamp(72px, 8vw, 128px);

    /* Two radii only. V1 mixed five. */
    --r-s: 6px;
    --r-l: 18px;
    --r-pill: 999px;

    --shadow: 0 1px 2px rgba(20,18,15,.05), 0 16px 40px -24px rgba(20,18,15,.35);

    --ease: cubic-bezier(.2, .7, .2, 1);
    --dur-fast: .16s;
    --dur: .26s;
    --dur-slow: .5s;

    --max: 1240px;
    --gutter: clamp(20px, 4vw, 48px);
    --header-h: 72px;
    --player-h: 0px;
}


/* == 2. BASE ============================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--tx);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    font-synthesis-weight: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: var(--player-h);
    transition: padding-bottom var(--dur) var(--ease);
    overflow-x: hidden;
}
body.player-active { --player-h: 74px; }

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1;
    margin: 0;
    text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
::selection { background: var(--accent); color: #fff; }


/* == 3. ACCESSIBILITY ===================================================== */

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--accent-tx); outline-offset: 3px; border-radius: 3px; }
.band-ink :focus-visible { outline-color: var(--accent-hi); }

.skip-link {
    position: absolute;
    left: 12px; top: -80px;
    z-index: 200;
    background: var(--ink);
    color: var(--tx-inv);
    font-weight: 700;
    font-size: var(--fs-small);
    padding: 12px 18px;
    border-radius: var(--r-pill);
    transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus-visible { top: 12px; }

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}


/* == 4. UTILITIES (legacy names kept so untouched views still render) ===== */

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-7xl { max-width: var(--max); }
.max-w-6xl { max-width: 1120px; }
.max-w-4xl { max-width: 880px; }
.max-w-3xl { max-width: 760px; }
.max-w-xl { max-width: 576px; }
.px-5 { padding-left: var(--gutter); padding-right: var(--gutter); }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.hidden { display: none; }
.site-header .max-w-7xl { width: 100%; }


/* == 5. TYPE ============================================================== */

.eyebrow {
    margin: 0;
    color: var(--accent-tx);
    font-family: var(--font-body);
    font-size: var(--fs-micro);
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    line-height: 1.4;
}
.eyebrow-muted { color: var(--tx-3); }
.lead { color: var(--tx-2); font-size: var(--fs-lead); line-height: 1.72; }
.muted { color: var(--tx-3); font-size: var(--fs-small); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }


/* == 6. BUTTONS & LINKS =================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--tx);
    padding: 13px 24px;
    border-radius: var(--r-pill);
    font-size: .9375rem;
    font-weight: 600;
    line-height: 1;
    min-height: 48px;
    transition: background var(--dur-fast) var(--ease),
                border-color var(--dur-fast) var(--ease),
                color var(--dur-fast) var(--ease);
}
.btn-primary { background: var(--ink); border-color: var(--ink); color: var(--tx-inv); }
.btn-primary:hover { background: #292420; border-color: #292420; }

/* Orange is the single loudest action on a page — used sparingly. */
.btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hi); border-color: var(--accent-hi); }

.btn-ghost { color: var(--tx-2); }
.btn-ghost:hover { border-color: var(--tx); color: var(--tx); }

.btn-sm { padding: 10px 18px; min-height: 42px; font-size: var(--fs-small); }
.btn-lg { padding: 17px 32px; min-height: 56px; font-size: 1rem; }

.band-ink .btn { border-color: var(--line-inv); color: var(--tx-inv); }
.band-ink .btn-primary { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.band-ink .btn-primary:hover { background: #fff; border-color: #fff; }
.band-ink .btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.band-ink .btn-ghost { color: var(--tx-inv-2); }
.band-ink .btn-ghost:hover { border-color: var(--tx-inv); color: var(--tx-inv); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--tx-2);
    font-size: var(--fs-small);
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    padding-bottom: 3px;
    transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.text-link:hover { color: var(--accent-tx); border-color: var(--accent-tx); }
.band-ink .text-link { color: var(--tx-inv-2); border-color: var(--line-inv); }
.band-ink .text-link:hover { color: var(--accent-hi); border-color: var(--accent-hi); }

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tx-3);
    font-size: var(--fs-small);
    margin-bottom: var(--sp-7);
    transition: color var(--dur-fast) var(--ease), gap var(--dur-fast) var(--ease);
}
.back-link:hover { color: var(--accent-tx); gap: 12px; }


/* == 7. BANDS ============================================================= */

.band-paper { background: var(--paper); color: var(--tx); }
.band-tint { background: var(--paper-2); color: var(--tx); }

.band-ink { background: var(--ink); color: var(--tx-inv); }
.band-ink h1, .band-ink h2, .band-ink h3, .band-ink h4 { color: var(--tx-inv); }
.band-ink p:not(.eyebrow) { color: var(--tx-inv-2); }
.band-ink .eyebrow { color: var(--accent-hi); }
.band-ink .muted { color: var(--tx-inv-3); }
.band-ink .rule { background: var(--line-inv); }

/* Legacy v1 band names mapped onto the new system. */
.section-paper { background: var(--paper-2); color: var(--tx); }
.statement-section, .contact-band { background: var(--ink); color: var(--tx-inv); }
.statement-section h1, .statement-section h2, .statement-section p,
.contact-band h2 { color: var(--tx-inv); }
.contact-band p:not(.eyebrow) { color: var(--tx-inv-2); }
.statement-section .eyebrow, .contact-band .eyebrow { color: var(--accent-hi); }
.statement-section .btn, .contact-band .btn { border-color: var(--line-inv); color: var(--tx-inv); }
.statement-section .btn-primary, .contact-band .btn-primary {
    background: var(--paper); border-color: var(--paper); color: var(--ink);
}


/* == 8. HEADER ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 244, 239, .92);
    /* No backdrop-filter: it makes the header a containing block for the
       fixed mobile nav sheet, which is exactly what broke the v1 menu. */
}
.site-header > div { min-height: var(--header-h); gap: var(--sp-5); }
/* The header now uses logo-ink.svg, so the interim ink chip is gone. */
.site-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-logo img { width: 130px; height: auto; display: block; }
.nav-cluster { display: flex; align-items: center; gap: var(--sp-6); }

.site-nav { display: flex; align-items: center; gap: var(--sp-6); font-size: .9375rem; color: var(--tx-2); }
.site-nav a { position: relative; padding: 6px 0; transition: color var(--dur-fast) var(--ease); }
.site-nav a:hover { color: var(--tx); }
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
}
.site-nav a[aria-current="page"] { color: var(--tx); font-weight: 600; }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    background: transparent;
    color: var(--tx);
    padding: 0;
}
.nav-toggle svg { width: 18px; height: 18px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-cta { flex-shrink: 0; }
.nav-mobile-cta { display: none; }


/* == 9. FOOTER ============================================================ */

.site-footer {
    background: var(--ink);
    color: var(--tx-inv-2);
    padding: var(--sp-8) 0 var(--sp-5);
}
/* A hairline gives the two stacked ink sections an edge instead of a void. */
.contact-band + .site-footer,
.statement-section + .site-footer { border-top: 1px solid var(--line-inv); }
.contact-band + .site-footer { padding-top: var(--sp-7); }
.site-footer h2, .site-footer h3 { color: var(--tx-inv); }
.site-footer .eyebrow { color: var(--tx-inv-3); }

.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: var(--sp-7); align-items: start; }
.footer-logo { width: 124px; margin-bottom: var(--sp-4); }
/* Footer is already ink, so no chip is needed there. */
.footer-blurb { color: var(--tx-inv-2); font-size: .9375rem; line-height: 1.7; max-width: 34ch; }
.footer-grid a { display: block; margin-top: 10px; color: var(--tx-inv-2); font-size: var(--fs-small); transition: color var(--dur-fast) var(--ease); }
.footer-grid a:hover { color: var(--accent-hi); }
.footer-grid .eyebrow { margin-bottom: var(--sp-3); }
.footer-grid a.btn {
    display: inline-flex;
    margin-top: var(--sp-4);
    background: var(--paper);
    border-color: var(--paper);
    color: var(--ink);
    font-size: var(--fs-small);
}
.footer-grid a.btn:hover { background: #fff; color: var(--ink); }

.footer-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--sp-5); }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    margin: 0;
    border: 1px solid var(--line-inv);
    border-radius: var(--r-pill);
    color: var(--tx-inv-2);
    transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.footer-social a:hover { border-color: var(--accent-hi); color: var(--accent-hi); }
.footer-social svg { width: 17px; height: 17px; }

.footer-bottom {
    border-top: 1px solid var(--line-inv);
    margin-top: var(--sp-8);
    padding-top: var(--sp-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
    font-size: var(--fs-micro);
    color: var(--tx-inv-3);
    letter-spacing: .04em;
}
.footer-country { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.malaysia-flag { width: 24px; height: 16px; display: block; flex: 0 0 auto; border-radius: 2px; overflow: hidden; }


/* == 10. HERO ============================================================= */

.hero { position: relative; overflow: hidden; background: var(--paper); border-bottom: 1px solid var(--line); }
.hero-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(52% 46% at 88% 8%, var(--accent-wash), transparent 68%);
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    align-items: center;
    gap: clamp(32px, 5vw, 64px);
    padding: clamp(64px, 9vw, 128px) 0 clamp(56px, 7vw, 96px);
}
.hero-copy { position: relative; z-index: 1; max-width: 40ch; }
.hero h1 { font-size: var(--fs-display); line-height: .94; letter-spacing: -.04em; margin: var(--sp-5) 0 0; }
.hero h1 span { color: var(--tx-3); }
.hero-lead { max-width: 48ch; margin: var(--sp-6) 0 0; color: var(--tx-2); line-height: 1.72; font-size: var(--fs-lead); }
.hero-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-7); }

/* Proof strip: a B2B visitor wants scale before story. */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: clamp(28px, 5vw, 64px);
    margin-top: var(--sp-8);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--line);
}
.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.625rem, 1.2rem + 1.4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
    color: var(--tx);
}
.hero-stat span { display: block; margin-top: 8px; font-size: var(--fs-micro); letter-spacing: .14em; text-transform: uppercase; color: var(--tx-3); }

/* Editorial artwork collage replaces the v1 rotated circle. */
.hero-visual { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.hero-visual figure { margin: 0; }
.hero-visual img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-l); background: var(--paper-3); }
.hero-visual figure:nth-child(1) { transform: translateY(-18px); }
.hero-visual figure:nth-child(4) { transform: translateY(18px); }
.hero-visual figcaption { margin-top: 10px; font-size: var(--fs-micro); letter-spacing: .1em; text-transform: uppercase; color: var(--tx-4); }

/* Legacy v1 mark, retained for any view not yet rewritten. */
.hero-mark {
    justify-self: end;
    width: min(380px, 100%);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-wash), transparent 68%);
}
.hero-mark span { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.25rem, 5vw, 4rem); line-height: .86; letter-spacing: -.06em; }
.hero-mark span:nth-child(2) { color: var(--accent-tx); }
.hero-mark small { margin-top: var(--sp-5); color: var(--tx-4); font-size: var(--fs-micro); letter-spacing: .16em; text-transform: uppercase; }


/* == 11. SECTIONS ========================================================= */

.section { padding: var(--section-y) 0; }
.section-tight { padding: calc(var(--section-y) * .62) 0; }
.section-line { border-top: 1px solid var(--line); }
.band-ink.section-line { border-color: var(--line-inv); }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--sp-6); margin-bottom: var(--sp-7); }
.section-head h2, .page-intro h1 { font-size: var(--fs-h2); line-height: 1; margin: 10px 0 0; }

.page-intro { padding: clamp(64px, 9vw, 132px) 0 clamp(44px, 6vw, 80px); border-bottom: 1px solid var(--line); }
.page-intro h1 { font-size: var(--fs-display); }
.page-intro p:not(.eyebrow) { max-width: 54ch; color: var(--tx-2); font-size: var(--fs-lead); line-height: 1.72; margin-top: var(--sp-5); }

.intro-split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: clamp(32px, 5vw, 72px); align-items: end; }
.intro-side { max-width: 44ch; margin: 0 0 6px; color: var(--tx-2); font-size: var(--fs-lead); line-height: 1.72; }

.roster-stats, .services-intro-line {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    margin-top: var(--sp-8);
    padding-top: var(--sp-4);
    color: var(--tx-3);
    font-size: var(--fs-micro);
    letter-spacing: .1em;
    text-transform: uppercase;
}
.roster-stats strong { color: var(--tx); font-size: .9375rem; margin-right: 5px; }
.roster-stats span:last-child { margin-left: auto; }
.services-intro-line a { color: var(--tx-2); font-weight: 600; }
.services-intro-line a:hover { color: var(--accent-tx); }


/* == 12. CAPABILITY / PROOF (B2B backbone) ================================ */

.capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r-l);
    overflow: hidden;
}
.capability { background: var(--paper); padding: var(--sp-7) var(--sp-6) var(--sp-8); display: flex; flex-direction: column; transition: background var(--dur) var(--ease); }
.capability:hover { background: var(--paper-2); }
.capability h3 { font-size: var(--fs-h3); margin: var(--sp-5) 0 var(--sp-3); }
.capability p { color: var(--tx-2); font-size: .9375rem; line-height: 1.68; margin: 0; }
.capability ul { list-style: none; margin: var(--sp-5) 0 0; padding: 0; border-top: 1px solid var(--line); }
.capability li { padding: 10px 0; font-size: var(--fs-small); color: var(--tx-3); border-bottom: 1px solid var(--line-soft); }
.capability .text-link { margin-top: auto; padding-top: var(--sp-5); align-self: flex-start; }
.band-ink .capability-grid { background: var(--line-inv); border-color: var(--line-inv); }
.band-ink .capability { background: var(--ink); }
.band-ink .capability:hover { background: var(--ink-raised); }
.band-ink .capability ul, .band-ink .capability li { border-color: var(--line-inv); }

.proof-strip { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(24px, 4vw, 56px); padding: var(--sp-6) 0; }
.proof-strip img { height: 26px; width: auto; opacity: .55; filter: grayscale(1); }

.process-list { border-top: 1px solid var(--line); margin-top: var(--sp-6); }
.process-step {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1.15fr);
    gap: var(--sp-5);
    padding: var(--sp-6) 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}
.process-step h3 { font-size: var(--fs-h3); margin: 0; }
.process-step p { color: var(--tx-2); line-height: 1.7; margin: 0; font-size: .9375rem; }
.band-ink .process-list, .band-ink .process-step { border-color: var(--line-inv); }

.quote { max-width: 30ch; }
.quote blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.14; }
.quote figcaption { margin-top: var(--sp-5); font-size: var(--fs-small); color: var(--tx-3); }


/* == 13. RELEASES ========================================================= */

.release-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.release-grid-large { grid-template-columns: repeat(4, 1fr); }
.release-card { min-width: 0; }
.release-card > a { display: block; position: relative; overflow: hidden; border-radius: var(--r-l); background: var(--paper-3); }
.release-card img, .art-placeholder { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: var(--paper-3); }
.release-card img { transition: transform var(--dur-slow) var(--ease); }
.release-card:hover img { transform: scale(1.035); }

.art-placeholder, .artist-placeholder {
    display: grid;
    place-items: center;
    color: var(--tx-4);
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -.05em;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

.release-meta { padding: var(--sp-4) 2px 0; }
.release-meta h3 { font-size: var(--fs-h3); margin: 8px 0 4px; line-height: 1.2; }
.release-meta p:not(.eyebrow) { margin: 0; color: var(--tx-2); font-size: .9375rem; }
.release-meta span { display: block; margin-top: 8px; color: var(--tx-4); font-size: var(--fs-small); font-variant-numeric: tabular-nums; }

.featured-release { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.featured-release-art { display: block; position: relative; border-radius: var(--r-l); overflow: hidden; background: var(--paper-3); box-shadow: var(--shadow); }
.featured-release-art img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.featured-release-art:hover img { transform: scale(1.03); }
.featured-release h2 { font-size: var(--fs-h1); margin: var(--sp-4) 0 var(--sp-3); }
.featured-release-artist { font-size: var(--fs-lead); color: var(--tx-2); margin: 0; }
.featured-release-desc { margin-top: var(--sp-5); color: var(--tx-2); line-height: 1.75; max-width: 50ch; }
.featured-release-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }

.release-detail { padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 104px); }
.release-detail-grid, .artist-detail-grid {
    display: grid;
    grid-template-columns: minmax(280px, 480px) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}
.release-cover, .artist-detail-image, .artist-detail-placeholder {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--r-l);
    background: var(--paper-3);
    box-shadow: var(--shadow);
}
.artist-detail-placeholder { display: grid; place-items: center; font-family: var(--font-display); font-size: clamp(3.5rem, 10vw, 6rem); font-weight: 800; color: var(--tx-4); }
.release-detail h1, .artist-detail-copy h1 { font-size: var(--fs-h1); line-height: .98; margin: var(--sp-4) 0; }
.release-artist { font-size: 1.25rem; color: var(--tx-2); margin: 0; }
.release-date { color: var(--tx-3); margin-top: 8px; font-size: .9375rem; }
.release-description, .artist-bio { max-width: 58ch; color: var(--tx-2); font-size: 1.0625rem; line-height: 1.8; margin-top: var(--sp-6); }
.release-spec {
    display: flex;
    gap: 10px;
    align-items: baseline;
    margin: var(--sp-3) 0 0;
    font-size: var(--fs-small);
    color: var(--tx-4);
}
.release-spec dt { margin: 0; letter-spacing: .12em; text-transform: uppercase; font-size: var(--fs-micro); }
.release-spec dd { margin: 0; font-variant-numeric: tabular-nums; }

/* Artist name on a release is a link now; make that visible. */
.release-artist a { border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
.release-artist a:hover { color: var(--accent-tx); border-color: var(--accent-tx); }

.release-tracks { margin-top: var(--sp-7); }
.release-player { margin-top: var(--sp-4); }

/* Smart link block — one primary destination, platforms as secondary. */
.smart-link { margin-top: var(--sp-6); padding: var(--sp-6); border: 1px solid var(--line); border-radius: var(--r-l); background: var(--paper-2); }
.smart-link .eyebrow { margin-bottom: var(--sp-3); }
.smart-link p { color: var(--tx-2); font-size: .9375rem; margin: 0 0 var(--sp-5); max-width: 44ch; }
.smart-link .btn-accent { width: 100%; }

.stream-links, .social-links { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-5); }
.stream-links a, .social-links a { color: var(--tx-2); font-size: var(--fs-small); }
.stream-links a:hover, .social-links a:hover { color: var(--accent-tx); }
.social-links-pills { gap: 8px; }
.social-links-pills a {
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    padding: 10px 16px;
    font-size: var(--fs-small);
    color: var(--tx-2);
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.social-links-pills a:hover { border-color: var(--accent-tx); color: var(--accent-tx); }
.release-listen-note { margin-top: var(--sp-5); padding: var(--sp-4); border: 1px solid var(--line); border-radius: var(--r-s); color: var(--tx-3); font-size: var(--fs-small); }


/* == 14. ARTISTS ========================================================== */

.artist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
.artist-grid-large { grid-template-columns: repeat(4, 1fr); }
.artist-card { display: block; }
.artist-card img, .artist-placeholder { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-l); background: var(--paper-3); }
.artist-card > div:last-child { padding: var(--sp-4) 2px 0; }
.artist-card strong, .artist-card span { display: block; }
.artist-card strong { font-size: 1rem; }
.artist-card span { margin-top: 4px; color: var(--tx-4); font-size: var(--fs-micro); text-transform: uppercase; letter-spacing: .12em; }

.artist-showcase-card { min-width: 0; }
.artist-card-media { position: relative; display: block; overflow: hidden; border-radius: var(--r-l); background: var(--paper-3); }
.artist-card-media img, .artist-placeholder-editorial { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.artist-placeholder-editorial { position: relative; display: grid; place-items: center; background: var(--paper-3); }
.artist-placeholder-editorial span { font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 6rem); font-weight: 800; color: var(--tx-4); letter-spacing: -.06em; }
.artist-placeholder-editorial small { position: absolute; left: 18px; bottom: 16px; color: var(--tx-4); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.artist-card-arrow {
    position: absolute;
    right: 14px; top: 14px;
    width: 36px; height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.artist-card-media:hover .artist-card-arrow { opacity: 1; transform: none; }
.artist-card-media img, .artist-card img { transition: transform var(--dur-slow) var(--ease); }
.artist-card-media:hover img, .artist-card:hover img { transform: scale(1.035); }

.artist-showcase-meta { display: flex; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-4) 2px 0; align-items: flex-end; }
.artist-showcase-meta .eyebrow { font-size: 9px; color: var(--tx-4); }
.artist-showcase-meta h2 { font-size: 1.25rem; line-height: 1.05; margin: 8px 0 0; }
.artist-social { font-size: var(--fs-micro); color: var(--tx-3); border-bottom: 1px solid var(--line); padding-bottom: 4px; white-space: nowrap; }
.artist-social:hover { color: var(--accent-tx); border-color: var(--accent-tx); }
.artist-showcase-card[hidden] { display: none; }

.filter-bar { display: flex; gap: 8px; margin-bottom: var(--sp-6); flex-wrap: wrap; }
.filter-btn {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--tx-3);
    padding: 10px 18px;
    border-radius: var(--r-pill);
    font-size: var(--fs-small);
    min-height: 42px;
    transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.filter-btn:hover { border-color: var(--tx); color: var(--tx); }
.filter-btn.is-active { border-color: var(--ink); background: var(--ink); color: var(--tx-inv); font-weight: 600; }

.artist-detail-grid-premium { grid-template-columns: minmax(280px, 500px) minmax(0, 1fr); }
.artist-detail-visual { position: relative; }
.artist-visual-caption { display: flex; justify-content: space-between; padding: var(--sp-3) 3px; color: var(--tx-4); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.artist-detail-copy { padding-top: 0; }
.artist-positioning { max-width: 54ch; color: var(--tx-2); font-size: 1.0625rem; line-height: 1.7; margin-top: var(--sp-5); }
.artist-hero { padding: clamp(48px, 6vw, 80px) 0; }
.artist-discography-section { padding-bottom: var(--sp-8); }

/* EPK block — what a promoter or brand actually needs. */
/* Press kit band: copy and actions on the left, spec sheet on the right. */
.epk-layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}
.epk-intro h2 { font-size: var(--fs-h2); margin: var(--sp-4) 0 var(--sp-5); max-width: 16ch; }
.epk-intro > p:not(.eyebrow) { color: var(--tx-2); line-height: 1.72; max-width: 42ch; }
.epk-intro .epk-actions {
    padding: 0;
    border: 0;
    background: transparent;
    margin-top: var(--sp-6);
}

.epk {
    border: 1px solid var(--line);
    border-radius: var(--r-l);
    overflow: hidden;
    background: var(--paper);
}
.epk-head { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4); padding: var(--sp-4) var(--sp-5); background: var(--paper-2); border-bottom: 1px solid var(--line); }
.epk-head strong { font-size: var(--fs-small); letter-spacing: .04em; }
.epk-row { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: var(--sp-4); padding: var(--sp-3) var(--sp-5); border-bottom: 1px solid var(--line-soft); font-size: var(--fs-small); align-items: baseline; }
.epk-row:last-of-type { border-bottom: 0; }
.epk-row dt { color: var(--tx-3); margin: 0; }
.epk-row dd { margin: 0; color: var(--tx); }
.epk-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); padding: var(--sp-5); border-top: 1px solid var(--line); background: var(--paper-2); }
.epk-row dd a { border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
.epk-row dd a:hover { color: var(--accent-tx); border-color: var(--accent-tx); }
.epk-head .muted { font-size: var(--fs-micro); letter-spacing: .06em; text-transform: uppercase; }


/* == 15. NEWS ============================================================= */

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.news-grid-large { grid-template-columns: repeat(3, 1fr); }
.news-card {
    border: 1px solid var(--line);
    border-radius: var(--r-l);
    padding: var(--sp-6);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    background: var(--paper);
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.news-card:hover { background: var(--paper-2); border-color: var(--tx-4); }
.news-card > span { font-size: var(--fs-small); color: var(--tx-4); font-variant-numeric: tabular-nums; }
.news-card h3 { font-size: 1.375rem; line-height: 1.16; margin: var(--sp-5) 0 var(--sp-3); }
.news-card p { color: var(--tx-2); line-height: 1.68; margin: 0; font-size: .9375rem; }
.news-card strong { margin-top: auto; padding-top: var(--sp-5); color: var(--accent-tx); font-size: var(--fs-small); font-weight: 600; }

.article-page { padding: clamp(48px, 6vw, 80px) 0 clamp(72px, 10vw, 120px); }
.article-page h1 { font-size: var(--fs-h1); line-height: 1.02; margin: var(--sp-4) 0 var(--sp-5); }
.article-lead { font-size: var(--fs-lead); line-height: 1.7; color: var(--tx-2); max-width: 58ch; }
.article-image { width: 100%; margin: var(--sp-7) 0; border-radius: var(--r-l); }
.article-body { max-width: 66ch; color: var(--tx-2); font-size: 1.0625rem; line-height: 1.85; }
.article-body p + p { margin-top: 1.4em; }
.article-kicker { margin-top: var(--sp-5); }


/* == 16. SERVICES ========================================================= */

.service-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(32px, 5vw, 72px); padding: clamp(56px, 7vw, 95px) 0; border-bottom: 1px solid var(--line); }
.service-heading { position: sticky; top: calc(var(--header-h) + 28px); align-self: start; }
.service-number { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: .84; letter-spacing: -.06em; color: var(--tx-4); }
.service-heading h2 { font-size: var(--fs-h2); margin: var(--sp-5) 0 var(--sp-3); }
.service-heading > p:not(.eyebrow) { max-width: 40ch; color: var(--tx-2); line-height: 1.72; margin-top: var(--sp-5); }

.service-list, .service-directory-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 36px 1fr; gap: var(--sp-4); padding: var(--sp-6) 0; border-bottom: 1px solid var(--line); }
.service-item > span { color: var(--accent-tx); font-size: 1rem; }
.service-item h3 { font-size: var(--fs-h3); margin: 0; }
.service-item p { max-width: 60ch; color: var(--tx-2); line-height: 1.72; margin: 10px 0 0; }

.services-directory { padding: 10px 0 0; }
.service-pillar { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: clamp(32px, 5vw, 72px); padding: clamp(56px, 7vw, 100px) 0; border-bottom: 1px solid var(--line); }
.service-pillar-head { display: grid; grid-template-columns: 72px 1fr; gap: var(--sp-5); align-items: start; }
.service-pillar-head h2 { font-size: var(--fs-h2); margin: var(--sp-3) 0 var(--sp-5); }
.service-pillar-head > div > p:not(.eyebrow) { max-width: 40ch; color: var(--tx-2); line-height: 1.72; margin: 0; }

.service-directory-item {
    display: grid;
    grid-template-columns: 40px 1fr 32px;
    gap: var(--sp-4);
    align-items: start;
    padding: var(--sp-6) 0;
    border-bottom: 1px solid var(--line);
    transition: padding var(--dur) var(--ease), background var(--dur) var(--ease);
}
.service-directory-item:hover { padding-left: 14px; padding-right: 14px; background: var(--paper-2); }
.service-index { color: var(--accent-tx); font-size: var(--fs-micro); padding-top: 6px; font-variant-numeric: tabular-nums; }
.service-directory-item h3 { font-size: var(--fs-h3); margin: 0; }
.service-directory-item p { max-width: 60ch; color: var(--tx-2); line-height: 1.68; margin: 8px 0 0; font-size: .9375rem; }
.service-arrow { color: var(--tx-4); text-align: right; font-size: 1.05rem; padding-top: 2px; transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease); }
.service-directory-item:hover .service-arrow { color: var(--accent-tx); transform: translate(3px, -3px); }

/* Same component on an ink band. */
.band-ink .service-directory-list, .band-ink .service-directory-item { border-color: var(--line-inv); }
.band-ink .service-directory-item:hover { background: var(--ink-raised); }
.band-ink .service-directory-item p { color: var(--tx-inv-2); }
.band-ink .service-index { color: var(--accent-hi); }
.band-ink .service-number { color: var(--tx-inv-3); }
.band-ink .service-arrow { color: var(--tx-inv-3); }

/* Legacy .section-paper reuse of the same component. */
.section-paper .service-directory-item:hover { background: rgba(20, 18, 15, .05); }

.services-cta, .roster-cta { border-top: 1px solid var(--line); padding: clamp(56px, 7vw, 92px) 0 clamp(64px, 8vw, 108px); }
.services-cta h2, .roster-cta h2 { font-size: var(--fs-h1); line-height: .98; margin: var(--sp-4) 0 var(--sp-6); }
.cta-row { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--sp-7); margin-top: var(--sp-5); }
.cta-row h2 { max-width: 18ch; margin: 0; }

.service-detail-page { padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 96px); border-bottom: 1px solid var(--line); }
.service-detail-header { display: grid; grid-template-columns: 120px minmax(0, 820px); gap: var(--sp-7); padding: clamp(40px, 5vw, 64px) 0 clamp(48px, 6vw, 80px); }
.service-detail-number { font-family: var(--font-display); font-size: clamp(2.75rem, 6vw, 5rem); line-height: .82; color: var(--tx-4); font-weight: 800; letter-spacing: -.06em; }
.service-detail-header h1 { font-size: var(--fs-display); line-height: .96; margin: var(--sp-4) 0 var(--sp-5); }
.service-detail-lead { max-width: 56ch; color: var(--tx-2); font-size: var(--fs-lead); line-height: 1.72; margin: 0; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); border-top: 1px solid var(--line); padding-top: var(--sp-6); }
.service-detail-copy { max-width: 58ch; color: var(--tx-2); line-height: 1.8; margin: var(--sp-3) 0 0; }
.service-detail-contact { display: flex; justify-content: flex-end; align-items: start; gap: var(--sp-5); color: var(--tx-3); font-size: var(--fs-small); }

.related-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.related-service-card {
    border: 1px solid var(--line);
    border-radius: var(--r-l);
    padding: var(--sp-6);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    background: var(--paper);
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.related-service-card:hover { background: var(--paper-2); border-color: var(--tx-4); }
.related-service-card > span { color: var(--accent-tx); margin-bottom: auto; }
.related-service-card h3 { font-size: var(--fs-h3); margin: var(--sp-6) 0 10px; }
.related-service-card p { color: var(--tx-2); line-height: 1.65; margin: 0; font-size: var(--fs-small); }

.statement { font-family: var(--font-display); font-size: clamp(1.875rem, 4.4vw, 3.5rem); line-height: 1.06; letter-spacing: -.035em; max-width: 22ch; font-weight: 800; margin: 0 0 var(--sp-6); }
.statement-highlight { color: var(--accent-hi); }
.statement-section { padding: clamp(64px, 8vw, 112px) 0; }
.contact-band { padding: clamp(64px, 8vw, 112px) 0 clamp(48px, 5vw, 72px); }
.contact-band h2 { font-size: var(--fs-h1); max-width: 16ch; margin: var(--sp-4) 0 var(--sp-5); }
.contact-band p { max-width: 50ch; font-size: var(--fs-lead); line-height: 1.72; }
.contact-band-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-7); }

.about-manifesto { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.about-manifesto p { color: var(--tx-2); font-size: var(--fs-lead); line-height: 1.82; }
.about-manifesto p + p { margin-top: 1.3em; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); margin-top: var(--sp-7); }
.value-card { border: 1px solid var(--line); border-radius: var(--r-l); padding: var(--sp-6); background: var(--paper); }
.value-card h3 { font-size: var(--fs-h3); margin: var(--sp-4) 0 10px; }
.value-card p { margin: 0; line-height: 1.7; font-size: .9375rem; color: var(--tx-2); }
.value-card .service-number { font-size: 2rem; color: var(--accent-tx); opacity: .4; }


/* == 17. ENQUIRY ========================================================== */

.enquiry-page { padding: clamp(48px, 6vw, 80px) 0 clamp(72px, 9vw, 104px); }
.enquiry-intro { max-width: 900px; padding: clamp(40px, 5vw, 64px) 0 clamp(32px, 4vw, 48px); }
.enquiry-intro h1, .enquiry-thanks h1 { font-size: var(--fs-display); line-height: .96; margin: var(--sp-4) 0 var(--sp-5); }
.enquiry-intro h1 span, .enquiry-thanks h1 span { color: var(--tx-3); }
.enquiry-intro > p:last-child { max-width: 54ch; color: var(--tx-2); font-size: var(--fs-lead); line-height: 1.72; margin: 0; }

.enquiry-form { max-width: 960px; border-top: 1px solid var(--line); padding-top: var(--sp-6); }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5) var(--sp-6); }
.enquiry-grid label, .enquiry-form > label { display: block; color: var(--tx-2); font-size: var(--fs-small); font-weight: 500; }
.enquiry-grid label span { color: var(--tx-4); font-weight: 400; }
.enquiry-grid input, .enquiry-grid select, .enquiry-grid textarea {
    display: block;
    width: 100%;
    margin-top: 10px;
    border: 1px solid var(--line);
    border-radius: var(--r-s);
    background: #fff;
    color: var(--tx);
    padding: 15px 16px;
    font: inherit;
    min-height: 52px;
    transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.enquiry-grid input::placeholder, .enquiry-grid textarea::placeholder { color: var(--tx-4); }
.enquiry-grid input:hover, .enquiry-grid select:hover, .enquiry-grid textarea:hover { border-color: var(--tx-4); }
.enquiry-grid input:focus, .enquiry-grid select:focus, .enquiry-grid textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-wash);
    outline: none;
}
.enquiry-grid textarea { resize: vertical; min-height: 180px; line-height: 1.6; }
.enquiry-full { grid-column: 1 / -1; }
.enquiry-consent { display: flex !important; align-items: flex-start; gap: 12px; margin-top: var(--sp-5); color: var(--tx-3) !important; line-height: 1.55; }
.enquiry-consent input { margin-top: 3px; accent-color: var(--accent); width: 18px; height: 18px; min-height: 0; flex: 0 0 auto; }
.enquiry-submit { margin-top: var(--sp-5); }
.enquiry-error {
    max-width: 960px;
    margin: 0 0 var(--sp-5);
    border: 1px solid rgba(190, 40, 10, .3);
    border-radius: var(--r-s);
    padding: var(--sp-4);
    color: #9e2f06;
    background: rgba(242, 84, 13, .07);
}
.enquiry-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.enquiry-thanks { padding: clamp(88px, 12vw, 148px) 0 clamp(104px, 14vw, 172px); min-height: 60vh; }
.enquiry-thanks > div > p:nth-child(3) { max-width: 52ch; color: var(--tx-2); font-size: var(--fs-lead); line-height: 1.78; margin: 0 0 var(--sp-6); }


/* == 18. PLAYER =========================================================== */

.player-section { padding: var(--section-y) 0; }
.player-shell { border: 1px solid var(--line); background: var(--paper); border-radius: var(--r-l); padding: var(--sp-5); }
.band-ink .player-shell { border-color: var(--line-inv); background: var(--ink-raised); }
.player-showcase-copy { display: flex; justify-content: space-between; gap: var(--sp-6); align-items: end; padding-bottom: var(--sp-4); }
.player-showcase-copy p { max-width: 54ch; color: var(--tx-2); line-height: 1.6; margin: 0; }

.player-controls { display: flex; align-items: center; gap: var(--sp-4); }
.player-toggle {
    display: inline-grid;
    place-items: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 0;
    background: var(--ink);
    color: var(--paper);
    padding: 0;
    flex: 0 0 auto;
    transition: background var(--dur-fast) var(--ease);
}
.player-toggle:hover { background: var(--accent); color: #fff; }
.player-toggle svg { width: 17px; height: 17px; }
.player-toggle .icon-pause { display: none; }
.player-toggle[data-state="playing"] .icon-play { display: none; }
.player-toggle[data-state="playing"] .icon-pause { display: block; }

.player-mute { display: inline-grid; place-items: center; width: 40px; height: 40px; border: 0; background: transparent; color: var(--tx-3); padding: 0; flex: 0 0 auto; }
.player-mute:hover { color: var(--tx); }
.player-mute svg { width: 18px; height: 18px; }
.player-mute .icon-muted { display: none; }
.player-mute[data-state="muted"] .icon-sound { display: none; }
.player-mute[data-state="muted"] .icon-muted { display: block; }

.player-progress-wrap, .mini-player-progress { flex: 1; min-width: 0; }
.player-progress { width: 100%; accent-color: var(--accent); height: 6px; cursor: pointer; display: block; }
.player-times { display: flex; justify-content: space-between; color: var(--tx-4); font-size: var(--fs-micro); margin-top: 2px; font-variant-numeric: tabular-nums; }
#soofi-audio { display: none; }

.track-list { margin-top: var(--sp-5); border-top: 1px solid var(--line); }
.player-track {
    width: 100%;
    display: grid;
    grid-template-columns: 44px 1fr 36px;
    align-items: center;
    text-align: left;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--tx);
    padding: var(--sp-4) 8px;
    min-height: 62px;
    transition: background var(--dur-fast) var(--ease);
}
.player-track:hover { background: var(--paper-2); }
.player-track.is-active { background: var(--accent-wash); }
.player-track.is-active .track-index { color: var(--accent-tx); }
.track-index { color: var(--tx-4); font-size: var(--fs-small); font-variant-numeric: tabular-nums; }
.track-copy strong, .track-copy small { display: block; }
.track-copy strong { font-size: .9375rem; }
.track-copy small { color: var(--tx-4); margin-top: 4px; font-size: var(--fs-small); }
.track-play { color: var(--accent-tx); text-align: right; font-size: 1.2rem; line-height: 1; }

.band-ink .track-list, .band-ink .player-track { border-color: var(--line-inv); color: var(--tx-inv); }
.band-ink .player-track:hover { background: rgba(247,244,239,.05); }
.band-ink .track-copy small, .band-ink .track-index { color: var(--tx-inv-3); }
.band-ink .player-toggle { background: var(--paper); color: var(--ink); }

/* Persistent bar — ink, so it reads as a fixed system chrome. */
.mini-player {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 100;
    background: var(--ink);
    color: var(--tx-inv);
    border-top: 1px solid var(--line-inv);
    transform: translateY(105%);
    transition: transform var(--dur) var(--ease);
    padding-bottom: env(safe-area-inset-bottom);
}
.mini-player.is-ready { transform: translateY(0); }
.mini-player-inner {
    min-height: 74px;
    display: grid;
    grid-template-columns: minmax(200px, 1.1fr) 48px minmax(180px, 1.8fr) 40px auto;
    gap: var(--sp-4);
    align-items: center;
}
.mini-player-track { display: flex; align-items: center; gap: var(--sp-3); min-width: 0; }
.mini-player-index { font-size: var(--fs-micro); color: var(--accent-hi); letter-spacing: .12em; font-variant-numeric: tabular-nums; }
.mini-player-copy { min-width: 0; }
.mini-player-copy strong, .mini-player-copy span { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-player-copy strong { font-size: .875rem; color: var(--tx-inv); }
.mini-player-copy span { font-size: var(--fs-micro); color: var(--tx-inv-3); margin-top: 3px; }
.mini-player .player-toggle { width: 44px; height: 44px; background: var(--paper); color: var(--ink); }
.mini-player .player-toggle:hover { background: var(--accent); color: #fff; }
.mini-player .player-mute { color: var(--tx-inv-3); }
.mini-player .player-mute:hover { color: var(--tx-inv); }
.mini-player .player-times { color: var(--tx-inv-3); font-size: 10px; }
.mini-player-queue { font-size: 9px; letter-spacing: .16em; color: var(--tx-inv-3); white-space: nowrap; }

.page-loading { opacity: .5; transition: opacity var(--dur-fast) var(--ease); }


/* == 19. EMPTY STATES / 404 =============================================== */

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border: 1px dashed var(--tx-4);
    border-radius: var(--r-l);
    padding: var(--sp-7);
    color: var(--tx-2);
    background: var(--paper-2);
}
.empty-state strong { color: var(--tx); font-size: 1.0625rem; }
.empty-state p { max-width: 50ch; line-height: 1.7; }
.empty-state .btn { margin-top: var(--sp-3); }

.error-page { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: clamp(64px, 10vw, 128px) 0; }
.error-code { font-family: var(--font-display); font-size: clamp(4rem, 14vw, 8rem); font-weight: 800; letter-spacing: -.06em; line-height: .88; color: var(--accent-tx); margin: 0; }
.error-page h1 { font-size: var(--fs-h2); margin: var(--sp-5) 0 var(--sp-4); }
.error-page p { color: var(--tx-2); max-width: 44ch; margin-inline: auto; line-height: 1.72; }
.error-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center; margin-top: var(--sp-7); }


/* == 20. RESPONSIVE ======================================================= */

@media (max-width: 1100px) {
    .capability-grid { grid-template-columns: repeat(2, 1fr); }
    .release-grid-large { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
    .site-nav, .nav-cta { display: none; }
    .nav-toggle { display: inline-flex; }

    .site-nav.is-open {
        display: flex;
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        background: var(--paper);
        border-top: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--sp-5) var(--gutter) var(--sp-8);
        overflow-y: auto;
        overscroll-behavior: contain;
        z-index: 95;
    }
    .site-nav.is-open a {
        font-family: var(--font-display);
        font-size: 1.75rem;
        letter-spacing: -.03em;
        padding: var(--sp-4) 0;
        border-bottom: 1px solid var(--line);
        color: var(--tx);
    }
    .site-nav.is-open a::after { display: none; }
    .site-nav.is-open .nav-mobile-cta {
        display: inline-flex;
        margin-top: var(--sp-6);
        border: 0;
        font-family: var(--font-body);
        font-size: .9375rem;
        background: var(--accent);
        color: #fff;
    }
    body.nav-open { overflow: hidden; }
    body.nav-open .mini-player { transform: translateY(105%); }
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: none; }
    .hero-visual { max-width: 480px; }
    .hero-mark { display: none; }

    .featured-release { grid-template-columns: 1fr; }
    .release-grid, .release-grid-large { grid-template-columns: repeat(2, 1fr); }
    .artist-grid, .artist-grid-large { grid-template-columns: repeat(2, 1fr); }
    .news-grid, .news-grid-large { grid-template-columns: 1fr; }

    .intro-split { grid-template-columns: 1fr; gap: var(--sp-5); align-items: start; }
    .roster-stats span:last-child { margin-left: 0; }

    .release-detail-grid, .artist-detail-grid, .artist-detail-grid-premium { grid-template-columns: 1fr; gap: var(--sp-6); }
    .service-section, .service-pillar { grid-template-columns: 1fr; gap: var(--sp-6); }
    .service-heading { position: static; }
    .service-detail-header, .service-detail-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
    .service-detail-contact { justify-content: flex-start; flex-direction: column; }
    .process-step { grid-template-columns: 48px 1fr; }
    .process-step p { grid-column: 2; }

    .about-manifesto, .value-grid { grid-template-columns: 1fr; }
    .epk-layout { grid-template-columns: 1fr; gap: var(--sp-6); }
    .cta-row { flex-direction: column; align-items: flex-start; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }

    .mini-player-inner { grid-template-columns: minmax(0, 1fr) 44px 34px; grid-template-rows: 46px 20px; gap: 0 10px; min-height: 72px; }
    .mini-player-progress { grid-column: 1 / -1; grid-row: 2; align-self: center; }
    .mini-player-queue { display: none; }
    body.player-active { --player-h: 80px; }
    .player-showcase-copy { display: block; }
    .player-showcase-copy p { margin-top: 10px; }
}

@media (max-width: 680px) {
    .site-logo img { width: 112px; }
    .section-head { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }

    .hero-actions { width: 100%; }
    .hero-actions .btn { flex: 1 1 100%; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
    .hero-visual { gap: var(--sp-3); }
    .hero-visual figure:nth-child(1), .hero-visual figure:nth-child(4) { transform: none; }

    .capability-grid { grid-template-columns: 1fr; }
    .capability { padding: var(--sp-6) var(--sp-5); }

    .release-grid, .release-grid-large, .artist-grid, .artist-grid-large { gap: var(--sp-4); }
    .release-meta h3, .artist-showcase-meta h2 { font-size: 1.0625rem; }
    .artist-showcase-meta { display: block; }
    .artist-social { display: inline-block; margin-top: 8px; }

    .news-card { padding: var(--sp-5); min-height: 0; }
    .enquiry-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
    .enquiry-full { grid-column: auto; }
    .enquiry-submit { width: 100%; }

    .service-pillar-head { grid-template-columns: 1fr; gap: var(--sp-3); }
    .service-item { grid-template-columns: 28px 1fr; gap: 10px; }
    .related-service-grid { grid-template-columns: 1fr; }

    .epk-row { grid-template-columns: 1fr; gap: 4px; }
    .epk-actions .btn { flex: 1 1 100%; }

    .filter-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .filter-btn { flex: 0 0 auto; }

    .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
    .footer-grid > div:first-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }

    .error-actions .btn { flex: 1 1 100%; }
}
