/* ═══════════════════════════════════════════
   ART INFO FRANCE — MAIN STYLESHEET
   Design: Editorial Luxury V2
   Fonts: Cormorant Garamond · DM Sans · JetBrains Mono
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ═══ VARIABLES — SINGLE SOURCE OF TRUTH ═══ */
:root {
    --gold: #b8922d;
    --gold-bright: #d4a832;
    --gold-pale: #e8d898;
    --gold-very-light: #f7f2e6;
    --gold-bg: rgba(184, 146, 45, 0.04);
    --black: #0a0a0a;
    --white: #fff;
    --off-white: #faf9f6;
    --cream: #f5f3ee;
    --gray-light: #e8e6e0;
    --gray-mid: #8a8780;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}


/* ═══ RESET & BASE ═══ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    background: var(--off-white);
    color: var(--black);
    min-height: 100vh;
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--white); }


/* ═══ KUSAMA BACKGROUND & SPHERES ═══ */
.kusama-bg {
    position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
}
.kusama-bg .dot { position: absolute; border-radius: 50%; background: var(--gold); }
.sphere { position: fixed; border-radius: 50%; pointer-events: none; z-index: 1; }
.sphere-1 {
    width: 180px; height: 180px; top: 120px; right: -40px;
    background: radial-gradient(circle at 35% 35%, #fff 0%, var(--gold-pale) 25%, var(--gold) 60%, #8a6914 100%);
    box-shadow: inset -20px -20px 40px rgba(0,0,0,0.15), 0 20px 60px rgba(200,160,51,0.2);
    animation: floatSlow 16s ease-in-out infinite; opacity: 0.25;
}
.sphere-2 {
    width: 100px; height: 100px; top: 500px; left: -20px;
    background: radial-gradient(circle at 30% 30%, #fff 0%, #ffb6c1 30%, #ff69b4 70%, #c2185b 100%);
    box-shadow: inset -12px -12px 24px rgba(0,0,0,0.12), 0 12px 40px rgba(255,105,180,0.15);
    animation: floatSlow 20s ease-in-out infinite reverse; opacity: 0.18;
}
.sphere-3 {
    width: 60px; height: 60px; top: 300px; left: 8%;
    background: radial-gradient(circle at 35% 35%, #fff 0%, #b3e5fc 30%, #039be5 70%, #01579b 100%);
    box-shadow: inset -8px -8px 16px rgba(0,0,0,0.1), 0 8px 24px rgba(3,155,229,0.12);
    animation: floatSlow 13s ease-in-out infinite; opacity: 0.15;
}
.sphere-4 {
    width: 130px; height: 130px; bottom: 200px; right: 5%;
    background: radial-gradient(circle at 30% 30%, #fff 0%, #ffe082 25%, #ffb300 60%, #e65100 100%);
    box-shadow: inset -16px -16px 32px rgba(0,0,0,0.12), 0 16px 48px rgba(255,179,0,0.15);
    animation: floatSlow 18s ease-in-out infinite; opacity: 0.15;
}
@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(3deg); }
}


/* ═══ HEADER ═══ */
header { position: relative; z-index: 10; padding: 64px 24px 44px; text-align: center; }
.header-dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; }
.header-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); opacity: 0.25; }
.header-dots span:nth-child(3) { opacity: 0.8; transform: scale(1.5); }
h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 300; line-height: 0.88;
    color: var(--black); letter-spacing: 0.02em;
    display: inline-block; text-align: center;
}
.art-word { font-weight: 700; }
.info-word { font-weight: 300; color: var(--gold); }
.dot-sep-logo {
    display: inline-block; width: 12px; height: 12px;
    background: var(--gold); border-radius: 50%;
    vertical-align: middle; margin: 0 12px;
    position: relative; top: -4px;
    box-shadow: 0 0 20px rgba(184,146,45,0.3);
}
.france-word {
    display: block; font-family: var(--font-mono);
    font-size: 0.15em; font-weight: 500;
    letter-spacing: 0.5em; color: var(--gray-mid); margin-top: 14px;
}
.subtitle-block { margin-top: 22px; }
.subtitle-fr { font-family: var(--font-display); font-size: 1.25rem; font-weight: 300; font-style: italic; color: var(--black); letter-spacing: 0.02em; }
.subtitle-en { font-family: var(--font-display); font-size: 0.95rem; font-weight: 300; font-style: italic; color: var(--gray-mid); margin-top: 4px; }
.tagline {
    font-family: var(--font-mono); font-size: 0.55rem;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gray-mid); margin-top: 22px; font-weight: 400;
}
.tagline .sep { display: inline-block; width: 18px; height: 1px; background: var(--gold); vertical-align: middle; margin: 0 10px; }


/* ═══ CITATION DU JOUR ═══ */
.quote-du-jour {
    max-width: 600px; margin: 24px auto 0; text-align: center;
    opacity: 0; transform: translateY(8px);
    animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.quote-du-jour-text {
    font-family: var(--font-display); font-size: 1.15rem;
    font-weight: 400; font-style: italic; color: #c62828;
    line-height: 1.5; position: relative; padding: 0 20px;
}
.quote-du-jour-text::before {
    content: '\201C'; font-family: var(--font-display);
    font-size: 2.5rem; color: #c62828;
    position: absolute; left: -4px; top: -12px; opacity: 0.5; line-height: 1;
}
.quote-du-jour-author { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 10px; }
.quote-du-jour-author span { color: var(--gray-mid); font-weight: 400; }


/* ═══ HEADER CTA BUTTONS ═══ */
.header-cta { display: flex; justify-content: center; gap: 22px; margin-top: 28px; flex-wrap: wrap; position: relative; z-index: 10; }
.header-cta-btn {
    position: relative;
    font-family: var(--font-display); font-size: 1rem; font-weight: 600;
    letter-spacing: 0.04em;
    padding: 13px 30px;
    background: var(--white); color: var(--black);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s var(--ease);
    display: inline-block;
}
.header-cta-btn::before {
    content: '';
    position: absolute; inset: 0;
    border: 2px solid var(--black);
    transform: skew(-4deg);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
    z-index: 0;
}
.header-cta-btn .cta-label { position: relative; z-index: 1; }
.header-cta-btn .cta-flower {
    position: absolute;
    width: 28px; height: 28px;
    z-index: 2;
    pointer-events: none;
}
.header-cta-btn .cta-flower svg {
    width: 100%; height: 100%;
    animation: flowerSpin 10s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
@keyframes flowerSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Flower positions per button */
.cta-battle .cta-flower { bottom: -14px; left: -12px; }
.cta-radar .cta-flower { top: -14px; left: -12px; }
.cta-expos .cta-flower { bottom: -14px; right: -12px; }
.cta-heros .cta-flower { top: -14px; right: -12px; }
.cta-chroniques .cta-flower { bottom: -14px; left: -12px; }

/* Accélération fleur au hover */
.header-cta-btn:hover .cta-flower svg { animation-duration: 2s; }

/* Art Battle — bleu pop */
.cta-battle::before { border-color: #1565c0; }
.cta-battle:hover::before { background: #e3f0fc; border-color: #1565c0; }
.cta-battle:hover { color: #0d47a1; }

/* Radar — vert pop */
.cta-radar::before { border-color: #2e7d32; }
.cta-radar:hover::before { background: #e7f3e8; border-color: #2e7d32; }
.cta-radar:hover { color: #1b5e20; }

/* Toutes les expos — violet Murakami */
.cta-expos::before { border-color: #8e24aa; }
.cta-expos:hover::before { background: #f3e5f5; border-color: #8e24aa; }
.cta-expos:hover { color: #6a1b9a; }

/* Artiste Héros — rouge Murakami */
.cta-heros::before { border-color: #c62828; }
.cta-heros:hover::before { background: #fde7e7; border-color: #c62828; }
.cta-heros:hover { color: #b71c1c; }

/* Chroniques — or ART INFO */
.cta-chroniques::before { border-color: #d4a832; }
.cta-chroniques:hover::before { background: #fcf4df; border-color: #d4a832; }
.cta-chroniques:hover { color: #9a6f00; }

/* ═══ HEADER TOP BAR — Mail (gauche) + Insta (droite) ═══ */
.header-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 4px;
    gap: 12px;
}
.topbar-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.topbar-mail {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--black);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}
.topbar-mail svg { width: 14px; height: 14px; }
.topbar-mail:hover {
    background: var(--black);
    color: var(--gold);
}
.topbar-news-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 2px solid var(--black);
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    transition: all 0.25s var(--ease);
    box-shadow: 0 2px 0 var(--black);
}
.topbar-news-pill:hover {
    transform: translateY(-1px);
    background: var(--black);
    color: var(--gold);
    box-shadow: 0 5px 0 rgba(10,10,10,0.35);
}
.topbar-ig {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 12px 3px 3px;
    background: var(--white);
    border: 1.5px solid #E1306C;
    border-radius: 100px;
    color: #E1306C;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
    height: 32px;
}
.topbar-ig svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.topbar-ig-handle {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: inherit;
    white-space: nowrap;
}
.topbar-ig:hover {
    background: #E1306C;
    color: var(--white);
}
.topbar-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}
.topbar-about-pill {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    color: #0f355f;
    background: linear-gradient(135deg,#8ecae6 0%,#bde0fe 38%,#ffafcc 68%,#ffe082 100%);
    background-size: 150% 150%;
    border: 1px solid rgba(15,53,95,0.2);
    border-radius: 999px;
    padding: 4px 12px;
    box-shadow: 0 3px 12px rgba(64,120,192,0.2), inset 0 0 0 1px rgba(255,255,255,0.42);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
    animation: aboutPillShift 14s ease-in-out infinite;
}
.topbar-about-pill::before {
    content: '✦';
    font-size: 0.6rem;
    color: rgba(15,53,95,0.75);
    line-height: 1;
}
.topbar-about-pill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,transparent 0%,rgba(255,255,255,0.38) 44%,transparent 62%);
    transform: translateX(-120%);
    transition: transform 0.55s var(--ease);
    pointer-events: none;
}
.topbar-about-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(64,120,192,0.26), inset 0 0 0 1px rgba(255,255,255,0.5);
    filter: saturate(1.02);
}
.topbar-about-pill:hover::after {
    transform: translateX(120%);
}
@keyframes aboutPillShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 600px) {
    .header-topbar { margin: 0 auto 14px; padding: 0; }
    .topbar-left { gap: 6px; }
    .topbar-mail { width: 28px; height: 28px; }
    .topbar-mail svg { width: 12px; height: 12px; }
    .topbar-news-pill {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-height: 30px;
        padding: 6px 10px;
        border-radius: 999px;
        border: 1.5px solid var(--black) !important;
        background: var(--white) !important;
        color: var(--black) !important;
        box-shadow: 0 1px 0 var(--black);
        text-decoration: none !important;
        white-space: nowrap;
        font-family: var(--font-mono);
        font-size: 0.42rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 700;
        line-height: 1.15;
    }
    .topbar-right { gap: 0; }
    .topbar-ig {
        padding: 2px;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        justify-content: center;
        gap: 0;
    }
    .topbar-ig svg { width: 14px; height: 14px; }
    .topbar-ig-handle { display: none; }
    .topbar-about-pill { display: none; }
}


/* ═══ MARQUEE ═══ */
.marquee-wrap {
    position: relative; z-index: 10; overflow: hidden;
    border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light);
    background: var(--cream); padding: 13px 0; min-height: 42px;
}
.marquee-track { display: flex; width: max-content; animation: marquee var(--marquee-duration, 120s) linear infinite; }
.marquee-track a {
    font-family: var(--font-display); font-size: 0.9rem; font-weight: 600;
    color: var(--gold); white-space: nowrap; padding: 0 12px;
    text-decoration: none; transition: color 0.2s ease; letter-spacing: 0.01em;
}
.marquee-track a:hover { color: var(--black); }
.marquee-track .dot-sep { display: inline-flex; align-items: center; padding: 0 8px; }
.marquee-track .dot-sep::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; opacity: 0.4; }
.marquee-placeholder { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gray-mid); text-align: center; letter-spacing: 0.08em; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ═══ STICKY NAV ═══ */
.filters {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250,249,246,0.97);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border-bottom: 2px solid var(--black);
    border-top: 1px solid var(--gray-light);
    padding: 10px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.nav-line-1 {
    display: flex; align-items: center; gap: 8px;
}
.nav-line-1 .nav-bar-nl {
    display: flex; align-items: center; gap: 8px; width: 100%;
}

/* Sticky blur repaints badly on mobile Safari (flicker); use an opaque bar instead. */
@media (max-width: 860px) {
    .filters {
        background: rgba(250, 249, 246, 0.995);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* ═══ NAV TABS BAR — KOONS BALLOON STYLE ═══ */
.nav-tabs-bar {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    background: var(--off-white);
    padding: 5px 10px;
    border-bottom: 1px solid var(--gray-light);
    scrollbar-width: none;
    position: relative;
    z-index: 10;
    justify-content: center;
}
.nav-tabs-bar::-webkit-scrollbar { display: none; }
.nav-tab {
    padding: 6px 12px;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
    border: 2px solid transparent;
    background: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s var(--ease);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin: 2px;
}
.nav-tab:hover {
    border-color: var(--gray-light);
    color: var(--black);
    background: rgba(0,0,0,0.02);
}
.nav-tab.active {
    border-color: var(--gold);
    background: rgba(184,146,45,0.08);
    color: var(--black);
    font-weight: 700;
}
.nav-tab-sep {
    width: 1px;
    background: var(--gray-light);
    flex-shrink: 0;
    margin: 6px 2px;
    align-self: stretch;
}

/* Balloon blobs */
.nav-blob {
    width: 20px; height: 20px;
    border-radius: 50%;
    margin-right: 5px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.nav-blob::after {
    content: '';
    position: absolute;
    top: 3px; left: 5px;
    width: 5px; height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    transform: rotate(-30deg);
}
.bl-bk { background: #444; }
.bl-gd { background: #d4a832; }
.bl-gr { background: #43a047; }
.bl-rd { background: #ef5350; }
.bl-pk { background: #f06292; }
.bl-bl { background: #42a5f5; }
.bl-vl { background: #ab47bc; }
.bl-br { background: #e57373; }

/* Active states for filter buttons */
.nav-tab-news.active { color: var(--black); }
.nav-tab-marche-filter.active { color: var(--black); }

.nav-bar-sep { width: 1px; height: 20px; background: var(--gray-light); flex-shrink: 0; margin: 0 4px; }
.filter-btn {
    font-family: var(--font-display); font-size: 0.92rem; font-weight: 600;
    letter-spacing: 0.03em;
    padding: 8px 20px; border-radius: 4px;
    border: 1px solid var(--gray-light); background: var(--white);
    color: var(--black); cursor: pointer; transition: all 0.35s var(--ease);
    text-decoration: none; display: inline-block;
    position: relative; overflow: hidden;
}
.filter-btn::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 2px;
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s var(--ease);
}
.filter-btn:hover::after { transform: scaleX(1); }
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn::after { background: var(--gold); }
.filter-btn.active {
    background: var(--black); border-color: var(--black); color: var(--gold);
}
.filter-btn.active::after { background: var(--gold); transform: scaleX(1); }
.filter-btn-mkt {
    color: #7a6010; border-color: var(--gold-pale); background: var(--gold-very-light);
}
.filter-btn-mkt::after { background: var(--gold); }
.filter-btn-mkt.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.filter-btn.nav-btn-gold {
    color: #7a6010; border-color: var(--gold-pale); background: var(--gold-very-light);
}
.filter-btn.nav-btn-gold::after { background: var(--gold); }
.filter-btn.nav-btn-gold:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.filter-btn.nav-btn-black {
    color: var(--gold); border-color: var(--black); background: var(--black);
}
.filter-btn.nav-btn-black::after { background: var(--gold); }
.filter-btn.nav-btn-black:hover { background: #1a1a1a; color: var(--white); }
.filter-btn.nav-as-btn { background: var(--white); color: var(--black); border-color: var(--gray-light); }
.filter-btn.nav-as-btn::after { background: var(--gold); }
.filter-btn.nav-as-btn:hover { border-color: var(--gold); color: var(--gold); }
.feed-count { margin-left: auto; font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray-mid); }
.source-count { font-family: var(--font-mono); font-size: 0.55rem; color: var(--gray-mid); margin-left: 6px; }

/* Nav — newsletter in line 3 */
.nav-bar-nl .nl-form-wrap { margin-left: auto; }
.nl-form-wrap {
    max-width: 420px;
    width: 100%;
}


/* ═══ NEWSLETTER FORM ═══ */
.nl-inline { flex-shrink: 0; margin-left: auto; }
.nav-line-1 .nav-bar-nl-label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 2px solid var(--black);
    background: var(--white);
    color: var(--black);
    box-shadow: 0 2px 0 var(--black);
    font-family: var(--font-mono);
    font-size: 0.46rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
}
.nl-form {
    display: flex; align-items: center; gap: 0;
    border: 2px solid var(--black); border-radius: 999px;
    overflow: hidden;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
    margin: 0; padding: 0; background: var(--white);
    box-shadow: 0 2px 0 var(--black);
}
.nl-form:focus-within {
    border-color: var(--black);
    transform: translateY(-1px);
    box-shadow: 0 4px 0 rgba(10,10,10,0.35);
}
.nl-input {
    font-family: var(--font-mono); font-size: 0.62rem;
    padding: 7px 14px; border: none; background: transparent;
    color: var(--black); outline: none; width: 230px;
    transition: width 0.3s var(--ease);
    letter-spacing: 0.04em;
}
.nl-input:focus { width: 260px; }
.nl-input::placeholder {
    color: var(--gray-mid);
    font-size: 0.56rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.nl-btn {
    font-family: var(--font-mono); font-size: 0.54rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 7px 16px; background: var(--black); color: var(--gold);
    border: none; cursor: pointer; transition: all 0.2s var(--ease); white-space: nowrap;
}
.nl-btn:hover { background: var(--gold); color: var(--black); }
.nl-success { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 0.65rem; color: #2e7d32; font-weight: 700; letter-spacing: 0.04em; }
.nl-check { font-size: 0.9rem; }


/* ═══ GALERIES EN VEDETTE ═══ */
/* Bande 3 colonnes : partenaire (gauche) | Catherine Schwaab (milieu) | dernier article (droite).
   Une seule hauteur cible (--gv-slot-min-h) pour éviter que la ligne saute quand la pub ou l’article se charge. */
.galeries-vedette { --gv-slot-min-h: clamp(320px, 34vw, 460px); position: relative; z-index: 10; max-width: 1400px; margin: 0 auto; padding: 0 24px 28px; }
.galeries-band { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; align-items: stretch; grid-auto-rows: 1fr; }
.galeries-band > * { height: 100%; min-height: 0; }
.galeries-band > .gv-carousel,
.galeries-band > .gv-promo-schwaab,
.galeries-band > .gv-promo-article {
    min-height: var(--gv-slot-min-h);
    box-sizing: border-box;
}
/* Zone chargée en JS (image + titre + extrait) : réserve pour ne pas faire grandir la ligne après « Chargement… » */
#gvPromoArticleContent {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}
#gvPromoArticleContent .gv-promo-livre-loading {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-mid);
}
.galeries-grid { display: flex; flex-direction: column; gap: 18px; }

/* Carousel pub */
.gv-carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}
.gv-carousel-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    min-height: var(--gv-slot-min-h, 380px);
    flex: 1;
    width: 100%;
}
.gv-carousel-slide {
    opacity: 0;
    transition: opacity 0.6s var(--ease);
    pointer-events: none;
    height: 100%;
}
.gv-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    z-index: 1;
    height: 100%;
}
/* Toutes les slides sauf la première sont absolutely positioned pour se superposer */
.gv-carousel-inner.ready .gv-carousel-slide:not(.active) {
    position: absolute;
    inset: 0;
}
.gv-carousel-inner.ready .gv-carousel-slide.active {
    position: relative;
}
.gv-carousel-slide .galerie-card {
    border-radius: 10px;
    min-height: var(--gv-slot-min-h, 380px);
    height: 100%;
}
.gv-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding-top: 10px;
}
.gv-carousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    padding: 0;
}
.gv-carousel-dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

/* Promo cards */
.gv-promo-card {
    border-radius: 12px; padding: 28px 24px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; text-decoration: none; color: inherit;
    transition: all 0.4s var(--ease); min-height: 240px;
    position: relative; overflow: hidden; height: 100%;
}
.gv-promo-card::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.gv-promo-card:hover { transform: translateY(-4px); }
.gv-promo-card:hover::before { opacity: 1; }
.gv-promo-icon { font-size: 2.4rem; margin-bottom: 12px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15)); position: relative; z-index: 1; }
.gv-promo-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 300; margin-bottom: 8px; line-height: 1.2; position: relative; z-index: 1; }
.gv-promo-title strong { font-weight: 700; }
.gv-promo-text { font-family: var(--font-body); font-size: 0.7rem; line-height: 1.5; margin-bottom: 16px; max-width: 220px; position: relative; z-index: 1; }
.gv-promo-btn { font-family: var(--font-mono); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.06em; padding: 9px 22px; border-radius: 20px; transition: all 0.3s; position: relative; z-index: 1; }

/* Schwaab card */
.gv-promo-schwaab {
    background: var(--white); color: var(--black);
    border: 1px solid var(--gray-light);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    align-items: flex-start; text-align: left;
    padding: 28px 28px 24px;
    border-left: 4px solid #8e24aa;
    border-radius: 0 12px 12px 0;
}
.gv-promo-schwaab::before { background: radial-gradient(circle at 0% 100%, rgba(142,36,170,0.06) 0%, transparent 60%); }
.gv-promo-schwaab:hover { box-shadow: 0 12px 48px rgba(142,36,170,0.1); border-color: #8e24aa; border-left-color: #8e24aa; }
.gv-promo-schwaab .gv-schwaab-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px; position: relative; z-index: 1; width: 100%;
}
.gv-promo-schwaab .gv-schwaab-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    object-fit: cover; border: 2px solid #8e24aa; flex-shrink: 0;
}
.gv-promo-schwaab .gv-schwaab-author {
    font-family: var(--font-mono); font-size: 0.48rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #8e24aa; font-weight: 700;
}
.gv-promo-schwaab .gv-promo-title {
    font-size: 1.5rem; font-weight: 600; line-height: 1.15;
    margin-bottom: 10px;
}
.gv-promo-schwaab .gv-promo-title strong { color: #6a1b9a; }
.gv-promo-schwaab .gv-promo-text { color: #555; max-width: none; font-size: 0.75rem; margin-bottom: 14px; }
.gv-promo-schwaab .gv-promo-btn {
    background: #8e24aa; color: var(--white); border: none;
    border-radius: 4px; padding: 10px 24px; font-size: 0.58rem;
}
.gv-promo-schwaab:hover .gv-promo-btn { background: #6a1b7a; }

/* Interview card */
.gv-promo-interview {
    background: var(--white); color: var(--black);
    border: 1px solid var(--gray-light);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    align-items: flex-start; text-align: left;
    padding: 28px 28px 24px;
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
}
.gv-promo-interview::before { background: radial-gradient(circle at 0% 100%, rgba(184,146,45,0.06) 0%, transparent 60%); }
.gv-promo-interview::after { display: none; }
.gv-promo-interview:hover { box-shadow: 0 12px 48px rgba(184,146,45,0.1); border-color: var(--gold); border-left-color: var(--gold); }
.gv-promo-interview .gv-itw-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px; position: relative; z-index: 1; width: 100%;
}
.gv-promo-interview .gv-itw-icon {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--black); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.gv-promo-interview .gv-itw-header-label {
    font-family: var(--font-mono); font-size: 0.48rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); font-weight: 700;
}
.gv-promo-interview .gv-promo-title {
    font-size: 1.5rem; font-weight: 600; line-height: 1.15;
    margin-bottom: 10px;
}
.gv-promo-interview .gv-promo-title strong { color: var(--black); font-weight: 700; }
.gv-promo-interview .gv-promo-text { color: #555; max-width: none; font-size: 0.75rem; margin-bottom: 14px; }
.gv-promo-interview .gv-promo-btn {
    background: var(--gold); color: var(--black); border: none;
    border-radius: 4px; padding: 10px 24px; font-size: 0.58rem;
}
.gv-promo-interview:hover .gv-promo-btn { background: var(--black); color: var(--gold); }
.gv-itw-label { display: none; }
.gv-itw-line { display: none; }
.gv-itw-quote { font-family: var(--font-display); font-size: 0.72rem; font-style: italic; color: var(--gold); margin-top: 14px; position: relative; z-index: 1; line-height: 1.4; }

/* ═══ INTERVIEW CARD DYNAMIQUE (dernière interview) ═══ */
.gv-itw-content {
    width: 100%; position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 14px;
}
.gv-itw-loading {
    font-family: var(--font-mono); font-size: 0.6rem;
    color: var(--gray-mid); letter-spacing: 0.08em;
    text-transform: uppercase; text-align: center; padding: 40px 0;
}
.gv-itw-portrait-wrap {
    display: flex; align-items: center; gap: 12px;
}
.gv-itw-portrait {
    width: 60px; height: 60px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
    border: 2px solid var(--gold);
}
.gv-itw-portrait-placeholder {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--black); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0; border: 2px solid var(--gold);
}
.gv-itw-artist-info { flex: 1; min-width: 0; }
.gv-itw-artist-name {
    font-family: var(--font-display); font-size: 1.25rem;
    font-weight: 700; color: var(--black); line-height: 1.15;
    margin-bottom: 2px;
}
.gv-itw-artist-role {
    font-family: var(--font-mono); font-size: 0.52rem;
    font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--gold);
}
.gv-itw-title {
    font-family: var(--font-display); font-size: 1rem;
    font-weight: 400; font-style: italic; color: #444;
    line-height: 1.35; padding: 10px 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gv-itw-cta {
    font-family: var(--font-mono); font-size: 0.56rem;
    font-weight: 700; letter-spacing: 0.08em;
    color: var(--gold); display: inline-flex;
    align-items: center; gap: 6px;
    transition: gap 0.3s var(--ease);
}
.gv-promo-interview:hover .gv-itw-cta { gap: 10px; }

/* CTA button — visible and inviting */
.gv-itw-cta-wrap {
    margin-top: 12px;
}
.gv-itw-cta-btn {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    background: var(--gold);
    padding: 10px 24px;
    border-radius: 4px;
    transition: all 0.3s var(--ease);
    letter-spacing: 0.03em;
}
.gv-promo-interview:hover .gv-itw-cta-btn {
    background: var(--black);
    color: var(--gold);
}

/* NEW badge — inline, visible */
.gv-itw-new-badge {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #d32f2f;
    color: #fff;
    padding: 4px 12px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 10px;
    animation: badgePulse 2s ease-in-out infinite;
}

/* Galerie cards */
.galerie-card { border: 1px solid var(--gray-light); border-radius: 10px; overflow: hidden; background: var(--white); transition: all 0.4s var(--ease); text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.galerie-card:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.08); transform: translateY(-4px); border-color: var(--gold); }
.galerie-card-img { height: 0; padding-bottom: 75%; background: var(--cream); overflow: hidden; position: relative; }
.galerie-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 4s ease; }
.galerie-card:hover .galerie-card-img img { transform: scale(1.06); }
.galerie-card-img .gci-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--cream) 0%, var(--gold-very-light) 100%); }
.galerie-card-img .gci-placeholder img { max-width: 55%; max-height: 55%; object-fit: contain; }
.galerie-card-body { padding: 14px 16px 12px; flex: 1; display: flex; flex-direction: column; }
.galerie-card-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 3px; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.galerie-card-expo { font-family: var(--font-body); font-size: 0.72rem; color: #555; font-style: italic; margin-bottom: 5px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.galerie-card-dates { font-family: var(--font-mono); font-size: 0.48rem; color: var(--gold); font-weight: 700; letter-spacing: 0.05em; margin-bottom: 3px; }
.galerie-card-address { font-family: var(--font-mono); font-size: 0.45rem; color: var(--gray-mid); letter-spacing: 0.03em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.35; }
.galerie-card-footer { margin-top: auto; padding-top: 8px; border-top: 1px solid var(--gray-light); display: flex; justify-content: space-between; align-items: center; }
.galerie-card-link { font-family: var(--font-mono); font-size: 0.5rem; color: var(--gold); letter-spacing: 0.06em; font-weight: 700; transition: color 0.2s; }
.galerie-card:hover .galerie-card-link { color: var(--black); }
.galerie-card-sponsor { font-family: var(--font-mono); font-size: 0.4rem; color: var(--gray-mid); letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.6; }

/* Placeholder */
.gv-galerie-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 2px dashed var(--gray-light); border-radius: 10px; padding: 32px 20px; min-height: var(--gv-slot-min-h, 380px); box-sizing: border-box; background: linear-gradient(135deg, var(--off-white), var(--cream)); transition: all 0.4s; }
.gv-ph-icon { font-size: 2rem; margin-bottom: 8px; opacity: 0.4; }
.gv-ph-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--gray-mid); margin-bottom: 4px; }
.gv-ph-text { font-family: var(--font-mono); font-size: 0.52rem; color: var(--gray-mid); letter-spacing: 0.08em; }


/* ═══ LAYOUT 2 COLUMNS (footmercato style) ═══ */
.fm-layout { display: grid; grid-template-columns: 1fr 380px; gap: 0; max-width: 1400px; margin: 0 auto; min-height: 100vh; }
.fm-main { border-right: 1px solid var(--gray-light); overflow: hidden; }
.fm-main .section-block { max-width: none; }
.fm-main .artdujour-section { max-width: none; }
.fm-sidebar { position: relative; background: var(--off-white); }
.fm-sidebar-inner { position: sticky; top: 0; height: 100vh; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--gold-pale) transparent; }
.fm-sidebar-inner::-webkit-scrollbar { width: 4px; }
.fm-sidebar-inner::-webkit-scrollbar-track { background: transparent; }
.fm-sidebar-inner::-webkit-scrollbar-thumb { background: var(--gold-pale); border-radius: 2px; }
.fm-sidebar-header { position: sticky; top: 0; z-index: 10; background: var(--black); padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; }
.fm-sidebar-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); }
.fm-sidebar-title em { color: var(--gold); font-style: italic; }
.fm-sidebar-count { font-family: var(--font-mono); font-size: 0.55rem; color: var(--gold); }
.fm-sidebar-filters { display: flex; gap: 4px; padding: 10px 14px; background: var(--cream); border-bottom: 1px solid var(--gray-light); flex-wrap: wrap; }
.fm-filter { font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.04em; padding: 4px 10px; border: 1px solid var(--gray-light); border-radius: 3px; background: var(--white); color: var(--gray-mid); cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.fm-filter:hover { border-color: var(--gold); color: var(--gold); }
.fm-filter.active { background: var(--black); border-color: var(--black); color: var(--gold); font-weight: 600; }
.fm-feed { padding: 0; }
.fm-item { display: block; padding: 14px 18px; border-bottom: 1px solid var(--gray-light); text-decoration: none; color: inherit; transition: background 0.2s; }
.fm-item:hover { background: var(--gold-bg); }
.fm-item-source { font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.fm-item-source .fm-country { background: var(--black); color: var(--white); padding: 1px 5px; border-radius: 2px; font-size: 0.45rem; letter-spacing: 0.06em; }
.fm-item-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; line-height: 1.35; color: var(--black); margin-bottom: 4px; }
.fm-item:hover .fm-item-title { color: var(--gold); }
.fm-item-time { font-family: var(--font-mono); font-size: 0.5rem; color: var(--gray-mid); }
.fm-item-new { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #d32f2f; margin-right: 4px; animation: newPulse 2s infinite; }
@keyframes newPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.fm-load-more { display: block; width: 100%; padding: 14px; background: var(--cream); border: none; border-bottom: 1px solid var(--gray-light); font-family: var(--font-mono); font-size: 0.6rem; color: var(--gold); cursor: pointer; letter-spacing: 0.06em; font-weight: 600; transition: all 0.2s; }
.fm-load-more:hover { background: var(--gold-bg); color: var(--black); }


/* ═══ MAIN CONTAINER & GRID ═══ */
main.container { position: relative; z-index: 10; max-width: 1400px; margin: 0 auto; padding: 28px 24px 40px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 0; }
.card {
    border-bottom: 1px solid var(--gray-light); border-right: 1px solid var(--gray-light);
    padding: 26px 28px 22px; display: flex; flex-direction: column;
    min-height: 160px; text-decoration: none; color: inherit;
    position: relative; transition: all 0.4s var(--ease);
    animation: fadeUp 0.5s ease both;
}
.card:hover { background: var(--gold-bg); }
.card::before { content: ''; position: absolute; top: 18px; right: 18px; width: 8px; height: 8px; border-radius: 50%; transition: all 0.3s ease; }
.card[data-country="FR"]::before { background: #3b5998; }
.card[data-country="IT"]::before { background: #2e8b57; }
.card[data-country="GB"]::before { background: #c0392b; }
.card[data-country="US"]::before { background: #2980b9; }
.card[data-country="CN"]::before { background: #e03030; }
.card[data-country="JP"]::before { background: #e84393; }
.card[data-country="DE"]::before { background: #f39c12; }
.card[data-country="INT"]::before { background: #8e44ad; }
.card[data-country="MKT"]::before { background: #c8a033; }
.card:hover::before { transform: scale(1.8); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.card-source { font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.03em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.card-source .country-code { background: var(--cream); color: var(--black); padding: 2px 6px; border-radius: 3px; font-size: 0.5rem; letter-spacing: 0.08em; }
.card-title { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; line-height: 1.35; letter-spacing: 0.01em; color: var(--black); flex: 1; margin-bottom: 12px; transition: color 0.25s ease; }
.card:hover .card-title { color: var(--gold); }
.card-bottom { display: flex; align-items: center; justify-content: space-between; }
.card-date { font-family: var(--font-mono); font-size: 0.52rem; color: var(--gray-mid); }
.card-arrow { font-size: 1rem; color: var(--black); opacity: 0; transform: translateX(-8px); transition: all 0.4s var(--ease); }
.card:hover .card-arrow { opacity: 1; transform: translateX(0); color: var(--gold); }


/* ═══ SECTION HEADERS ═══ */
.section-block { position: relative; z-index: 10; max-width: 1400px; margin: 0 auto; padding: 0 24px 60px; }
.section-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; padding-top: 20px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 300; color: var(--black); white-space: nowrap; letter-spacing: 0.02em; }
.section-header .section-line { flex: 1; height: 1px; background: var(--gray-light); }
.section-header .section-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.section-tag { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-mid); margin-top: -20px; margin-bottom: 28px; font-weight: 400; }


/* ═══ DOTS DIVIDER ═══ */
.dots-divider { display: flex; justify-content: center; gap: 12px; padding: 44px 0; position: relative; z-index: 10; }
.dots-divider span { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.15; }
.dots-divider span:nth-child(4) { opacity: 0.5; transform: scale(1.4); }


/* ═══ LOADING ═══ */
.loading-wrap { text-align: center; padding: 80px 20px; position: relative; z-index: 10; }
.kusama-loader { display: inline-flex; gap: 8px; margin-bottom: 24px; }
.kusama-loader span { width: 14px; height: 14px; background: var(--gold); border-radius: 50%; animation: pulse 1.2s ease-in-out infinite; }
.kusama-loader span:nth-child(2) { animation-delay: 0.15s; }
.kusama-loader span:nth-child(3) { animation-delay: 0.3s; }
.kusama-loader span:nth-child(4) { animation-delay: 0.45s; }
.kusama-loader span:nth-child(5) { animation-delay: 0.6s; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.6); opacity: 1; } }
.loading-text { font-family: var(--font-mono); font-size: 0.75rem; color: var(--gray-mid); letter-spacing: 0.08em; }
.error-banner { font-family: var(--font-mono); font-size: 0.72rem; color: #b44; text-align: center; padding: 12px; background: #fff5f5; display: none; position: relative; z-index: 10; }


/* ═══ ART DU JOUR ═══ */
.artdujour-section { position: relative; z-index: 10; max-width: 1400px; margin: 0 auto; padding: 32px 24px 0; }
.artdujour-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--gray-light); border-radius: 8px; overflow: hidden; min-height: 360px; background: var(--white); box-shadow: 0 4px 40px rgba(0,0,0,0.04); }
.artdujour-card:hover { box-shadow: 0 8px 60px rgba(0,0,0,0.06); }
.artdujour-img-wrap { position: relative; overflow: hidden; background: #eee; min-height: 300px; }
.artdujour-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 6s ease; }
.artdujour-card:hover .artdujour-img-wrap img { transform: scale(1.03); }
.artdujour-content { padding: 36px 36px 28px; display: flex; flex-direction: column; justify-content: center; }
.artdujour-label { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); background: var(--black); display: inline-block; padding: 4px 12px; border-radius: 4px; margin-bottom: 14px; align-self: flex-start; font-weight: 500; }
.artdujour-label .adl-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-right: 6px; vertical-align: middle; }
.artdujour-artist { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.artdujour-title { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; color: var(--black); line-height: 1.25; margin-bottom: 4px; }
.artdujour-year { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gray-mid); margin-bottom: 16px; }
.artdujour-badge { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 3px; background: var(--gold-bg); color: var(--gold); border: 1px solid var(--gold-pale); display: inline-block; margin-bottom: 16px; align-self: flex-start; }
.artdujour-text { font-family: var(--font-body); font-size: 0.88rem; line-height: 1.7; color: #444; margin-bottom: 8px; }
.artdujour-text-en { font-family: var(--font-body); font-size: 0.82rem; line-height: 1.6; color: var(--gray-mid); font-style: italic; margin-bottom: 14px; }
.artdujour-fact { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gold); margin-bottom: 14px; padding: 10px 14px; background: var(--gold-bg); border-radius: 6px; border-left: 3px solid var(--gold); line-height: 1.6; }
.artdujour-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--gray-light); }
.artdujour-date { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray-mid); }
.artdujour-hashtags { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray-mid); margin-top: 8px; }


/* ═══ RADAR DE L'ART ═══ */
.radar-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--gray-light); border-radius: 6px; overflow: hidden; }
.radar-card { padding: 28px; border-bottom: 1px solid var(--gray-light); transition: all 0.4s var(--ease); position: relative; }
.radar-card:last-child { border-bottom: none; }
.radar-card:hover { background: var(--gold-bg); }
.radar-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.radar-badge { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 3px; font-weight: 700; text-transform: uppercase; }
.radar-badge-cat { background: var(--black); color: var(--gold); }
.radar-badge-venue { background: var(--gold-bg); color: var(--gold); border: 1px solid var(--gold-pale); }
.radar-stars { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); letter-spacing: 2px; margin-left: auto; }
.radar-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--black); margin-bottom: 4px; line-height: 1.3; }
.radar-title-en { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--gray-mid); margin-bottom: 10px; }
.radar-artist { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); font-weight: 700; letter-spacing: 0.08em; margin-bottom: 12px; }
.radar-analysis { font-family: var(--font-body); font-size: 0.88rem; color: #444; line-height: 1.65; margin-bottom: 6px; }
.radar-analysis-en { font-family: var(--font-body); font-size: 0.82rem; color: var(--gray-mid); line-height: 1.6; font-style: italic; margin-bottom: 12px; }
.radar-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray-mid); }
.radar-meta span { display: flex; align-items: center; gap: 4px; }
.radar-link { font-family: var(--font-mono); font-size: 0.65rem; color: var(--gold); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; margin-left: auto; transition: color 0.2s ease; }
.radar-link:hover { color: var(--black); }

/* Radar dark theme */
#radarArt { background: var(--black); max-width: none; margin: 0 -24px; padding: 48px 48px; position: relative; z-index: 10; }
#radarArt .section-header { max-width: 1352px; margin: 0 auto 28px; }
#radarArt .section-header h2 { color: var(--white); }
#radarArt .section-header .section-line { background: rgba(255,255,255,0.1); }
#radarArt .section-header .section-dot { background: #e03030; box-shadow: 0 0 12px rgba(224,48,48,0.4); }
#radarArt .section-tag { color: rgba(255,255,255,0.4); max-width: 1352px; margin: -20px auto 28px; }
#radarArt .radar-grid { max-width: 1352px; margin: 0 auto; border: none; border-radius: 10px; overflow: hidden; background: rgba(255,255,255,0.03); }
#radarArt .radar-card { color: var(--white); border-bottom-color: rgba(255,255,255,0.06); }
#radarArt .radar-card:hover { background: rgba(184,146,45,0.06); }
#radarArt .radar-badge-cat { background: var(--gold); color: var(--black); }
#radarArt .radar-badge-venue { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.12); }
#radarArt .radar-stars { text-shadow: 0 0 8px rgba(184,146,45,0.3); }
#radarArt .radar-title { color: var(--white); }
#radarArt .radar-title-en { color: rgba(255,255,255,0.4); }
#radarArt .radar-analysis { color: rgba(255,255,255,0.75); }
#radarArt .radar-analysis-en { color: rgba(255,255,255,0.35); }
#radarArt .radar-meta { color: rgba(255,255,255,0.4); }
#radarArt .radar-link { padding: 5px 14px; border: 1px solid rgba(184,146,45,0.3); border-radius: 20px; color: var(--gold); }
#radarArt .radar-link:hover { background: var(--gold); color: var(--black); }


/* ═══ L'ANALYSE ═══ */
.analyse-wrap { border: 1px solid var(--gray-light); border-radius: 8px; overflow: hidden; background: var(--white); box-shadow: 0 4px 40px rgba(0,0,0,0.04); }
.analyse-card { display: grid; grid-template-columns: 1fr 1.4fr; gap: 0; min-height: 420px; }
.analyse-img-wrap { position: relative; overflow: hidden; background: #eee; }
.analyse-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.analyse-content { padding: 36px 40px 32px; display: flex; flex-direction: column; }
.analyse-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); background: var(--black); display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 3px; margin-bottom: 16px; align-self: flex-start; }
.analyse-label .al-eye { font-size: 0.8rem; }
.analyse-meta { font-family: var(--font-mono); font-size: 0.62rem; color: var(--gray-mid); margin-bottom: 6px; letter-spacing: 0.05em; }
.analyse-artist { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.analyse-artwork { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.analyse-title { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 600; color: var(--black); line-height: 1.25; margin-bottom: 16px; margin-top: 12px; }
.analyse-title-en { font-family: var(--font-display); font-size: 0.95rem; font-style: italic; color: var(--gray-mid); margin-top: -10px; margin-bottom: 16px; }
.analyse-text { font-family: var(--font-body); font-size: 0.88rem; line-height: 1.75; color: #333; margin-bottom: 12px; }
.analyse-text-en { font-family: var(--font-body); font-size: 0.82rem; line-height: 1.65; color: var(--gray-mid); font-style: italic; margin-bottom: 14px; }
.analyse-zoom { font-family: var(--font-mono); font-size: 0.68rem; color: var(--black); padding: 10px 14px; background: var(--gold-bg); border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; margin-bottom: 12px; }
.analyse-zoom::before { content: '\1F50D '; font-size: 0.85rem; }
.analyse-anecdote { font-family: var(--font-mono); font-size: 0.65rem; color: var(--gold); margin-bottom: 14px; font-style: italic; }
.analyse-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--gray-light); font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray-mid); }
.analyse-footer a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
.analyse-footer a:hover { color: var(--black); }

/* Analyse V2 (TL;DR + 5 blocs + zooms) */
.analyse-v2 { border: 1px solid var(--gray-light); border-radius: 8px; overflow: hidden; background: var(--white); box-shadow: 0 4px 40px rgba(0,0,0,0.04); padding: 26px 28px; }
.analyse-v2-head { margin-bottom: 16px; }
.analyse-v2-tldr { border: 1px solid var(--gold-pale); background: var(--gold-bg); border-radius: 8px; padding: 14px 16px; margin-bottom: 18px; }
.analyse-v2-tldr-title { font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.analyse-v2-tldr ol { margin: 0; padding-left: 18px; display: grid; gap: 7px; }
.analyse-v2-tldr li { font-family: var(--font-body); font-size: 0.84rem; line-height: 1.5; color: #3d3d3d; }
.analyse-v2-visuals { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; margin-bottom: 18px; }
.analyse-v2-main { border-radius: 7px; overflow: hidden; background: #eee; min-height: 300px; }
.analyse-v2-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.analyse-v2-zooms { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; }
.analyse-v2-zoom-card { border: 1px solid var(--gray-light); border-radius: 7px; overflow: hidden; background: var(--white); }
.analyse-v2-zoom-img { height: 126px; overflow: hidden; background: #e9e9e9; }
.analyse-v2-zoom-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.8); transform-origin: center; display: block; }
.analyse-v2-zoom-label { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-mid); padding: 8px 10px; border-top: 1px solid var(--gray-light); }
.analyse-v2-blocks { display: grid; gap: 14px; }
.analyse-v2-block { border-left: 3px solid var(--gold); padding: 2px 0 2px 12px; }
.analyse-v2-block h3 { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.2; color: var(--black); margin-bottom: 4px; font-weight: 700; }
.analyse-v2-block p { font-family: var(--font-body); font-size: 0.9rem; line-height: 1.75; color: #333; }


/* ═══ ART QUIZ ═══ */
.quiz-tabs { display: flex; gap: 0; border: 1px solid var(--gray-light); border-radius: 8px 8px 0 0; overflow: hidden; }
.quiz-tab { flex: 1; font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 12px 8px; border: none; background: var(--white); color: var(--gray-mid); cursor: pointer; transition: all 0.25s ease; font-weight: 500; border-right: 1px solid var(--gray-light); text-align: center; }
.quiz-tab:last-child { border-right: none; }
.quiz-tab:hover { background: var(--gold-bg); color: var(--black); }
.quiz-tab.active { background: var(--black); color: var(--gold); }
.quiz-container { border: 1px solid var(--gray-light); border-top: none; border-radius: 0 0 8px 8px; overflow: hidden; }
.quiz-card { padding: 32px; min-height: 300px; }
.quiz-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.quiz-badge { font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.12em; text-transform: uppercase; background: #ff69b4; color: var(--white); padding: 4px 12px; border-radius: 4px; font-weight: 700; }
.quiz-score { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); font-weight: 700; }
.quiz-visual { text-align: center; margin-bottom: 20px; }
.quiz-visual img { max-width: 100%; max-height: 320px; border-radius: 6px; border: 1px solid var(--gray-light); }
.quiz-question { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--black); margin-bottom: 20px; line-height: 1.35; }
.quiz-options { display: flex; flex-direction: column; gap: 8px; }
.quiz-opt { font-family: var(--font-body); font-size: 0.9rem; padding: 14px 20px; border: 2px solid var(--gray-light); border-radius: 8px; background: var(--white); cursor: pointer; transition: all 0.3s var(--ease); text-align: left; color: var(--black); display: block; width: 100%; }
.quiz-opt:hover { border-color: var(--gold); background: var(--gold-bg); }
.quiz-opt.correct { border-color: #2e7d32; background: #e8f5e9; color: #2e7d32; }
.quiz-opt.wrong { border-color: #c62828; background: #ffebee; color: #c62828; }
.quiz-opt.disabled { pointer-events: none; opacity: 0.6; }
.quiz-feedback { font-family: var(--font-body); font-size: 0.88rem; padding: 16px 20px; border-radius: 6px; margin-top: 16px; line-height: 1.6; }
.quiz-feedback.good { background: #e8f5e9; border-left: 3px solid #2e7d32; color: #2e7d32; }
.quiz-feedback.bad { background: #ffebee; border-left: 3px solid #c62828; color: #c62828; }
.quiz-feedback.info { background: var(--gold-bg); border-left: 3px solid var(--gold); color: var(--black); }
.quiz-nav { margin-top: 16px; text-align: right; }
.quiz-next-btn { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; padding: 10px 24px; border-radius: 100px; border: 2px solid var(--black); background: var(--black); color: var(--white); cursor: pointer; transition: all 0.25s ease; font-weight: 700; }
.quiz-next-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.quiz-result { text-align: center; padding: 32px 20px; }
.quiz-result-score { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--gold); margin-bottom: 8px; }
.quiz-result-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.quiz-result-desc { font-family: var(--font-body); font-size: 0.88rem; color: var(--gray-mid); line-height: 1.6; max-width: 500px; margin: 0 auto 20px; }
.quiz-restart-btn { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; padding: 10px 24px; border-radius: 100px; border: 2px solid var(--gold); background: var(--gold); color: var(--black); cursor: pointer; font-weight: 700; transition: all 0.25s ease; }
.quiz-restart-btn:hover { background: var(--black); border-color: var(--black); color: var(--gold); }
.quiz-personality-result { text-align: center; padding: 24px; }
.quiz-personality-artist { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--gold); margin: 12px 0 8px; }
.quiz-personality-desc { font-family: var(--font-body); font-size: 0.9rem; color: #444; line-height: 1.6; max-width: 500px; margin: 0 auto 16px; }


/* ═══ INTERVIEWS ═══ */
.interview-wrap { border: 1px solid var(--gray-light); border-radius: 8px; overflow: hidden; background: var(--white); box-shadow: 0 4px 40px rgba(0,0,0,0.04); }
.interview-card { display: grid; grid-template-columns: 280px 1fr; gap: 0; min-height: 380px; max-height: 520px; overflow: hidden; }
.interview-portrait { position: relative; overflow: hidden; background: var(--black); display: flex; align-items: center; justify-content: center; }
.interview-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(30%); transition: filter 0.6s ease; }
.interview-card:hover .interview-portrait img { filter: grayscale(0%); }
.interview-portrait-placeholder { width: 100%; height: 100%; min-height: 300px; background: var(--black); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 5rem; color: var(--gold); opacity: 0.3; }
.interview-content { padding: 36px 40px 32px; display: flex; flex-direction: column; overflow: hidden; }
.interview-top { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.interview-badge { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; background: var(--black); color: var(--white); padding: 4px 12px; border-radius: 3px; font-weight: 700; }
.interview-cat { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 3px; background: var(--gold-bg); color: var(--gold); border: 1px solid var(--gold-pale); }
.interview-date { font-family: var(--font-mono); font-size: 0.55rem; color: var(--gray-mid); margin-left: auto; }
.interview-name { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; color: var(--black); line-height: 1.2; margin-bottom: 2px; letter-spacing: 0.01em; }
.interview-role { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.interview-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--black); font-style: italic; margin-bottom: 16px; line-height: 1.35; }
.interview-title-en { font-family: var(--font-display); font-size: 0.9rem; color: var(--gray-mid); font-style: italic; margin-top: -10px; margin-bottom: 16px; }
.interview-text { font-family: var(--font-body); font-size: 0.88rem; line-height: 1.75; color: #333; margin-bottom: 10px; column-count: 1; max-height: 160px; overflow: hidden; -webkit-mask-image: linear-gradient(to bottom, #000 50%, transparent 100%); mask-image: linear-gradient(to bottom, #000 50%, transparent 100%); }
.interview-text-en { display: none; }

/* ═══ SIGNATURE PRESSE ═══ */
.interview-signature {
    margin: 20px 0 12px;
    padding: 0;
    position: relative;
}
.interview-sig-rule {
    width: 42px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 14px;
}
.interview-sig-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.interview-sig-by {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}
.interview-sig-prefix {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-mid);
}
.interview-sig-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    font-style: italic;
    letter-spacing: 0.01em;
}
.interview-sig-role {
    font-family: var(--font-mono);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    padding-left: 10px;
    border-left: 1px solid var(--gray-light);
    align-self: center;
}
.interview-sig-dateline {
    font-family: var(--font-mono);
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--gray-mid);
    text-transform: uppercase;
}
.interview-read-full {
    font-family: var(--font-display) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    background: var(--gold);
    padding: 8px 18px;
    border-radius: 4px;
    transition: all 0.3s var(--ease);
    letter-spacing: 0.02em;
}
.interview-read-full:hover {
    background: var(--black) !important;
    color: var(--gold) !important;
}

.interview-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--gray-light); font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray-mid); gap: 10px; flex-wrap: wrap; }
.interview-footer a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
.interview-footer a:hover { color: var(--black); }


/* ═══ ART BATTLE PROMO ═══ */
.ab-promo { max-width: 1400px; margin: 0 auto; padding: 0 24px 40px; }
.ab-promo-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 32px; background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%); border-radius: 12px; text-decoration: none; color: var(--white); transition: all 0.4s var(--ease); border: 1px solid rgba(184,146,45,0.2); overflow: hidden; position: relative; }
.ab-promo-inner:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); border-color: var(--gold); }
.ab-promo-inner::before { content: ''; position: absolute; top: -50%; right: -10%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(184,146,45,0.08) 0%, transparent 70%); pointer-events: none; }
.ab-promo-left { flex: 1; position: relative; z-index: 1; }
.ab-promo-badge { font-family: var(--font-mono); font-size: 0.5rem; font-weight: 700; letter-spacing: 0.15em; padding: 4px 10px; background: var(--gold); color: var(--black); border-radius: 3px; display: inline-block; margin-bottom: 10px; }
.ab-promo-title { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 300; margin-bottom: 8px; }
.ab-promo-title strong { color: var(--gold); font-weight: 700; }
.ab-promo-desc { font-family: var(--font-body); font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.5; margin-bottom: 14px; }
.ab-promo-desc em { color: var(--gold); font-style: italic; font-weight: 500; }
.ab-promo-steps { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.ab-promo-steps span { font-family: var(--font-mono); font-size: 0.45rem; color: rgba(255,255,255,0.5); letter-spacing: 0.03em; }
.ab-promo-cta { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; border: 1.5px solid var(--gold); border-radius: 6px; transition: all 0.3s; }
.ab-promo-inner:hover .ab-promo-cta { background: var(--gold); color: var(--black); }
.ab-promo-right { display: flex; flex-direction: column; align-items: center; gap: 4px; position: relative; z-index: 1; }
.ab-promo-emoji { font-size: 3rem; filter: drop-shadow(0 4px 12px rgba(184,146,45,0.3)); }
.ab-promo-vs { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold); opacity: 0.4; }

/* ═══ ARTISTE HEROS PROMO ═══ */
.ah-promo { max-width: 1400px; margin: 0 auto; padding: 0 24px 40px; }
.ah-promo-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 32px; background: linear-gradient(135deg, #2d1b4e 0%, #4a2c6e 60%, #1a0f2e 100%); border-radius: 12px; text-decoration: none; color: var(--white); transition: all 0.4s var(--ease); border: 1px solid rgba(184,146,45,0.25); overflow: hidden; position: relative; }
.ah-promo-inner:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(74,44,110,0.4); border-color: var(--gold); }
.ah-promo-inner::before { content: ''; position: absolute; top: -60%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(184,146,45,0.1) 0%, transparent 70%); pointer-events: none; }
.ah-promo-inner::after { content: ''; position: absolute; bottom: -40%; right: -10%; width: 280px; height: 280px; background: radial-gradient(circle, rgba(184,146,45,0.06) 0%, transparent 70%); pointer-events: none; }
.ah-promo-left { flex: 1; position: relative; z-index: 1; }
.ah-promo-badge { font-family: var(--font-mono); font-size: 0.5rem; font-weight: 700; letter-spacing: 0.15em; padding: 4px 10px; background: var(--gold); color: #2d1b4e; border-radius: 3px; display: inline-block; margin-bottom: 10px; }
.ah-promo-title { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 300; margin-bottom: 8px; line-height: 1.15; }
.ah-promo-title strong { color: var(--gold); font-weight: 700; font-style: italic; }
.ah-promo-desc { font-family: var(--font-body); font-size: 0.85rem; color: rgba(255,255,255,0.82); line-height: 1.55; margin-bottom: 14px; max-width: 520px; }
.ah-promo-desc em { color: var(--gold); font-style: italic; font-weight: 500; }
.ah-promo-steps { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.ah-promo-steps span { font-family: var(--font-mono); font-size: 0.48rem; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }
.ah-promo-cta { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; border: 1.5px solid var(--gold); border-radius: 6px; transition: all 0.3s; }
.ah-promo-inner:hover .ah-promo-cta { background: var(--gold); color: #2d1b4e; }
.ah-promo-right { display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; z-index: 1; flex-shrink: 0; }
.ah-promo-emoji { font-size: 3rem; filter: drop-shadow(0 4px 12px rgba(184,146,45,0.35)); }
.ah-promo-year { font-family: var(--font-mono); font-size: 0.58rem; font-weight: 700; color: var(--gold); opacity: 0.7; letter-spacing: 0.1em; white-space: nowrap; }


/* ═══ SCHWAAB PREVIEW ═══ */
.schwaab-preview { border: 1px solid var(--gray-light); border-radius: 8px; overflow: hidden; background: var(--white); padding: 24px 28px; box-shadow: 0 4px 40px rgba(0,0,0,0.04); transition: all 0.4s var(--ease); }
.schwaab-preview:hover { box-shadow: 0 8px 60px rgba(0,0,0,0.06); }
.schwaab-preview-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-light); }
.schwaab-preview-photo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid #8e24aa; flex-shrink: 0; }
.schwaab-preview-author-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--black); }
.schwaab-preview-author-role { font-family: var(--font-mono); font-size: 0.48rem; color: var(--gray-mid); letter-spacing: 0.04em; }
.schwaab-preview-alllink { margin-left: auto; font-family: var(--font-mono); font-size: 0.55rem; color: #8e24aa; text-decoration: none; font-weight: 700; padding: 5px 14px; border: 1px solid #8e24aa; border-radius: 3px; transition: all 0.3s; flex-shrink: 0; }
.schwaab-preview-alllink:hover { background: #8e24aa; color: var(--white); }
.schwaab-preview-badge { font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); background: #8e24aa; display: inline-block; padding: 3px 10px; border-radius: 2px; margin-bottom: 8px; }
.schwaab-preview-title { font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 600; color: var(--black); line-height: 1.25; margin-bottom: 8px; }
.schwaab-preview-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.schwaab-preview-title a:hover { color: #8e24aa; }
.schwaab-preview-excerpt { font-family: var(--font-body); font-size: 0.8rem; color: #555; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; }
.schwaab-preview-meta { font-family: var(--font-mono); font-size: 0.5rem; color: var(--gray-mid); display: flex; align-items: center; gap: 12px; }
.schwaab-preview-meta a { color: #8e24aa; text-decoration: none; font-weight: 700; }


/* ═══ PRICE TRACKER ═══ */
.price-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 0; border: 1px solid var(--gray-light); border-radius: 6px; overflow: hidden; }
.price-card { padding: 22px 24px; border-bottom: 1px solid var(--gray-light); border-right: 1px solid var(--gray-light); border-radius: 8px; transition: all 0.4s var(--ease); }
.price-card:hover { background: var(--gold-bg); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.price-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.price-card-cat { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.price-card-trend { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700; }
.price-card-trend.up { color: #2e7d32; }
.price-card-trend.down { color: #c62828; }
.price-card-trend.flat { color: var(--gray-mid); }
.price-card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 6px; line-height: 1.35; }
.price-card-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--black); margin-bottom: 4px; }
.price-card-value span { font-size: 0.65em; color: var(--gray-mid); font-weight: 400; }
.price-card-detail { font-family: var(--font-mono); font-size: 0.62rem; color: var(--gray-mid); line-height: 1.6; }
.price-card-source { font-family: var(--font-mono); font-size: 0.55rem; color: var(--gold); margin-top: 8px; letter-spacing: 0.05em; }
.price-card-source a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-pale); }
.price-card-source a:hover { color: var(--black); border-color: var(--black); }
.price-updated { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray-mid); margin-top: 16px; text-align: right; }


/* ═══ WEEKLY NEWS ═══ */
.weekly-section .weekly-container {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(10, 10, 10, 0.05), 0 1px 0 rgba(184, 146, 45, 0.08) inset;
}
.weekly-hero {
    position: relative;
    padding: 28px 32px 32px;
    background: linear-gradient(145deg, var(--cream) 0%, var(--gold-very-light) 42%, #faf8f3 100%);
    border-bottom: 1px solid var(--gold-pale);
}
.weekly-hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    border-radius: 14px 0 0 0;
}
.weekly-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
    background: var(--black);
    padding: 8px 14px 8px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(10, 10, 10, 0.12);
}
.weekly-hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 2px rgba(184, 146, 45, 0.35);
    flex-shrink: 0;
}
.weekly-hero-lead {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.55;
    color: var(--black);
    max-width: 52rem;
    letter-spacing: 0.01em;
}
.weekly-hero-lead + .weekly-hero-lead { margin-top: 12px; }
.weekly-hero-lead--en {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gray-mid);
}
.weekly-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 12px;
    padding: 14px 22px 12px;
    font-family: var(--font-mono);
    font-size: 0.52rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-mid);
    border-bottom: 1px solid var(--gray-light);
    background: var(--white);
}
.weekly-readtime { font-weight: 600; color: var(--black); }
.weekly-toolbar-sep { opacity: 0.45; font-weight: 400; }
.weekly-next-recap { color: var(--gray-mid); font-weight: 500; }
.weekly-toc {
    padding: 16px 22px 6px;
    border-bottom: 1px solid var(--gray-light);
    background: linear-gradient(180deg, rgba(184, 146, 45, 0.04), transparent);
}
.weekly-toc-title {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
}
.weekly-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.weekly-toc-list li { margin: 0; padding: 0; }
.weekly-toc-list a {
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    line-height: 1.4;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.weekly-toc-list a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold-pale);
}
[id^="weekly-item-"] { scroll-margin-top: 96px; }
.weekly-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    margin-top: -14px;
    margin-bottom: 22px;
}
.weekly-share-label {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-mid);
    font-weight: 500;
}
.weekly-share-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.weekly-share-btn {
    font-family: var(--font-mono);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1.5px solid var(--black);
    background: var(--white);
    color: var(--black);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.weekly-share-btn:hover {
    background: var(--black);
    color: var(--gold);
    border-color: var(--black);
}
.weekly-share-btn--native {
    border-color: var(--gray-light);
    color: var(--gray-mid);
    font-weight: 600;
}
.weekly-share-btn--native:hover {
    border-color: var(--gold);
    color: var(--black);
    background: var(--gold-bg);
}
.weekly-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 18px;
    padding: 22px 22px 26px;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 18%);
}
.weekly-card {
    display: flex;
    flex-direction: column;
    padding: 22px 22px 20px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.weekly-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.weekly-card--featured {
    grid-column: 1 / -1;
}
.weekly-card--featured .weekly-card-title {
    font-size: clamp(1.28rem, 2.4vw, 1.62rem);
    font-weight: 600;
}
.weekly-card--featured.weekly-card--has-media {
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
}
@media (min-width: 720px) {
    .weekly-card--featured.weekly-card--has-media {
        grid-template-columns: minmax(220px, 36%) 1fr;
    }
}
.weekly-card-media {
    position: relative;
    background: var(--cream);
    overflow: hidden;
}
.weekly-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.weekly-card--featured.weekly-card--has-media .weekly-card-media {
    min-height: 200px;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: stretch;
}
.weekly-card--featured.weekly-card--has-media .weekly-card-media img {
    min-height: 200px;
    flex: 1;
    object-fit: cover;
}
@media (min-width: 720px) {
    .weekly-card--featured.weekly-card--has-media .weekly-card-media {
        aspect-ratio: auto;
        min-height: 280px;
        align-self: stretch;
    }
    .weekly-card--featured.weekly-card--has-media .weekly-card-media img {
        min-height: 280px;
    }
}
.weekly-card--featured.weekly-card--has-media .weekly-card-body {
    padding: 24px 26px 22px;
    justify-content: center;
}
.weekly-card-media--compact {
    margin: -22px -22px 14px -22px;
    aspect-ratio: 16 / 9;
    border-radius: 11px 11px 0 0;
}
.weekly-pill-aune {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(184, 146, 45, 0.45);
    background: var(--gold-bg);
    padding: 4px 10px;
    border-radius: 999px;
}
@media (prefers-reduced-motion: reduce) {
    .weekly-card { transition: border-color 0.2s ease; }
}
.weekly-card:hover {
    border-color: rgba(184, 146, 45, 0.45);
    box-shadow: 0 12px 36px rgba(10, 10, 10, 0.06);
    transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
    .weekly-card:hover { transform: none; }
}
.weekly-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 12px;
}
.weekly-cat {
    font-family: var(--font-mono);
    font-size: 0.52rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    background: var(--gold-bg);
    border: 1px solid rgba(184, 146, 45, 0.22);
    padding: 4px 10px;
    border-radius: 999px;
}
.weekly-card-date {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-mid);
    font-weight: 500;
}
.weekly-card-title {
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: 0.01em;
}
.weekly-card-title-en {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gray-mid);
    margin: -4px 0 10px;
    line-height: 1.35;
}
.weekly-card-excerpt {
    font-family: var(--font-body);
    font-size: 0.86rem;
    color: #4a4844;
    line-height: 1.65;
    margin-bottom: 8px;
    flex: 1;
}
.weekly-card-excerpt--en {
    font-size: 0.8rem;
    color: var(--gray-mid);
}
.weekly-card-readmore {
    align-self: flex-start;
    margin-top: 6px;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1.5px solid var(--gold-pale);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.weekly-card-readmore:hover {
    color: var(--black);
    border-bottom-color: var(--black);
}
.weekly-empty {
    padding: 48px 28px 52px;
    text-align: center;
    background: linear-gradient(180deg, var(--off-white), var(--white));
}
.weekly-empty-visual {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold-very-light), var(--cream));
    border: 1px solid var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gold);
}
.weekly-empty-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.weekly-empty-text {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--gray-mid);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.65;
}
html.dark .weekly-section .weekly-container {
    background: #1a1a1a;
    border-color: #333;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
html.dark .weekly-hero {
    background: linear-gradient(145deg, #222 0%, #1e1c18 100%);
    border-bottom-color: #333;
}
html.dark .weekly-hero-lead { color: #e8e6e0; }
html.dark .weekly-cards {
    background: linear-gradient(180deg, #141414 0%, #1a1a1a 20%);
}
html.dark .weekly-card {
    background: #1e1e1e;
    border-color: #333;
}
html.dark .weekly-card:hover {
    border-color: rgba(184, 146, 45, 0.5);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}
html.dark .weekly-card-title { color: #e8e6e0; }
html.dark .weekly-card-excerpt { color: #aaa; }
html.dark .weekly-empty { background: linear-gradient(180deg, #141414, #1a1a1a); }
html.dark .weekly-empty-title { color: #e8e6e0; }
html.dark .weekly-empty-text { color: #888; }
html.dark .weekly-empty-visual {
    background: linear-gradient(135deg, #2a2418, #1e1c16);
    border-color: #444;
}
html.dark .weekly-card-readmore:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }
html.dark .weekly-share-btn {
    background: #1e1e1e;
    color: #e8e6e0;
    border-color: #555;
}
html.dark .weekly-share-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
html.dark .weekly-share-btn--native {
    border-color: #444;
    color: #999;
}
html.dark .weekly-share-btn--native:hover {
    background: #2a2418;
    color: var(--gold);
    border-color: var(--gold);
}
html.dark .weekly-share-label { color: #888; }
html.dark .weekly-card-media { background: #222; }
html.dark .weekly-pill-aune {
    color: var(--gold-bright);
    border-color: rgba(212, 168, 50, 0.5);
    background: rgba(184, 146, 45, 0.12);
}
html.dark .weekly-toolbar {
    background: #1a1a1a;
    border-bottom-color: #333;
}
html.dark .weekly-readtime { color: #e8e6e0; }
html.dark .weekly-next-recap { color: #888; }
html.dark .weekly-toc {
    border-bottom-color: #333;
    background: linear-gradient(180deg, rgba(184, 146, 45, 0.08), transparent);
}
html.dark .weekly-toc-list a { color: #e8e6e0; }
html.dark .weekly-toc-list a:hover { color: var(--gold-bright); }


/* ═══ ESTIME TON OEUVRE ═══ */
.estime-wrap { border: 1px solid var(--gray-light); border-radius: 8px; overflow: hidden; background: var(--white); box-shadow: 0 4px 40px rgba(0,0,0,0.04); }
.estime-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.estime-col { padding: 32px; }
.estime-col + .estime-col { border-left: 1px solid var(--gray-light); }
.estime-col-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--black); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.estime-col-title .estime-num { font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700; width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--black); color: var(--gold); flex-shrink: 0; }
.estime-upload { border: 1.5px dashed var(--gray-light); border-radius: 8px; padding: 36px 20px; text-align: center; cursor: pointer; transition: all 0.4s var(--ease); background: var(--cream); position: relative; overflow: hidden; }
.estime-upload:hover, .estime-upload.dragover { border-color: var(--gold); background: var(--gold-bg); }
.estime-upload.has-image { padding: 0; border-style: solid; border-color: var(--gray-light); }
.estime-upload img { width: 100%; height: 240px; object-fit: contain; display: block; background: var(--cream); border-radius: 6px; }
.estime-upload .eu-content { pointer-events: none; }
.estime-upload svg { width: 32px; height: 32px; stroke: var(--gray-mid); margin-bottom: 10px; }
.estime-upload p { font-family: var(--font-body); font-size: 0.82rem; color: var(--gray-mid); }
.estime-upload p span { color: var(--gold); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.estime-upload .eu-hint { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray-mid); margin-top: 4px; opacity: 0.7; }
.estime-remove { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.6); color: #fff; border: none; width: 26px; height: 26px; border-radius: 50%; cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; z-index: 2; transition: background 0.3s; }
.estime-remove:hover { background: rgba(0,0,0,0.85); }
.estime-field { margin-bottom: 14px; }
.estime-field label { display: block; font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 5px; }
.estime-field input, .estime-field select, .estime-field textarea { width: 100%; padding: 9px 12px; border: 1px solid var(--gray-light); border-radius: 6px; font-family: var(--font-body); font-size: 0.88rem; font-weight: 300; color: var(--black); background: var(--white); transition: border-color 0.3s, box-shadow 0.3s; outline: none; }
.estime-field input:focus, .estime-field select:focus, .estime-field textarea:focus { border-color: var(--black); box-shadow: 0 0 0 3px rgba(10,10,10,0.05); }
.estime-field textarea { resize: vertical; min-height: 60px; }
.estime-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238a8780' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.estime-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.estime-btn { width: 100%; padding: 13px 20px; background: var(--black); color: var(--gold); border: none; border-radius: 6px; font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; cursor: pointer; transition: all 0.4s var(--ease); margin-top: 6px; text-transform: uppercase; }
.estime-btn:hover:not(:disabled) { background: var(--gold); color: var(--black); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.estime-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.estime-btn .estime-spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(200,160,51,0.3); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.7s linear infinite; margin-right: 8px; vertical-align: middle; }
.estime-btn.loading .estime-spinner { display: inline-block; }
.estime-btn.loading { pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.estime-result { display: none; margin-top: 24px; animation: fadeUp 0.5s ease; }
.estime-result.visible { display: block; }
.estime-result-header { text-align: center; padding: 24px 20px 20px; background: #f0f7f3; border-radius: 8px 8px 0 0; border: 1px solid #d4e8db; border-bottom: none; }
.estime-result-label { font-family: var(--font-mono); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #2e7d32; margin-bottom: 6px; }
.estime-price-range { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: #2e7d32; line-height: 1.2; }
.estime-result-body { padding: 20px; border: 1px solid var(--gray-light); border-top: none; border-radius: 0 0 8px 8px; background: var(--white); }
.estime-result-body h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--black); }
.estime-analysis { font-family: var(--font-body); font-size: 0.82rem; color: var(--gray-mid); line-height: 1.65; white-space: pre-wrap; }
.estime-factors { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray-light); }
.estime-factor-list { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.estime-factor-list li { font-family: var(--font-mono); font-size: 0.6rem; font-weight: 400; padding: 4px 10px; background: var(--cream); border-radius: 20px; color: var(--gray-mid); }
.estime-disclaimer { margin-top: 18px; padding: 14px 16px; background: var(--gold-bg); border-left: 3px solid var(--gold); border-radius: 0 6px 6px 0; font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray-mid); line-height: 1.6; }
.estime-disclaimer strong { font-weight: 700; color: var(--gold); }
#estime-file-input { display: none; }


/* ═══ SPONSORS — DESKTOP SIDEBAR ═══ */
.sponsors-sidebar { display: none; }
@media (min-width: 1200px) {
    .sponsors-sidebar { display: block; position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 90; width: 160px; }
    .sponsors-sidebar-inner { background: var(--white); border: 1px solid var(--gray-light); border-right: none; border-radius: 8px 0 0 8px; padding: 20px 14px; box-shadow: -4px 0 30px rgba(0,0,0,0.04); display: flex; flex-direction: column; align-items: center; gap: 16px; }
    .sponsors-sidebar-title { font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-mid); text-align: center; padding-bottom: 10px; border-bottom: 1px solid var(--gray-light); width: 100%; }
    .sponsor-slot { width: 100%; text-align: center; padding: 12px 8px; border: 1.5px dashed var(--gray-light); border-radius: 6px; transition: all 0.3s var(--ease); text-decoration: none; display: block; }
    .sponsor-slot:hover { border-color: var(--gold); background: var(--gold-bg); }
    .sponsor-slot-logo { width: 80px; height: 40px; margin: 0 auto 6px; background: var(--cream); border-radius: 4px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .sponsor-slot-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
    .sponsor-slot-logo .sponsor-placeholder { font-family: var(--font-display); font-size: 0.7rem; color: var(--gray-mid); font-style: italic; }
    .sponsor-slot-name { font-family: var(--font-mono); font-size: 0.5rem; color: var(--black); font-weight: 700; letter-spacing: 0.04em; margin-bottom: 2px; }
    .sponsor-slot-type { font-family: var(--font-mono); font-size: 0.42rem; color: var(--gray-mid); letter-spacing: 0.06em; text-transform: uppercase; }
    .sponsors-sidebar-cta { width: 100%; text-align: center; padding-top: 10px; border-top: 1px solid var(--gray-light); }
    .sponsors-sidebar-cta a { font-family: var(--font-mono); font-size: 0.48rem; color: var(--gold); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; }
    .sponsors-sidebar-cta a:hover { color: var(--black); }
}

/* ═══ SPONSORS — MOBILE BANNER ═══ */
.sponsors-mobile-banner { display: none; position: relative; z-index: 10; max-width: 1400px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 1199px) { .sponsors-mobile-banner { display: block; } }
.sponsors-mobile-inner { border: 1px solid var(--gray-light); border-radius: 8px; padding: 20px 24px; background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.03); }
.sponsors-mobile-title { font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-mid); text-align: center; margin-bottom: 14px; }
.sponsors-mobile-slots { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.sponsors-mobile-slot { display: flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1.5px solid var(--gray-light); border-radius: 6px; text-decoration: none; transition: all 0.3s var(--ease); flex: 0 1 auto; min-width: 140px; }
.sponsors-mobile-slot:hover { border-color: var(--gold); background: var(--gold-bg); }
.sponsors-mobile-slot-logo { width: 48px; height: 32px; background: var(--cream); border-radius: 4px; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.sponsors-mobile-slot-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.sponsors-mobile-slot-logo .smp { font-family: var(--font-display); font-size: 0.6rem; color: var(--gray-mid); font-style: italic; }
.sponsors-mobile-slot-info { display: flex; flex-direction: column; }
.sponsors-mobile-slot-name { font-family: var(--font-mono); font-size: 0.55rem; color: var(--black); font-weight: 700; letter-spacing: 0.03em; }
.sponsors-mobile-slot-type { font-family: var(--font-mono); font-size: 0.42rem; color: var(--gray-mid); letter-spacing: 0.06em; text-transform: uppercase; }
.sponsors-mobile-cta { text-align: center; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--gray-light); }
.sponsors-mobile-cta a { font-family: var(--font-mono); font-size: 0.52rem; color: var(--gold); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; }
.sponsors-mobile-cta a:hover { color: var(--black); }


/* ═══ SEO TEXT ═══ */
.seo-text { position: relative; z-index: 10; max-width: 1400px; margin: 0 auto; padding: 0 24px 40px; font-size: 0.78rem; line-height: 1.75; color: var(--gray-mid); }
.seo-text h2 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.seo-text p { margin-bottom: 10px; }


/* ═══ FOOTER ═══ */
footer { position: relative; z-index: 10; border-top: 1px solid var(--gray-light); padding: 60px 24px; text-align: center; background: var(--white); }
.footer-logo { font-family: var(--font-display); font-weight: 300; font-size: 1.8rem; letter-spacing: 0.04em; color: var(--black); margin-bottom: 6px; }
.footer-logo em { color: var(--gold); font-style: italic; }
.footer-contact { margin-top: 12px; }
.footer-contact a { font-family: var(--font-mono); font-size: 0.75rem; color: var(--gold); text-decoration: none; letter-spacing: 0.1em; border-bottom: 1px solid var(--gold-pale); padding-bottom: 2px; transition: all 0.25s ease; }
.footer-contact a:hover { color: var(--black); border-color: var(--black); }
.footer-nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.footer-nav-link { font-family: var(--font-mono); font-size: 0.65rem; color: var(--gold); text-decoration: none; letter-spacing: 0.04em; transition: color 0.3s; }
.footer-nav-link:hover { color: var(--black); }
.footer-nav-sep { color: var(--gray-light); font-size: 0.5rem; }
.footer-nav-battle { font-weight: 700; padding: 4px 14px; background: var(--gold); color: var(--black); border-radius: 20px; }
.footer-nav-battle:hover { background: var(--black); color: var(--gold); }
.footer-copy { font-family: var(--font-mono); margin-top: 16px; font-size: 0.6rem; color: var(--gray-mid); letter-spacing: 0.06em; }
.footer-dots { display: flex; justify-content: center; gap: 6px; margin-top: 20px; }
.footer-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: 0.3; }
.footer-dots span:nth-child(3) { opacity: 0.8; transform: scale(1.3); }


/* ═══════════════════════════════════════════
   RESPONSIVE — CONSOLIDATED MEDIA QUERIES
   ═══════════════════════════════════════════ */

/* ── Tablet & below (max 1024px) ── */
@media (max-width: 1024px) {
    .fm-layout { grid-template-columns: 1fr; }
    .fm-sidebar { display: none; }
    .fm-main { border-right: none; }
    main.container { display: block; }
}
@media (min-width: 1025px) {
    main.container.fm-hidden-desktop { display: none; }
}

/* ── Tablet (max 860px) ── */
@media (max-width: 860px) {
    .sphere, .sphere-1, .sphere-2, .sphere-3, .sphere-4 { display: none; }
    .kusama-bg { display: none; }

    /* Continuous SVG rotation + sticky stack = extra GPU churn on phones. */
    .header-cta-btn .cta-flower svg { animation: none; }

    body { font-size: 14px; line-height: 1.6; }

    header { padding: 40px 16px 28px; }
    h1 { font-size: clamp(2.4rem, 10vw, 4rem); }
    .subtitle-fr { font-size: 1rem; }
    .subtitle-block { margin-top: 6px; }
    .tagline { margin-top: 8px; font-size: 0.48rem; }
    .marquee-wrap { padding: 10px 0; }

    .filters { padding: 8px 12px; }
    .nav-line-1 .nav-bar-nl-label { display: none; }
    .nav-bar-nl .nl-form-wrap { margin-left: 0; width: 100%; max-width: none; }
    .nl-form { width: 100%; }
    .nl-input { flex: 1; width: auto; font-size: 0.68rem; padding: 6px 12px; }
    .nl-input:focus { width: auto; }
    .nl-btn { padding: 6px 14px; font-size: 0.52rem; }

    .nav-tabs-bar { justify-content: flex-start; padding: 4px 6px; }
    .nav-tab { padding: 5px 9px; font-size: 0.82rem; }
    .nav-blob { width: 16px; height: 16px; margin-right: 4px; }
    .nav-blob::after { top: 2px; left: 4px; width: 4px; height: 3px; }

    .section-block { padding: 0 14px 40px; }
    .artdujour-section { padding: 20px 14px 0; }
    .section-header { margin-bottom: 20px; }
    .section-header h2 { font-size: 1.4rem; }
    .section-tag { font-size: 0.48rem; margin-bottom: 18px; }
    .dots-divider { padding: 28px 0; }

    .grid { grid-template-columns: 1fr; }
    .card { padding: 18px 16px; min-height: auto; }
    .card-title { font-size: 0.95rem; line-height: 1.4; }
    .card-source { font-size: 0.5rem; margin-bottom: 6px; }
    main.container { padding: 20px 14px 30px; }

    .artdujour-card { grid-template-columns: 1fr; }
    /* Reserve space so the image cannot resize the row when it loads (CLS / “saut”). */
    .artdujour-img-wrap {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }
    .artdujour-img-wrap img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .artdujour-content { padding: 24px 20px 20px; }
    .artdujour-text, .radar-analysis, .analyse-text, .weekly-article-excerpt, .interview-text { font-size: 0.82rem; line-height: 1.65; }
    .artdujour-text-en, .radar-analysis-en, .analyse-text-en { font-size: 0.76rem; }

    .analyse-card { grid-template-columns: 1fr; }
    .analyse-img-wrap {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }
    .analyse-img-wrap img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .analyse-content { padding: 20px 16px 16px; }
    .analyse-title { font-size: 1.1rem; }
    .analyse-v2 { padding: 18px 14px; }
    .analyse-v2-visuals { grid-template-columns: 1fr; gap: 10px; }
    .analyse-v2-main { min-height: 220px; }
    .analyse-v2-zooms { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .analyse-v2-zoom-img { height: 100px; }
    .analyse-v2-block h3 { font-size: 0.98rem; }
    .analyse-v2-block p { font-size: 0.84rem; line-height: 1.65; }

    .interview-card { grid-template-columns: 1fr; max-height: 600px; }
    .interview-sig-name { font-size: 0.98rem; }
    .interview-sig-role { font-size: 0.5rem; padding-left: 8px; }
    .interview-sig-prefix { font-size: 0.52rem; }
    .interview-sig-dateline { font-size: 0.48rem; }
    .interview-read-full { font-size: 0.8rem !important; padding: 7px 14px; }
    .interview-portrait-placeholder { min-height: 200px; }
    .interview-content { padding: 24px 20px 20px; }
    .interview-text { max-height: 120px; }
    .interview-name { font-size: 1.1rem; }

    .quiz-tabs { flex-wrap: wrap; }
    .quiz-tab { flex: 1 1 48%; }
    .quiz-card { padding: 20px 14px; }
    .quiz-question { font-size: 1.1rem; }
    .quiz-opt { font-size: 0.82rem; padding: 12px 16px; }

    .price-grid { grid-template-columns: 1fr; }
    .price-card-detail { font-size: 0.58rem; line-height: 1.55; }
    .price-card-value { font-size: 1.2rem; }

    #radarArt { margin: 0 -14px; padding: 32px 14px; }

    .galeries-vedette { padding: 0 12px 20px; --gv-slot-min-h: min(420px, 88vw); }
    .galeries-band { grid-template-columns: 1fr; gap: 12px; }
    .galeries-grid { grid-column: auto; order: 0; }
    .gv-galerie-placeholder { min-height: var(--gv-slot-min-h, 380px); padding: 16px 14px; }
    .gv-ph-icon { font-size: 1.4rem; }
    .gv-ph-title { font-size: 0.85rem; }
    .gv-promo-card { min-height: auto; padding: 22px 16px; }
    .gv-promo-icon { font-size: 1.8rem; margin-bottom: 8px; }
    .gv-promo-title { font-size: 1.15rem; }
    .gv-promo-text { font-size: 0.72rem; margin-bottom: 10px; max-width: none; }
    .gv-promo-btn { font-size: 0.6rem; padding: 8px 16px; }
    .gv-itw-artist-name { font-size: 1.15rem; }
    .gv-itw-title { font-size: 0.95rem; -webkit-line-clamp: 4; }
    .gv-itw-cta-btn { font-size: 0.85rem; padding: 8px 20px; }

    .schwaab-preview { padding: 18px 16px; }
    .schwaab-preview-header { gap: 10px; }
    .schwaab-preview-alllink { display: none; }

    /* Estime mobile */
    #estimeOeuvre { padding-left: 10px; padding-right: 10px; padding-bottom: 30px; }
    #estimeOeuvre .estime-wrap { border-radius: 6px; }
    #estimeOeuvre .estime-grid { grid-template-columns: 1fr; }
    #estimeOeuvre .estime-col { padding: 20px 14px; }
    #estimeOeuvre .estime-col + .estime-col { border-left: none; border-top: 1px solid var(--gray-light); }
    #estimeOeuvre .estime-row-2 { grid-template-columns: 1fr; gap: 0; }
    #estimeOeuvre .estime-upload { padding: 22px 12px; }
    #estimeOeuvre .estime-upload img { height: 180px; }
    #estimeOeuvre .estime-field input, #estimeOeuvre .estime-field select, #estimeOeuvre .estime-field textarea { font-size: 16px; padding: 10px; max-width: 100%; }
    #estimeOeuvre .estime-field select { padding-right: 28px; background-position: right 8px center; }
    #estimeOeuvre .estime-btn { font-size: 0.65rem; padding: 12px 16px; }
    #estimeOeuvre .estime-result-header { padding: 16px 12px; }
    #estimeOeuvre .estime-price-range { font-size: 1.3rem; }
    #estimeOeuvre .estime-result-body { padding: 12px; }
    #estimeOeuvre .estime-disclaimer { padding: 10px 12px; font-size: 0.52rem; }
    #estimeOeuvre .estime-factor-list li { font-size: 0.5rem; padding: 3px 7px; }

    /* Art Battle promo */
    .ab-promo { padding: 0 12px 24px; }
    .ab-promo-inner { flex-direction: column; padding: 20px 18px; text-align: center; }
    .ab-promo-steps { justify-content: center; }
    .ab-promo-right { flex-direction: row; gap: 12px; }
    .ab-promo-emoji { font-size: 2rem; }
    .ab-promo-vs { font-size: 1.2rem; }
    .ab-promo-cta { width: 100%; justify-content: center; }

    .ah-promo { padding: 0 12px 24px; }
    .ah-promo-inner { flex-direction: column; padding: 20px 18px; text-align: center; }
    .ah-promo-steps { justify-content: center; }
    .ah-promo-right { flex-direction: row; gap: 14px; }
    .ah-promo-emoji { font-size: 2.2rem; }
    .ah-promo-year { font-size: 0.55rem; }
    .ah-promo-cta { width: 100%; justify-content: center; }

    /* Sponsors mobile */
    .sponsors-mobile-banner { padding: 0 12px; }
}

/* ── Small phones (max 480px) ── */
@media (max-width: 480px) {
    header { padding: 32px 12px 22px; }
    h1 { font-size: 2.2rem; }
    .france-word { font-size: 0.42rem; letter-spacing: 0.35em; }
    .subtitle-block { margin-top: 14px; }
    .quote-du-jour-text { font-size: 0.95rem; padding: 0 14px; }
    .quote-du-jour-text::before { font-size: 2rem; top: -8px; left: -2px; }
    .header-cta { gap: 16px; margin-top: 20px; }
    .header-cta-btn { font-size: 0.85rem; padding: 11px 22px; }
    .header-cta-btn .cta-flower { width: 22px; height: 22px; }

    .filters { padding: 10px 10px; }
    .filter-btn { font-size: 0.72rem; padding: 5px 12px; }
    .nav-bar-link { font-size: 0.52rem; padding: 3px 5px; }

    .section-header h2 { font-size: 1.2rem; }
    .artdujour-title { font-size: 1.15rem; }
    .radar-title { font-size: 1.05rem; }
    .analyse-title { font-size: 1.05rem; }
    .interview-name { font-size: 1.2rem; }
    .card-title { font-size: 1rem; }
    .weekly-article-title { font-size: 1.05rem; }
    main.container { padding: 14px 10px 24px; }

    .grid { grid-template-columns: 1fr; }
    .card { padding: 16px 14px; min-height: 120px; }

    .sponsors-mobile-inner { padding: 16px 14px; }
    .sponsors-mobile-slots { gap: 8px; }
    .sponsors-mobile-slot { padding: 8px 12px; min-width: 120px; }

    .galeries-band { gap: 10px; }
    .gv-promo-card { padding: 18px 14px; }
    .gv-promo-title { font-size: 1.05rem; }
    .gv-promo-text { font-size: 0.65rem; margin-bottom: 8px; }
    .gv-promo-btn { font-size: 0.55rem; padding: 6px 14px; }
    .gv-itw-portrait { width: 50px; height: 50px; }
    .gv-itw-portrait-placeholder { width: 50px; height: 50px; font-size: 1.1rem; }
    .gv-itw-artist-name { font-size: 1.05rem; }
    .gv-itw-artist-role { font-size: 0.48rem; }
    .gv-itw-title { font-size: 0.9rem; }
    .gv-itw-cta-btn { font-size: 0.8rem; padding: 8px 18px; }
    .gv-itw-new-badge { font-size: 0.45rem; padding: 3px 10px; }
}

/* ── Touch devices: disable hover jump on images ── */
@media (hover: none) and (pointer: coarse) {
    .latest-art-card:hover,
    .pb-card:hover,
    .galerie-card:hover,
    .artdujour-card:hover {
        transform: none;
    }
    .latest-art-card:hover .latest-art-card-img img,
    .pb-card:hover .pb-card-img,
    .galerie-card:hover .galerie-card-img img,
    .artdujour-card:hover .artdujour-img-wrap img {
        transform: none;
    }
}


/* ═══════════════════════════════════════════
   PAGE TRANSITION — fade in on load
   ═══════════════════════════════════════════ */
body {
    animation: pageIn 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes pageIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* (new badge is now inline — see .gv-itw-new-badge above) */
@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* ═══════════════════════════════════════════
   DARK MODE TOGGLE BUTTON
   ═══════════════════════════════════════════ */
.dark-mode-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-light);
    background: var(--white);
    color: var(--black);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.dark-mode-toggle:hover {
    border-color: var(--gold);
    transform: scale(1.1);
}

/* ═══════════════════════════════════════════
   DARK MODE
   ═══════════════════════════════════════════ */
html.dark {
    --black: #f0ede6;
    --white: #121212;
    --off-white: #1a1a1a;
    --cream: #222;
    --gray-light: #333;
    --gray-mid: #999;
    --gold-very-light: rgba(184,146,45,0.12);
    --gold-pale: rgba(184,146,45,0.3);
}
html.dark body { background: #121212; color: #e8e6e0; }
html.dark header { background: #1a1a1a; }
html.dark .nav-tabs-bar { background: #1a1a1a; border-bottom-color: #333; }
html.dark .nav-tab { color: #999; }
html.dark .nav-tab:hover { color: #e8e6e0; background: rgba(255,255,255,0.04); border-color: #444; }
html.dark .nav-tab.active { color: var(--gold); border-color: var(--gold); background: rgba(184,146,45,0.12); }
html.dark .filters { background: rgba(26,26,26,0.97); border-bottom-color: var(--gold); }
html.dark .card { background: #1e1e1e; border-color: #333; }
html.dark .card-title a { color: #e8e6e0; }
html.dark .card-source { color: #999; }
html.dark .gv-promo-card { background: #1e1e1e; border-color: #333; }
html.dark .gv-promo-schwaab { background: #1e1e1e; border-color: #333; }
html.dark .gv-promo-schwaab .gv-promo-title { color: #e8e6e0; }
html.dark .gv-promo-interview { background: #1e1e1e; border-color: #333; }
html.dark .gv-itw-artist-name { color: #e8e6e0; }
html.dark .gv-itw-title { color: #bbb; border-color: #333; }
html.dark .galerie-card { background: #1e1e1e; border-color: #333; }
html.dark .galerie-card-name { color: #e8e6e0; }
html.dark .gv-galerie-placeholder { background: #222; border-color: #444; }
html.dark .section-header h2 { color: #e8e6e0; }
html.dark .marquee-wrap { background: #0a0a0a; border-color: var(--gold); }
html.dark .marquee-wrap a { color: var(--gold); }
html.dark .artdujour-card { background: #1e1e1e; border-color: #333; }
html.dark .artdujour-artist { color: #e8e6e0; }
html.dark .artdujour-text { color: #bbb; }
html.dark .interview-card { background: #1e1e1e; border-color: #333; }
html.dark .interview-sig-name { color: #e8e6e0; }
html.dark .interview-sig-role { border-left-color: #444; }
html.dark .interview-footer { border-top-color: #333; }
html.dark .interview-name { color: #e8e6e0; }
html.dark .schwaab-preview { background: #1e1e1e; border-color: #333; }
html.dark .seo-block { background: #1a1a1a; }
html.dark .seo-block p { color: #999; }
html.dark footer { background: #121212; border-color: #333; }
html.dark .footer-logo { color: #e8e6e0; }
html.dark .dark-mode-toggle { background: #1e1e1e; border-color: #444; color: #e8e6e0; }
html.dark .header-cta-btn { background: #1a1a1a; color: #e8e6e0; }
html.dark .header-cta-btn::before { border-color: #555; }
html.dark .nl-input { background: #222; color: #e8e6e0; border-color: #444; }
html.dark .nl-input::placeholder { color: #777; }
html.dark .fm-sidebar { background: #1a1a1a; border-color: #333; }
html.dark .fm-item { border-bottom-color: #2a2a2a; }
html.dark .fm-item:hover { background: #222; }
html.dark .fm-title { color: #ddd; }
html.dark .fm-source { color: #888; }
