/* ==========================================================================
   ReprogrammationMoteurParis.fr - Urban Parisian Gold Theme
   Prefix: repprs
   Fonts: Urbanist + Inter
   Colors: #2D2D2D dark, #FFD700 gold, #1C1C1C deep black
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --repprs-gold: #FFD700;
    --repprs-gold-dark: #C5A200;
    --repprs-gold-light: #FFE44D;
    --repprs-gold-muted: #B8960C;
    --repprs-bg-dark: #1C1C1C;
    --repprs-bg-medium: #2D2D2D;
    --repprs-bg-card: #333333;
    --repprs-bg-card-light: #3A3A3A;
    --repprs-bg-light: #F8F6F0;
    --repprs-bg-cream: #FFFDF5;
    --repprs-text-white: #FAFAFA;
    --repprs-text-light: #D4D4D4;
    --repprs-text-muted: #999999;
    --repprs-text-dark: #1C1C1C;
    --repprs-text-body: #555555;
    --repprs-border-dark: #404040;
    --repprs-border-light: #E8E4DA;
    --repprs-shadow: rgba(0, 0, 0, 0.3);
    --repprs-shadow-gold: rgba(255, 215, 0, 0.12);
    --repprs-gradient-hero: linear-gradient(170deg, #1C1C1C 0%, #2D2D2D 40%, #1C1C1C 100%);
    --repprs-gradient-gold: linear-gradient(135deg, #FFD700, #C5A200);
    --repprs-radius-sm: 8px;
    --repprs-radius-md: 16px;
    --repprs-radius-lg: 24px;
    --repprs-radius-xl: 32px;
    --repprs-transition: 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--repprs-bg-light);
    color: var(--repprs-text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    color: var(--repprs-text-dark);
}

a {
    color: var(--repprs-gold-dark);
    text-decoration: none;
    transition: color var(--repprs-transition);
}

a:hover {
    color: var(--repprs-gold);
}

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

/* --- Container --- */
.repprs-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.repprs-container-narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header --- */
.repprs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--repprs-border-dark);
}

.repprs-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.repprs-logo {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--repprs-text-white);
    letter-spacing: 0.02em;
}

.repprs-logo span {
    color: var(--repprs-gold);
}

.repprs-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.repprs-nav a {
    font-family: 'Urbanist', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--repprs-text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
}

.repprs-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--repprs-gold);
    transition: width var(--repprs-transition);
}

.repprs-nav a:hover {
    color: var(--repprs-gold);
}

.repprs-nav a:hover::after {
    width: 100%;
}

/* --- Hero --- */
.repprs-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: var(--repprs-gradient-hero);
    padding-top: 70px;
    overflow: hidden;
}

.repprs-hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.repprs-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--repprs-bg-light) 0%, transparent 100%);
    pointer-events: none;
}

.repprs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

.repprs-hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 50px;
    font-family: 'Urbanist', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--repprs-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.repprs-hero h1 {
    font-size: 3.4rem;
    color: var(--repprs-text-white);
    margin-bottom: 20px;
}

.repprs-hero h1 strong {
    color: var(--repprs-gold);
    display: block;
}

.repprs-hero-desc {
    font-size: 1.1rem;
    color: var(--repprs-text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.repprs-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.repprs-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    background: var(--repprs-gradient-gold);
    color: var(--repprs-bg-dark);
    font-family: 'Urbanist', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--repprs-radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--repprs-transition);
}

.repprs-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--repprs-shadow-gold);
    color: var(--repprs-bg-dark);
}

.repprs-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: transparent;
    color: var(--repprs-gold);
    font-family: 'Urbanist', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: var(--repprs-radius-sm);
    cursor: pointer;
    transition: all var(--repprs-transition);
}

.repprs-btn-ghost:hover {
    border-color: var(--repprs-gold);
    background: rgba(255, 215, 0, 0.08);
    color: var(--repprs-gold);
}

/* --- Gold Separator --- */
.repprs-gold-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--repprs-gold-dark), var(--repprs-gold), var(--repprs-gold-dark), transparent);
    opacity: 0.5;
}

/* --- Trust Badges --- */
.repprs-trust {
    padding: 56px 0;
    background: var(--repprs-bg-cream);
    border-bottom: 1px solid var(--repprs-border-light);
}

.repprs-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.repprs-trust-item {
    text-align: center;
    padding: 28px 16px;
    background: #fff;
    border: 1px solid var(--repprs-border-light);
    border-radius: var(--repprs-radius-md);
    transition: all var(--repprs-transition);
}

.repprs-trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
    border-color: var(--repprs-gold-dark);
}

.repprs-trust-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.repprs-trust-number {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--repprs-gold-dark);
}

.repprs-trust-label {
    font-size: 0.82rem;
    color: var(--repprs-text-muted);
    font-weight: 500;
}

/* --- Section --- */
.repprs-section {
    padding: 80px 0;
}

.repprs-section-cream {
    background: var(--repprs-bg-cream);
}

.repprs-section-dark {
    background: var(--repprs-bg-dark);
    color: var(--repprs-text-white);
}

.repprs-section-title {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 12px;
}

.repprs-section-dark .repprs-section-title {
    color: var(--repprs-text-white);
}

.repprs-section-title span {
    color: var(--repprs-gold-dark);
}

.repprs-section-subtitle {
    text-align: center;
    color: var(--repprs-text-muted);
    font-size: 1.02rem;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Services --- */
.repprs-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.repprs-service-card {
    padding: 34px 26px;
    background: #fff;
    border: 1px solid var(--repprs-border-light);
    border-radius: var(--repprs-radius-md);
    transition: all var(--repprs-transition);
    position: relative;
    overflow: hidden;
}

.repprs-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--repprs-gradient-gold);
    transition: height var(--repprs-transition);
}

.repprs-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.repprs-service-card:hover::before {
    height: 100%;
}

.repprs-service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 14px;
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.repprs-service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

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

/* --- Articles --- */
.repprs-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.repprs-article-card {
    background: #fff;
    border: 1px solid var(--repprs-border-light);
    border-radius: var(--repprs-radius-md);
    overflow: hidden;
    transition: all var(--repprs-transition);
}

.repprs-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.08);
}

.repprs-article-thumb {
    height: 180px;
    background: linear-gradient(140deg, #2D2D2D 0%, #1C1C1C 100%);
    position: relative;
}

.repprs-article-thumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, #fff 0%, transparent 100%);
}

.repprs-article-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    background: var(--repprs-gradient-gold);
    color: var(--repprs-bg-dark);
    font-family: 'Urbanist', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 6px;
    z-index: 2;
}

.repprs-article-body {
    padding: 22px;
}

.repprs-article-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    font-size: 0.78rem;
    color: var(--repprs-text-muted);
}

.repprs-article-card h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
    line-height: 1.35;
}

.repprs-article-card h3 a {
    color: var(--repprs-text-dark);
}

.repprs-article-card h3 a:hover {
    color: var(--repprs-gold-dark);
}

.repprs-article-excerpt {
    font-size: 0.86rem;
    color: var(--repprs-text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.repprs-article-link {
    font-family: 'Urbanist', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--repprs-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.repprs-article-link:hover {
    color: var(--repprs-gold);
}

/* --- CTA --- */
.repprs-cta-section {
    padding: 80px 0;
    background: var(--repprs-bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.repprs-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
}

.repprs-cta-section h2 {
    font-size: 2.3rem;
    color: var(--repprs-text-white);
    margin-bottom: 14px;
    position: relative;
}

.repprs-cta-section h2 span {
    color: var(--repprs-gold);
}

.repprs-cta-section p {
    color: var(--repprs-text-muted);
    font-size: 1.05rem;
    margin-bottom: 34px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* --- Footer --- */
.repprs-footer {
    padding: 56px 0 28px;
    background: var(--repprs-bg-medium);
    color: var(--repprs-text-light);
}

.repprs-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

.repprs-footer-brand {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--repprs-text-white);
    margin-bottom: 14px;
}

.repprs-footer-brand span {
    color: var(--repprs-gold);
}

.repprs-footer-desc {
    font-size: 0.86rem;
    color: var(--repprs-text-muted);
    line-height: 1.7;
}

.repprs-footer h4 {
    font-family: 'Urbanist', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--repprs-gold);
    margin-bottom: 18px;
}

.repprs-footer-links {
    list-style: none;
}

.repprs-footer-links li {
    margin-bottom: 10px;
}

.repprs-footer-links a {
    font-size: 0.86rem;
    color: var(--repprs-text-muted);
    transition: color var(--repprs-transition);
}

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

.repprs-footer-bottom {
    padding-top: 22px;
    border-top: 1px solid var(--repprs-border-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--repprs-text-muted);
}

/* --- Single --- */
.repprs-single {
    padding-top: 98px;
    padding-bottom: 80px;
}

.repprs-single-header {
    max-width: 780px;
    margin: 0 auto 36px;
    text-align: center;
}

.repprs-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 0.82rem;
    color: var(--repprs-text-muted);
}

.repprs-breadcrumb a {
    color: var(--repprs-text-muted);
}

.repprs-breadcrumb a:hover {
    color: var(--repprs-gold-dark);
}

.repprs-breadcrumb .repprs-sep {
    color: var(--repprs-border-light);
}

.repprs-single-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
    font-size: 0.84rem;
    color: var(--repprs-text-muted);
}

.repprs-single h1 {
    font-size: 2.6rem;
    line-height: 1.15;
}

/* --- Content --- */
.repprs-content {
    max-width: 740px;
    margin: 0 auto;
}

.repprs-content h2 {
    font-size: 1.5rem;
    margin: 44px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--repprs-border-light);
}

.repprs-content h3 {
    font-size: 1.2rem;
    margin: 28px 0 10px;
    color: var(--repprs-gold-dark);
}

.repprs-content p {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.8;
}

.repprs-content ul, .repprs-content ol {
    margin: 0 0 22px 22px;
}

.repprs-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.repprs-content blockquote {
    margin: 28px 0;
    padding: 18px 24px;
    background: rgba(255, 215, 0, 0.04);
    border-left: 4px solid var(--repprs-gold-dark);
    border-radius: 0 var(--repprs-radius-sm) var(--repprs-radius-sm) 0;
    font-style: italic;
}

.repprs-content strong {
    color: var(--repprs-text-dark);
    font-weight: 600;
}

.repprs-content a {
    color: var(--repprs-gold-dark);
    border-bottom: 1px solid rgba(197, 162, 0, 0.3);
}

.repprs-content a:hover {
    color: var(--repprs-gold-muted);
    border-bottom-color: var(--repprs-gold-muted);
}

.repprs-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.repprs-content th, .repprs-content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--repprs-border-light);
    font-size: 0.9rem;
}

.repprs-content th {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    background: var(--repprs-bg-cream);
    color: var(--repprs-text-dark);
}

/* --- Related --- */
.repprs-related {
    margin-top: 60px;
    padding-top: 44px;
    border-top: 1px solid var(--repprs-border-light);
}

.repprs-related h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    border-bottom: none;
    text-align: center;
}

.repprs-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.repprs-related-card {
    padding: 22px;
    background: #fff;
    border: 1px solid var(--repprs-border-light);
    border-radius: var(--repprs-radius-md);
    transition: all var(--repprs-transition);
}

.repprs-related-card:hover {
    border-color: var(--repprs-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.repprs-related-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.repprs-related-card h3 a {
    color: var(--repprs-text-dark);
}

.repprs-related-card h3 a:hover {
    color: var(--repprs-gold-dark);
}

.repprs-related-card p {
    font-size: 0.8rem;
    color: var(--repprs-text-muted);
    margin: 0;
}

/* --- Schema --- */
.repprs-schema {
    display: none;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .repprs-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .repprs-articles {
        grid-template-columns: repeat(2, 1fr);
    }

    .repprs-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .repprs-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .repprs-hero h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .repprs-nav {
        display: none;
    }

    .repprs-hero {
        min-height: 72vh;
    }

    .repprs-hero h1 {
        font-size: 2rem;
    }

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

    .repprs-articles {
        grid-template-columns: 1fr;
    }

    .repprs-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .repprs-footer-grid {
        grid-template-columns: 1fr;
    }

    .repprs-single h1 {
        font-size: 1.8rem;
    }

    .repprs-related-grid {
        grid-template-columns: 1fr;
    }

    .repprs-section {
        padding: 50px 0;
    }

    .repprs-section-title {
        font-size: 1.8rem;
    }

    .repprs-footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .repprs-hero-buttons {
        flex-direction: column;
    }

    .repprs-cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .repprs-hero h1 {
        font-size: 1.6rem;
    }

    .repprs-trust-grid {
        grid-template-columns: 1fr;
    }

    .repprs-container {
        padding: 0 16px;
    }

    .repprs-article-body {
        padding: 16px;
    }
}

/* --- Utilities --- */
.repprs-text-center { text-align: center; }
.repprs-text-gold { color: var(--repprs-gold-dark); }
.repprs-mt-1 { margin-top: 8px; }
.repprs-mt-2 { margin-top: 16px; }
.repprs-mt-3 { margin-top: 24px; }
.repprs-mb-1 { margin-bottom: 8px; }
.repprs-mb-2 { margin-bottom: 16px; }
.repprs-mb-3 { margin-bottom: 24px; }
.repprs-mb-4 { margin-bottom: 32px; }

/* --- Animations --- */
@keyframes repprs-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.repprs-animate {
    animation: repprs-fadeIn 0.5s ease-out forwards;
}

/* --- Progress --- */
.repprs-progress {
    position: fixed;
    top: 70px;
    left: 0;
    height: 3px;
    background: var(--repprs-gradient-gold);
    z-index: 999;
}

/* --- Tags --- */
.repprs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.repprs-tag {
    padding: 4px 12px;
    background: var(--repprs-bg-cream);
    border: 1px solid var(--repprs-border-light);
    border-radius: 50px;
    font-size: 0.76rem;
    color: var(--repprs-text-muted);
    transition: all var(--repprs-transition);
}

.repprs-tag:hover {
    border-color: var(--repprs-gold-dark);
    color: var(--repprs-gold-dark);
}

/* --- TOC --- */
.repprs-toc {
    padding: 22px 26px;
    background: var(--repprs-bg-cream);
    border: 1px solid var(--repprs-border-light);
    border-radius: var(--repprs-radius-md);
    margin-bottom: 36px;
}

.repprs-toc h4 {
    font-family: 'Urbanist', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    color: var(--repprs-gold-dark);
}

.repprs-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.repprs-toc li {
    margin-bottom: 6px;
}

.repprs-toc a {
    font-size: 0.86rem;
    color: var(--repprs-text-body);
    border-bottom: none;
}

.repprs-toc a:hover {
    color: var(--repprs-gold-dark);
}

/* --- Back to top --- */
.repprs-back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--repprs-gradient-gold);
    color: var(--repprs-bg-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--repprs-transition);
    z-index: 900;
}

.repprs-back-top.repprs-visible {
    opacity: 1;
    visibility: visible;
}

.repprs-back-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--repprs-shadow-gold);
}

/* --- Paris Map Section --- */
.repprs-map-section {
    padding: 60px 0;
    background: var(--repprs-bg-cream);
}

.repprs-map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(145deg, #2D2D2D, #1C1C1C);
    border-radius: var(--repprs-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--repprs-gold);
    font-family: 'Urbanist', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Article thumbnail images */
.repprs-article-thumb { display:block; position:relative; overflow:hidden; border-radius:12px 12px 0 0; aspect-ratio:16/9; }
.repprs-article-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.repprs-article-card:hover .repprs-article-thumb img { transform:scale(1.05); }
.repprs-article-category { position:absolute; top:12px; left:12px; z-index:2; }
