/* =============================================================
   A-BID (Ahmed Abid) — Artist site
   Electronic producer, Sfax, Tunisia

   1. Tokens & reset          6. About
   2. Utilities & buttons     7. Music
   3. Preloader & overlays    8. Videos / 2026 series
   4. Header & menu           9. Contact
   5. Hero                   10. Footer / responsive

   Palette: desert gold + Sidi Bou Saïd blue + terracotta.
   Change --gold and the whole site re-skins.
============================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
    --bg: #06060b;
    --bg-2: #0b0b13;
    --bg-3: #12121c;
    --ink: #f2ede3;
    --ink-dim: #a39c8e;
    --ink-faint: #6d675c;
    --line: rgba(242, 237, 227, .12);
    --line-soft: rgba(242, 237, 227, .06);

    --gold: #e9b44c;
    --azure: #2f6fed;
    --clay: #d9603b;

    --display: "Anton", "Arial Narrow", Impact, sans-serif;
    --serif: "Instrument Serif", Georgia, serif;
    --body: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;

    --shell: 1280px;
    --pad: clamp(1.25rem, 4vw, 4rem);
    --radius: 18px;
    --radius-lg: 28px;

    --ease: cubic-bezier(.22, 1, .36, 1);
    --ease-io: cubic-bezier(.65, .05, .36, 1);
    --t: .55s var(--ease);
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    font-size: clamp(.95rem, .35vw + .88rem, 1.05rem);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.is-locked {
    overflow: hidden;
}

img, svg, canvas, iframe {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font: inherit;
    color: inherit;
}

button {
    background: none;
    border: 0;
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

::selection {
    background: var(--gold);
    color: #06060b;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--azure), var(--gold));
    border-radius: 99px;
    border: 3px solid var(--bg);
}

.skip-link {
    position: fixed;
    top: 0;
    left: 50%;
    translate: -50% -120%;
    z-index: 9999;
    padding: .7rem 1.2rem;
    border-radius: 0 0 12px 12px;
    background: var(--gold);
    color: #06060b;
    font-weight: 700;
    font-size: .85rem;
    transition: translate .3s var(--ease);
}

.skip-link:focus {
    translate: -50% 0;
}

/* ---------- 2. UTILITIES ---------- */
.shell {
    width: 100%;
    max-width: var(--shell);
    margin-inline: auto;
    padding-inline: var(--pad);
}

.section {
    position: relative;
    padding: clamp(5rem, 11vh, 9rem) 0;
}

.section + .section {
    padding-top: clamp(4rem, 9vh, 7rem);
}

.section__head {
    margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section__label {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-size: .72rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 1.1rem;
}

.section__label i {
    font-style: normal;
    font-weight: 700;
    color: var(--gold);
    padding: .25rem .55rem;
    border: 1px solid rgba(233, 180, 76, .35);
    border-radius: 99px;
    font-size: .66rem;
    letter-spacing: .1em;
}

.section__title {
    font-family: var(--display);
    font-size: clamp(2.6rem, 8vw, 6.5rem);
    line-height: .92;
    letter-spacing: -.02em;
    text-transform: uppercase;
    font-weight: 400;
}

.section__title .serif {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    text-transform: none;
    letter-spacing: -.01em;
    font-size: clamp(1.4rem, 3.4vw, 2.7rem);
    color: var(--gold);
    margin-top: .35rem;
}

.section__sub {
    max-width: 52ch;
    margin-top: 1.4rem;
    color: var(--ink-dim);
    font-size: 1.02rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .45rem 1rem .45rem .75rem;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: rgba(242, 237, 227, .03);
    backdrop-filter: blur(8px);
    font-size: .78rem;
    letter-spacing: .06em;
    color: var(--ink-dim);
}

.eyebrow em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink);
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(233, 180, 76, .7);
    animation: pulse 2.2s infinite;
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 10px rgba(233, 180, 76, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(233, 180, 76, 0);
    }
}

.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.6;
    color: var(--ink);
}

.serif {
    font-family: var(--serif);
}

.mini-head {
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin: clamp(3rem, 7vw, 5rem) 0 1.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 400;
}

.mini-head::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--line), transparent);
}

.mini-head--flush {
    margin: 0;
}

.tag {
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
}

/* --- buttons --- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.5rem;
    border-radius: 99px;
    font-size: .86rem;
    font-weight: 500;
    letter-spacing: .02em;
    border: 1px solid transparent;
    overflow: hidden;
    transition: color .35s var(--ease), border-color .35s var(--ease),
    background .35s var(--ease), transform .35s var(--ease);
    isolation: isolate;
    white-space: nowrap;
}

.btn svg {
    width: 15px;
    height: 15px;
    transition: transform .4s var(--ease);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--ink);
    border-radius: inherit;
    translate: 0 101%;
    transition: translate .5s var(--ease);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn:active {
    transform: scale(.97);
}

.btn--solid {
    background: var(--gold);
    color: #06060b;
}

.btn--solid::before {
    background: var(--ink);
}

.btn--solid:hover {
    color: #06060b;
}

.btn--solid:hover::before {
    translate: 0 0;
}

.btn--ghost {
    border-color: var(--line);
    color: var(--ink);
}

.btn--ghost::before {
    background: var(--ink);
}

.btn--ghost:hover {
    color: #06060b;
    border-color: var(--ink);
}

.btn--ghost:hover::before {
    translate: 0 0;
}

.btn--sm {
    padding: .6rem 1.15rem;
    font-size: .78rem;
}

.btn--lg {
    padding: 1.05rem 1.9rem;
    font-size: .94rem;
}

.btn--block {
    width: 100%;
    justify-content: center;
}

.btn__icon {
    display: grid;
    place-items: center;
}

.btn__icon svg {
    width: 16px;
    height: 16px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    margin-top: 2rem;
    padding-bottom: .35rem;
    font-size: .9rem;
    letter-spacing: .02em;
    border-bottom: 1px solid var(--line);
    transition: gap .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}

.link-arrow svg {
    width: 15px;
    height: 15px;
}

.link-arrow:hover {
    gap: 1.2rem;
    color: var(--gold);
    border-color: var(--gold);
}

.link-arrow--center {
    display: flex;
    width: max-content;
    margin: 3rem auto 0;
}

/* --- reveal / split animations --- */
[data-reveal] {
    opacity: 0;
    translate: 0 34px;
    filter: blur(6px);
    transition: opacity .9s var(--ease), translate .9s var(--ease), filter .9s var(--ease);
    transition-delay: var(--d, 0ms);
}

[data-reveal].is-in {
    opacity: 1;
    translate: 0 0;
    filter: blur(0);
}

.split {
    display: block;
}

.split .char {
    display: inline-block;
    translate: 0 105%;
    rotate: 6deg;
    opacity: 0;
    transition: translate .95s var(--ease), opacity .7s var(--ease), rotate .95s var(--ease);
    transition-delay: calc(var(--i) * 34ms);
    will-change: translate;
}

.split.is-in .char {
    translate: 0 0;
    rotate: 0deg;
    opacity: 1;
}

.split .word {
    display: inline-block;
    overflow: hidden;
    padding-bottom: .06em;
}

/* ---------- 3. PRELOADER & OVERLAYS ---------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: grid;
    place-items: center;
    background: var(--bg);
}

.preloader__inner {
    width: min(420px, 78vw);
    text-align: center;
    transition: opacity .5s var(--ease), translate .6s var(--ease);
}

.preloader__name {
    font-family: var(--display);
    text-transform: uppercase;
    font-size: clamp(1.6rem, 6vw, 2.6rem);
    letter-spacing: .06em;
    display: flex;
    justify-content: center;
    margin-bottom: 1.6rem;
}

.preloader__name span, .preloader__name em {
    display: inline-block;
    opacity: 0;
    translate: 0 60%;
    animation: plName .7s var(--ease) forwards;
}

.preloader__name span:nth-child(n) {
    animation-delay: calc(var(--i, 0) * 0ms);
}

.preloader__name span:nth-child(1) {
    animation-delay: .05s
}

.preloader__name span:nth-child(2) {
    animation-delay: .11s
}

.preloader__name span:nth-child(3) {
    animation-delay: .17s
}

.preloader__name span:nth-child(4) {
    animation-delay: .23s
}

.preloader__name span:nth-child(6) {
    animation-delay: .31s
}

.preloader__name span:nth-child(7) {
    animation-delay: .37s
}

.preloader__name span:nth-child(8) {
    animation-delay: .43s
}

.preloader__name span:nth-child(9) {
    animation-delay: .49s
}

.preloader__name span:nth-child(10) {
    animation-delay: .55s
}

@keyframes plName {
    to {
        opacity: 1;
        translate: 0 0;
    }
}

.preloader__bar {
    height: 2px;
    background: var(--line);
    border-radius: 99px;
    overflow: hidden;
}

.preloader__bar i {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--azure), var(--gold));
    transition: width .25s linear;
}

.preloader__meta {
    display: flex;
    justify-content: space-between;
    margin-top: .9rem;
    font-size: .7rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.preloader__curtain {
    position: absolute;
    inset: 0;
    background: var(--bg);
    transform-origin: top;
    scale: 1 1;
}

.preloader.is-done .preloader__inner {
    opacity: 0;
    translate: 0 -20px;
}

.preloader.is-done .preloader__curtain {
    transition: scale .9s .25s var(--ease-io);
    scale: 1 0;
}

.preloader.is-hidden {
    display: none;
}

/* grain */
.grain {
    position: fixed;
    inset: -50%;
    z-index: 9000;
    pointer-events: none;
    opacity: .05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grain 1.2s steps(6) infinite;
}

@keyframes grain {
    0% {
        transform: translate(0, 0)
    }
    20% {
        transform: translate(-4%, 3%)
    }
    40% {
        transform: translate(3%, -4%)
    }
    60% {
        transform: translate(-3%, -3%)
    }
    80% {
        transform: translate(4%, 2%)
    }
    100% {
        transform: translate(0, 0)
    }
}

/* aurora blobs */
.aurora {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.aurora__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .30;
    will-change: transform;
}

.aurora__blob--1 {
    width: 46vw;
    height: 46vw;
    left: -10vw;
    top: -8vw;
    background: radial-gradient(circle at 40% 40%, var(--azure), transparent 70%);
    animation: drift1 22s ease-in-out infinite;
}

.aurora__blob--2 {
    width: 38vw;
    height: 38vw;
    right: -8vw;
    top: 22vh;
    background: radial-gradient(circle at 50% 50%, var(--clay), transparent 70%);
    animation: drift2 27s ease-in-out infinite;
}

.aurora__blob--3 {
    width: 34vw;
    height: 34vw;
    left: 32vw;
    bottom: -12vw;
    background: radial-gradient(circle at 50% 50%, var(--gold), transparent 70%);
    opacity: .16;
    animation: drift3 31s ease-in-out infinite;
}

@keyframes drift1 {
    50% {
        transform: translate(14vw, 10vh) scale(1.18)
    }
}

@keyframes drift2 {
    50% {
        transform: translate(-12vw, -8vh) scale(1.12)
    }
}

@keyframes drift3 {
    50% {
        transform: translate(8vw, -10vh) scale(1.22)
    }
}

/* cursor */
.cursor, .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9500;
    pointer-events: none;
    border-radius: 50%;
    mix-blend-mode: difference;
    opacity: 0;
}

.cursor {
    width: 38px;
    height: 38px;
    border: 1px solid var(--ink);
    transition: width .3s var(--ease), height .3s var(--ease),
    background .3s var(--ease), opacity .3s;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--ink);
    transition: opacity .3s;
}

body.cursor-ready .cursor, body.cursor-ready .cursor-dot {
    opacity: 1;
}

body.cursor-hover .cursor {
    width: 66px;
    height: 66px;
    background: var(--ink);
}

body.cursor-hover .cursor-dot {
    opacity: 0;
}

/* toast */
.toast {
    position: fixed;
    left: 50%;
    bottom: 2rem;
    translate: -50% 160%;
    z-index: 9600;
    padding: .8rem 1.4rem;
    border-radius: 99px;
    background: var(--ink);
    color: #06060b;
    font-size: .84rem;
    font-weight: 500;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .5);
    transition: translate .55s var(--ease);
}

.toast.is-on {
    translate: -50% 0;
}

/* ---------- 4. HEADER ---------- */
.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 900;
    transition: background .45s var(--ease), backdrop-filter .45s var(--ease),
    border-color .45s var(--ease), translate .5s var(--ease);
    border-bottom: 1px solid transparent;
}

.header.is-stuck {
    background: rgba(6, 6, 11, .72);
    backdrop-filter: blur(16px) saturate(140%);
    border-bottom-color: var(--line-soft);
}

.header.is-hidden {
    translate: 0 -100%;
}

.header__progress {
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--azure), var(--gold));
    box-shadow: 0 0 14px rgba(233, 180, 76, .5);
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-block: clamp(.9rem, 2vw, 1.35rem);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 1.05rem;
    margin-right: auto;
}

.brand__mark {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.brand__mark svg {
    width: 100%;
    height: 100%;
}

.brand:hover .brand__mark {
    animation: spinY .8s var(--ease);
}

@keyframes spinY {
    to {
        transform: rotateY(360deg)
    }
}

.nav__list {
    display: flex;
    gap: .35rem;
}

.nav__link {
    position: relative;
    display: block;
    padding: .5rem .85rem;
    font-size: .82rem;
    letter-spacing: .03em;
    color: var(--ink-dim);
    transition: color .3s var(--ease);
    overflow: hidden;
}

.nav__link span {
    position: relative;
    display: block;
}

.nav__link span::after {
    content: attr(data-roll);
    position: absolute;
    left: 0;
    top: 120%;
    color: var(--gold);
}

.nav__link span {
    transition: translate .45s var(--ease);
}

.nav__link:hover span {
    translate: 0 -120%;
}

.nav__link.is-active {
    color: var(--ink);
}

.nav__link.is-active::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: .15rem;
    translate: -50% 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    place-items: center;
    gap: 5px;
    flex-direction: column;
}

.burger span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--ink);
    transition: transform .4s var(--ease), width .4s var(--ease);
}

.burger.is-open span:nth-child(1) {
    transform: translateY(3.25px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
    transform: translateY(-3.25px) rotate(-45deg);
}

/* fullscreen menu */
.menu {
    position: fixed;
    inset: 0;
    z-index: 890;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem var(--pad) 2rem;
    visibility: hidden;
    pointer-events: none;
}

.menu__bg {
    position: absolute;
    inset: 0;
    background: var(--bg-2);
    clip-path: circle(0% at calc(100% - 3rem) 3rem);
    transition: clip-path .8s var(--ease-io);
}

.menu.is-open {
    visibility: visible;
    pointer-events: auto;
}

.menu.is-open .menu__bg {
    clip-path: circle(150% at calc(100% - 3rem) 3rem);
}

.menu__nav {
    position: relative;
    display: grid;
    gap: .2rem;
}

.menu__link {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    font-family: var(--display);
    text-transform: uppercase;
    font-size: clamp(2.2rem, 11vw, 4.5rem);
    line-height: 1.05;
    opacity: 0;
    translate: 0 40px;
    transition: opacity .6s var(--ease), translate .6s var(--ease), color .3s;
}

.menu__link i {
    font-family: var(--body);
    font-style: normal;
    font-size: .7rem;
    letter-spacing: .2em;
    color: var(--gold);
}

.menu__link:hover {
    color: var(--gold);
}

.menu.is-open .menu__link {
    opacity: 1;
    translate: 0 0;
}

.menu.is-open .menu__link:nth-child(1) {
    transition-delay: .18s
}

.menu.is-open .menu__link:nth-child(2) {
    transition-delay: .24s
}

.menu.is-open .menu__link:nth-child(3) {
    transition-delay: .30s
}

.menu.is-open .menu__link:nth-child(4) {
    transition-delay: .36s
}

.menu.is-open .menu__link:nth-child(5) {
    transition-delay: .42s
}

.menu.is-open .menu__link:nth-child(6) {
    transition-delay: .48s
}

.menu__foot {
    position: relative;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    font-size: .85rem;
    color: var(--ink-dim);
    opacity: 0;
    transition: opacity .5s .55s var(--ease);
}

.menu.is-open .menu__foot {
    opacity: 1;
}

.menu__social {
    display: flex;
    gap: 1rem;
}

.menu__social a:hover {
    color: var(--gold);
}

/* ---------- 5. HERO ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: clamp(7rem, 14vh, 10rem) 0 clamp(5rem, 10vh, 7rem);
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    inset: auto 0 -30% 0;
    height: 70%;
    background: radial-gradient(60% 100% at 50% 100%, rgba(47, 111, 237, .22), transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    gap: clamp(2.5rem, 6vw, 4.5rem);
    grid-template-columns:1.05fr .95fr;
    align-items: center;
}

.hero__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(3.4rem, 13vw, 9.5rem);
    line-height: .84;
    letter-spacing: -.03em;
    text-transform: uppercase;
    margin: 1.4rem 0 1.8rem;
}

.hero__title .line {
    display: block;
    overflow: hidden;
}

.hero__title .line--alt {
    display: flex;
    align-items: baseline;
    gap: clamp(.6rem, 1.6vw, 1.4rem);
    flex-wrap: wrap;
    overflow: visible;
}

/* Gradient headline.
   IMPORTANT: the gradient must live on .char, NOT on .split.
   Each .char carries its own transform, so it paints in its own layer —
   a background-clip:text on the parent finds no glyphs to clip against and
   the text renders invisible (still selectable). Per-char is seamless here
   because the gradient is vertical and every char shares one line box. */
.hero__title .split {
    color: var(--ink);
}

@supports ((-webkit-background-clip:text) or (background-clip:text)) {
    .hero__title .split .char {
        background: linear-gradient(180deg, var(--ink) 25%, rgba(242, 237, 227, .6));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}

.hero__title .serif {
    font-family: var(--serif);
    font-style: italic;
    text-transform: none;
    font-size: clamp(1rem, 2.4vw, 1.9rem);
    letter-spacing: 0;
    color: var(--gold);
    line-height: 1;
    padding-bottom: .4em;
    white-space: nowrap;
}

.hero__text {
    max-width: 46ch;
    color: var(--ink-dim);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 2.2rem;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-top: 1.6rem;
    border-top: 1px solid var(--line-soft);
}

.hero__stats li {
    display: flex;
    flex-direction: column;
}

.hero__stats b {
    font-family: var(--display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1;
    font-weight: 400;
    color: var(--ink);
}

@supports ((-webkit-background-clip:text) or (background-clip:text)) {
    .hero__stats b {
        background: linear-gradient(90deg, var(--ink), var(--gold));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}

.hero__stats span {
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: .4rem;
}

/* portrait */
.hero__visual {
    position: relative;
}

.portrait {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform .5s var(--ease);
}

.portrait__frame {
    position: relative;
    overflow: hidden;
    /* gentle arch — the real photo is a tight face crop, so a deep arch
     would eat the forehead */
    border-radius: 110px 110px var(--radius-lg) var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(160deg, var(--bg-3), #08080f);
    box-shadow: 0 40px 100px -30px rgba(0, 0, 0, .9),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* revealed once the preloader hands over (body.is-ready) */
body.is-ready .portrait__frame {
    clip-path: inset(0 0 100% 0);
    animation: frameIn 1.4s .15s var(--ease-io) forwards;
}

@keyframes frameIn {
    to {
        clip-path: inset(0 0 0 0)
    }
}

.portrait__frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center 42%;
    /* barely desaturated — the warm skin tones carry the gold palette */
    filter: grayscale(.12) contrast(1.05) saturate(1.05);
    transform: scale(1.02);
    transition: filter .6s var(--ease), transform 1s var(--ease);
}

.portrait:hover .portrait__frame img {
    filter: none;
    transform: scale(1.07);
}

.portrait__scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(233, 180, 76, .16) 50%, transparent 55%);
    background-size: 100% 220%;
    animation: scan 5.5s linear infinite;
    mix-blend-mode: screen;
    pointer-events: none;
}

@keyframes scan {
    to {
        background-position: 0 -220%;
    }
}

.portrait__ring {
    position: absolute;
    inset: -8%;
    border-radius: 50%;
    border: 1px dashed rgba(242, 237, 227, .14);
    animation: spin 34s linear infinite;
    pointer-events: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.portrait__badge {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .7rem .95rem;
    border-radius: 14px;
    background: rgba(12, 12, 18, .72);
    border: 1px solid var(--line);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 45px -20px rgba(0, 0, 0, .9);
    animation: float 5s ease-in-out infinite;
    animation-delay: var(--fd, 0s);
}

@keyframes float {
    50% {
        transform: translateY(-12px)
    }
}

.portrait__badge--top {
    top: 8%;
    left: -6%;
}

.portrait__badge--bottom {
    /* lifted clear of the social row that now sits along the bottom */
    bottom: 22%;
    right: -6%;
    animation-delay: 1.2s;
}

.portrait__badge b {
    display: block;
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .04em;
}

.portrait__badge small {
    font-size: .68rem;
    color: var(--ink-faint);
}

.badge__pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(233, 180, 76, .7);
    animation: pulse 1.8s infinite;
}

.viz {
    width: 56px;
    height: 24px;
}

/* scroll cue */
.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    translate: -50% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    font-size: .66rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.scroll-cue__line {
    width: 1px;
    height: 48px;
    background: var(--line);
    overflow: hidden;
    position: relative;
}

.scroll-cue__line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold);
    animation: cue 2.2s var(--ease-io) infinite;
}

@keyframes cue {
    0% {
        translate: 0 -100%
    }
    60%, 100% {
        translate: 0 100%
    }
}

.scroll-cue:hover {
    color: var(--gold);
}

/* ---------- TICKER ---------- */
.ticker {
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    background: rgba(242, 237, 227, .02);
    overflow: hidden;
    padding: .9rem 0;
}

.ticker__track {
    display: flex;
    width: max-content;
    animation: marquee 26s linear infinite;
}

/* min-width keeps each half at least a viewport wide so the loop never gaps */
.ticker__group {
    display: flex;
    align-items: center;
    min-width: 100vw;
    justify-content: space-around;
}

.ticker__group span {
    font-family: var(--display);
    text-transform: uppercase;
    font-size: clamp(1.1rem, 2.4vw, 1.7rem);
    letter-spacing: .04em;
    white-space: nowrap;
    padding: 0 1.2rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(242, 237, 227, .45);
}

.ticker__group i {
    color: var(--gold);
    font-style: normal;
    font-size: .8rem;
}

.ticker:hover .ticker__track {
    animation-play-state: paused;
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

/* ---------- 6. ABOUT ---------- */
.about__grid {
    display: grid;
    grid-template-columns:.85fr 1.15fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.about__media {
    position: sticky;
    top: 120px;
}

/* 2x2 grid of the real album covers */
.collage {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform .5s var(--ease);
}

.collage img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    filter: grayscale(.25) contrast(1.04);
    transition: filter .55s var(--ease), transform .7s var(--ease);
}

.collage img:hover {
    filter: none;
    transform: scale(1.04);
    z-index: 2;
}

/* editorial statement (site copy — not a press quote) */
.statement {
    margin-top: 1.6rem;
    padding: 1.4rem 1.5rem;
    border-left: 2px solid var(--gold);
    background: linear-gradient(90deg, rgba(233, 180, 76, .06), transparent);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.statement p {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.3;
}

.statement__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 35%;
    border: 1px solid rgba(233, 180, 76, .5);
    margin-bottom: .9rem;
}

.about__body p {
    color: var(--ink-dim);
    margin-bottom: 1.1rem;
}

.about__body p em {
    color: var(--ink);
    font-family: var(--serif);
    font-style: italic;
}

.facts {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
    gap: 1px;
    margin: 2.2rem 0;
    background: var(--line-soft);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    overflow: hidden;
}

.facts li {
    padding: 1.1rem 1.2rem;
    background: var(--bg);
    transition: background .4s var(--ease);
}

.facts li:hover {
    background: var(--bg-3);
}

.facts span {
    display: block;
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: .3rem;
}

.facts b {
    font-size: .95rem;
    font-weight: 500;
}

.about__meters {
    display: grid;
    gap: 1.1rem;
    margin-bottom: .5rem;
}

.meter__top {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    margin-bottom: .5rem;
    color: var(--ink-dim);
}

.meter__top b {
    color: var(--gold);
    font-weight: 500;
}

.meter__bar {
    height: 3px;
    background: var(--line-soft);
    border-radius: 99px;
    overflow: hidden;
}

.meter__bar i {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--azure), var(--gold));
    border-radius: 99px;
    transition: width 1.4s .2s var(--ease);
}

.about__meters.is-in .meter__bar i {
    width: var(--w);
}

/* ---------- 7. MUSIC ---------- */
.music {
    background: radial-gradient(80% 60% at 100% 0%, rgba(47, 111, 237, .10), transparent 60%),
    radial-gradient(70% 50% at 0% 100%, rgba(217, 96, 59, .08), transparent 60%);
}

/* --- track list (drives the sticky player) --- */
.tracks {
    border-top: 1px solid var(--line);
}

.tracks li {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.track__btn {
    flex: 1;
    min-width: 0;
    display: grid;
    align-items: center;
    gap: 1rem;
    grid-template-columns:2rem 56px minmax(0, 1fr) auto auto;
    padding: .75rem .4rem;
    text-align: left;
    transition: padding-inline .45s var(--ease);
    isolation: isolate;
}

.track__btn::before {
    content: "";
    position: absolute;
    inset: 0 -1rem;
    z-index: -1;
    background: linear-gradient(90deg, rgba(233, 180, 76, .10), transparent 70%);
    opacity: 0;
    transition: opacity .45s var(--ease);
    border-radius: 12px;
}

.track__btn:hover {
    padding-inline: 1rem .4rem;
}

.track__btn:hover::before,
.track.is-current .track__btn::before {
    opacity: 1;
}

.track__n {
    font-size: .7rem;
    letter-spacing: .1em;
    color: var(--ink-faint);
    font-variant-numeric: tabular-nums;
    transition: color .35s var(--ease);
}

.track.is-current .track__n {
    color: var(--gold);
}

.track__artwrap {
    position: relative;
    width: 56px;
    height: 56px;
}

.track__art {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--line);
    transition: transform .5s var(--ease), filter .4s var(--ease);
}

.track__btn:hover .track__art {
    transform: scale(1.06);
}

.track.is-playing .track__art {
    filter: brightness(.45);
}

/* equaliser bars, only while this track is actually playing */
.track__eq {
    position: absolute;
    inset: 0;
    display: none;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    padding-bottom: 16px;
}

.track.is-playing .track__eq {
    display: flex;
}

.track__eq i {
    width: 3px;
    height: 6px;
    border-radius: 2px;
    background: var(--gold);
    animation: eq .9s ease-in-out infinite;
}

.track__eq i:nth-child(2) {
    animation-delay: .15s
}

.track__eq i:nth-child(3) {
    animation-delay: .3s
}

.track__eq i:nth-child(4) {
    animation-delay: .45s
}

@keyframes eq {
    0%, 100% {
        height: 5px
    }
    50% {
        height: 20px
    }
}

.track__title {
    font-family: var(--display);
    text-transform: uppercase;
    font-weight: 400;
    font-size: clamp(1rem, 2.1vw, 1.45rem);
    letter-spacing: .02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .35s var(--ease);
}

.track__btn:hover .track__title,
.track.is-current .track__title {
    color: var(--gold);
}

.track__plays {
    font-size: .72rem;
    letter-spacing: .06em;
    color: var(--ink-faint);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.track__time {
    font-size: .76rem;
    color: var(--ink-dim);
    font-variant-numeric: tabular-nums;
    min-width: 2.8rem;
    text-align: right;
}

.track__link {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    margin-left: .4rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ink-faint);
    font-size: .95rem;
    transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}

.track__link:hover {
    background: var(--gold);
    color: #06060b;
    transform: scale(1.08);
}

.tracks__note {
    margin-top: 1rem;
    font-size: .74rem;
    color: var(--ink-faint);
}

/* platforms */
.platforms {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(190px, 1fr));
    gap: .9rem;
}

.platform {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1.05rem 1.2rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(242, 237, 227, .02);
    position: relative;
    overflow: hidden;
    transition: border-color .4s var(--ease), transform .4s var(--ease), background .4s var(--ease);
}

.platform::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(233, 180, 76, .14), transparent);
    translate: -100% 0;
    transition: translate .55s var(--ease);
}

.platform:hover {
    border-color: rgba(233, 180, 76, .5);
    transform: translateY(-4px);
}

.platform:hover::after {
    translate: 0 0;
}

.platform__icon {
    position: relative;
    width: 26px;
    height: 26px;
    color: var(--ink);
    flex: 0 0 auto;
    transition: color .4s, transform .5s var(--ease);
}

.platform__icon svg {
    width: 100%;
    height: 100%;
}

.platform:hover .platform__icon {
    color: var(--gold);
    transform: rotate(-8deg) scale(1.1);
}

.platform__name {
    font-size: .92rem;
    font-weight: 500;
    position: relative;
}

.platform__go {
    margin-left: auto;
    color: var(--ink-faint);
    font-size: .9rem;
    transition: transform .4s var(--ease), color .4s;
    position: relative;
}

.platform:hover .platform__go {
    color: var(--gold);
    transform: translate(3px, -3px);
}

/* spotify embed */
.embed {
    margin-top: clamp(3rem, 7vw, 5rem);
}

.embed__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.embed__head p {
    font-size: .8rem;
    color: var(--ink-faint);
}

.embed__frame {
    position: relative;
    min-height: 352px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    place-items: center;
    background: radial-gradient(60% 100% at 50% 0%, rgba(29, 185, 84, .14), transparent 70%),
    var(--bg-2);
}

.embed__frame iframe {
    width: 100%;
    height: 352px;
    border: 0;
}

.embed__load {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 1.6rem;
    border-radius: 99px;
    border: 1px solid var(--line);
    background: rgba(242, 237, 227, .04);
    font-size: .92rem;
    font-weight: 500;
    transition: transform .4s var(--ease), border-color .4s, background .4s;
}

.embed__load:hover {
    transform: scale(1.04);
    border-color: #1db954;
    background: rgba(29, 185, 84, .12);
}

.embed__icon {
    width: 24px;
    height: 24px;
    color: #1db954;
}

.embed__icon svg {
    width: 100%;
    height: 100%;
}

/* --- albums: original release artwork --- */
.albums {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1rem, 2.5vw, 1.7rem);
}

.album {
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform .5s var(--ease);
}

.album__art {
    display: block;
    position: relative;
    margin-bottom: .9rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 24px 50px -24px rgba(0, 0, 0, .85);
}

.album__art img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .5s var(--ease);
}

.album:hover .album__art img {
    transform: scale(1.07);
    filter: brightness(.5);
}

.album__hover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.album__art:hover .album__hover,
.album__art:focus-visible .album__hover {
    opacity: 1;
}

.album__hover span {
    padding: .5rem 1.1rem;
    border-radius: 99px;
    background: var(--gold);
    color: #06060b;
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .04em;
    translate: 0 14px;
    transition: translate .45s var(--ease);
}

.album__art:hover .album__hover span {
    translate: 0 0;
}

.album h4 {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: .02em;
    transition: color .35s var(--ease);
}

.album:hover h4 {
    color: var(--gold);
}

.album p {
    font-size: .74rem;
    letter-spacing: .08em;
    color: var(--ink-faint);
    margin-top: .2rem;
}

/* ---------- 8. VIDEOS ---------- */
.video-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.2rem, 3vw, 2rem);
}

/* the newest video gets the full width */
.video--main {
    grid-column: 1 / -1;
}

.video__player {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bg-2);
    aspect-ratio: 16/9; /* real YouTube thumbnails are 16:9 */
}

.video__player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease), filter .5s var(--ease);
}

.video__player::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 6, 11, .1) 40%, rgba(6, 6, 11, .8));
    pointer-events: none;
}

.video:hover .video__player img {
    transform: scale(1.06);
    filter: brightness(.75);
}

.video__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video__player.is-playing::after {
    display: none;
}

.video__play {
    position: absolute;
    z-index: 2;
    inset: 0;
    margin: auto;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(242, 237, 227, .1);
    color: var(--ink);
    border: 1px solid rgba(242, 237, 227, .35);
    backdrop-filter: blur(8px);
    transition: transform .45s var(--ease), background .45s var(--ease), color .45s;
}

.video__play::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1px solid rgba(233, 180, 76, .5);
    animation: ripple 2.6s var(--ease-io) infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: .8
    }
    100% {
        transform: scale(1.7);
        opacity: 0
    }
}

.video__play svg {
    width: 26px;
    height: 26px;
    margin-left: 3px;
}

.video:hover .video__play {
    transform: scale(1.1);
    background: var(--gold);
    color: #06060b;
}

.video__time {
    position: absolute;
    z-index: 2;
    bottom: 1rem;
    right: 1rem;
    padding: .25rem .6rem;
    border-radius: 6px;
    background: rgba(6, 6, 11, .7);
    backdrop-filter: blur(6px);
    font-size: .72rem;
    letter-spacing: .06em;
}

.video__meta {
    padding: 1.1rem .2rem 0;
}

.video__meta h3 {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(1.05rem, 2vw, 1.5rem);
    letter-spacing: .02em;
    transition: color .35s var(--ease);
}

.video:hover .video__meta h3 {
    color: var(--gold);
}

.video__meta p {
    font-size: .78rem;
    letter-spacing: .06em;
    color: var(--ink-faint);
    margin-top: .25rem;
}

/* ---------- 2026 SINGLES / SERIES ---------- */
.series {
    background: radial-gradient(70% 55% at 100% 10%, rgba(233, 180, 76, .08), transparent 60%),
    radial-gradient(60% 50% at 0% 90%, rgba(47, 111, 237, .10), transparent 60%);
}

/* --- singles as cover cards (Greek run + the rest of 2026) --- */
.gods {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
    gap: clamp(1rem, 2.2vw, 1.5rem);
}

.gods--small {
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
}

.god {
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform .5s var(--ease);
}

.god__art {
    display: block;
    position: relative;
    margin-bottom: .8rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 20px 44px -22px rgba(0, 0, 0, .85);
}

.god__art img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .5s var(--ease);
}

.god:hover .god__art img {
    transform: scale(1.07);
    filter: brightness(.5);
}

.god__hover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.god__art:hover .god__hover,
.god__art:focus-visible .god__hover {
    opacity: 1;
}

.god__hover span {
    padding: .45rem 1rem;
    border-radius: 99px;
    background: var(--gold);
    color: #06060b;
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .04em;
    translate: 0 12px;
    transition: translate .45s var(--ease);
}

.god__art:hover .god__hover span {
    translate: 0 0;
}

.god h3 {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: .02em;
    line-height: 1.15;
    transition: color .35s var(--ease);
}

.god:hover h3 {
    color: var(--gold);
}

.god p {
    margin-top: .2rem;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

/* latest release feature */
.latest {
    display: grid;
    grid-template-columns:minmax(0, .8fr) minmax(0, 1.2fr);
    gap: clamp(1.6rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, rgba(242, 237, 227, .05), rgba(242, 237, 227, .01));
    backdrop-filter: blur(10px);
}

.latest__art {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 34px 70px -28px rgba(0, 0, 0, .9);
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform .5s var(--ease);
}

.latest__art img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform .9s var(--ease);
}

.latest__art:hover img {
    transform: scale(1.05);
}

.latest__title {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: .92;
    letter-spacing: -.01em;
    margin: .4rem 0 .9rem;
}

.latest__text {
    color: var(--ink-dim);
    max-width: 44ch;
    margin-bottom: 1.5rem;
}

.latest__text em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink);
}

/* Arabic titles keep their own face */
[lang="ar"] {
    font-family: "Noto Kufi Arabic", "Segoe UI", Tahoma, sans-serif;
}

/* ---------- 9. CONTACT ---------- */
.contact {
    background: radial-gradient(70% 60% at 0% 0%, rgba(47, 111, 237, .12), transparent 60%);
}

.contact__grid {
    display: grid;
    grid-template-columns:1fr 1.05fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.copy-mail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem 1rem 1rem 1.3rem;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: rgba(242, 237, 227, .03);
    font-size: clamp(.85rem, 1.6vw, 1.05rem);
    overflow: hidden;
}

.copy-mail > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-mail button {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    flex: 0 0 auto;
    padding: .5rem 1rem;
    border-radius: 99px;
    background: var(--ink);
    color: #06060b;
    font-size: .78rem;
    font-weight: 500;
    transition: background .35s var(--ease), transform .35s var(--ease);
}

.copy-mail button svg {
    width: 14px;
    height: 14px;
}

.copy-mail button:hover {
    background: var(--gold);
    transform: scale(1.04);
}

/* honest empty state — no invented tour dates */
.live-note {
    margin-bottom: 2rem;
    padding: 1.1rem 1.3rem;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    background: rgba(242, 237, 227, .02);
}

.live-note b {
    display: block;
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .35rem;
}

.live-note p {
    font-size: .86rem;
    color: var(--ink-dim);
}

.contact__list {
    border-top: 1px solid var(--line-soft);
}

.contact__list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem;
    padding: 1rem .2rem;
    border-bottom: 1px solid var(--line-soft);
    transition: padding-left .4s var(--ease);
}

.contact__list li:hover {
    padding-left: .9rem;
}

.contact__list span {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.contact__list a {
    font-size: .95rem;
    position: relative;
    background: linear-gradient(var(--gold), var(--gold)) no-repeat left bottom / 0 1px;
    transition: background-size .45s var(--ease), color .3s;
    padding-bottom: 2px;
}

.contact__list a:hover {
    background-size: 100% 1px;
    color: var(--gold);
}

.socials {
    display: flex;
    gap: .7rem;
    margin-top: 2rem;
}

.social {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--ink);
    transition: background .4s var(--ease), color .4s var(--ease),
    transform .4s var(--ease), border-color .4s;
}

.social svg {
    width: 19px;
    height: 19px;
}

.social:hover {
    background: var(--gold);
    color: #06060b;
    border-color: var(--gold);
    transform: translateY(-5px) rotate(-6deg);
}

/* form */
.form {
    position: relative;
    padding: clamp(1.5rem, 3.5vw, 2.4rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(242, 237, 227, .05), rgba(242, 237, 227, .01));
    backdrop-filter: blur(10px);
}

.form__row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 1rem;
}

.field {
    position: relative;
    margin-bottom: 1.3rem;
}

.field input, .field textarea, .field select {
    width: 100%;
    padding: 1.35rem 1rem .6rem;
    background: rgba(6, 6, 11, .5);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 300;
    transition: border-color .35s var(--ease), background .35s var(--ease),
    box-shadow .35s var(--ease);
    appearance: none;
}

.field textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 1.5rem;
}

.field select {
    padding-top: 1.35rem;
    cursor: pointer;
}

.field:has(select)::after {
    content: "";
    position: absolute;
    right: 1.1rem;
    top: 60%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--ink-dim);
    border-bottom: 1.5px solid var(--ink-dim);
    rotate: 45deg;
    translate: 0 -50%;
    pointer-events: none;
}

.field label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: .95rem;
    color: var(--ink-faint);
    pointer-events: none;
    transform-origin: left top;
    transition: transform .3s var(--ease), color .3s var(--ease);
}

.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label,
.field .label--static {
    transform: translateY(-.65rem) scale(.72);
    color: var(--gold);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(6, 6, 11, .75);
    box-shadow: 0 0 0 4px rgba(233, 180, 76, .08);
}

.field__err {
    display: block;
    height: 0;
    overflow: hidden;
    font-size: .74rem;
    color: var(--clay);
    letter-spacing: .04em;
    transition: height .3s var(--ease), padding .3s var(--ease);
}

.field.has-error input, .field.has-error textarea, .field.has-error select {
    border-color: var(--clay);
}

.field.has-error .field__err {
    height: 1.4rem;
    padding-top: .35rem;
}

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form button[type=submit] {
    margin-top: .4rem;
}

.btn__spinner {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid rgba(6, 6, 11, .25);
    border-top-color: #06060b;
    display: none;
    animation: spin .7s linear infinite;
}

.form.is-sending .btn__label {
    opacity: .5;
}

.form.is-sending .btn__spinner {
    display: block;
}

.form.is-sending button[type=submit] {
    pointer-events: none;
}

.form__note {
    margin-top: 1rem;
    font-size: .78rem;
    color: var(--ink-faint);
    text-align: center;
}

.form__note a {
    color: var(--gold);
}

.form__success {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: .5rem;
    padding: 2rem;
    text-align: center;
    background: rgba(12, 12, 18, .92);
    backdrop-filter: blur(14px);
    border-radius: var(--radius-lg);
    opacity: 0;
    visibility: hidden;
    scale: .97;
    transition: opacity .5s var(--ease), visibility .5s, scale .5s var(--ease);
}

.form__success.is-on {
    opacity: 1;
    visibility: visible;
    scale: 1;
}

.form__check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: .6rem;
    background: var(--gold);
    color: #06060b;
    animation: pop .6s var(--ease);
}

@keyframes pop {
    0% {
        scale: .3;
        opacity: 0
    }
    60% {
        scale: 1.12
    }
    100% {
        scale: 1;
        opacity: 1
    }
}

.form__check svg {
    width: 30px;
    height: 30px;
}

.form__success b {
    font-family: var(--display);
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: .03em;
}

.form__success p {
    color: var(--ink-dim);
    font-size: .9rem;
    max-width: 32ch;
}

.form__success button {
    margin-top: 1rem;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
    padding-bottom: .25rem;
    transition: color .3s, border-color .3s;
}

.form__success button:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* ---------- 10. FOOTER ---------- */
.footer {
    position: relative;
    border-top: 1px solid var(--line-soft);
    background: linear-gradient(180deg, transparent, rgba(47, 111, 237, .07));
    padding-top: 0;
    overflow: hidden;
}

.footer__marquee {
    overflow: hidden;
    padding: 2.2rem 0 1rem;
}

.footer__track {
    display: flex;
    width: max-content;
    animation: marquee 34s linear infinite;
}

.footer__group {
    display: flex;
    align-items: center;
    min-width: 100vw;
    justify-content: space-around;
}

.footer__track span {
    font-family: var(--display);
    text-transform: uppercase;
    font-size: clamp(3rem, 11vw, 9rem);
    line-height: .9;
    letter-spacing: -.02em;
    padding: 0 1.2rem;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1px rgba(242, 237, 227, .16);
}

.footer__track i {
    color: var(--gold);
    font-style: normal;
    font-size: clamp(1rem, 2.5vw, 2rem);
    align-self: center;
}

.footer__inner {
    display: grid;
    grid-template-columns:1.4fr 1fr 1fr 1.2fr;
    gap: clamp(1.8rem, 4vw, 3rem);
    padding-top: clamp(2rem, 5vw, 3.5rem);
    padding-bottom: clamp(2rem, 5vw, 3rem);
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    align-items: flex-start;
}

.footer__col h4 {
    font-size: .7rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--ink-faint);
    font-weight: 500;
    margin-bottom: .6rem;
}

.footer__col p {
    font-size: .86rem;
    color: var(--ink-dim);
    max-width: 34ch;
}

.footer__col p em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink);
}

.footer__col > a:not(.brand) {
    font-size: .88rem;
    color: var(--ink-dim);
    transition: color .3s var(--ease), translate .3s var(--ease);
}

.footer__col > a:not(.brand):hover {
    color: var(--gold);
    translate: 5px 0;
}

.brand--footer {
    font-size: 1.3rem;
    margin-bottom: .4rem;
}

.subscribe {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 280px;
    margin-top: .4rem;
}

.subscribe input {
    flex: 1;
    min-width: 0;
    padding: .75rem 3rem .75rem 1rem;
    background: rgba(6, 6, 11, .6);
    border: 1px solid var(--line);
    border-radius: 99px;
    font-size: .85rem;
    transition: border-color .35s var(--ease);
}

.subscribe input:focus {
    outline: none;
    border-color: var(--gold);
}

.subscribe button {
    position: absolute;
    right: 5px;
    top: 50%;
    translate: 0 -50%;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold);
    color: #06060b;
    display: grid;
    place-items: center;
    transition: transform .35s var(--ease);
}

.subscribe button svg {
    width: 14px;
    height: 14px;
}

.subscribe button:hover {
    transform: translateX(3px);
}

.subscribe small {
    position: absolute;
    left: 1rem;
    top: calc(100% + .4rem);
    font-size: .72rem;
    color: var(--gold);
}

.footer__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1.4rem;
    border-top: 1px solid var(--line-soft);
    font-size: .76rem;
    color: var(--ink-faint);
}

.to-top {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}

.to-top svg {
    width: 15px;
    height: 15px;
}

.to-top:hover {
    background: var(--gold);
    color: #06060b;
    transform: translateY(-4px);
}

/* ---------- STICKY PREVIEW PLAYER ---------- */
/* keeps the footer clear of the fixed bar */
body {
    padding-bottom: var(--player-h, 0px);
}

body.player-on {
    --player-h: 86px;
}

.player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 920;
    translate: 0 110%;
    transition: translate .6s var(--ease);
    background: rgba(11, 11, 19, .86);
    backdrop-filter: blur(18px) saturate(140%);
    border-top: 1px solid var(--line);
    box-shadow: 0 -20px 60px -20px rgba(0, 0, 0, .9);
}

.player.is-on {
    translate: 0 0;
}

.player.is-hidden {
    translate: 0 110%;
}

/* the fullscreen menu sits below the player in z-order, so get out of its way */
body.is-locked .player {
    translate: 0 110%;
}

.player__bar {
    width: 100%;
    max-width: var(--shell);
    margin-inline: auto;
    padding: .7rem var(--pad);
    display: grid;
    align-items: center;
    gap: 1rem;
    grid-template-columns:auto 48px minmax(0, 1fr) minmax(0, 1.5fr) auto auto;
}

.player__toggle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: #06060b;
    transition: transform .35s var(--ease), background .35s var(--ease);
}

.player__toggle:hover {
    transform: scale(1.08);
}

.player__toggle svg {
    width: 20px;
    height: 20px;
}

.player__i-pause {
    display: none;
}

.player.is-playing .player__i-play {
    display: none;
}

.player.is-playing .player__i-pause {
    display: block;
}

.player__art {
    width: 48px;
    height: 48px;
    border-radius: 9px;
    object-fit: cover;
    border: 1px solid var(--line);
}

.player.is-playing .player__art {
    animation: artPulse 2.6s ease-in-out infinite;
}

@keyframes artPulse {
    50% {
        box-shadow: 0 0 0 3px rgba(233, 180, 76, .22)
    }
}

.player__meta {
    min-width: 0;
}

.player__meta b {
    display: block;
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .03em;
    font-size: 1.02rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player__meta small {
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.player__seek {
    display: flex;
    align-items: center;
    gap: .7rem;
    min-width: 0;
}

.player__t {
    font-size: .72rem;
    color: var(--ink-faint);
    font-variant-numeric: tabular-nums;
    min-width: 2.4rem;
}

.player__t:last-child {
    text-align: right;
}

.player__range {
    flex: 1;
    min-width: 0;
    height: 4px;
    border-radius: 99px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background: linear-gradient(90deg, var(--gold) 0 var(--p, 0%), rgba(242, 237, 227, .14) var(--p, 0%) 100%);
}

.player__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--ink);
    border: 0;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(233, 180, 76, .22);
}

.player__range::-moz-range-thumb {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--ink);
    border: 0;
    cursor: pointer;
}

.player__viz {
    width: 180px;
    height: 34px;
    opacity: .85;
}

.player__side {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.player__skip {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink-dim);
    transition: color .3s var(--ease), background .3s var(--ease);
}

.player__skip svg {
    width: 17px;
    height: 17px;
}

.player__skip:hover {
    color: var(--gold);
    background: rgba(242, 237, 227, .06);
}

.player__full {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .9rem;
    border-radius: 99px;
    border: 1px solid var(--line);
    font-size: .74rem;
    letter-spacing: .04em;
    white-space: nowrap;
    transition: background .35s var(--ease), color .35s var(--ease), border-color .35s;
}

.player__full svg {
    width: 12px;
    height: 12px;
}

.player__full:hover {
    background: var(--gold);
    color: #06060b;
    border-color: var(--gold);
}

.player__close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink-faint);
    transition: color .3s, background .3s;
}

.player__close svg {
    width: 13px;
    height: 13px;
}

.player__close:hover {
    color: var(--clay);
    background: rgba(242, 237, 227, .06);
}

/* shown only when the browser blocked autoplay */
.player__hint {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .55rem 1rem;
    background: var(--gold);
    color: #06060b;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .04em;
}

.player__hint[hidden] {
    display: none;
}

.player__hint-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #06060b;
    animation: pulse 1.6s infinite;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .hero__inner {
        grid-template-columns:1fr;
    }

    .hero__visual {
        order: -1;
        max-width: 420px;
        margin-inline: auto;
    }

    .portrait__badge--top {
        left: -2%;
    }

    .portrait__badge--bottom {
        right: -2%;
    }

    .about__grid, .contact__grid, .latest {
        grid-template-columns:1fr;
    }

    .about__media {
        position: static;
    }

    .collage {
        max-width: 480px;
        margin-inline: auto;
    }

    .latest__art {
        max-width: 340px;
    }

    .footer__inner {
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width: 1000px) {
    /* visualiser is the first thing to go — it is pure decoration */
    .player__viz {
        display: none;
    }

    .player__bar {
        grid-template-columns:auto 48px minmax(0, 1fr) minmax(0, 1.2fr) auto;
    }
}

@media (max-width: 860px) {
    .nav, .header__cta {
        display: none;
    }

    .burger {
        display: grid;
    }

    .video-grid {
        grid-template-columns:1fr;
    }

    .form__row {
        grid-template-columns:1fr;
    }

    .cursor, .cursor-dot {
        display: none;
    }

    .track__btn {
        grid-template-columns:1.6rem 48px minmax(0, 1fr) auto;
    }

    .track__art {
        width: 48px;
        height: 48px;
    }

    .track__artwrap {
        width: 48px;
        height: 48px;
    }

    .track__plays {
        display: none;
    }

    /* two rows: info on top, seek bar underneath */
    .player__bar {
        grid-template-columns:auto 44px minmax(0, 1fr) auto;
        row-gap: .5rem;
        padding-block: .6rem;
    }

    .player__seek {
        grid-column: 1 / -1;
    }

    .player__full span {
        display: none;
    }

    .player__full {
        padding: .45rem .6rem;
    }

    body.player-on {
        --player-h: 104px;
    }
}

@media (max-width: 560px) {
    :root {
        --radius-lg: 20px;
    }

    .hero__stats {
        gap: 1.2rem 2rem;
    }

    .footer__inner {
        grid-template-columns:1fr;
    }

    .portrait__frame {
        border-radius: 80px 80px var(--radius-lg) var(--radius-lg);
    }

    .portrait__badge {
        padding: .55rem .7rem;
    }

    .portrait__badge small {
        display: none;
    }

    .copy-mail {
        border-radius: var(--radius);
        flex-direction: column;
        align-items: stretch;
    }

    .copy-mail button {
        justify-content: center;
    }

    .albums, .gods, .gods--small {
        grid-template-columns:1fr 1fr;
    }

    .track__btn {
        grid-template-columns:1.4rem 44px minmax(0, 1fr) auto;
        gap: .7rem;
    }

    .track__art, .track__artwrap {
        width: 44px;
        height: 44px;
    }

    .track__link {
        display: none;
    }

    .player__skip {
        display: none;
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    [data-reveal], .split .char {
        opacity: 1 !important;
        translate: 0 0 !important;
        filter: none !important;
    }

    .portrait__frame {
        clip-path: none;
    }

    .grain, .portrait__scan, .portrait__ring {
        display: none;
    }
}

/* =============================================================
   ARTIST NAME CASING
   The display type is uppercased site-wide, which rendered the
   name as "A-BID". These overrides keep the exact "A-bid"
   wherever the name itself appears — track, album and section
   titles stay uppercase as designed.
   Appended last so it wins on equal specificity.
============================================================= */
.preloader__name,
.brand .brand__text,
.hero__title .split,
.ticker__group span.is-name,
.footer__track span.is-name,
.player__meta small {
    text-transform: none;
}

/* track numbers are generated, so reordering rows never needs renumbering */
.tracks {
    counter-reset: track;
}

.tracks .track__n::before {
    counter-increment: track;
    content: counter(track, decimal-leading-zero);
}

/* the latest release gets the accent instead of a play count */
.track__plays--new {
    color: var(--gold);
    letter-spacing: .1em;
    text-transform: uppercase;
    font-size: .66rem;
}

/* 5th preloader letter needs its own delay — the old stagger was written
   for a 10-character name, so "d" was animating in first */
.preloader__name span:nth-child(5) {
    animation-delay: .29s;
}

/* =============================================================
   MULTI-PLATFORM RELEASE LINKS
   Each release links only to the platforms it is actually on.
============================================================= */
.album__hover,
.god__hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .48rem 1rem;
    border-radius: 99px;
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .03em;
    white-space: nowrap;
    border: 1px solid transparent;
    translate: 0 12px;
    opacity: 0;
    transition: translate .45s var(--ease), opacity .45s var(--ease),
                transform .3s var(--ease), filter .3s var(--ease);
}

.album__art:hover .pill,
.god__art:hover .pill,
.album__art:focus-within .pill,
.god__art:focus-within .pill {
    translate: 0 0;
    opacity: 1;
}

.pill:nth-child(2) { transition-delay: .06s; }
.pill:nth-child(3) { transition-delay: .12s; }
.pill:hover { transform: scale(1.06); filter: brightness(1.08); }

/* platform colours, so the choice is readable at a glance */
.pill--sp { background: #1db954; color: #06060b; }
.pill--am { background: #fa2d48; color: #fff; }
.pill--yt { background: #ff0033; color: #fff; }

/* Touch devices never hover, so the links would be unreachable.
   Show them pinned to the bottom of the artwork instead. */
@media (hover: none) {
    .album__hover,
    .god__hover {
        opacity: 1;
        justify-content: flex-end;
        flex-direction: row;
        flex-wrap: wrap;
        gap: .35rem;
        background: linear-gradient(180deg, transparent 45%, rgba(6, 6, 11, .85));
    }

    .album__hover .pill,
    .god__hover .pill {
        translate: 0 0;
        opacity: 1;
        padding: .38rem .7rem;
        font-size: .66rem;
    }
}

/* =============================================================
   PAIRED PLATFORM EMBEDS
============================================================= */
.embed__pair {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(1rem, 2.5vw, 1.6rem);
}

.embed__icon--sp { color: #1db954; }
.embed__icon--am { color: #fa2d48; }

.embed__frame:has(.embed__icon--am) {
    background: radial-gradient(60% 100% at 50% 0%, rgba(250, 45, 72, .14), transparent 70%), var(--bg-2);
}

.embed__frame:has(.embed__icon--am) .embed__load:hover {
    border-color: #fa2d48;
    background: rgba(250, 45, 72, .12);
}

/* =============================================================
   LIVE DISCOGRAPHY FEED
   Set by assets/js/live.js once Deezer + Apple have answered.
============================================================= */
.live-stamp {
    margin-top: .45rem;
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-faint);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.live-stamp::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(233, 180, 76, .7);
    animation: pulse 2.4s infinite;
}

.live-stamp[hidden] {
    display: none;
}

/* =============================================================
   SOCIAL LINKS ON THE HERO PORTRAIT
   Moved out of the contact section: small, glassy, tappable.
============================================================= */
.portrait__social {
    position: absolute;
    z-index: 4;
    bottom: 4%;
    left: 50%;
    translate: -50% 0;
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .5rem;
    border-radius: 99px;
    background: rgba(6, 6, 11, .58);
    border: 1px solid rgba(242, 237, 227, .18);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 34px -12px rgba(0, 0, 0, .85);
}

body.is-ready .portrait__social {
    animation: socialIn .7s 1s var(--ease) both;
}

@keyframes socialIn {
    from { opacity: 0; translate: -50% 14px; }
    to   { opacity: 1; translate: -50% 0; }
}

.psocial {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink);
    transition: background .3s var(--ease), color .3s var(--ease),
                transform .35s var(--ease);
}

.psocial svg {
    width: 20px;
    height: 20px;
}

.psocial:hover,
.psocial:focus-visible {
    background: var(--gold);
    color: #06060b;
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .portrait__social { gap: .25rem; padding: .35rem .45rem; }
    .psocial { width: 38px; height: 38px; }
    .psocial svg { width: 18px; height: 18px; }
}

@media (max-width: 560px) {
    /* Phones: the row stops being a floating pill and becomes a bar
       spanning the full width of the image, with much larger targets. */
    .portrait__social {
        left: 0;
        right: 0;
        bottom: 0;
        translate: 0;
        justify-content: space-around;
        gap: 0;
        padding: .7rem .4rem .55rem;
        /* square across, but follow the frame's rounded bottom corners */
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        border: 0;
        box-shadow: none;
        background: linear-gradient(180deg,
                    rgba(6, 6, 11, 0) 0%,
                    rgba(6, 6, 11, .72) 38%,
                    rgba(6, 6, 11, .92) 100%);
        backdrop-filter: blur(6px);
    }

    /* fluid so all seven icons fit, from a 320px phone upward */
    .psocial {
        width: clamp(34px, 11.3vw, 46px);
        height: clamp(34px, 11.3vw, 46px);
    }

    .psocial svg {
        width: clamp(16px, 5.4vw, 22px);
        height: clamp(16px, 5.4vw, 22px);
    }

    /* the shared keyframes translate by -50% to centre the pill;
       a full-width bar must not be shifted, so it gets its own */
    body.is-ready .portrait__social {
        animation-name: socialInFull;
    }
}

@keyframes socialInFull {
    from { opacity: 0; translate: 0 14px; }
    to   { opacity: 1; translate: 0 0; }
}
