:root {
    --bg: #07111b;
    --bg-soft: #0b1a28;
    --panel: rgba(13, 29, 44, 0.88);
    --panel-strong: #10243a;
    --text: #f7f3ea;
    --muted: #aebdca;
    --line: rgba(255, 255, 255, 0.10);
    --gold: #e5bd74;
    --gold-light: #f5dca8;
    --blue: #1268d7;
    --blue-light: #49a2ff;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(18, 104, 215, 0.10), transparent 28%),
        linear-gradient(180deg, #07111b 0%, #081522 100%);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a { color: inherit; }

audio {
    width: 100%;
    display: block;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 9999;
    background: #fff;
    color: #111;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
}

.skip-link:focus { top: 16px; }


/* NAVIGATION */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 16, 26, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.08em;
    font-size: 1rem;
    white-space: nowrap;
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.menu a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    transition: 0.2s ease;
}

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


/* ACCUEIL FINAL */

.hero {
    min-height: 690px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: url("photo-artiste.PNG");
    background-size: cover;
    background-position: center center;
    filter: brightness(1.12) saturate(1.20) contrast(1.05);
    transform: scale(1.008);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(4,12,20,0.03) 0%,
            rgba(4,12,20,0.02) 40%,
            rgba(4,12,20,0.10) 66%,
            rgba(4,12,20,0.28) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,0.00) 0%,
            rgba(3,10,18,0.19) 100%
        );
}

.hero-overlay {
    position: absolute;
    inset: auto 0 0 0;
    height: 25%;
    z-index: -1;
    background: linear-gradient(180deg, transparent, rgba(7,17,27,0.83));
}

.hero-inner {
    max-width: var(--max);
    min-height: 690px;
    margin: 0 auto;
    padding: 72px 0 72px 22px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-card {
    width: min(505px, 100%);
    margin-right: 0;
    padding: 30px 32px 28px;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 24px;
    background: rgba(8, 24, 38, 0.24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 18px 44px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold-light);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.24em;
}

.hero h1,
.section-heading h2,
.about-section h2,
.contact-section h2 {
    font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.75rem, 4vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.035em;
    white-space: nowrap;
    text-shadow: 0 7px 24px rgba(0,0,0,0.25);
}

.hero-role {
    margin: 16px 0 0;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 800;
}

.hero-lead {
    margin: 6px 0 0;
    color: rgba(255,255,255,0.88);
    font-size: 0.98rem;
}

.hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
}

.hero-actions .btn {
    width: 100%;
    min-width: 0;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 0.86rem;
    white-space: nowrap;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.09);
    color: rgba(255,255,255,0.75);
    font-size: 0.79rem;
    font-weight: 700;
}


/* BOUTONS */

.btn,
.itunes-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    transition: 0.22s ease;
}

.btn { padding: 12px 20px; }

.btn-primary,
.itunes-btn {
    color: #fff;
    background: linear-gradient(135deg, #0f62d1, #1788ef);
    box-shadow: 0 14px 30px rgba(12, 104, 219, 0.28);
}

.btn-primary:hover,
.itunes-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(12, 104, 219, 0.40);
}

.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.36);
    background: rgba(255,255,255,0.035);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.56);
}


/* STRUCTURE */

.section-shell {
    max-width: var(--max);
    margin: 0 auto;
    padding: 96px 22px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 40px;
}

.section-heading h2,
.about-section h2,
.contact-section h2 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.035em;
}

.section-heading > p:last-child {
    margin: 18px 0 0;
    color: var(--muted);
    max-width: 680px;
}


/* DERNIÈRE SORTIE */

.latest {
    padding-top: 86px;
    padding-bottom: 54px;
}

.latest-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(280px, 440px) 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 84% 18%, rgba(18,104,215,0.16), transparent 35%),
        linear-gradient(145deg, #0e2134, #091725);
    box-shadow: var(--shadow);
}

.latest-cover-wrap {
    position: relative;
    min-height: 100%;
}

.latest-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.latest-content {
    padding: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.latest-content h3 {
    margin: 4px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1;
}

.track-language {
    color: var(--gold-light);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.latest-copy {
    color: var(--muted);
    max-width: 520px;
}

.latest-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 18px;
}

.text-link {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 800;
}


/* MUSIQUES */

.music-section {
    position: relative;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 12% 8%, rgba(229,189,116,0.08), transparent 28%),
        linear-gradient(180deg, #081522, #07111b);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.track-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(17,40,61,0.92), rgba(9,24,38,0.98));
    box-shadow: 0 14px 38px rgba(0,0,0,0.20);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.track-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229,189,116,0.28);
    box-shadow: 0 22px 48px rgba(0,0,0,0.28);
}

.track-card-new {
    border-color: rgba(229,189,116,0.34);
}

.cover-wrap {
    position: relative;
    overflow: hidden;
    background: #0b1722;
}

.track-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.track-card:hover .track-cover { transform: scale(1.025); }

.badge,
.language-pill {
    position: absolute;
    z-index: 3;
    top: 14px;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge {
    left: 14px;
    color: #07111b;
    background: linear-gradient(135deg, #f4d59a, #e4b766);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.language-pill {
    right: 14px;
    color: #fff;
    background: rgba(5,16,26,0.72);
    border: 1px solid rgba(255,255,255,0.16);
}

.language-pill-right { right: 14px; }

.track-body { padding: 22px; }

.track-body h3 {
    min-height: 2.65em;
    margin: 0;
    font-size: 1.16rem;
    line-height: 1.3;
}

.artist-name {
    margin: 6px 0 16px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.track-body audio { margin: 12px 0 16px; }

.itunes-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.88rem;
}


/* À PROPOS */

.about-section {
    background:
        radial-gradient(circle at 72% 35%, rgba(18,104,215,0.10), transparent 30%),
        #07111b;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.about-copy {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.03);
}

.about-copy p {
    margin-top: 0;
    color: var(--muted);
}

.about-copy p:last-child { margin-bottom: 0; }

.about-copy .about-intro {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    line-height: 1.4;
}


/* CONTACT */

.contact-section {
    padding: 0 22px 96px;
}

.contact-card {
    padding: 54px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    border: 1px solid rgba(229,189,116,0.22);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 20%, rgba(229,189,116,0.12), transparent 30%),
        linear-gradient(135deg, #10243a, #091827);
    box-shadow: var(--shadow);
}

.contact-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.contact-copy p {
    color: var(--muted);
    margin-top: 0;
}

.email-link {
    margin-top: 14px;
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 800;
}


/* FOOTER */

.site-footer {
    border-top: 1px solid var(--line);
    background: #050e16;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 30px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
    font-size: 0.86rem;
}

.footer-name {
    color: #fff;
    font-weight: 950;
    letter-spacing: 0.08em;
}


/* RESPONSIVE */

@media (max-width: 980px) {
    .music-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .latest-card {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero,
    .hero-inner {
        min-height: 640px;
    }

    .hero-card {
        width: min(490px, 100%);
        margin-right: 12px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 5vw, 3.9rem);
    }

    .hero::before {
        background-position: 42% center;
    }
}

@media (max-width: 760px) {
    .nav-wrap {
        padding: 14px 16px;
        gap: 14px;
        align-items: flex-start;
    }

    .logo {
        font-size: 0.84rem;
        padding-top: 2px;
    }

    .menu {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .menu a { font-size: 0.78rem; }

    .hero { min-height: 720px; }

    .hero::before {
        background-position: 34% center;
        filter: brightness(1.11) saturate(1.15) contrast(1.03);
    }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(4,12,20,0.02) 0%, rgba(4,12,20,0.24) 42%, rgba(4,12,20,0.64) 100%);
    }

    .hero-inner {
        min-height: 720px;
        padding: 36px 16px 42px;
        align-items: flex-end;
        justify-content: center;
    }

    .hero-card {
        width: 100%;
        margin-right: 0;
        padding: 25px 20px;
        border-radius: 22px;
        background: rgba(7, 22, 35, 0.42);
        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
    }

    .hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.1rem);
        white-space: normal;
    }

    .hero-actions {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section-shell {
        padding: 72px 16px;
    }

    .latest {
        padding-top: 64px;
        padding-bottom: 38px;
    }

    .latest-card {
        grid-template-columns: 1fr;
    }

    .latest-content {
        padding: 28px 22px 32px;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .track-body h3 { min-height: auto; }

    .about-copy { padding: 24px; }

    .contact-section {
        padding: 0 16px 72px;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 34px 24px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 440px) {
    .menu { gap: 8px 10px; }

    .menu a { font-size: 0.74rem; }

    .hero-meta {
        flex-direction: column;
        gap: 6px;
    }

    .track-body { padding: 18px; }
}


/* AJUSTEMENT FINAL ACCUEIL — boutons côte à côte sur Mac / tablette */
@media (min-width: 520px) and (max-width: 760px) {
    .hero-actions {
        grid-template-columns: 1fr 1fr;
    }

    .hero-actions .btn {
        width: 100%;
        font-size: 0.78rem;
        padding-left: 10px;
        padding-right: 10px;
        white-space: nowrap;
    }
}


/* =========================================================
   V2 — FINITION PREMIUM : SECTION "DERNIÈRE SORTIE"
   ========================================================= */

.latest {
    position: relative;
    padding-top: 74px;
    padding-bottom: 66px;
}

.latest::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 18%, rgba(38, 126, 230, 0.13), transparent 34%),
        radial-gradient(circle at 12% 55%, rgba(229, 189, 116, 0.06), transparent 30%);
}

.latest .section-heading {
    position: relative;
    margin-bottom: 30px;
}

.latest .section-heading h2 {
    font-size: clamp(2.5rem, 4.2vw, 3.8rem);
}

.latest .section-heading > p:last-child {
    margin-top: 12px;
    max-width: 620px;
}

.latest-card {
    width: min(1060px, 100%);
    margin: 0 auto;
    grid-template-columns: minmax(300px, 390px) 1fr;
    border-color: rgba(255,255,255,0.13);
    border-radius: 26px;
    background:
        radial-gradient(circle at 88% 18%, rgba(25, 112, 225, 0.22), transparent 34%),
        linear-gradient(145deg, #102740 0%, #0b1d2e 52%, #091722 100%);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.latest-cover-wrap {
    overflow: hidden;
}

.latest-cover {
    transition: transform 0.45s ease, filter 0.45s ease;
    filter: saturate(1.06) contrast(1.02);
}

.latest-card:hover .latest-cover {
    transform: scale(1.018);
    filter: saturate(1.10) contrast(1.03);
}

.latest-cover-wrap .badge {
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    letter-spacing: 0.10em;
    background: linear-gradient(135deg, #f8dfa9, #e4b766);
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.latest-content {
    padding: 38px 42px;
}

.latest-content h3 {
    margin-top: 5px;
    font-size: clamp(2.35rem, 3.7vw, 3.7rem);
    letter-spacing: -0.025em;
}

.latest-content .artist-name {
    margin: 7px 0 14px;
    color: rgba(255,255,255,0.70);
}

.latest-copy {
    margin: 4px 0 18px;
    max-width: 470px;
    color: #b9c7d3;
}

.latest-content audio {
    margin: 0;
}

.latest-actions {
    margin-top: 18px;
    gap: 14px;
}

.latest-actions .btn-primary {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 0.88rem;
}

.latest-actions .text-link {
    padding: 8px 0;
    font-size: 0.88rem;
    color: #f4d59a;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.latest-actions .text-link:hover {
    opacity: 0.85;
    transform: translateX(2px);
}

@media (max-width: 980px) {
    .latest-card {
        grid-template-columns: minmax(280px, 360px) 1fr;
    }

    .latest-content {
        padding: 34px;
    }
}

@media (max-width: 760px) {
    .latest {
        padding-top: 58px;
        padding-bottom: 50px;
    }

    .latest .section-heading {
        margin-bottom: 24px;
    }

    .latest-card {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .latest-cover {
        aspect-ratio: 1 / 1;
    }

    .latest-content {
        padding: 28px 22px 30px;
    }

    .latest-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .latest-actions .btn-primary,
    .latest-actions .text-link {
        width: 100%;
        text-align: center;
    }
}


/* =========================================================
   V2 — FINITION PREMIUM : GRILLE "MES CHANSONS"
   ========================================================= */

.music-section .section-heading {
    margin-bottom: 34px;
}

.music-section .section-heading h2 {
    font-size: clamp(2.55rem, 4.2vw, 3.9rem);
}

.music-grid {
    gap: 22px;
    align-items: stretch;
}

.track-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-color: rgba(255,255,255,0.105);
    background:
        radial-gradient(circle at 86% 4%, rgba(25,112,225,0.09), transparent 27%),
        linear-gradient(180deg, rgba(17,40,61,0.96), rgba(8,22,35,0.99));
    box-shadow:
        0 16px 40px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.035);
}

.track-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229,189,116,0.30);
    box-shadow:
        0 24px 54px rgba(0,0,0,0.30),
        0 0 0 1px rgba(229,189,116,0.035);
}

.cover-wrap {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.track-cover {
    filter: saturate(1.035) contrast(1.015);
}

.track-card:hover .track-cover {
    transform: scale(1.022);
    filter: saturate(1.07) contrast(1.025);
}

.track-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 18px;
}

.track-body h3 {
    min-height: 2.5em;
    margin: 0;
    color: #fff;
    font-size: 1.12rem;
    line-height: 1.28;
    letter-spacing: -0.012em;
}

.track-body .artist-name {
    margin: 6px 0 13px;
    color: rgba(255,255,255,0.64);
    font-size: 0.88rem;
}

.track-body audio {
    margin: 8px 0 14px;
}

.track-body .itunes-btn {
    margin-top: auto;
    min-height: 43px;
    padding: 10px 14px;
    font-size: 0.84rem;
    letter-spacing: -0.01em;
    box-shadow: 0 12px 26px rgba(12,104,219,0.24);
}

.language-pill {
    top: 12px;
    right: 12px;
    min-width: 34px;
    text-align: center;
    padding: 7px 10px;
    font-size: 0.65rem;
    background: rgba(4,15,24,0.78);
    border-color: rgba(255,255,255,0.17);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.track-card-new {
    border-color: rgba(229,189,116,0.34);
    box-shadow:
        0 18px 46px rgba(0,0,0,0.24),
        0 0 0 1px rgba(229,189,116,0.04);
}

@media (min-width: 981px) {
    .music-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .track-card {
        border-radius: 18px;
    }

    .track-body h3 {
        min-height: 2.55em;
    }
}

@media (max-width: 980px) {
    .music-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 760px) {
    .music-section .section-heading {
        margin-bottom: 26px;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .track-body {
        padding: 18px;
    }

    .track-body h3 {
        min-height: auto;
        font-size: 1.08rem;
    }

    .track-body .itunes-btn {
        min-height: 45px;
    }
}


/* =========================================================
   V2 — FINITION PREMIUM : À PROPOS
   ========================================================= */

.about-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 38%, rgba(26, 112, 222, 0.13), transparent 32%),
        radial-gradient(circle at 18% 22%, rgba(229, 189, 116, 0.055), transparent 24%),
        #07111b;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.012) 50%, transparent 100%);
}

.about-grid {
    position: relative;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 64px;
    align-items: center;
    padding-top: 82px;
    padding-bottom: 82px;
}

.about-grid > div:first-child {
    position: relative;
    padding-left: 4px;
}

.about-grid > div:first-child::after {
    content: "";
    display: block;
    width: 72px;
    height: 2px;
    margin-top: 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.about-section h2 {
    max-width: 420px;
    font-size: clamp(2.8rem, 4.8vw, 4.4rem);
}

.about-copy {
    padding: 34px 36px;
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.018));
    box-shadow:
        0 18px 46px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.035);
}

.about-copy .about-intro {
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    line-height: 1.35;
}

.about-copy p {
    color: #b8c5d1;
    font-size: 0.98rem;
    line-height: 1.72;
}

.about-copy p + p {
    margin-top: 16px;
}

@media (max-width: 980px) {
    .about-grid {
        gap: 34px;
        align-items: start;
    }
}

@media (max-width: 760px) {
    .about-grid {
        padding-top: 64px;
        padding-bottom: 64px;
        gap: 26px;
    }

    .about-section h2 {
        font-size: clamp(2.55rem, 12vw, 3.7rem);
    }

    .about-grid > div:first-child::after {
        width: 58px;
        margin-top: 18px;
    }

    .about-copy {
        padding: 24px 22px;
        border-radius: 20px;
    }

    .about-copy .about-intro {
        font-size: 1.35rem;
    }
}


/* =========================================================
   V2 — FINITION PREMIUM : CONTACT
   ========================================================= */

.contact-section {
    position: relative;
    padding: 0 22px 92px;
    background:
        radial-gradient(circle at 14% 84%, rgba(229,189,116,0.05), transparent 24%);
}

.contact-card {
    position: relative;
    overflow: hidden;
    width: min(1080px, 100%);
    margin: 0 auto;
    padding: 46px 50px;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
    border: 1px solid rgba(229,189,116,0.22);
    border-radius: 26px;
    background:
        radial-gradient(circle at 88% 20%, rgba(49,135,237,0.18), transparent 34%),
        linear-gradient(135deg, #113058 0%, #0d2743 52%, #0a1b2d 100%);
    box-shadow:
        0 26px 64px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.contact-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    top: -180px;
    right: -90px;
    background: rgba(229,189,116,0.055);
    pointer-events: none;
}

.contact-card h2 {
    max-width: 420px;
    font-size: clamp(2.9rem, 4.7vw, 4.45rem);
    line-height: 0.98;
}

.contact-copy {
    position: relative;
    gap: 0;
}

.contact-copy p {
    max-width: 470px;
    margin-bottom: 20px;
    color: #c1ccd6;
    font-size: 0.99rem;
    line-height: 1.65;
}

.contact-copy .btn-primary {
    min-height: 45px;
    padding: 11px 19px;
    box-shadow: 0 14px 28px rgba(12,104,219,0.28);
}

.email-link {
    margin-top: 15px;
    color: #f3d79d;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.email-link:hover {
    text-decoration: underline;
}

@media (max-width: 760px) {
    .contact-section {
        padding: 0 16px 68px;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 30px 24px;
        border-radius: 22px;
    }

    .contact-card h2 {
        font-size: clamp(2.7rem, 13vw, 3.8rem);
    }

    .contact-copy .btn-primary {
        width: 100%;
    }

    .email-link {
        width: 100%;
        text-align: center;
    }
}


/* =========================================================
   V2 — FINITION MOBILE IPHONE
   ========================================================= */

@media (max-width: 760px) {

    /* En-tête plus compact et propre */
    .nav-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 11px 14px 10px;
    }

    .logo {
        padding-top: 0;
        font-size: 0.90rem;
        letter-spacing: 0.12em;
    }

    .menu {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        align-items: center;
    }

    .menu a {
        display: block;
        padding: 5px 2px;
        text-align: center;
        font-size: 0.72rem;
        line-height: 1.15;
        white-space: nowrap;
    }

    /* Hero plus équilibré sur téléphone */
    .hero {
        min-height: 650px;
    }

    .hero::before {
        background-position: 31% center;
        filter: brightness(1.10) saturate(1.16) contrast(1.035);
    }

    .hero::after {
        background:
            linear-gradient(180deg,
                rgba(4,12,20,0.02) 0%,
                rgba(4,12,20,0.12) 30%,
                rgba(4,12,20,0.48) 100%);
    }

    .hero-overlay {
        height: 23%;
    }

    .hero-inner {
        min-height: 650px;
        padding: 28px 14px 30px;
        align-items: flex-end;
    }

    .hero-card {
        width: 100%;
        margin: 0;
        padding: 22px 20px 20px;
        border-radius: 22px;
        background: rgba(7, 22, 35, 0.38);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        box-shadow:
            0 16px 36px rgba(0,0,0,0.18),
            inset 0 1px 0 rgba(255,255,255,0.05);
    }

    .hero .eyebrow {
        margin-bottom: 8px;
        font-size: 0.70rem;
        letter-spacing: 0.20em;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 13.5vw, 3.75rem);
        line-height: 0.95;
        white-space: normal;
    }

    .hero-role {
        margin-top: 14px;
        font-size: 0.94rem;
    }

    .hero-lead {
        margin-top: 5px;
        font-size: 0.93rem;
        line-height: 1.45;
    }

    .hero-actions {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    .hero-actions .btn {
        min-height: 48px;
        font-size: 0.90rem;
        padding: 10px 15px;
    }

    .hero-meta {
        margin-top: 16px;
        padding-top: 13px;
        gap: 4px;
        font-size: 0.78rem;
    }

    /* Dernière sortie */
    .latest-card {
        border-radius: 22px;
    }

    .latest-content {
        padding: 24px 20px 26px;
    }

    /* Cartes chansons */
    .track-card {
        border-radius: 18px;
    }

    .track-body {
        padding: 18px;
    }

    /* À propos */
    .about-grid {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    /* Contact */
    .contact-card {
        padding: 28px 22px;
    }
}

@media (max-width: 390px) {
    .menu a {
        font-size: 0.68rem;
    }

    .hero h1 {
        font-size: 2.65rem;
    }

    .hero-card {
        padding-left: 18px;
        padding-right: 18px;
    }
}


/* =========================================================
   V2 — FINITION MOBILE : "DERNIÈRE SORTIE"
   ========================================================= */

@media (max-width: 760px) {
    .latest {
        padding-top: 52px;
        padding-bottom: 44px;
    }

    .latest-card {
        overflow: hidden;
        border-radius: 22px;
    }

    .latest-cover-wrap {
        padding: 18px 18px 0;
        background:
            radial-gradient(circle at 50% 10%, rgba(229,189,116,0.08), transparent 42%);
    }

    .latest-cover {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 16px 34px rgba(0,0,0,0.24);
    }

    .latest-cover-wrap .badge {
        top: 30px;
        left: 30px;
    }

    .latest-content {
        padding: 24px 22px 28px;
    }

    .latest-content h3 {
        font-size: clamp(2.5rem, 12vw, 3.35rem);
        line-height: 1;
    }

    .latest-content .artist-name {
        margin-bottom: 12px;
    }

    .latest-copy {
        margin-bottom: 16px;
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .latest-actions {
        margin-top: 16px;
        gap: 12px;
    }

    .latest-actions .btn-primary {
        min-height: 48px;
        font-size: 0.90rem;
    }

    .latest-actions .text-link {
        padding: 9px 0 2px;
        font-size: 0.90rem;
    }
}


/* =========================================================
   CORRECTION MOBILE — À PROPOS
   ========================================================= */

@media (max-width: 760px) {
    .about-grid {
        display: block !important;
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .about-grid > div:first-child {
        width: 100%;
        margin-bottom: 26px;
        padding-left: 0;
    }

    .about-section h2 {
        max-width: none;
        margin: 0;
        font-size: clamp(2.65rem, 12vw, 3.8rem);
        line-height: 0.98;
    }

    .about-grid > div:first-child::after {
        width: 58px;
        margin-top: 17px;
    }

    .about-copy {
        width: 100%;
        max-width: none;
        padding: 24px 22px;
        border-radius: 20px;
    }

    .about-copy .about-intro {
        margin-bottom: 20px;
        font-size: 1.38rem;
        line-height: 1.38;
    }

    .about-copy p {
        font-size: 0.96rem;
        line-height: 1.68;
    }

    .about-copy p + p {
        margin-top: 15px;
    }
}


/* =========================================================
   RADIO YAŞAR ARSLAN
   ========================================================= */

body {
    padding-bottom: 106px;
}

.radio-player {
    position: fixed;
    left: 50%;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 3000;
    width: min(760px, calc(100% - 28px));
    min-height: 76px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto auto;
    gap: 14px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(229,189,116,0.22);
    border-radius: 22px;
    background:
        radial-gradient(circle at 88% 15%, rgba(26,116,236,0.18), transparent 33%),
        rgba(6, 20, 32, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 18px 56px rgba(0,0,0,0.44),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.radio-cover {
    width: 54px;
    height: 54px;
    border-radius: 13px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.30);
}

.radio-info {
    min-width: 0;
}

.radio-kicker {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px;
    color: var(--gold-light);
    font-size: 0.63rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    white-space: nowrap;
}

.radio-live-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: #e5bd74;
    box-shadow: 0 0 0 0 rgba(229,189,116,0.55);
}

.radio-player.is-playing .radio-live-dot {
    animation: radioPulse 1.6s infinite;
}

@keyframes radioPulse {
    0% { box-shadow: 0 0 0 0 rgba(229,189,116,0.52); }
    70% { box-shadow: 0 0 0 8px rgba(229,189,116,0); }
    100% { box-shadow: 0 0 0 0 rgba(229,189,116,0); }
}

.radio-track-line {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.radio-track-line strong {
    min-width: 0;
    overflow: hidden;
    color: #fff;
    font-size: 0.94rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.radio-track-line span {
    flex: 0 0 auto;
    color: rgba(255,255,255,0.56);
    font-size: 0.66rem;
    font-weight: 850;
}

.radio-controls {
    display: flex;
    align-items: center;
    gap: 7px;
}

.radio-control {
    width: 37px;
    height: 37px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 50%;
    color: #fff;
    background: rgba(255,255,255,0.055);
    font: inherit;
    font-size: 0.82rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.radio-control:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.11);
}

.radio-play {
    width: 43px;
    height: 43px;
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #0f62d1, #1788ef);
    box-shadow: 0 10px 24px rgba(12,104,219,0.32);
    font-size: 1rem;
}

.radio-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 37px;
    padding: 8px 13px;
    border: 1px solid rgba(229,189,116,0.24);
    border-radius: 999px;
    color: var(--gold-light);
    background: rgba(229,189,116,0.05);
    text-decoration: none;
    font-size: 0.73rem;
    font-weight: 900;
    transition: 0.2s ease;
}

.radio-buy:hover {
    background: rgba(229,189,116,0.11);
}

#radio-audio {
    display: none;
}

@media (max-width: 760px) {
    body {
        padding-bottom: 94px;
    }

    .radio-player {
        left: 10px;
        right: 10px;
        bottom: calc(8px + env(safe-area-inset-bottom));
        width: auto;
        min-height: 68px;
        transform: none;
        grid-template-columns: 46px minmax(0, 1fr) auto;
        gap: 10px;
        padding: 9px 10px;
        border-radius: 19px;
    }

    .radio-cover {
        width: 46px;
        height: 46px;
        border-radius: 11px;
    }

    .radio-kicker {
        font-size: 0.56rem;
        letter-spacing: 0.10em;
    }

    .radio-track-line strong {
        font-size: 0.84rem;
    }

    .radio-track-line span {
        display: none;
    }

    .radio-controls {
        gap: 5px;
    }

    .radio-control {
        display: none;
    }

    .radio-play {
        display: inline-block;
        width: 42px;
        height: 42px;
    }

    .radio-buy {
        display: none;
    }
}

@media (max-width: 390px) {
    .radio-player {
        left: 7px;
        right: 7px;
    }

    .radio-kicker {
        font-size: 0.52rem;
    }

    .radio-track-line strong {
        font-size: 0.80rem;
    }
}


/* =========================================================
   RADIO MOBILE — boutons précédent / lecture / suivant
   ========================================================= */

@media (max-width: 760px) {
    .radio-player {
        grid-template-columns: 46px minmax(0, 1fr) auto;
    }

    .radio-controls {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .radio-control {
        display: inline-block;
        width: 34px;
        height: 34px;
        font-size: 0.72rem;
    }

    .radio-play {
        display: inline-block;
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }

    .radio-buy {
        display: none;
    }
}

@media (max-width: 390px) {
    .radio-controls {
        gap: 3px;
    }

    .radio-control {
        width: 31px;
        height: 31px;
        font-size: 0.68rem;
    }

    .radio-play {
        width: 39px;
        height: 39px;
    }
}
