/* =================================================================== */
/*  J4J Music Ministries — Professional Record Label                   */
/*  Multi-page design system                                           */
/* =================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture, video, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; }

/* ---------- Tokens ---------- */
:root {
    --gold: #fdc501;
    --gold-2: #e4b101;
    --gold-soft: rgba(253, 197, 1, 0.12);
    --bg: #0b0b0d;
    --bg-2: #101013;
    --surface: #16161b;
    --surface-2: #1d1d24;
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text: #f4f4f6;
    --text-soft: #c3c3cc;
    --muted: #8a8a95;

    --gradient-gold: linear-gradient(135deg, #fdc501 0%, #e4b101 100%);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    --container: 1280px;
    --radius: 14px;
    --radius-lg: 22px;
    --header-h: 84px;
    --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base ---------- */
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p { color: var(--text-soft); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}

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

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

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.7rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1.5px solid transparent;
    transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
    cursor: pointer;
    white-space: nowrap;
}
.btn i { font-size: 0.95em; }
.btn-gold { background: var(--gradient-gold); color: #111; box-shadow: 0 8px 24px rgba(253, 197, 1, 0.25); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(253, 197, 1, 0.35); }
.btn-ghost { border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { background: #fff; color: #111; border-color: #fff; transform: translateY(-3px); }
.btn-sm { padding: 0.7rem 1.25rem; font-size: 0.72rem; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(11, 11, 13, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background var(--ease), border-color var(--ease), height var(--ease);
}
.site-header.scrolled {
    background: rgba(11, 11, 13, 0.92);
    border-bottom-color: var(--border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.header-inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.2rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand img { width: 50px; height: 50px; object-fit: contain; border-radius: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: #fff;
}
.brand-tag {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}

.main-nav ul { display: flex; align-items: center; gap: 0.4rem; }
.nav-link {
    position: relative;
    display: block;
    padding: 0.55rem 0.9rem;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soft);
    border-radius: 8px;
    transition: color var(--ease), background var(--ease);
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.35rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 10px;
    border: 1px solid var(--border);
}
.nav-toggle span {
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Home Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 3rem) 0 4rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,11,13,0.55) 0%, rgba(11,11,13,0.82) 55%, var(--bg) 100%),
                url('../images/hero-bg.jpg') center / cover no-repeat;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 80% 20%, rgba(253,197,1,0.14), transparent 70%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
}
.eyebrow::before { content: ''; width: 34px; height: 1.5px; background: var(--gold); }
.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 5.4rem);
    font-weight: 700;
    line-height: 0.98;
    margin-bottom: 1.4rem;
}
.hero-title .accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-lead {
    font-size: 1.12rem;
    color: var(--text-soft);
    max-width: 34rem;
    margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    max-width: 40rem;
}
.hero-stat { }
.hero-stat .num {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.hero-stat .lbl {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.4rem;
}

.hero-visual { position: relative; }
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}
.hero-card.tall { grid-row: span 2; }
.hero-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; transition: transform 0.6s var(--ease); }
.hero-card:hover img { transform: scale(1.06); }
.hero-card figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
}
.hero-card figcaption span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.78rem; color: var(--gold); }

/* ---------- Page Hero (interior) ---------- */
.page-hero {
    position: relative;
    padding: calc(var(--header-h) + 4.5rem) 0 3.5rem;
    background: linear-gradient(180deg, rgba(253,197,1,0.06), transparent 60%), var(--bg-2);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 80% at 85% 10%, rgba(253,197,1,0.12), transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 0.9rem; }
.page-hero p { max-width: 40rem; font-size: 1.08rem; }
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.4rem;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ---------- Section ---------- */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section.alt { background: var(--bg-2); }
.section-head { max-width: 46rem; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 0.9rem; }
.section-sub { font-size: 1.05rem; color: var(--text-soft); }

/* ---------- Roster / Artists ---------- */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.6rem;
}
.artist-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.artist-card:hover { transform: translateY(-8px); border-color: rgba(253,197,1,0.4); box-shadow: var(--shadow-lg); }
.artist-media { position: relative; aspect-ratio: 1; overflow: hidden; }
.artist-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.artist-card:hover .artist-media img { transform: scale(1.07); }
.badge {
    position: absolute;
    top: 1rem; left: 1rem;
    padding: 0.35rem 0.8rem;
    background: var(--gradient-gold);
    color: #111;
    font-family: var(--font-display);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
}
.artist-body { padding: 1.5rem; }
.artist-name { font-size: 1.3rem; margin-bottom: 0.2rem; }
.artist-role {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}
.artist-bio { font-size: 0.94rem; color: var(--text-soft); }

/* full profile (artists page) */
.profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    margin-bottom: 1.6rem;
}
.profile .profile-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.profile .profile-media img { width: 100%; height: 100%; object-fit: cover; }
.profile h3 { font-size: 1.6rem; margin-bottom: 0.2rem; }
.profile .stage { font-family: var(--font-display); color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 0.3rem; }
.profile .role { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; }
.profile .mini-stats { display: flex; gap: 1.8rem; margin-top: 1.3rem; padding-top: 1.3rem; border-top: 1px solid var(--border); }
.profile .mini-stats .num { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.profile .mini-stats .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

/* ---------- Tabs / Releases ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
.tab-btn {
    padding: 0.7rem 1.4rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: all var(--ease);
}
.tab-btn:hover { color: #fff; border-color: var(--border-strong); }
.tab-btn.active { background: var(--gradient-gold); color: #111; border-color: transparent; }
.tab-panel { display: none; animation: fade 0.4s ease; }
.tab-panel.active { display: block; }

.featured-release {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
}
.featured-release .fr-media { position: relative; aspect-ratio: 1; }
.featured-release .fr-media img { width: 100%; height: 100%; object-fit: cover; }
.featured-release .fr-body { padding: clamp(1.5rem, 3vw, 2.6rem); }
.featured-release h3 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.4rem; }
.fr-artist { font-family: var(--font-display); color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 1.2rem; }

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.6rem;
}
.release-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.release-card:hover { transform: translateY(-6px); border-color: rgba(253,197,1,0.4); box-shadow: var(--shadow-md); }
.release-card .rc-media { aspect-ratio: 1; overflow: hidden; }
.release-card .rc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.release-card:hover .rc-media img { transform: scale(1.06); }
.release-card .rc-body { padding: 1.2rem 1.3rem 1.5rem; }
.release-card h4 { font-size: 1.15rem; margin-bottom: 0.15rem; }
.release-card .rc-artist { color: var(--gold); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-display); margin-bottom: 0.7rem; }
.release-card p { font-size: 0.88rem; color: var(--text-soft); }

/* streaming links */
.stream-links { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }
.stream-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-soft);
    transition: all var(--ease);
}
.stream-link i { font-size: 1.05rem; }
.stream-link:hover { color: #fff; border-color: var(--border-strong); transform: translateY(-2px); }
.stream-link.spotify:hover { color: #1db954; border-color: #1db954; }
.stream-link.apple:hover { color: #fc3c44; border-color: #fc3c44; }
.stream-link.amazon:hover { color: #00a8e1; border-color: #00a8e1; }
.stream-link.youtube:hover { color: #ff0000; border-color: #ff0000; }

/* buy music blocks */
.buy-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.5rem,3vw,2.5rem); margin-top: 2rem; }
.buy-artist { padding: 1.4rem 0; border-bottom: 1px solid var(--border); }
.buy-artist:last-child { border-bottom: none; padding-bottom: 0; }
.buy-artist:first-child { padding-top: 0; }
.buy-artist h4 { font-size: 1.25rem; color: var(--gold); margin-bottom: 1rem; }

/* ---------- Audio ---------- */
.audio-album { margin-bottom: 3rem; }
.audio-album h3 {
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 0.7rem;
}
.audio-album h3 i { color: var(--gold); font-size: 1.1rem; }
.track-list { display: grid; gap: 0.8rem; }
.track {
    display: grid;
    grid-template-columns: 2.4rem 1fr auto;
    align-items: center;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.9rem 1.2rem;
    transition: border-color var(--ease), background var(--ease);
}
.track:hover { border-color: rgba(253,197,1,0.35); background: var(--surface-2); }
.track .track-num { font-family: var(--font-display); color: var(--gold); font-weight: 700; }
.track .track-name { font-family: var(--font-display); font-weight: 500; }
.track .track-name span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.78rem; color: var(--muted); }
.track audio { height: 40px; max-width: 260px; }
@media (max-width: 620px) {
    .track { grid-template-columns: 2rem 1fr; }
    .track audio { grid-column: 1 / -1; max-width: 100%; width: 100%; }
}

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.9rem;
}
.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid var(--border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .g-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.9rem;
    background: linear-gradient(transparent 45%, rgba(0,0,0,0.85));
    opacity: 0;
    transition: opacity var(--ease);
}
.gallery-item:hover .g-overlay { opacity: 1; }
.g-overlay h4 { font-size: 0.9rem; margin: 0; }
.g-overlay p { font-size: 0.72rem; color: var(--gold); margin: 0; }

/* lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox-inner { max-width: 92vw; max-height: 90vh; text-align: center; }
.lightbox-inner img { max-width: 92vw; max-height: 74vh; margin: 0 auto; border-radius: 10px; object-fit: contain; }
.lb-caption { margin-top: 1rem; }
.lb-caption h3 { font-size: 1.2rem; }
.lb-caption p { color: var(--gold); font-size: 0.85rem; }
.lb-count { color: var(--muted); font-size: 0.8rem; margin-top: 0.4rem; }
.lb-close, .lb-prev, .lb-next {
    position: fixed;
    color: #fff;
    font-size: 2rem;
    width: 54px; height: 54px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    transition: background var(--ease);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: #111; }
.lb-close { top: 1.4rem; right: 1.4rem; }
.lb-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }

/* ---------- Achievements timeline ---------- */
.timeline { position: relative; max-width: 780px; margin: 0 auto; padding-left: 2.2rem; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--gold), transparent); }
.tl-item { position: relative; padding-bottom: 2.2rem; }
.tl-item::before { content: ''; position: absolute; left: -2.2rem; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(253,197,1,0.15); }
.tl-year { font-family: var(--font-display); color: var(--gold); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em; }
.tl-item h3 { font-size: 1.2rem; margin: 0.3rem 0 0.35rem; }
.tl-item p { font-size: 0.92rem; }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.6rem; }
.news-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.news-card:hover { transform: translateY(-6px); border-color: rgba(253,197,1,0.4); box-shadow: var(--shadow-md); }
.news-card .news-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.news-card .news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.news-card:hover .news-media img { transform: scale(1.06); }
.news-card .news-body { padding: 1.5rem; }
.news-meta { display: flex; gap: 0.8rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.7rem; }
.news-meta .cat { color: var(--gold); }
.news-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.news-card p { font-size: 0.92rem; }
.news-badge { position: absolute; top: 1rem; left: 1rem; padding: 0.35rem 0.8rem; background: var(--gradient-gold); color: #111; font-family: var(--font-display); font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; border-radius: 999px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: transform var(--ease), border-color var(--ease);
}
.contact-card:hover { transform: translateY(-6px); border-color: rgba(253,197,1,0.4); }
.contact-icon {
    width: 60px; height: 60px;
    margin: 0 auto 1.2rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--gold);
    font-size: 1.3rem;
}
.contact-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.contact-card a:hover { color: var(--gold); }
.contact-socials { display: flex; justify-content: center; gap: 0.8rem; margin-top: 2.5rem; }
.contact-socials a {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 1.1rem;
    transition: all var(--ease);
}
.contact-socials a:hover { background: var(--gold); color: #111; border-color: var(--gold); transform: translateY(-3px); }

/* ---------- CTA band ---------- */
.cta-band {
    position: relative;
    text-align: center;
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(253,197,1,0.1), rgba(230,78,4,0.08)), var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-band p { max-width: 34rem; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ---------- Footer ---------- */
.site-footer { background: #08080a; border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.92rem; max-width: 22rem; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer-social a {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-soft);
    transition: all var(--ease);
}
.footer-social a:hover { background: var(--gold); color: #111; border-color: var(--gold); }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 1.2rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a { font-size: 0.92rem; color: var(--text-soft); transition: color var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--muted);
}
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 1.4rem; }

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed;
    right: 1.5rem; bottom: 1.5rem;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: #111;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--ease);
    z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .profile { grid-template-columns: 1fr; }
    .profile .profile-media { max-width: 320px; }
    .featured-release { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        background: rgba(11,11,13,0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 1rem clamp(1.2rem, 4vw, 2.5rem) 1.6rem;
        transform: translateY(-140%);
        transition: transform var(--ease);
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 0.2rem; }
    .nav-link { padding: 0.9rem 0.6rem; font-size: 0.95rem; border-bottom: 1px solid var(--border); }
    .nav-link::after { display: none; }
    .header-cta .btn { display: none; }
}
@media (max-width: 720px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
    :root { --header-h: 72px; }
    .brand-text { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}
