/* ==========================================================================
   JOMASCO WAVES — redesigned front-end
   Theme colours preserved: electric yellow #fff200 · blue #0089f7 ·
   deep purple #190d32. Built for a11y (WCAG AA), performance & SEO.
   ========================================================================== */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/bebas-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sora';
    src: url('../fonts/sora-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sora';
    src: url('../fonts/sora-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sora';
    src: url('../fonts/sora-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sora';
    src: url('../fonts/sora-800.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
    --yellow: #fff200;
    --yellow-soft: #ffe85c;
    --blue: #0089f7;
    --blue-soft: #46a6ff;
    --ink: #190d32;
    --ink-2: #140a2b;
    --ink-3: #0d0620;
    --surface: #261648;
    --surface-2: #311d5b;
    --text: #f6f2ff;
    --text-2: #cfc7ec;
    --muted: #a79dcf;
    --line: rgba(255, 255, 255, 0.12);
    --ok: #2ec27e;
    --err: #ff5d6c;

    --font-display: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
    --font-body: 'Sora', 'Segoe UI', system-ui, -apple-system, sans-serif;

    --radius: 18px;
    --radius-sm: 12px;
    --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, 0.65);
    --glow-yellow: 0 0 40px -8px rgba(255, 242, 0, 0.45);
    --glow-blue: 0 0 46px -8px rgba(0, 137, 247, 0.5);

    --container: 1200px;
    --nav-h: 72px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--ink);
    background-image:
        radial-gradient(1100px 520px at 85% -10%, rgba(0, 137, 247, 0.28), transparent 60%),
        radial-gradient(900px 500px at -10% 15%, rgba(255, 242, 0, 0.10), transparent 55%),
        radial-gradient(1000px 800px at 50% 120%, rgba(49, 29, 91, 0.6), transparent 60%),
        linear-gradient(180deg, var(--ink-2), var(--ink) 40%, var(--ink-3));
    background-attachment: fixed;
    min-height: 100vh;
}

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.55em; font-family: var(--font-body); font-weight: 800; }
h1 { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.02em; }
p { margin: 0 0 1em; }
a { color: var(--yellow-soft); text-decoration-thickness: 0.08em; text-underline-offset: 0.15em; }
a:hover { color: var(--yellow); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1em; }
svg { display: block; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--yellow); color: var(--ink); }

.container { width: min(var(--container), 92vw); margin-inline: auto; }
.container--narrow { max-width: 820px; }

/* ---------- Accessibility helpers ---------- */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    margin: -1px; padding: 0; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; left: 12px; top: -60px; z-index: 200;
    background: var(--yellow); color: var(--ink); font-weight: 700;
    padding: 0.7rem 1.1rem; border-radius: 0 0 12px 12px;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
    font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
    padding: 0.8rem 1.5rem; border-radius: 999px; cursor: pointer;
    text-decoration: none; border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--primary { background: var(--yellow); color: var(--ink); box-shadow: var(--glow-yellow); }
.btn--primary:hover { background: var(--yellow-soft); color: var(--ink); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.btn--sm { padding: 0.55rem 1.05rem; font-size: 0.86rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; }

.text-link { color: var(--yellow-soft); font-weight: 600; text-underline-offset: 0.2em; }
.text-link:hover { color: var(--yellow); }

/* ---------- Eyebrow / section titles ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.78rem; font-weight: 700;
    color: var(--blue-soft); margin-bottom: 0.7rem;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--yellow); display: inline-block; }
.section-title { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: 0.02em; margin: 0; }
.section { padding: clamp(3.2rem, 8vw, 5.5rem) 0; }
.section--alt { background: rgba(255, 255, 255, 0.02); border-block: 1px solid var(--line); }
.section-head { margin-bottom: 2rem; }
.section-head--row { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem; }

.pill {
    display: inline-block; padding: 0.2rem 0.7rem; border-radius: 999px;
    border: 1px solid var(--blue); color: var(--blue-soft);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.badge {
    position: absolute; top: 0.8rem; left: 0.8rem; z-index: 3;
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 0.3rem 0.7rem; border-radius: 999px;
}
.badge--new { background: var(--yellow); color: var(--ink); }
.badge--ep { background: var(--blue); color: #fff; }

/* ---------- Header ---------- */
.site-header { position: relative; z-index: 50; }
.announce {
    background: linear-gradient(90deg, var(--blue), #5d2bff, var(--blue));
    background-size: 200% 100%; color: #fff; font-size: 0.9rem;
    text-align: center; animation: shimmer 14s linear infinite;
}
.announce__text { margin: 0; padding: 0.5rem 1rem; }
.announce a { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 0.15em; }
@keyframes shimmer { to { background-position: -200% 0; } }

.nav { position: sticky; top: 0; z-index: 100; background: rgba(13, 6, 32, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.brand__mark {
    width: 46px; height: 46px; border-radius: 12px; overflow: hidden;
    background: #fff; box-shadow: 0 4px 18px -6px rgba(255, 242, 0, 0.5);
    display: grid; place-items: center; flex: 0 0 auto;
}
.brand__mark img { width: 34px; height: 34px; object-fit: contain; }
.brand__name { font-family: var(--font-display); font-size: 1.55rem; letter-spacing: 0.05em; color: #fff; line-height: 1; }
.brand__name span { color: var(--yellow); }

.nav__list { display: flex; align-items: center; gap: 0.4rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
    display: block; padding: 0.55rem 0.9rem; border-radius: 10px;
    color: var(--text-2); font-weight: 600; text-decoration: none; font-size: 0.95rem;
}
.nav__link:hover { color: var(--yellow); background: rgba(255, 242, 0, 0.06); }
.nav__link.is-active { color: var(--yellow); }
.nav__cta { margin-left: 0.6rem; }
.nav__cta .btn span { font-size: 0.7em; margin-right: 0.15em; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; border-radius: 8px; }
.nav__toggle-box { display: block; width: 26px; }
.nav__toggle-box span { display: block; height: 3px; background: #fff; border-radius: 3px; margin: 5px 0; transition: transform 0.25s ease, opacity 0.25s ease; }
[aria-expanded='true'] .nav__toggle-box span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
[aria-expanded='true'] .nav__toggle-box span:nth-child(2) { opacity: 0; }
[aria-expanded='true'] .nav__toggle-box span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Flash messages ---------- */
.flash-region { position: relative; z-index: 20; }
.flash { margin: 1rem 0 0; padding: 0.9rem 1.2rem; border-radius: var(--radius-sm); font-weight: 600; border: 1px solid var(--line); }
.flash--success { background: rgba(46, 194, 126, 0.14); color: #8ff0c3; border-color: rgba(46, 194, 126, 0.4); }
.flash--error { background: rgba(255, 93, 108, 0.14); color: #ffc1c7; border-color: rgba(255, 93, 108, 0.45); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(2.6rem, 7vw, 5rem) 0 clamp(3rem, 6vw, 5rem); }
.hero__bg {
    position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background:
        radial-gradient(600px 400px at 12% 20%, rgba(0, 137, 247, 0.22), transparent 65%),
        radial-gradient(700px 500px at 90% 10%, rgba(255, 242, 0, 0.12), transparent 60%),
        radial-gradient(500px 400px at 70% 80%, rgba(93, 43, 255, 0.35), transparent 65%);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__copy { position: relative; z-index: 2; }
.hero__title { margin: 0.1rem 0 0.4rem; line-height: 0.95; }
.hero__name { display: block; font-size: clamp(3.4rem, 12vw, 8.4rem); color: #fff; text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4); }
.hero__name--accent { color: var(--yellow); text-shadow: 0 0 46px rgba(255, 242, 0, 0.35), 0 10px 40px rgba(0, 0, 0, 0.4); }
.hero__name--sm { font-size: clamp(2.1rem, 6.4vw, 4.4rem); line-height: 1.02; }
.hero__tagline { font-size: clamp(1.15rem, 2.4vw, 1.7rem); font-weight: 700; color: var(--blue-soft); margin-bottom: 1rem; }
.hero__tagline .pill { margin-inline-end: 0.35rem; vertical-align: 0.15em; }
.hero__intro { color: var(--text-2); max-width: 34em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.6rem 0 1.9rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; padding: 0; margin: 0; }
.hero__chips li {
    font-size: 0.82rem; font-weight: 600; color: var(--text-2);
    border: 1px solid var(--line); padding: 0.45rem 0.9rem; border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}
.hero__media { position: relative; }
.hero__photo-frame { position: relative; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg), var(--glow-blue); border: 1px solid var(--line); transform: rotate(1.2deg); }
.hero__photo { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.hero__photo--contain {
    object-fit: contain; padding: clamp(0.9rem, 3vw, 2rem);
    background: radial-gradient(120% 120% at 50% 0, rgba(0, 137, 247, 0.3), rgba(13, 6, 32, 0.92) 72%);
}
.hero__vinyl {
    position: absolute; right: -22px; top: -22px; width: 86px; height: 86px;
    border-radius: 50%; padding: 6px; background: radial-gradient(circle at 35% 35%, #444, #0c0c0c 70%);
    box-shadow: var(--shadow-lg); display: grid; place-items: center; border: 1px solid #333;
}
.hero__vinyl img { width: 54px; height: 54px; border-radius: 50%; }
.hero__now-playing {
    position: absolute; left: -14px; bottom: 22px; display: flex; align-items: center; gap: 0.8rem;
    background: rgba(13, 6, 32, 0.92); border: 1px solid var(--line); border-radius: 18px;
    padding: 0.8rem 1.1rem; text-decoration: none; box-shadow: var(--shadow-lg); backdrop-filter: blur(6px);
    max-width: min(300px, 92%);
}
.hero__np-copy { display: flex; flex-direction: column; line-height: 1.3; }
.hero__np-copy small { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.hero__np-copy strong { color: #fff; font-weight: 800; }
.hero__np-copy em { font-style: normal; font-size: 0.8rem; color: var(--yellow-soft); }
.hero__np-arrow { color: var(--yellow); font-size: 1.3rem; margin-left: auto; }
.hero__wave { position: relative; color: var(--ink); margin-top: clamp(1rem, 4vw, 2.4rem); }
.hero__wave svg { width: 100%; height: 90px; }

/* ---------- Hero slider ---------- */
.hero-slider { position: relative; }
.hero-slider__slides { display: grid; }
.hero-slider__slide {
    grid-area: 1 / 1;
    opacity: 0; visibility: hidden; transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease, visibility 0s linear 0.7s;
}
.hero-slider__slide.is-active { opacity: 1; visibility: visible; transform: none; z-index: 2; transition-delay: 0s; }

.hero-slider__controls { display: flex; align-items: center; flex-wrap: wrap; gap: 0.7rem; margin-top: clamp(1.6rem, 4vw, 2.6rem); }
/* Without JS only the first slide is shown, so hide the dead controls. */
.no-js .hero-slider__controls { display: none; }
.hero-slider__dots { display: flex; align-items: center; gap: 0.5rem; margin-inline-end: auto; }
.hero-slider__dot {
    width: 34px; height: 7px; padding: 0; border: 0; border-radius: 999px;
    background: rgba(255, 255, 255, 0.22); cursor: pointer;
    transition: background-color 0.25s ease, width 0.25s ease, transform 0.15s ease;
}
.hero-slider__dot:hover { background: rgba(255, 255, 255, 0.5); }
.hero-slider__dot.is-active { width: 54px; background: var(--yellow); }

.hero-slider__btn {
    display: grid; place-items: center; width: 44px; height: 44px; padding: 0;
    border-radius: 50%; cursor: pointer; font-size: 1rem; line-height: 1;
    color: var(--text); background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
}
.hero-slider__btn:hover { color: var(--yellow); border-color: var(--yellow); background: rgba(255, 242, 0, 0.08); transform: translateY(-2px); }
.hero-slider__icon { font-size: 0.75rem; letter-spacing: -0.06em; }

/* Equaliser */
.eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 34px; width: 26px; flex: 0 0 auto; }
.eq i { width: 4px; border-radius: 3px; background: linear-gradient(180deg, var(--yellow), var(--blue)); animation: eq 1s ease-in-out infinite; }
.eq i:nth-child(1) { height: 30%; animation-delay: 0s; }
.eq i:nth-child(2) { height: 100%; animation-delay: 0.15s; }
.eq i:nth-child(3) { height: 55%; animation-delay: 0.3s; }
.eq i:nth-child(4) { height: 80%; animation-delay: 0.1s; }
.eq i:nth-child(5) { height: 40%; animation-delay: 0.22s; }
@keyframes eq { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1); } }

/* ---------- Spotlight ---------- */
.spotlight { display: grid; grid-template-columns: minmax(240px, 420px) 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.spotlight__cover { position: relative; aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.spotlight__cover img { width: 100%; height: 100%; object-fit: cover; }
.spotlight__cover::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08); border-radius: var(--radius); }
.spotlight__meta { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; color: var(--muted); font-weight: 600; }
.spotlight__title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: 0.02em; margin: 0.1em 0; color: #fff; }
.spotlight__artist { color: var(--blue-soft); font-weight: 700; }
.spotlight__desc { color: var(--text-2); }

/* ---------- Release grid / cards ---------- */
.release-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: clamp(1.2rem, 2.6vw, 2rem); }
.release-card { position: relative; display: flex; flex-direction: column; }
.release-card__cover { position: relative; display: block; aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 30px -16px rgba(0, 0, 0, 0.8); border: 1px solid var(--line); background: var(--surface); }
.release-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1); }
.release-card:hover .release-card__cover img { transform: scale(1.06); }
.release-card__play {
    position: absolute; inset: 0; display: grid; place-items: center;
    background: rgba(13, 6, 32, 0.42); color: var(--yellow); font-size: 2rem;
    opacity: 0; transition: opacity 0.25s ease;
}
.release-card:hover .release-card__play, .release-card__cover:focus-visible .release-card__play { opacity: 1; }
.release-card__body { padding: 0.85rem 0.15rem 0; display: flex; flex-direction: column; flex: 1; }
.release-card__meta { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.release-card__type { color: var(--blue-soft); font-weight: 700; }
.release-card__title { margin: 0; font-size: 1.25rem; }
.release-card__title a { color: #fff; text-decoration: none; }
.release-card__title a:hover { color: var(--yellow); }
.release-card__artist { color: var(--text-2); font-size: 0.9rem; margin: 0.1rem 0 0.7rem; flex: 1; }

/* Cover placeholder (no artwork) */
.cover-placeholder {
    position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.7rem;
    background: linear-gradient(150deg, var(--surface-2), var(--ink-2) 70%);
    font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.05em; color: var(--yellow-soft); text-align: center; padding: 1rem;
}

/* ---------- Stream icon buttons ---------- */
.stream-list { display: flex; gap: 0.45rem; list-style: none; padding: 0; margin: 0; }
.stream-btn {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.07); border: 1px solid var(--line);
    transition: transform 0.15s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.stream-btn:hover { transform: translateY(-2px); border-color: currentColor; }
.stream-btn img { width: 20px; height: 20px; }

/* ---------- Platform (labelled) buttons ---------- */
.platform-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.2rem 0; }
.platform-btn {
    display: inline-flex; align-items: center; gap: 0.55rem;
    padding: 0.6rem 1rem; border-radius: 999px; text-decoration: none;
    font-weight: 700; font-size: 0.9rem; color: #fff;
    background: rgba(255, 255, 255, 0.07); border: 1px solid var(--line);
    transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.platform-btn:hover { transform: translateY(-2px); color: #fff; }
.platform-btn img { width: 20px; height: 20px; }
.platform-btn--spotify { border-color: rgba(30, 215, 96, 0.5); } .platform-btn--spotify:hover { background: rgba(30, 215, 96, 0.16); }
.platform-btn--applemusic { border-color: rgba(250, 60, 96, 0.5); } .platform-btn--applemusic:hover { background: rgba(250, 60, 96, 0.16); }
.platform-btn--youtube { border-color: rgba(255, 0, 0, 0.5); } .platform-btn--youtube:hover { background: rgba(255, 0, 0, 0.16); }
.platform-btn--deezer { border-color: rgba(168, 84, 255, 0.5); } .platform-btn--deezer:hover { background: rgba(168, 84, 255, 0.18); }
.platform-btn--audiomack { border-color: rgba(255, 170, 0, 0.5); } .platform-btn--audiomack:hover { background: rgba(255, 170, 0, 0.16); }
.platform-btn--bandcamp { border-color: rgba(26, 159, 138, 0.55); } .platform-btn--bandcamp:hover { background: rgba(26, 159, 138, 0.18); }
.platform-btn--tidal { border-color: rgba(0, 0, 0, 0.4); } .platform-btn--tidal:hover { background: rgba(255, 255, 255, 0.1); }
.platform-btn--soundcloud { border-color: rgba(255, 85, 0, 0.5); } .platform-btn--soundcloud:hover { background: rgba(255, 85, 0, 0.18); }

/* ---------- Video ---------- */
.video-wrap { text-align: center; }
.video-frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg), var(--glow-blue); border: 1px solid var(--line); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- About tease ---------- */
.about-tease__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 5vw, 4rem); align-items: center; }
.about-tease__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.about-tease__body .section-title { margin-bottom: 1rem; }
.about-tease__body p { color: var(--text-2); }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; }
.news-card { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.03); overflow: hidden; transition: transform 0.2s ease, border-color 0.2s ease; }
.news-card:hover { transform: translateY(-4px); border-color: rgba(255, 242, 0, 0.4); }
.news-card__link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.news-card__cover { aspect-ratio: 16/9; overflow: hidden; display: block; background: var(--surface); }
.news-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.news-card__body { padding: 1.1rem 1.2rem 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.news-card__body time { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.news-card__body strong { color: #fff; font-size: 1.12rem; }
.news-card__body > span:not(.text-link) { color: var(--text-2); }
.news-card__body .text-link { margin-top: auto; padding-top: 0.6rem; }

/* ---------- Page hero ---------- */
.page-hero { padding: clamp(2.4rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(700px 300px at 100% 0, rgba(0, 137, 247, 0.2), transparent 60%); }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); margin: 0.2rem 0; }
.page-hero p:not(.eyebrow):not(.article-date) { color: var(--text-2); max-width: 46em; }
.page-hero--release { padding-bottom: 0; }

.crumbs ol { display: flex; flex-wrap: wrap; gap: 0.4rem; list-style: none; padding: 0; margin: 0 0 1.2rem; font-size: 0.85rem; }
.crumbs li + li::before { content: '/'; margin-right: 0.4rem; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--yellow); }
.crumbs [aria-current='page'] { color: var(--text); font-weight: 600; }

/* ---------- Release detail ---------- */
.release-layout { display: grid; grid-template-columns: minmax(240px, 460px) 1fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: start; }
.release-layout__cover img { border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--line); width: 100%; }
.release-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem; color: var(--muted); font-weight: 600; position: relative; }
.release-meta .badge { position: static; }
.release-title { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: 0.02em; color: #fff; margin: 0.15em 0; }
.release-artist { color: var(--blue-soft); font-weight: 700; font-size: 1.15rem; }
.genre-list { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 0.6rem 0 1rem; }
.genre-list li { font-size: 0.8rem; border: 1px solid var(--line); border-radius: 999px; padding: 0.3rem 0.8rem; color: var(--text-2); }
.release-description { color: var(--text-2); }
.release-label { color: var(--muted); font-size: 0.9rem; }
.backlink { padding: 1rem 0 3rem; }

/* Tracklist */
.tracklist { list-style: none; padding: 0; margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.track { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1.2rem; background: rgba(255, 255, 255, 0.02); }
.track:nth-child(even) { background: rgba(255, 255, 255, 0.04); }
.track__no { color: var(--muted); font-variant-numeric: tabular-nums; width: 2em; }
.track__title { font-weight: 700; color: #fff; flex: 1; }
.track__feat { color: var(--blue-soft); font-weight: 500; font-size: 0.85em; }
.track__duration { color: var(--muted); font-variant-numeric: tabular-nums; }

/* ---------- About page ---------- */
.about-page__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 5vw, 4rem); align-items: start; }
.about-page__media { position: relative; }
.about-page__media img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.about-page__secondary { position: absolute; right: -1.2rem; bottom: -1.6rem; width: 52%; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 4px solid var(--ink); }
.about-page__body h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.about-page__body h3 { color: var(--yellow-soft); margin-top: 1.4rem; }
.about-page__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.fact-list { list-style: none; padding: 0; margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.fact-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 1.1rem; border-bottom: 1px solid var(--line); }
.fact-list li:last-child { border-bottom: 0; }
.fact-list li:nth-child(odd) { background: rgba(255, 255, 255, 0.02); }
.fact-list strong { color: #fff; }
.fact-list span { color: var(--text-2); text-align: right; }

/* Rich text (admin content) */
.rich { color: var(--text-2); }
.rich p { margin-bottom: 1em; }
.rich strong { color: var(--text); }
.rich a { color: var(--yellow-soft); }
.rich ul, .rich ol { padding-left: 1.2rem; }
.rich h3, .rich h4 { color: #fff; margin-top: 1.2rem; }

/* ---------- CTA band ---------- */
.cta-band { padding: clamp(2.4rem, 6vw, 4rem) 0; }
.cta-band__inner {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
    background: linear-gradient(120deg, rgba(0, 137, 247, 0.2), rgba(93, 43, 255, 0.2));
    border: 1px solid var(--line); border-radius: 24px; padding: clamp(1.8rem, 4vw, 3rem);
    box-shadow: var(--shadow-lg);
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.7rem); margin-bottom: 0.3rem; }
.cta-band p { color: var(--text-2); margin: 0; }

/* ---------- Filter ---------- */
.filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.4rem; }
.filter__btn {
    font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; cursor: pointer;
    background: rgba(255, 255, 255, 0.05); color: var(--text-2); border: 1px solid var(--line);
    border-radius: 999px; padding: 0.5rem 1.1rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter__btn:hover { color: var(--yellow); border-color: var(--yellow); }
.filter__btn.is-active { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
[hidden] { display: none !important; }

/* ---------- Concerts ---------- */
.event-list { display: grid; gap: 1rem; }
.event-card {
    display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
    border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem;
    background: rgba(255, 255, 255, 0.03);
}
.event-card__date {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-width: 74px; padding: 0.6rem 0.9rem; border-radius: var(--radius-sm);
    background: var(--yellow); color: var(--ink); line-height: 1.1;
}
.event-card__date strong { font-size: 1.7rem; }
.event-card__date span { font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }
.event-card__body { flex: 1; min-width: 220px; }
.event-card__body h2 { margin: 0 0 0.2rem; font-size: 1.3rem; }
.event-card__body p { margin: 0; color: var(--text-2); }
.empty-live { text-align: center; max-width: 640px; margin-inline: auto; }
.empty-live img { border-radius: var(--radius); margin: 0 auto 1.6rem; border: 1px solid var(--line); width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.empty-live h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: start; }
.contact-channels { list-style: none; padding: 0; margin: 1.2rem 0; }
.contact-channels li { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.contact-channels a { color: var(--yellow-soft); font-weight: 600; }
.contact-channels__label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 0.15rem; }
.contact-note { margin-top: 1.4rem; border-left: 3px solid var(--blue); padding: 0.2rem 1rem; background: rgba(0, 137, 247, 0.07); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.contact-note p { margin: 0; color: var(--text-2); }
.contact-form-wrap {
    border: 1px solid var(--line); border-radius: 22px; padding: clamp(1.4rem, 3vw, 2.2rem);
    background: rgba(255, 255, 255, 0.035); box-shadow: var(--shadow-lg);
}

/* Forms */
.form { display: grid; gap: 1.1rem; }
.form--inline { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.field { display: grid; gap: 0.35rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-weight: 600; font-size: 0.92rem; }
.req { color: var(--yellow); }
.field input, .field select, .field textarea {
    font-family: var(--font-body); font-size: 1rem; color: var(--text);
    background: rgba(13, 6, 32, 0.6); border: 1px solid var(--line); border-radius: 12px;
    padding: 0.7rem 0.95rem; width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 137, 247, 0.25);
}
.form--inline .field { flex: 1 1 240px; }
.form--inline input { padding: 0.6rem 0.9rem; border-radius: 999px; }
.field--hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-foot { font-size: 0.8rem; color: var(--muted); margin: 0.2rem 0 0; }

/* ---------- Article ---------- */
.article-date { color: var(--muted); font-size: 0.9rem; }
.article__cover { margin: 0 0 1.6rem; }
.article__cover img { border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.article__back { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 2rem; }

/* ---------- Footer ---------- */
.site-footer { position: relative; margin-top: 2rem; background: var(--ink-3); border-top: 1px solid var(--line); }
.footer-wave { color: var(--ink); margin-top: -1px; }
.footer-wave svg { width: 100%; height: 70px; transform: scaleY(-1); }
.footer__main { padding: 3.2rem 0 2.4rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 2rem; }
.footer__col p { color: var(--text-2); }
.footer__title { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.05em; color: var(--yellow); margin-bottom: 0.8rem; text-transform: uppercase; }
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer__links a { color: var(--text-2); text-decoration: none; display: inline-flex; align-items: center; gap: 0.55rem; }
.footer__links a:hover { color: var(--yellow); }
.footer__social { display: flex; gap: 0.5rem; list-style: none; padding: 0; margin: 1rem 0 0; }
.social-link { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, 0.07); border: 1px solid var(--line); transition: transform 0.15s ease, background-color 0.2s ease; }
.social-link:hover { transform: translateY(-3px); background: rgba(255, 242, 0, 0.12); }
.footer__contact { margin-top: 1.2rem; font-style: normal; }
.footer__contact a { color: var(--yellow-soft); font-weight: 600; }
.footer__bottom { border-top: 1px solid var(--line); padding: 1.1rem 0; }
.footer__bottom-inner { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; color: var(--muted); font-size: 0.88rem; }
.footer__bottom p { margin: 0; }
.footer__top { color: var(--text-2); text-decoration: none; font-weight: 600; }
.footer__top:hover { color: var(--yellow); }

/* ---------- Scroll reveal (progressive enhancement) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal.is-hidden { opacity: 0; transform: translateY(22px); }

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

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
    .hero__inner, .spotlight, .about-tease__grid, .about-page__grid, .release-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .hero__now-playing { left: auto; right: 8px; }
    .hero__vinyl { right: -8px; top: -8px; width: 70px; height: 70px; }
    .hero__vinyl img { width: 44px; height: 44px; }
}

@media (max-width: 760px) {
    .nav__toggle { display: block; }
    .nav__list {
        position: absolute; left: 0; right: 0; top: var(--nav-h);
        display: none; flex-direction: column; align-items: stretch; gap: 0.2rem;
        background: rgba(13, 6, 32, 0.98); padding: 1rem 1.2rem 1.4rem;
        border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    }
    .nav__list.is-open { display: flex; }
    .nav__link { padding: 0.8rem 0.6rem; font-size: 1.05rem; }
    .nav__cta { margin: 0.6rem 0 0; }
    .nav__cta .btn { width: 100%; }
    .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .field-row { grid-template-columns: 1fr; }
    .release-card__play { opacity: 1; background: linear-gradient(180deg, transparent, rgba(13, 6, 32, 0.5)); place-items: end start; padding: 0.8rem; }
    .hero__name { font-size: clamp(3rem, 16vw, 4.6rem); }
    .hero-slider__dots { flex: 1 0 100%; }
    .hero-slider__dot { width: 28px; height: 6px; }
    .hero-slider__dot.is-active { width: 42px; }
    .about-page__secondary { position: static; width: 100%; margin-top: 1rem; border-width: 0; }
}
