/* ============================================================
   PARIS CARTE GRISE — Premium Design 2026
   Aesthetic: Refined Parisian Luxury + Modern Trust
   ============================================================ */

:root {
    --midnight: #0B1D33;
    --navy: #132B4D;
    --royal: #1A3A6B;
    --gold: #C8A45C;
    --gold-light: #E4CFA0;
    --gold-glow: rgba(200, 164, 92, 0.15);
    --cream: #FAF9F6;
    --warm-white: #FFFFFF;
    --stone: #F0EDE8;
    --text: #1E293B;
    --text-light: #64748B;
    --border: #E2E0DB;
    --shadow-sm: 0 1px 3px rgba(11,29,51,0.06);
    --shadow-md: 0 4px 16px rgba(11,29,51,0.08);
    --shadow-lg: 0 12px 40px rgba(11,29,51,0.12);
    --shadow-gold: 0 8px 30px rgba(200,164,92,0.2);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ---- TOP BAR ---- */
.header-top {
    background: var(--midnight);
    color: rgba(255,255,255,0.85);
    padding: 0.6rem 0;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid rgba(200,164,92,0.2);
}

.header-top .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.header-top-address {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    opacity: 0.7;
}

.header-top-address svg {
    width: 13px;
    height: 13px;
    fill: var(--gold);
    flex-shrink: 0;
}

.phone-header {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
}

.phone-icon {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

/* ---- HEADER / NAV ---- */
header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
    position: sticky;
    top: 37px;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--midnight);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

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

.logo:hover::after { width: 100%; }

.nav-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 4px;
}

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

.nav-links a:hover { color: var(--midnight); }
.nav-links a:hover::after { width: 100%; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
    padding: 0.9rem 2rem;
    background: var(--stone);
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.breadcrumb a { color: var(--royal); font-weight: 500; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; color: var(--border); }

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 40%, var(--royal) 100%);
    color: var(--warm-white);
    padding: 5rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,164,92,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ---- HEADINGS ---- */
h1 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeUp 0.8s ease-out;
}

h2 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.01em;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

h3 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--midnight);
}

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

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.88;
    max-width: 680px;
    line-height: 1.7;
    animation: fadeUp 0.8s ease-out 0.15s both;
}

/* ---- CTA PHONE ---- */
.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold);
    color: var(--midnight);
    padding: 1rem 2.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    animation: fadeUp 0.8s ease-out 0.3s both;
    letter-spacing: 0.02em;
}

.cta-phone:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(200,164,92,0.35);
}

/* ---- SECTIONS ---- */
section { padding: 5rem 2rem; }

section p.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ---- SERVICES GRID ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 1.8rem;
    transition: var(--transition);
    display: block;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card h3 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.35rem;
    color: var(--midnight);
    margin-bottom: 0.7rem;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ---- ARRONDISSEMENTS ---- */
.section-arrondissements { background: var(--stone); }

.arrondissements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
    gap: 0.8rem;
    margin-top: 2rem;
}

.arrondissement-link {
    background: var(--warm-white);
    padding: 1.3rem 0.8rem;
    text-align: center;
    color: var(--text);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
    border: 1px solid var(--border);
    display: block;
    line-height: 1.4;
}

.arrondissement-link:hover {
    background: var(--midnight);
    color: var(--warm-white);
    border-color: var(--midnight);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ---- LIEUX GRID ---- */
.lieux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.lieu-card {
    background: var(--warm-white);
    padding: 1.4rem 1.6rem;
    border-radius: var(--radius-md);
    color: var(--text);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    transition: var(--transition);
    display: block;
}

.lieu-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--midnight);
}

.lieu-card h3 {
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: 0.3rem;
    font-size: 1.15rem;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.lieu-card p { color: var(--text-light); font-size: 0.92rem; }

/* ---- AVANTAGES ---- */
.avantages { background: var(--stone); }

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.avantage-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--warm-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.avantage-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.avantage-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--midnight), var(--navy));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.avantage-item h3 { font-size: 1.15rem; margin-bottom: 0.6rem; margin-top: 0; padding-top: 0; border-top: none; }
.avantage-item p { color: var(--text-light); font-size: 0.93rem; line-height: 1.65; }

/* ---- CONTENT SECTIONS (sub-pages) ---- */
.content-section { max-width: 900px; margin: 0 auto; padding: 3rem 2rem; }
.content-section p { margin-bottom: 1.5rem; font-size: 1.02rem; line-height: 1.8; color: var(--text); }
.content-section h2::after { margin: 0.8rem 0 0; }
.content-section h2 { text-align: left; }
.content-section h3 { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.content-section h3:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

/* ---- CTA BOX ---- */
.cta-box {
    background: linear-gradient(135deg, var(--midnight) 0%, var(--navy) 50%, var(--royal) 100%);
    color: var(--warm-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200,164,92,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-box h3 { color: var(--warm-white); font-size: 1.8rem; margin-bottom: 0.8rem; margin-top: 0; padding-top: 0; border-top: none; }
.cta-box p { color: rgba(255,255,255,0.85) !important; margin-bottom: 1.5rem; }
.cta-box .cta-phone { margin-top: 0.5rem; }

/* ---- INFO BOX ---- */
.info-box {
    background: var(--warm-white);
    border-left: 4px solid var(--gold);
    padding: 1.8rem;
    margin: 2rem 0;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.info-box h4 {
    color: var(--midnight);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.15rem;
}

.info-box ul { padding-left: 1.5rem; }
.info-box li { margin-bottom: 0.5rem; line-height: 1.65; color: var(--text); }
.info-box li strong { color: var(--midnight); }

/* ---- FAQ ---- */
.faq-section { max-width: 900px; margin: 3rem auto; padding: 2rem 0; }
.faq-section h2 { text-align: center; margin-bottom: 2rem; }

.faq-item {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    padding: 1.8rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-md); transform: translateX(3px); }
.faq-item h3 { color: var(--midnight); font-size: 1.1rem; margin-bottom: 0.7rem; margin-top: 0; padding-top: 0; border-top: none; }
.faq-item p { color: var(--text-light); line-height: 1.7; margin: 0; font-size: 0.95rem; }

/* ---- MAP SECTION ---- */
.map-section { background: var(--stone); padding: 4rem 2rem; text-align: center; }

.map-wrapper {
    max-width: 1000px;
    margin: 2rem auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.map-wrapper iframe { width: 100%; height: 350px; border: 0; display: block; }

.map-address { margin-top: 1.5rem; font-size: 1.05rem; color: var(--text-light); }
.map-address strong { color: var(--midnight); }

/* ---- TRUST BAR ---- */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem 2rem;
    flex-wrap: wrap;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: var(--stone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* ---- FOOTER ---- */
footer {
    background: var(--midnight);
    color: rgba(255,255,255,0.8);
    padding: 4rem 2rem 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.footer-section h4 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--warm-white);
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--gold);
}

.footer-section > p { line-height: 1.7; font-size: 0.92rem; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-phone {
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.03em;
}

.footer-address {
    margin-top: 0.8rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p + p { margin-top: 0.4rem; }

/* ---- HEADER CTA GROUP ---- */
.header-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-order-btn {
    background: var(--gold);
    color: var(--midnight);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    white-space: nowrap;
}

.header-order-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200,164,92,0.4);
}

/* ---- HERO DUAL CTA ---- */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease-out 0.3s both;
}

.hero-cta-group .cta-phone {
    animation: none;
}

.cta-order {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--warm-white);
    color: var(--midnight);
    padding: 1rem 2.4rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    letter-spacing: 0.01em;
    border: 2px solid transparent;
}

.cta-order:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

/* Inside CTA boxes (dark bg) */
.cta-box .cta-order {
    background: transparent;
    color: var(--warm-white);
    border: 2px solid var(--gold);
}

.cta-box .cta-order:hover {
    background: var(--gold);
    color: var(--midnight);
}

.cta-box-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.cta-box-group .cta-phone {
    animation: none;
}

/* ---- FLOATING DUAL BUTTONS (mobile) ---- */
.floating-actions { display: none; }
.floating-call-button { display: none !important; visibility: hidden; }
.floating-call-button svg { display: none !important; }
.floating-order-button { display: none !important; visibility: hidden; }
.floating-order-button svg { display: none !important; }

@media (max-width: 768px) {
    .floating-actions {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        bottom: 24px;
        right: 20px;
        z-index: 1000;
        gap: 12px;
        align-items: flex-end;
    }

    .floating-order-button {
        display: flex !important;
        visibility: visible !important;
        background: var(--warm-white);
        color: var(--midnight);
        width: 54px;
        height: 54px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(11,29,51,0.2);
        transition: var(--transition);
        border: 2px solid var(--gold);
    }

    .floating-order-button:active { transform: scale(0.93); }

    .floating-order-button svg {
        display: block !important;
        width: 22px;
        height: 22px;
        fill: var(--midnight);
    }

    .floating-call-button {
        display: flex !important;
        visibility: visible !important;
        background: var(--gold);
        color: var(--midnight);
        width: 58px;
        height: 58px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 20px rgba(200,164,92,0.5);
        transition: var(--transition);
    }

    .floating-call-button:active { transform: scale(0.93); }

    .floating-call-button svg {
        display: block !important;
        width: 24px;
        height: 24px;
        fill: var(--midnight);
    }

    body { padding-bottom: 110px; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; }
    .arrondissements-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}

@media (max-width: 768px) {
    /* HEADER-TOP: reste sticky sur mobile */
    .header-top { padding: 0.5rem 0; }
    .header-top .container { flex-direction: row; justify-content: center; text-align: center; gap: 0.6rem; padding: 0 1rem; }
    .header-top-left { display: none; }
    .header-top-address { display: none; }
    .header-cta-group { gap: 0.6rem; }
    .phone-header { font-size: 1rem; }
    .header-order-btn { font-size: 0.72rem; padding: 0.3rem 0.7rem; }
    /* NAV: pas sticky sur mobile, le bandeau suffit */
    header { position: relative; top: auto; }
    nav { flex-direction: column; align-items: flex-start; padding: 0.8rem 1.5rem; gap: 0.5rem; }
    .logo { font-size: 1.3rem; }
    .nav-links { gap: 1.2rem; font-size: 0.88rem; }
    .hero { padding: 3.5rem 1.5rem 4.5rem; }
    h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta-group { flex-direction: column; align-items: stretch; gap: 0.8rem; }
    .hero-cta-group .cta-phone,
    .hero-cta-group .cta-order { text-align: center; justify-content: center; }
    .cta-phone { font-size: 1.2rem; padding: 0.9rem 2rem; }
    .cta-order { font-size: 1rem; padding: 0.8rem 1.8rem; }
    .cta-box-group { flex-direction: column; gap: 0.8rem; }
    .cta-box-group .cta-phone,
    .cta-box-group .cta-order { text-align: center; justify-content: center; }
    section { padding: 3rem 1.5rem; }
    h2 { font-size: 1.8rem; }
    .content-section { padding: 2rem 1.5rem; }
    .cta-box { padding: 2rem 1.5rem; }
    .cta-box h3 { font-size: 1.4rem; }
    .map-wrapper iframe { height: 250px; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .trust-bar { gap: 1.5rem; padding: 1.5rem; }
}

@media (max-width: 480px) {
    .footer-content { grid-template-columns: 1fr; }
    .arrondissements-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
    .trust-bar { flex-direction: column; gap: 1rem; }
}

/* ---- IMAGE STYLING ---- */
.paris-map-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    margin: 2rem auto 3rem;
    display: block;
}

.content-section img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin: 1.5rem 0;
}
