/* ============================================
   DJAKIS LE GRAND — Portfolio Premium
   Thème: Sombre + Or | Glassmorphisme
   Typo: Playfair Display + Inter + Space Grotesk
   ============================================ */

/* --- Variables & Tokens --- */
:root {
    --color-bg: #0a0a0f;
    --color-bg-alt: #111118;
    --color-bg-card: rgba(255, 255, 255, 0.03);
    --color-surface: #16161e;
    --color-text: #e8e6e3;
    --color-text-muted: #8a8a9a;
    --color-text-dim: #5a5a6a;
    --color-accent: #c9a84c;
    --color-accent-light: #e4c76b;
    --color-accent-dark: #a68a3a;
    --color-white: #ffffff;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-glass: rgba(255, 255, 255, 0.04);
    --color-glass-border: rgba(255, 255, 255, 0.08);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    --nav-height: 80px;
    --container-max: 1200px;
    --container-wide: 1400px;

    --particle-color: 201, 168, 76;
}

/* --- Mode Clair --- */
[data-theme="light"] {
    --color-bg: #f5f3ef;
    --color-bg-alt: #eae7e1;
    --color-bg-card: rgba(0, 0, 0, 0.03);
    --color-surface: #e0ddd6;
    --color-text: #1a1a1f;
    --color-text-muted: #555560;
    --color-text-dim: #7a7a88;
    --color-accent: #a68a3a;
    --color-accent-light: #c9a84c;
    --color-accent-dark: #8a7030;
    --color-white: #1a1a1f;
    --color-border: rgba(0, 0, 0, 0.1);
    --color-glass: rgba(255, 255, 255, 0.6);
    --color-glass-border: rgba(0, 0, 0, 0.08);
    --particle-color: 140, 120, 50;
}

[data-theme="light"] .title-outline {
    -webkit-text-stroke-color: var(--color-accent);
}

[data-theme="light"] #navbar.scrolled {
    background: rgba(245, 243, 239, 0.9);
}

[data-theme="light"] .mobile-menu {
    background: rgba(245, 243, 239, 0.97);
}

[data-theme="light"] .cursor-dot {
    background: var(--color-accent);
}

[data-theme="light"] .cursor-ring {
    border-color: rgba(0, 0, 0, 0.3);
    mix-blend-mode: normal;
}

[data-theme="light"] .cursor-dot {
    mix-blend-mode: normal;
}

[data-theme="light"] .vinyl-disc {
    background: radial-gradient(circle at center,
        #ccc 20%, #ddd 21%, #ccc 22%,
        #ddd 40%, #ccc 41%, #ddd 60%, #ccc 61%
    );
    border-color: #bbb;
}

[data-theme="light"] .album-cover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .video-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .service-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .image-placeholder,
[data-theme="light"] .album-placeholder,
[data-theme="light"] .video-placeholder,
[data-theme="light"] .gallery-placeholder {
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-alt) 100%);
}

[data-theme="light"] ::selection {
    background: rgba(166, 138, 58, 0.3);
    color: #1a1a1f;
}

[data-theme="light"] ::-webkit-scrollbar-track {
    background: var(--color-bg);
}

[data-theme="light"] .btn-primary:hover {
    box-shadow: 0 10px 40px rgba(166, 138, 58, 0.3);
}

[data-theme="light"] .btn-submit:hover {
    box-shadow: 0 10px 40px rgba(166, 138, 58, 0.3);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

body.loading {
    overflow: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.loader-brand {
    margin-bottom: 2rem;
}

.loader-logo-img {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--color-border);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    border-radius: 2px;
    transition: width 0.3s ease;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* --- Custom Cursor --- */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-white);
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    transition: width 0.3s var(--ease-out-expo),
                height 0.3s var(--ease-out-expo),
                border-color 0.3s;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--color-accent);
}

@media (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

#navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--color-border);
}

.nav-container {
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.nav-logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 1001;
}

.nav-cta {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-bg);
    background: var(--color-accent);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
    transition: background 0.3s, transform 0.3s;
}

.nav-cta:hover {
    background: var(--color-accent-light);
    transform: translateY(-1px);
}

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: rotate(15deg);
}

.theme-toggle i {
    transition: transform 0.5s var(--ease-out-expo);
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    padding: 4px 0;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-out-expo), visibility 0.5s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 1.5rem;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s var(--ease-out-expo), opacity 0.5s;
}

.mobile-menu.active .mobile-nav-links li {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-nav-links li:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-nav-links li:nth-child(8) { transition-delay: 0.45s; }

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--color-text);
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--color-accent);
}

.mobile-social {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s 0.5s;
}

.mobile-menu.active .mobile-social {
    opacity: 1;
}

.mobile-social a {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.mobile-social a:hover {
    color: var(--color-accent);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg);
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-logo-img {
    display: block;
    margin: 0 auto;
    width: clamp(260px, 55vw, 650px);
    height: auto;
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.15));
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Boutons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-bg);
    background: var(--color-accent);
    padding: 1rem 2rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.25);
}

.btn-primary i {
    transition: transform 0.3s;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 1rem 2rem;
    border-radius: 100px;
    border: 1px solid var(--color-border);
    letter-spacing: 0.05em;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.btn-ghost:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(201, 168, 76, 0.05);
}

/* Hero Social */
.hero-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-social a {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    transition: color 0.3s, transform 0.3s;
}

.hero-social a:hover {
    color: var(--color-accent);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-scroll span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--color-text-dim);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

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

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* --- Sections --- */
.section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    position: relative;
}

.section-dark {
    background: var(--color-bg-alt);
    transition: background-color 0.4s ease;
}

.section-header {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-white);
}

.section-title em {
    font-style: italic;
    color: var(--color-accent);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
    max-width: 500px;
}

/* --- Reveal Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo),
                transform 0.8s var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.about-image {
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
}

.image-frame {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-surface);
}

.image-placeholder,
.album-placeholder,
.video-placeholder,
.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    height: 100%;
    color: var(--color-text-dim);
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-alt) 100%);
}

.image-placeholder i,
.album-placeholder i,
.video-placeholder i,
.gallery-placeholder i {
    font-size: 2.5rem;
    color: var(--color-accent);
    opacity: 0.5;
}

.image-placeholder span,
.album-placeholder span,
.video-placeholder span,
.gallery-placeholder span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 15, 0.5));
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.25rem 0.5rem;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* About Text */
.about-origin {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.biography p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.biography-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s var(--ease-out-expo);
}

.biography-expanded.show {
    max-height: 1000px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-accent);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    transition: gap 0.3s;
}

.read-more-btn:hover {
    gap: 0.75rem;
}

.read-more-btn i {
    font-size: 0.7rem;
    transition: transform 0.4s var(--ease-out-expo);
}

.read-more-btn.active i {
    transform: rotate(180deg);
}

/* Influences */
.influences {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.influences h4 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.influence-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    padding: 0.4rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.tag:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(201, 168, 76, 0.05);
}

/* --- Music Section --- */
.album-showcase {
    margin-bottom: 3rem;
}

.album-cover-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.album-cover {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.vinyl-disc {
    position: absolute;
    right: -30%;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        #1a1a1a 20%,
        #2a2a2a 21%,
        #1a1a1a 22%,
        #2a2a2a 40%,
        #1a1a1a 41%,
        #2a2a2a 60%,
        #1a1a1a 61%
    );
    border: 2px solid #333;
    z-index: -1;
    transition: right 0.5s var(--ease-out-expo);
    animation: spin 8s linear infinite;
    animation-play-state: paused;
}

.album-cover:hover .vinyl-disc {
    right: -50%;
    animation-play-state: running;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Album Slider */
.album-slider {
    position: relative;
    cursor: default;
}

.album-slides-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s var(--ease-out-expo);
    will-change: transform;
}

.album-slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.album-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out-expo);
}

.album-slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0.75rem;
    background: rgba(10, 10, 15, 0.65);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.album-slider:hover .album-slide-label {
    opacity: 1;
}

.album-slide-prev,
.album-slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background: rgba(10, 10, 15, 0.55);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s;
}

.album-slide-prev { left: 8px; }
.album-slide-next { right: 8px; }

.album-slider:hover .album-slide-prev,
.album-slider:hover .album-slide-next {
    opacity: 1;
}

.album-slide-prev:hover,
.album-slide-next:hover {
    background: rgba(201, 168, 76, 0.3);
    border-color: var(--color-accent);
}

/* Always visible on touch devices */
@media (pointer: coarse) {
    .album-slide-prev,
    .album-slide-next {
        opacity: 0.8;
    }
}

.album-slide-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.album-slide-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.album-slide-dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
}

.album-meta .album-year {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.album-meta .album-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.album-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    transition: all 0.3s;
}

.platform-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(201, 168, 76, 0.05);
}

/* Tracklist */
.tracklist {
    display: flex;
    flex-direction: column;
}

.track {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
}

.track:hover {
    background: var(--color-glass);
    transform: translateX(4px);
}

.track:first-child {
    border-top: 1px solid var(--color-border);
}

.track-number {
    position: relative;
    width: 40px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-text {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-text-dim);
    transition: opacity 0.2s;
}

.track-info {
    flex-shrink: 0;
    min-width: 0;
    width: clamp(110px, 22%, 200px);
}

.track-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-duration {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-dim);
    transition: opacity 0.3s;
}

/* Progress bar (visible only when playing) */
.track-progress-wrap {
    flex: 1;
    display: none;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
}

.track.playing .track-progress-wrap {
    display: flex;
}

.track-seek {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 3px;
    background: var(--color-border);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    transition: height 0.2s;
    min-width: 60px;
}

.track-seek:hover {
    height: 5px;
}

.track-seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(201, 168, 76, 0.4);
}

.track-seek::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.track-seek::-webkit-slider-runnable-track {
    background: linear-gradient(
        to right,
        var(--color-accent) 0%,
        var(--color-accent) var(--progress, 0%),
        var(--color-border) var(--progress, 0%),
        var(--color-border) 100%
    );
    height: 3px;
    border-radius: 2px;
}

.track-times {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.track-sep {
    color: var(--color-text-dim);
}

/* Track actions (play + download) */
.track-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    transition: all 0.3s;
}

.play-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(201, 168, 76, 0.1);
}

.track.playing .play-btn {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg);
}

.track.playing .number-text {
    opacity: 0;
    pointer-events: none;
}

.track.playing .track-duration {
    opacity: 0;
}

.track.playing .track-number {
    color: var(--color-accent);
}

.track audio {
    display: none;
}

/* Credits Accordion */
.credits-accordion {
    margin-top: 3rem;
}

.credits-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: all 0.3s;
}

.credits-toggle:hover {
    border-color: var(--color-accent);
    color: var(--color-text);
}

.credits-toggle i {
    transition: transform 0.4s var(--ease-out-expo);
}

.credits-toggle.active i {
    transform: rotate(180deg);
}

.credits-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease-out-expo);
}

.credits-content.show {
    max-height: 1500px;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem 1.5rem;
}

.credit-block h4 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.credit-block ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credit-block li {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.credit-block li strong {
    color: var(--color-text);
    font-weight: 500;
}

/* --- Videos Section --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-card-featured {
    grid-column: 1 / -1;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--color-bg-alt);
}

.video-card-featured .video-wrapper {
    aspect-ratio: 21/9;
}

.video-placeholder i {
    font-size: 3rem;
    transition: transform 0.3s;
}

.video-card:hover .video-placeholder i {
    transform: scale(1.1);
}

.video-info {
    padding: 1.25rem 1.5rem;
}

.video-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.video-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ============================================
   INTERVIEWS SECTION
   ============================================ */

.interview-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.interview-photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.interview-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out-expo);
}

.interview-photo:hover img {
    transform: scale(1.05);
}

.interview-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.interview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.interview-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--color-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-glass-border);
    border-radius: 12px;
    transition: transform 0.3s, border-color 0.3s;
}

.interview-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
}

.interview-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    color: var(--color-accent);
    font-size: 1.25rem;
}

.interview-info {
    flex: 1;
    min-width: 0;
}

.interview-type {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

.interview-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.interview-info p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
}

.interview-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--color-accent);
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.interview-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

@media (max-width: 768px) {
    .interview-photos {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .interview-photo {
        aspect-ratio: 4 / 3;
    }
    .interview-card {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .interview-info h3 {
        white-space: normal;
    }
    .interview-link {
        width: 100%;
        justify-content: center;
    }
}

/* --- Gallery Section --- */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-placeholder {
    transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-white);
    transform: translateY(10px);
    transition: transform 0.4s var(--ease-out-expo);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    padding: 2.5rem 2rem;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s var(--ease-out-expo), border-color 0.3s, box-shadow 0.4s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s;
}

.service-card:hover .service-icon {
    background: rgba(201, 168, 76, 0.2);
}

.service-icon i {
    font-size: 1.25rem;
    color: var(--color-accent);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --- Testimonials Section --- */
.testimonials-slider {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s var(--ease-out-expo);
}

.testimonial-card {
    min-width: 100%;
    padding: clamp(2rem, 4vw, 3rem);
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.testimonial-quote {
    margin-bottom: 1.5rem;
}

.testimonial-quote i {
    font-size: 1.5rem;
    color: var(--color-accent);
    opacity: 0.5;
}

.testimonial-card > p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dim);
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    transition: all 0.3s;
}

.testimonial-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.testimonial-dots .dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card {
    padding: 1.5rem;
    border-radius: 14px;
}

.glass {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-card-icon i {
    color: var(--color-accent);
    font-size: 1rem;
}

.contact-card h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-dim);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-card a,
.contact-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: block;
    transition: color 0.3s;
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--color-accent);
}

.contact-social {
    padding-top: 1rem;
}

.contact-social h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-dim);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.social-row {
    display: flex;
    gap: 1rem;
}

.social-row a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 1rem;
    transition: all 0.3s;
}

.social-row a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(201, 168, 76, 0.05);
}

/* Contact Form */
.contact-form {
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 16px;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    outline: none;
    resize: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 0.85rem;
    color: var(--color-text-dim);
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -0.25rem;
    font-size: 0.7rem;
    color: var(--color-accent);
    letter-spacing: 0.05em;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease-out-expo);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

.btn-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-bg);
    background: var(--color-accent);
    padding: 1rem 2rem;
    border: none;
    border-radius: 100px;
    letter-spacing: 0.05em;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.25);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeInUp 0.5s var(--ease-out-expo);
}

.success-message i {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.success-message h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.form-error {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #e05555;
    text-align: center;
    animation: fadeInUp 0.3s var(--ease-out-expo);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Boutons révélation contact anti-spam */
.reveal-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-accent);
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 100px;
    cursor: pointer;
    background: rgba(201, 168, 76, 0.05);
    transition: background 0.3s, border-color 0.3s;
}

.reveal-contact-btn:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--color-accent);
}

.contact-revealed-link {
    display: block;
    font-size: 0.9rem;
    color: var(--color-accent);
    text-decoration: none;
    word-break: break-all;
    transition: opacity 0.3s;
    animation: fadeInUp 0.3s var(--ease-out-expo);
}

.contact-revealed-link:hover {
    opacity: 0.8;
}

/* --- Footer --- */
footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    line-height: 1;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--color-text-dim);
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

.footer-credit strong {
    color: var(--color-accent);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .about-image {
        position: static;
        max-width: 400px;
    }

    .album-cover-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .album-cover {
        max-width: 300px;
    }

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

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

    /* Formulaire en premier sur mobile */
    .contact-form { order: 1; }
    .contact-info-col { order: 2; }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 768px) {
    .hero-badge {
        font-size: 0.65rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .video-card-featured .video-wrapper {
        aspect-ratio: 16/9;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-scroll {
        display: none;
    }

    .section {
        padding: 4rem 0;
    }

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

/* --- Selection --- */
::selection {
    background: rgba(201, 168, 76, 0.3);
    color: var(--color-white);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--color-accent-dark);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* ============================================
   WAVEFORM ANIMATION — Lecteur Audio
   ============================================ */

/* Waveform : 5 barres qui dansent pendant la lecture */
.track-waveform {
    position: absolute;
    inset: 0;
    display: none;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    height: 22px;
    padding-bottom: 1px;
}

.track.playing .track-waveform {
    display: flex;
}

.track-waveform span {
    display: block;
    width: 3px;
    background: var(--color-accent);
    border-radius: 2px 2px 0 0;
    transform-origin: bottom;
    animation: waveBar 0.7s ease-in-out infinite alternate;
}

.track-waveform span:nth-child(1) { animation-delay: 0s;     min-height: 6px; height: 60%; }
.track-waveform span:nth-child(2) { animation-delay: 0.14s;  min-height: 6px; height: 100%; }
.track-waveform span:nth-child(3) { animation-delay: 0.28s;  min-height: 6px; height: 40%; }
.track-waveform span:nth-child(4) { animation-delay: 0.42s;  min-height: 6px; height: 80%; }
.track-waveform span:nth-child(5) { animation-delay: 0.56s;  min-height: 6px; height: 55%; }

@keyframes waveBar {
    0%   { transform: scaleY(0.25); opacity: 0.6; }
    100% { transform: scaleY(1);    opacity: 1;   }
}

/* Pause l'animation quand le titre est en pause */
.track.paused .track-waveform span {
    animation-play-state: paused;
}

/* ============================================
   BANDCAMP CTA (after 30s preview)
   ============================================ */

.bandcamp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    margin-top: 0.5rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--color-accent);
    border-radius: 8px;
    animation: bandcampFadeIn 0.4s ease-out;
}

.bandcamp-cta span {
    color: var(--color-text);
    font-size: 0.85rem;
}

.bandcamp-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: var(--color-accent);
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bandcamp-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

@keyframes bandcampFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   GALLERY IMAGES RÉELLES
   ============================================ */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* ============================================
   VIGNETTES YOUTUBE (façade cliquable + embed)
   ============================================ */

.video-thumb-link {
    display: block;
    position: absolute;
    inset: 0;
    overflow: hidden;
    cursor: pointer;
}

/* Iframe embarquée au clic */
.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 0;
    z-index: 5;
}

.video-thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease-out-expo), filter 0.4s;
    filter: brightness(0.85);
}

.video-thumb-link:hover img {
    transform: scale(1.04);
    filter: brightness(0.65);
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transition: opacity 0.35s;
}

.video-thumb-link:hover .video-play-overlay {
    opacity: 1;
}

.yt-play-btn {
    width: 64px;
    height: 64px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s var(--ease-out-expo), background 0.3s;
}

.video-thumb-link:hover .yt-play-btn {
    transform: scale(1.12);
    background: #ff0000;
}

.video-play-overlay span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: #fff;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

/* Badge "play" permanent sur la vignette (discret) */
.video-card .video-wrapper::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 0, 0, 0.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/18px no-repeat;
    border-radius: 6px;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 2;
}

.video-card:hover .video-wrapper::after {
    opacity: 0;
}

/* ============================================
   TRACK — RESPONSIVE MOBILE
   ============================================ */

@media (max-width: 600px) {
    .track {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 1rem;
    }

    .track-info {
        width: auto;
        flex: 1;
    }

    .track-progress-wrap {
        order: 10;
        width: 100%;
        flex-basis: 100%;
    }

    .track-times {
        font-size: 0.65rem;
    }

    .track-seek {
        min-width: 40px;
    }
}

/* ============================================
   LIGHTBOX GALERIE — Modal avec zoom
   ============================================ */

.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(4px);
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.gallery-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.4s var(--ease-out-expo);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

#galleryModalImage {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10000;
}

.gallery-modal-close:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.gallery-modal-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10000;
}

.gallery-modal-prev,
.gallery-modal-next {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.1);
}

/* Masquer les contrôles si une seule image */
.gallery-modal.single .gallery-modal-controls {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    #galleryModalImage {
        max-height: 80vh;
    }

    .gallery-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .gallery-modal-prev,
    .gallery-modal-next {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* ============================================================
   ============================================================
   V2 — REFINEMENTS MOBILE-FIRST + COUCHE IMMERSIVE
   Ajoute sans casser l'existant. Tout est surchargeable.
   ============================================================
   ============================================================ */

/* --- Tokens additionnels --- */
:root {
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --tap-target: 44px;
    --glow-accent: 0 0 30px rgba(201, 168, 76, 0.35);
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.25);
    --gradient-aurora:
        radial-gradient(60% 50% at 20% 10%, rgba(201, 168, 76, 0.10), transparent 60%),
        radial-gradient(50% 40% at 90% 80%, rgba(201, 168, 76, 0.08), transparent 60%),
        radial-gradient(40% 30% at 50% 50%, rgba(120, 80, 40, 0.06), transparent 60%);
}

[data-theme="light"] {
    --gradient-aurora:
        radial-gradient(60% 50% at 20% 10%, rgba(166, 138, 58, 0.18), transparent 60%),
        radial-gradient(50% 40% at 90% 80%, rgba(166, 138, 58, 0.12), transparent 60%);
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.10);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* ============================================================
   1. SCROLL PROGRESS BAR — fine ligne or en haut de page
   ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent), var(--color-accent-light));
    z-index: 1100;
    transition: width 0.05s linear;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
    pointer-events: none;
}

/* ============================================================
   2. AURORA — gradient animé derrière les sections sombres
   ============================================================ */
.section-dark {
    position: relative;
    isolation: isolate;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-aurora);
    opacity: 0.9;
    z-index: -1;
    pointer-events: none;
    animation: aurora-drift 22s ease-in-out infinite alternate;
}

@keyframes aurora-drift {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(2%, -1%, 0) scale(1.05); }
    100% { transform: translate3d(-2%, 1%, 0) scale(1.02); }
}

/* Hero aussi avec aurora discrète */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(50% 50% at 50% 100%, rgba(201, 168, 76, 0.10), transparent 70%),
        radial-gradient(80% 60% at 50% 0%, rgba(10, 10, 15, 0.4), transparent 80%);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* ============================================================
   3. MARQUEE BAND — bandeau défilant entre sections
   ============================================================ */
.marquee {
    overflow: hidden;
    border-block: 1px solid var(--color-border);
    background: var(--color-bg);
    padding: clamp(1.25rem, 3vw, 2rem) 0;
}

.marquee-track {
    display: flex;
    gap: clamp(1.5rem, 4vw, 3rem);
    width: max-content;
    animation: marquee-roll 35s linear infinite;
    will-change: transform;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
}

.marquee-item.outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--color-accent);
    text-stroke: 1.5px var(--color-accent);
}

.marquee-item .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

@keyframes marquee-roll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   4. HERO — viewport mobile correct + typographie
   ============================================================ */
.hero {
    min-height: 100vh;
    min-height: 100svh; /* iOS Safari sans saut quand barre apparaît */
}

@supports (height: 100dvh) {
    .hero {
        min-height: 100dvh;
    }
}

/* Réduire la taille du titre sur écran étroit */
@media (max-width: 600px) {
    .title-line {
        font-size: clamp(2.6rem, 14vw, 5rem);
        letter-spacing: -0.025em;
    }
    .hero-badge {
        font-size: 0.7rem;
        margin-bottom: 1.25rem;
    }
    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .hero-actions {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    .btn-primary,
    .btn-ghost {
        padding: 0.85rem 1.5rem;
        font-size: 0.8rem;
        flex: 1;
        justify-content: center;
        min-height: var(--tap-target);
    }
    .hero-content {
        padding: 1.5rem;
        padding-top: max(1.5rem, var(--safe-top));
    }
    .hero-social a {
        font-size: 1.3rem;
        padding: 0.5rem;
        min-width: var(--tap-target);
        min-height: var(--tap-target);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* ============================================================
   5. NAVIGATION — touch friendly + safe-area
   ============================================================ */
#navbar {
    padding-top: var(--safe-top);
}

.hamburger {
    width: var(--tap-target);
    height: var(--tap-target);
    align-items: center;
    justify-content: center;
}

.theme-toggle {
    width: var(--tap-target);
    height: var(--tap-target);
}

@media (max-width: 1024px) {
    .nav-right {
        gap: 0.5rem;
    }
    .logo-full {
        display: none;
    }
}

/* Mobile menu — ajout contour or qui pulse */
.mobile-nav-links a {
    position: relative;
    padding: 0.4rem 0;
    display: inline-block;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transform: translateX(-50%);
    transition: width 0.4s var(--ease-out-expo);
}

.mobile-nav-links a:hover::before,
.mobile-nav-links a:active::before {
    width: 60%;
}

/* ============================================================
   6. SECTIONS — padding mobile + headers optimisés
   ============================================================ */
@media (max-width: 768px) {
    .section {
        padding: 4.5rem 0;
    }
    .container {
        padding: 0 1.25rem;
    }
    .section-header {
        margin-bottom: 2.5rem;
    }
    .section-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }
}

/* ============================================================
   7. ABOUT — image mobile centrée, stats lisibles
   ============================================================ */
@media (max-width: 1024px) {
    .about-image {
        max-width: 360px;
        margin: 0 auto;
    }
    .about-stats {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .about-stats {
        gap: 0.5rem;
    }
    .stat {
        padding: 1rem 0.4rem;
    }
    .stat-number {
        font-size: 1.6rem;
    }
    .stat-label {
        font-size: 0.6rem;
    }
}

/* ============================================================
   8. ALBUM COVER — tilt parallaxe + ombre dorée
   ============================================================ */
.album-cover-wrapper {
    perspective: 1200px;
}

.album-cover {
    transform-style: preserve-3d;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.4s;
    will-change: transform;
}

.album-cover.tilt {
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(201, 168, 76, 0.15);
}

/* Vinyl visible et tournant en permanence (subtil) */
.vinyl-disc {
    animation: spin 12s linear infinite;
    animation-play-state: running;
    opacity: 0.95;
}

/* Quand un track joue, le vinyl tourne plus vite + glow */
.album-cover.is-playing .vinyl-disc {
    animation-duration: 4s;
    box-shadow: 0 0 50px rgba(201, 168, 76, 0.45);
}

.album-cover.is-playing {
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(201, 168, 76, 0.25);
}

/* ============================================================
   9. TRACKLIST — refonte mobile complète + glow on play
   ============================================================ */
.track {
    position: relative;
    overflow: hidden;
}

/* Ligne or qui apparaît à gauche au survol et quand on joue */
.track::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: var(--color-accent);
    transform: translateY(-50%);
    transition: height 0.4s var(--ease-out-expo);
    border-radius: 2px;
}

.track:hover::before {
    height: 60%;
}

.track.playing::before {
    height: 80%;
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.7);
}

.track.playing {
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.08), transparent 70%);
}

/* Touch target play button */
.play-btn {
    min-width: var(--tap-target);
    min-height: var(--tap-target);
    width: var(--tap-target);
    height: var(--tap-target);
}

/* Mobile : restructuration complète de la track */
@media (max-width: 600px) {
    .track {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "num  info actions"
            "prog prog prog";
        gap: 0.5rem 0.75rem;
        padding: 1rem 0.85rem;
        align-items: center;
    }
    .track-number   { grid-area: num; width: 32px; }
    .track-info     { grid-area: info; width: auto; min-width: 0; }
    .track-actions  { grid-area: actions; gap: 0.4rem; }
    .track-progress-wrap { grid-area: prog; padding-top: 0.25rem; }

    .track-info h3 {
        font-size: 0.95rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .track-duration {
        font-size: 0.7rem;
    }
    .number-text {
        font-size: 0.75rem;
    }
    .track:hover {
        transform: none; /* éviter le décalage horizontal sur mobile */
    }
}

/* ============================================================
   10. ALBUM SHOWCASE — layout mobile recentré
   ============================================================ */
@media (max-width: 1024px) {
    .album-cover-wrapper {
        justify-items: center;
        text-align: center;
    }
    .album-cover {
        max-width: 280px;
        margin: 0 auto;
    }
    .album-platforms {
        justify-content: center;
    }
}

/* ============================================================
   11. VIDEOS GRID — pas de débordement < 340px
   ============================================================ */
@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .video-card-featured .video-wrapper {
        aspect-ratio: 16/9;
    }
    .yt-play-btn {
        width: 56px;
        height: 56px;
    }
}

/* ============================================================
   12. GALLERY — masonry mobile à 2 colonnes (plus dense)
   ============================================================ */
@media (max-width: 768px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 0.6rem;
    }
    .gallery-item-tall {
        grid-row: span 2;
    }
    .gallery-item-wide {
        grid-column: span 2;
    }
}

@media (max-width: 380px) {
    .gallery-masonry {
        grid-auto-rows: 140px;
        gap: 0.4rem;
    }
}

/* Overlay galerie : visible aussi au tap mobile */
.gallery-item:focus-visible .gallery-overlay,
.gallery-item:active .gallery-overlay {
    opacity: 1;
}

/* ============================================================
   13. SERVICES — espacement mobile
   ============================================================ */
@media (max-width: 480px) {
    .service-card {
        padding: 1.75rem 1.5rem;
    }
    .service-icon {
        width: 48px;
        height: 48px;
    }
}

/* ============================================================
   14. TESTIMONIALS — boutons tap-friendly
   ============================================================ */
.testimonial-btn {
    min-width: var(--tap-target);
    min-height: var(--tap-target);
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.75rem 1.5rem;
    }
}

/* ============================================================
   15. FORMULAIRE — meilleur padding tactile
   ============================================================ */
.form-group input,
.form-group textarea {
    font-size: 16px; /* éviter le zoom auto iOS */
    padding: 1rem 0 0.75rem;
}

.btn-submit {
    min-height: var(--tap-target);
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.75rem 1.25rem;
    }
}

/* ============================================================
   16. FOOTER — safe-area iPhone
   ============================================================ */
footer {
    padding-bottom: calc(2rem + var(--safe-bottom));
}

/* ============================================================
   17. STICKY MINI-PLAYER — visible sur mobile quand on joue
   ============================================================ */
.mini-player {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: calc(1rem + var(--safe-bottom));
    z-index: 950;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    background: rgba(15, 15, 22, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: 14px;
    box-shadow: var(--shadow-soft), 0 0 30px rgba(201, 168, 76, 0.15);
    transform: translateY(calc(100% + 1rem + var(--safe-bottom)));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s var(--ease-out-expo), opacity 0.3s;
    max-width: 480px;
    margin-inline: auto;
}

[data-theme="light"] .mini-player {
    background: rgba(245, 243, 239, 0.92);
}

.mini-player.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mini-player-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--color-accent);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.mini-player-thumb i {
    animation: spin 4s linear infinite;
    animation-play-state: paused;
}

.mini-player.playing .mini-player-thumb i {
    animation-play-state: running;
}

.mini-player-info {
    flex: 1;
    min-width: 0;
}

.mini-player-info .mp-title {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-player-info .mp-artist {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mini-player-controls {
    display: flex;
    gap: 0.25rem;
}

.mini-player-controls button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.mini-player-controls button:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.mini-player-controls button:active {
    transform: scale(0.92);
}

.mini-player-controls .mp-play {
    background: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
}

.mini-player-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--color-accent);
    border-radius: 0 0 14px 14px;
    transition: width 0.1s linear;
}

/* Le mini-player ne doit pas exister sur très grand écran */
@media (min-width: 1025px) {
    .mini-player {
        max-width: 420px;
        left: auto;
        right: 1.5rem;
        bottom: 1.5rem;
        margin: 0;
    }
}

/* ============================================================
   18. BUTTONS — magnetic effect surface (JS pousse les variables)
   ============================================================ */
.btn-primary,
.btn-ghost,
.nav-cta,
.btn-submit {
    --mx: 0;
    --my: 0;
    transform: translate(var(--mx), var(--my));
    will-change: transform;
}

@media (pointer: coarse) {
    .btn-primary,
    .btn-ghost,
    .nav-cta,
    .btn-submit {
        --mx: 0 !important;
        --my: 0 !important;
    }
}

/* ============================================================
   19. FOCUS-VISIBLE — accessibilité clavier
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.track:focus-visible,
.gallery-item:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 8px;
}

/* ============================================================
   20. PERF MOBILE — désactiver effets coûteux
   ============================================================ */
@media (max-width: 768px) {
    /* Désactive le glassmorphisme (couteux GPU) sur petit écran */
    #navbar.scrolled,
    .mobile-menu,
    .stat,
    .service-card,
    .testimonial-card,
    .glass,
    .contact-form {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    /* Réduire les ombres lourdes */
    .video-card:hover,
    .service-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }

    /* Aurora plus discrète sur mobile */
    .section-dark::before {
        opacity: 0.5;
    }
}

/* ============================================================
   21. PREFERS-REDUCED-MOTION — respect des préférences user
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .vinyl-disc,
    .marquee-track,
    .section-dark::before,
    .scroll-line::after,
    .loader-progress {
        animation: none !important;
    }

    .reveal-up {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================================
   22. IMAGES — placeholder propre + ratio
   ============================================================ */
.image-placeholder img,
.album-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.image-placeholder span,
.album-placeholder span,
.image-placeholder i,
.album-placeholder i {
    position: relative;
    z-index: 0;
}

/* Quand l'image charge, on cache le placeholder text */
.image-placeholder:has(img[src]),
.album-placeholder:has(img[src]) {
    color: transparent;
}

.image-placeholder:has(img[src]) i,
.album-placeholder:has(img[src]) i {
    display: none;
}

/* ============================================================
   23. TRANSITIONS DE SECTIONS — léger fondu top/bottom
   ============================================================ */
.section + .section-dark,
.section-dark + .section {
    position: relative;
}

.section-dark::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--color-bg) 100%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

/* ============================================================
   24. SCROLL — momentum iOS
   ============================================================ */
html {
    -webkit-text-size-adjust: 100%;
}

body {
    -webkit-overflow-scrolling: touch;
}

/* ============================================================
   25. PICTURE — élément transparent au layout
   ============================================================ */
picture {
    display: contents;
}

/* End V2 ============================================ */
