/* ============================================================
   AUTO ÉLECTRIQUE - CSS Principal
   Design System v3 — Maquette salon-ae-v3
   Mobile-first, optimisé PageSpeed
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
    /* Colors */
    --navy: #1230AE;
    --electric: #00D98B;
    --electric-light: rgba(0,217,139,0.13);
    --white: #FFFFFF;
    --cream: #F6F6F2;
    --text-mid: #1230AE;
    --text-light: #1230AE;

    /* Border radius */
    --r-pill: 999px;
    --r-xl: 40px;
    --r-lg: 24px;
    --r-md: 16px;

    /* Legacy aliases for existing templates */
    --ae-blue: #1230AE;
    --ae-blue-dark: #0B1354;
    --ae-blue-light: rgba(18,48,174,0.08);
    --ae-dark: #0B1354;
    --ae-gray-900: #1F2937;
    --ae-gray-700: #374151;
    --ae-gray-500: #6B7280;
    --ae-gray-300: #D1D5DB;
    --ae-gray-100: var(--cream);
    --ae-white: #FFFFFF;
    --ae-green: #00D98B;
    --ae-red: #ff1744;
    --ae-orange: #ff9100;
    --ae-radius: var(--r-md);
    --ae-radius-lg: var(--r-lg);
    --ae-shadow: 0 2px 12px rgba(11,19,84,0.06);
    --ae-shadow-lg: 0 12px 40px rgba(11,19,84,0.14);
    --ae-transition: .25s cubic-bezier(.4,0,.2,1);
    --ae-font: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --ae-font-heading: 'Space Grotesk', sans-serif;
    --ae-font-accent: 'Instrument Serif', serif;
    --ae-container: 1240px;
}

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

body {
    font-family: var(--ae-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* Underlines globales */
[class^="ae-"] a,
[class*=" ae-"] a {
    text-decoration: none !important;
}

.ae-container {
    width: 100%;
    max-width: var(--ae-container);
    margin: 0 auto;
    padding: 0 16px;
}

/* ============================================================
   FLOATING PILL NAVBAR
   ============================================================ */
.ae-header {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 1240px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 0 24px;
    height: 56px;
    background: rgba(11,19,84,0.92);
    backdrop-filter: blur(20px);
    border-radius: var(--r-pill);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(11,19,84,0.3);
}

/* Admin bar offset */
.admin-bar .ae-header { top: 46px; }
@media (min-width: 783px) { .admin-bar .ae-header { top: 46px; } }

.ae-header__inner {
    max-width: var(--ae-container) !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
    gap: 20px !important;
    width: 100% !important;
}
.ae-header__logo { flex-shrink: 0 !important; }
.ae-header__logo a {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
}
.ae-header__logo-img,
.ae-header__logo img {
    height: 28px !important;
    width: auto !important;
    max-width: 180px !important;
    filter: brightness(0) invert(1);
}

/* Nav logo text style */
.ae-header {
    --accent: #fff;
}
.ae-header a,
.ae-header a:hover,
.ae-header a:focus,
.ae-header a:active {
    text-decoration: none !important;
}
.ae-header .nav-date,
.ae-header .nav-date:hover,
.ae-header .nav-date:focus {
    color: rgba(255,255,255,0.6) !important;
}
.ae-header .nav-date:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.15) !important;
}
.ae-header .btn-nav-ghost,
.ae-header .btn-nav-ghost:hover,
.ae-header .btn-nav-ghost:focus {
    color: rgba(255,255,255,0.7) !important;
}
.ae-header .btn-nav-ghost:hover {
    color: #fff !important;
}
.nav-logo {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    color: #fff !important;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-logo:hover { color: #fff !important; }
.nav-logo span { color: #fff !important; }
.nav-date {
    text-decoration: none !important;
    color: rgba(255,255,255,0.6) !important;
}

/* Nav dates pills */
.nav-dates { display: flex; gap: 4px; }
.nav-date {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
    padding: 5px 13px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all 0.2s;
}
.nav-date:hover { color: var(--white); background: rgba(255,255,255,0.15); }

/* Nav CTA area */
.nav-cta { display: flex; align-items: center; gap: 8px; }
.btn-nav-ghost {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.7) !important;
    background: transparent !important;
    border: none !important;
    padding: 8px 14px !important;
    border-radius: var(--r-pill) !important;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
}
.btn-nav-ghost:hover { color: #fff !important; background: rgba(255,255,255,0.08) !important; }
.btn-nav-primary { 
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: #00D98B !important;
    border: none !important;
    padding: 9px 20px !important;
    border-radius: var(--r-pill) !important;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
}
.btn-nav-primary:hover { background: #00f0a0 !important; color: #fff !important; }

/* Navigation links (WordPress) */
.ae-nav-list {
    display: flex !important;
    flex-direction: row !important;
    list-style: none !important;
    gap: 2px !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}
.ae-nav-list li {
    position: relative !important;
    list-style: none !important;
}
.ae-nav-list li a {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 6px 13px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.6) !important;
    border-radius: var(--r-pill) !important;
    transition: all 0.2s !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    background: rgba(255,255,255,0.08) !important;
}
.ae-nav-list li a:hover,
.ae-nav-list li.current-menu-item > a,
.ae-nav-list li.current_page_item > a {
    color: var(--white) !important;
    background: rgba(255,255,255,0.15) !important;
}

/* Sub-menu dropdown */
.ae-nav-list .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(11,19,84,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(11,19,84,0.4);
    border-radius: var(--r-md);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px;
    min-width: 200px;
    list-style: none;
    z-index: 100;
}
.ae-nav-list li:hover > .sub-menu { display: block; }
.ae-nav-list .sub-menu li a {
    padding: 10px 14px !important;
    font-size: 12px !important;
    border-radius: var(--r-md) !important;
    background: transparent !important;
}
.ae-nav-list .sub-menu li a:hover {
    background: rgba(255,255,255,0.1) !important;
}

/* Sub-menu indicator */
.ae-nav-list li.menu-item-has-children > a::after {
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    opacity: .5;
}

/* Hamburger */
.ae-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none !important;
    border: none !important;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
    color: #fff !important;
    box-shadow: none !important;
    outline: none !important;
}
.ae-header__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff !important;
    border-radius: 2px;
    transition: all .3s;
}
.ae-header__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.ae-header__toggle.active span:nth-child(2) { opacity: 0; }
.ae-header__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile dropdown: hidden by default on all screens */
.ae-header__nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 8px;
    right: 8px;
    background: rgba(11,19,84,0.96);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 16px 48px rgba(11,19,84,0.5);
    border-radius: var(--r-lg);
    padding: 12px 16px;
    z-index: 999;
}
.ae-header__nav.active { display: block; }

/* Mobile nav: hamburger under 768px */
@media (max-width: 768px) {
    .ae-header {
        width: calc(100% - 24px);
        padding: 0 14px;
        height: 52px;
    }
    .ae-header__toggle { display: flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
    .ae-nav-list {
        flex-direction: column !important;
        gap: 2px !important;
        align-items: stretch !important;
    }
    .ae-nav-list li a {
        padding: 12px 16px !important;
        font-size: 14px !important;
        min-height: 44px;
    }
    .ae-nav-list .sub-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 0 16px;
        display: block;
        background: rgba(255,255,255,0.05);
        border: none;
        border-radius: var(--r-md);
        margin-top: 4px;
    }
    .nav-dates { display: none !important; }
    .nav-cta { display: none !important; }
    .admin-bar .ae-header__nav { top: 60px; }

    /* Show CTA inside mobile nav dropdown */
    .ae-header__nav .nav-cta-mobile {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .ae-header__nav .nav-cta-mobile .btn-nav-primary { 
        display: flex !important;
        justify-content: center;
        min-height: 44px;
        align-items: center;
    }
}
@media (max-width: 640px) {
    .ae-header {
        width: calc(100% - 16px);
        padding: 0 12px;
        height: 48px;
    }
    .ae-header__nav { top: 56px; }
}

/* Force mobile menu styles */
@media (max-width: 768px) {
    .ae-header__nav .ae-nav-list {
        flex-direction: column !important;
        gap: 4px !important;
        align-items: stretch !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .ae-header__nav .ae-nav-list li a,
    .ae-header__nav .ae-nav-list li a:hover,
    .ae-header__nav .ae-nav-list li a:focus,
    .ae-header__nav .ae-nav-list li a:visited {
        color: rgba(255,255,255,0.75) !important;
        background: rgba(255,255,255,0.06) !important;
        font-size: 14px !important;
        padding: 14px 18px !important;
        border-radius: 12px !important;
        min-height: 44px;
        display: flex !important;
        align-items: center !important;
    }
    .ae-header__nav .ae-nav-list li a:hover,
    .ae-header__nav .ae-nav-list li.current-menu-item > a {
        color: #fff !important;
        background: rgba(255,255,255,0.12) !important;
    }
    /* Salon event items - highlight with green dot */
    .ae-header__nav .ae-nav-list li.ae-menu-event a::before {
        content: '' !important;
        width: 6px !important;
        height: 6px !important;
        border-radius: 50% !important;
        background: #00D98B !important;
        flex-shrink: 0 !important;
        margin-right: 8px !important;
    }
    /* Mobile CTA buttons at bottom */
    .ae-header__nav > div {
        padding: 14px 16px 8px !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
        margin-top: 8px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    .ae-header__nav .btn-nav-ghost,
    .ae-header__nav .btn-nav-ghost:hover,
    .ae-header__nav .btn-nav-ghost:focus {
        color: #fff !important;
        background: rgba(255,255,255,0.08) !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
        padding: 14px 18px !important;
        border-radius: 999px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        text-align: center !important;
        display: block !important;
        min-height: 44px;
    }
    .ae-header__nav .btn-nav-ghost:hover {
        background: rgba(255,255,255,0.15) !important;
    }
    .ae-header__nav .btn-nav-primary,
    .ae-header__nav .btn-nav-primary:hover,
    .ae-header__nav .btn-nav-primary:focus {
        color: #fff !important;
        background: #00D98B !important;
        padding: 14px 18px !important;
        border-radius: 999px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        text-align: center !important;
        display: block !important;
        min-height: 44px;
    }
    .ae-header__nav .btn-nav-primary:hover {
        background: #00f0a0 !important;
    }
}
@media (max-width: 782px) {
    .admin-bar .ae-header__nav { top: 60px; }
    .admin-bar .ae-header { top: 60px; }
}

/* Hide sticky CTA everywhere */
.sticky,
.ae-sticky-cta,
.ss-sticky-cta {
    display: none !important;
}

/* Masquer le header/footer GP sur la homepage */
body.ae-homepage .site-header,
body.ae-homepage .site-footer,
body.ae-homepage #page,
body.ae-homepage .site.grid-container {
    display: none !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.ae-hero,
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    overflow: hidden;
    padding: 0;
}
.ae-hero__bg,
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ae-hero__bg img, .ae-hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ae-hero__overlay,
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(11,19,84,0.2) 0%, rgba(11,19,84,0.0) 30%, rgba(11,19,84,0.8) 70%, rgba(11,19,84,0.96) 100%);
    z-index: 1;
}
.ae-hero__content,
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 72px 72px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}
.hero-left { max-width: 660px; }

/* Hero badge */
.ae-hero__badge,
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,217,139,0.15);
    border: 1px solid rgba(0,217,139,0.3);
    padding: 6px 16px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--electric);
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--electric);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.ae-hero__title,
h1.hero-title {
    font-family: var(--ae-font-heading);
    font-size: clamp(54px, 7.5vw, 100px);
    font-weight: 800;
    line-height: 0.92;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}
h1.hero-title em,
.ae-hero__title em {
    font-style: italic;
    font-family: var(--ae-font-accent);
    font-weight: 400;
    color: var(--electric);
}
.ae-hero__subtitle,
.hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    max-width: 440px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 12px;
}
.ae-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--electric) !important;
    color: var(--navy) !important;
    padding: 15px 28px;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
}
.ae-hero__cta:hover {
    background: #00f0a0 !important;
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,217,139,0.4);
}

/* Hero dates widget */
.hero-dates-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--r-xl);
    padding: 24px 20px;
    width: 220px;
    flex-shrink: 0;
}
.hdc-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.hdc-item { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.07); cursor: pointer; transition: all 0.2s; }
.hdc-item:last-child { border-bottom: none; padding-bottom: 0; }
.hdc-item:hover .hdc-city { color: var(--electric); }
.hdc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--electric); flex-shrink: 0; }
.hdc-city { font-family: var(--ae-font-heading); font-size: 14px; font-weight: 700; color: var(--white); flex: 1; transition: color 0.2s; }
.hdc-date { font-size: 11px; color: var(--white); }

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker {
    background: var(--electric);
    padding: 13px 0;
    overflow: hidden;
}
.ticker-inner {
    display: inline-flex;
    animation: ticker 30s linear infinite;
}
.ticker-item {
    font-family: var(--ae-font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    padding: 0 36px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}
.ticker-item::after { content: '\2726'; opacity: 0.3; font-size: 8px; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================================
   NOTIFICATION BAR
   ============================================================ */
.ae-notif-bar {
    background: var(--electric);
    padding: 12px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    position: relative;
    z-index: 1000;
}
.ae-notif-bar__inner {
    max-width: var(--ae-container);
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.ae-notif-bar__inner a { color: inherit; text-decoration: underline; }
.ae-notif-bar__close {
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    opacity: .7;
    line-height: 1;
}
.ae-notif-bar__close:hover { opacity: 1; }

/* ============================================================
   BUTTONS (Design System)
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    background: var(--electric);
    border: none;
    padding: 15px 28px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}
.btn-primary:hover {
    background: #00f0a0;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,217,139,0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    border: 1.5px solid rgba(11,19,84,0.18);
    padding: 13px 24px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(11,19,84,0.07);
}
.btn-outline:hover {
    border-color: var(--navy);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(11,19,84,0.13);
}
.btn-outline svg { transition: transform 0.2s; }
.btn-outline:hover svg { transform: translateX(4px); }

.btn-ghost {
    font-size: 13px;
    font-weight: 600;
    background: transparent;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 22px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.btn-ghost-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px 28px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(8px);
    text-decoration: none;
}
.btn-ghost-hero:hover { background: rgba(255,255,255,0.18); }

.btn-green {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--electric);
    color: var(--navy);
    border: none;
    padding: 12px 24px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-green:hover { background: #00f0a0; }

/* ============================================================
   SECTIONS
   ============================================================ */
.ae-section {
    padding: 48px 0;
}
.ae-section--alt { background: var(--cream); }
.ae-section--dark {
    background: var(--navy);
    color: var(--white);
}
.ae-section__header {
    text-align: center;
    margin-bottom: 40px;
}
.ae-section__title {
    font-family: var(--ae-font-heading);
    font-size: clamp(34px, 3.8vw, 54px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 18px;
}
.ae-section__title em {
    font-style: italic;
    font-family: var(--ae-font-accent);
    font-weight: 400;
    color: var(--electric);
}
.ae-section--dark .ae-section__title { color: var(--white); }
.ae-section__subtitle {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}
.ae-section--dark .ae-section__subtitle { color: var(--white); }

/* Chips */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.chip-green {
    background: var(--electric-light);
    border: 1px solid rgba(0,217,139,0.25);
    color: #00966A;
}
.chip-green-dark {
    background: rgba(0,217,139,0.12);
    border: 1px solid rgba(0,217,139,0.2);
    color: var(--electric);
}

/* Section titles (maquette) */
h2.st {
    font-family: var(--ae-font-heading);
    font-size: clamp(34px, 3.8vw, 54px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 18px;
}
h2.st em {
    font-style: italic;
    font-family: var(--ae-font-accent);
    font-weight: 400;
    color: var(--electric);
}
h2.st.inv { color: var(--white); }

.body-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 28px;
}
.body-text.inv { color: var(--white); }

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.pill {
    font-size: 12px;
    font-weight: 500;
    color: var(--navy);
    background: var(--white);
    border: 1px solid rgba(11,19,84,0.1);
    padding: 7px 16px;
    border-radius: var(--r-pill);
    box-shadow: 0 2px 8px rgba(11,19,84,0.05);
}

.sh { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }

/* ============================================================
   PRINCIPE / CONCEPT SECTION
   ============================================================ */
.section-principe {
    padding: 100px 72px;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* Mosaic */
.mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 180px;
    gap: 12px;
}
.mosaic-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: center/cover no-repeat;
}
.mosaic-img:nth-child(1) { grid-row: span 2; border-radius: var(--r-xl); }
.mosaic-img:nth-child(2) { border-radius: var(--r-lg) var(--r-lg) var(--r-md) var(--r-lg); }
.mosaic-img:nth-child(3) { border-radius: var(--r-md) var(--r-lg) var(--r-lg) var(--r-lg); }

/* WordPress concept grid */
.ae-concept-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 768px) {
    .ae-concept-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}

/* ============================================================
   CHIFFRES / STATS
   ============================================================ */
.section-chiffres {
    padding: 100px 72px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

/* Decorative orbs */
.orb { position: absolute; border-radius: 50%; pointer-events: none; }
.orb-1 { width: 600px; height: 600px; top: -200px; right: -80px; background: radial-gradient(circle, rgba(0,217,139,0.08) 0%, transparent 70%); }
.orb-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; background: radial-gradient(circle, rgba(0,217,139,0.05) 0%, transparent 70%); }
.orb-left { width: 500px; height: 500px; bottom: -200px; left: -120px; background: radial-gradient(circle, rgba(0,217,139,0.07) 0%, transparent 70%); }

.chiffres-top { margin-bottom: 56px; }
.chiffres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.chiffre-card {
    padding: 36px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.chiffre-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.25);
}
.chiffre-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--electric) 0%, transparent 100%);
    border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.chiffre-num {
    font-family: var(--ae-font-heading);
    font-size: clamp(44px, 4vw, 64px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 10px;
}
.chiffre-num span { color: var(--electric); }
.chiffre-lbl {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
}

/* WordPress chiffres (legacy) */
.ae-chiffres {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: center;
}
.ae-chiffre {
    padding: 36px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.ae-chiffre:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-4px);
}
.ae-chiffre::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--electric) 0%, transparent 100%);
}
.ae-chiffre__number {
    display: block;
    font-family: var(--ae-font-heading);
    font-size: clamp(44px, 4vw, 64px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
}
.ae-chiffre__label {
    display: block;
    font-size: 12px;
    color: var(--white);
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ============================================================
   EVENT CARDS
   ============================================================ */
.section-events {
    padding: 100px 72px;
    background: var(--white);
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.event-card {
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    aspect-ratio: 2/3;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(11,19,84,0.2);
}
/* Event card: lighter image, text highlighted instead of darkening whole image */
.ec-bg {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
    transition: transform 0.5s ease;
    filter: brightness(0.7);
}
.event-card:hover .ec-bg { transform: scale(1.06); filter: brightness(0.6); }
.ec-content {
    position: relative; z-index: 2; padding: 22px 20px;
    background: linear-gradient(to top, rgba(11,19,84,0.85) 0%, rgba(11,19,84,0.4) 60%, transparent 100%);
    border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.ec-city {
    font-family: var(--ae-font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--electric);
    margin-bottom: 5px;
}
.ec-name {
    font-family: var(--ae-font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.ec-info { font-size: 12px; color: #fff; margin-bottom: 4px; }
.ec-cta { margin-top: 16px; display: flex; gap: 8px; }
.btn-ec {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    padding: 8px 15px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-ec-g { background: var(--electric); color: #fff; }
.btn-ec-g:hover { background: #00f0a0; }
.btn-ec-ghost { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
.btn-ec-ghost:hover { background: rgba(255,255,255,0.22); }

/* WordPress salon cards (legacy, restyled) */
.ae-salons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.ae-salon-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--ae-shadow);
    transition: all 0.4s ease;
    text-decoration: none;
    color: var(--navy);
    position: relative;
}
.ae-salon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(11,19,84,0.2);
    color: var(--navy);
}
.ae-salon-card__img {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
}
.ae-salon-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    filter: brightness(0.38);
}
.ae-salon-card:hover .ae-salon-card__img img { transform: scale(1.06); filter: brightness(0.28); }
.ae-salon-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 20px;
    z-index: 2;
}
.ae-salon-card__ville {
    display: inline-block;
    font-family: var(--ae-font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--electric);
    margin-bottom: 5px;
}
.ae-salon-card__title {
    font-family: var(--ae-font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.ae-salon-card__date {
    display: block;
    font-size: 11px;
    color: var(--white);
    margin-bottom: 4px;
    font-weight: 500;
}
.ae-salon-card__lieu {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--white);
    margin-bottom: 10px;
}
.ae-salon-card__lieu svg { flex-shrink: 0; }
.ae-salon-card__badge {
    display: inline-block;
    padding: 5px 13px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.ae-badge--places {
    background: rgba(0,217,139,0.15);
    color: var(--electric);
}
.ae-badge--complet {
    background: rgba(255,23,68,.1);
    color: var(--ae-red);
}
.ae-salon-card__countdown {
    padding: 12px 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    display: flex;
    gap: 16px;
    justify-content: center;
    font-size: .85rem;
    font-weight: 600;
    color: var(--white);
    border-radius: 0 0 var(--r-xl) var(--r-xl);
}

/* ============================================================
   MARQUES / BRAND LOGOS
   ============================================================ */
.section-marques {
    padding: 80px 72px;
    background: var(--cream);
}
.logos-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 44px;
    justify-content: center;
}
/* Marquee auto-scroll for logos */
.logos-marquee {
    overflow: hidden;
    margin-top: 44px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.logos-marquee-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px;
    width: max-content;
    animation: logos-scroll 30s linear infinite;
}
@keyframes logos-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.logo-pill {
    height: 60px;
    padding: 0 24px;
    background: var(--white);
    border-radius: var(--r-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(11,19,84,0.08);
    box-shadow: 0 2px 10px rgba(11,19,84,0.05);
    filter: grayscale(1) opacity(0.55);
    transition: all 0.25s;
    cursor: default;
    flex-shrink: 0;
}
.logo-pill img { max-height: 22px; max-width: 68px; object-fit: contain; }

/* WordPress marques grid (restyled) */
.ae-marques-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.ae-marque-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 24px;
    background: var(--white);
    border-radius: var(--r-pill);
    border: 1px solid rgba(11,19,84,0.08);
    box-shadow: 0 2px 10px rgba(11,19,84,0.05);
    min-height: auto;
    filter: grayscale(1) opacity(0.45);
    transition: all 0.25s;
    cursor: pointer;
}
.ae-marque-card:hover {
    filter: grayscale(0) opacity(1);
    box-shadow: 0 6px 20px rgba(11,19,84,0.12);
    border-color: rgba(11,19,84,0.08);
    transform: translateY(-2px);
}
.ae-marque-card img {
    max-height: 22px;
    max-width: 68px;
    width: auto;
    transition: all 0.25s;
}

/* ============================================================
   POURQUOI CARDS
   ============================================================ */
.section-pourquoi-cards {
    padding: 100px 72px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.section-pourquoi-cards::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,217,139,0.07) 0%, transparent 65%);
    top: -200px; right: -150px;
    pointer-events: none;
}
.pourquoi-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}
.pq-card {
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
    background: center/cover no-repeat;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.pq-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.35); }
.pq-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18,48,174,0.92) 0%, rgba(18,48,174,0.3) 45%, transparent 100%);
    transition: opacity 0.3s;
}
.pq-card:hover .pq-overlay { opacity: 0.95; }
.pq-body { position: relative; z-index: 2; padding: 22px 20px; }
.pq-num {
    font-family: var(--ae-font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--electric);
    margin-bottom: 8px;
}
.pq-title {
    font-family: var(--ae-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.pq-desc { font-size: 12px; font-weight: 300; color: var(--white); line-height: 1.6; }

/* WordPress feature cards (restyled as pourquoi cards) */
.ae-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.ae-feature-card {
    text-align: left;
    padding: 36px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-xl);
    box-shadow: none;
    transition: all 0.3s;
}
.ae-feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.09);
    box-shadow: 0 20px 48px rgba(0,0,0,0.25);
}
.ae-feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,217,139,0.12);
    border: 1px solid rgba(0,217,139,0.25);
    margin-bottom: 16px;
}
.ae-feature-card__title {
    font-family: var(--ae-font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}
.ae-feature-card__text {
    font-size: 13px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.65;
}

/* ============================================================
   POURQUOI (list version)
   ============================================================ */
.section-pourquoi {
    padding: 100px 72px;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.points { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.pt {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: padding-left 0.2s;
}
.pt:hover { padding-left: 6px; }
.pt-badge {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(0,217,139,0.12);
    border: 1px solid rgba(0,217,139,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ae-font-heading);
    font-size: 10px;
    font-weight: 700;
    color: var(--electric);
    margin-top: 3px;
}
.pt-title {
    font-family: var(--ae-font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.pt-desc { font-size: 13px; font-weight: 300; color: var(--white); line-height: 1.65; }
.pourquoi-visual { position: relative; }
.pv-img { border-radius: var(--r-xl); overflow: hidden; height: 540px; }
.pv-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); }
.pv-float {
    position: absolute;
    bottom: 22px; left: 22px; right: 22px;
    background: rgba(11,19,84,0.82);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-lg);
    padding: 18px 22px;
    display: flex;
    gap: 20px;
}
.pvf-num { font-family: var(--ae-font-heading); font-size: 26px; font-weight: 800; color: var(--electric); line-height: 1; }
.pvf-label { font-size: 10px; color: var(--white); margin-top: 3px; letter-spacing: 0.05em; text-transform: uppercase; }

/* ============================================================
   EXPOSANTS
   ============================================================ */
.section-exposants {
    padding: 100px 72px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.exp-visual {
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 460px;
    position: relative;
}
.exp-visual img { width: 100%; height: 100%; object-fit: cover; }
.exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,19,84,0.85) 0%, transparent 50%);
}
.exp-stats {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    display: flex;
    gap: 12px;
}
.stat-bubble {
    background: rgba(11,19,84,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-lg);
    padding: 14px 16px;
    flex: 1;
    text-align: center;
}
.sb-num { font-family: var(--ae-font-heading); font-size: 24px; font-weight: 800; color: var(--electric); line-height: 1; }
.sb-label { font-size: 10px; color: var(--white); margin-top: 3px; letter-spacing: 0.05em; text-transform: uppercase; }

/* ============================================================
   RESERVATION
   ============================================================ */
.section-reservation {
    padding: 100px 72px;
    background: var(--cream);
}
.res-head { text-align: center; margin-bottom: 52px; }
.res-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 820px;
    margin: 0 auto;
}
.res-card {
    padding: 44px 40px;
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
}
.rc-v {
    background: var(--white);
    border: 1px solid rgba(11,19,84,0.1);
    box-shadow: 0 4px 24px rgba(11,19,84,0.06);
}
.rc-e { background: var(--navy); }
.rc-e::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,217,139,0.18) 0%, transparent 70%);
}
.res-type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: var(--r-pill);
    display: inline-flex;
    margin-bottom: 18px;
}
.rc-v .res-type { background: var(--cream); color: var(--text-mid); }
.rc-e .res-type { background: rgba(0,217,139,0.12); border: 1px solid rgba(0,217,139,0.25); color: var(--electric); }
.res-title {
    font-family: var(--ae-font-heading);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.rc-v .res-title { color: var(--navy); }
.rc-e .res-title { color: var(--white); }
.res-desc { font-size: 14px; font-weight: 300; line-height: 1.65; margin-bottom: 28px; }
.rc-v .res-desc { color: var(--text-mid); }
.rc-e .res-desc { color: var(--white); }
.res-price { font-family: var(--ae-font-heading); font-size: 18px; font-weight: 700; margin-bottom: 22px; }
.rc-v .res-price { color: var(--navy); }
.rc-e .res-price { color: var(--electric); }
.btn-res {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px;
    border-radius: var(--r-pill);
    cursor: pointer;
    border: none;
    transition: all 0.25s;
}
.rc-v .btn-res { background: var(--navy); color: var(--white); }
.rc-v .btn-res:hover { background: var(--electric); color: #fff; }
.rc-e .btn-res { background: var(--electric); color: #fff; }
.rc-e .btn-res:hover { background: #00f0a0; transform: translateY(-2px); }
.res-sub { font-size: 11px; text-align: center; margin-top: 10px; }
.rc-v .res-sub { color: var(--text-light); }
.rc-e .res-sub { color: rgba(255,255,255,0.7); }

/* ============================================================
   PRESSE
   ============================================================ */
.section-presse {
    padding: 80px 72px;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.presse-nums { display: flex; gap: 40px; margin-top: 36px; }
.pn-num { font-family: var(--ae-font-heading); font-size: 52px; font-weight: 800; color: var(--white); line-height: 1; }
.pn-num span { color: var(--electric); }
.pn-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-top: 5px; }
.presse-box {
    padding: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-xl);
}
.presse-email { font-size: 15px; color: var(--electric); margin-top: 14px; }
.presse-email a { color: var(--electric); }
.presse-actions { display: flex; gap: 10px; margin-top: 26px; }

/* WordPress press grid (restyled) */
.ae-press-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ============================================================
   COUNTDOWN (restyled)
   ============================================================ */
.ae-countdown {
    text-align: center;
    padding: 24px;
}
.ae-countdown__label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.ae-countdown__timer {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.ae-countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    padding: 12px 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    border-radius: var(--r-md);
}
.ae-countdown__unit span {
    font-family: var(--ae-font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}
.ae-countdown__unit small {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 4px;
    opacity: .4;
}

/* ============================================================
   CARTE DE FRANCE (restyled)
   ============================================================ */
.ae-france-map {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}
.ae-france-map svg { width: 100%; height: auto; }
.ae-france-map__city {
    cursor: pointer;
    transition: all var(--ae-transition);
}
.ae-france-map__city circle {
    fill: var(--electric);
    stroke: var(--navy);
    stroke-width: 2;
    transition: all var(--ae-transition);
}
.ae-france-map__city:hover circle {
    fill: #00f0a0;
    r: 12;
}
.ae-france-map__city text {
    font-family: var(--ae-font-heading);
    font-size: 11px;
    font-weight: 700;
    fill: var(--navy);
}
.ae-france-map__tooltip {
    position: absolute;
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--ae-shadow-lg);
    padding: 16px;
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ae-transition);
    z-index: 10;
}
.ae-france-map__tooltip.active {
    opacity: 1;
    pointer-events: auto;
}

/* ============================================================
   STICKY CTA
   ============================================================ */
.ae-sticky-cta {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--ae-transition);
}
.ae-sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}
.ae-sticky-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--electric);
    color: var(--navy);
    padding: 13px 22px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 32px rgba(0,217,139,0.3);
    transition: all 0.25s;
}
.ae-sticky-cta__btn:hover {
    background: #00f0a0;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,217,139,0.4);
}

/* Maquette sticky */
.sticky {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 99;
    background: var(--electric);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 13px 22px;
    border-radius: var(--r-pill);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0,217,139,0.3);
    transition: all 0.25s;
}
.sticky:hover {
    background: #00f0a0;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,217,139,0.4);
}

/* ============================================================
   FORMULAIRE INSCRIPTION (restyled)
   ============================================================ */
.ae-form { max-width: 500px; margin: 0 auto; }
.ae-form__group { margin-bottom: 16px; }
.ae-form__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ae-form__input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(11,19,84,0.12);
    border-radius: var(--r-md);
    font-family: var(--ae-font);
    font-size: 15px;
    transition: border-color var(--ae-transition);
    outline: none;
    background: var(--white);
}
.ae-form__input:focus { border-color: var(--electric); box-shadow: 0 0 0 3px rgba(0,217,139,0.12); }
.ae-form__submit {
    width: 100%;
    padding: 15px;
    background: var(--electric);
    color: var(--navy);
    border: none;
    border-radius: var(--r-pill);
    font-family: var(--ae-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}
.ae-form__submit:hover { background: #00f0a0; transform: translateY(-2px); }
.ae-form__msg {
    text-align: center;
    padding: 12px;
    border-radius: var(--r-md);
    margin-top: 12px;
    font-weight: 600;
    font-size: .9rem;
}
.ae-form__msg--success { background: rgba(0,217,139,.1); color: #00966A; }
.ae-form__msg--error { background: rgba(255,23,68,.1); color: var(--ae-red); }

/* ============================================================
   BLOG CARDS (restyled)
   ============================================================ */
.ae-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.ae-blog-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--ae-shadow);
    transition: all 0.3s;
}
.ae-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ae-shadow-lg);
}
.ae-blog-card__img { aspect-ratio: 16/9; overflow: hidden; }
.ae-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ae-blog-card:hover .ae-blog-card__img img { transform: scale(1.05); }
.ae-blog-card__body { padding: 22px 20px; }
.ae-blog-card__cat {
    font-family: var(--ae-font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--electric);
    margin-bottom: 8px;
    display: inline-block;
}
.ae-blog-card__title {
    font-family: var(--ae-font-heading);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.ae-blog-card__title a { color: var(--navy); }
.ae-blog-card__title a:hover { color: var(--electric); }
.ae-blog-card__excerpt {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.65;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ae-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(11,19,84,0.06);
}

/* ============================================================
   WIDGETS SIDEBAR (restyled)
   ============================================================ */
.ae-widget {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--ae-shadow);
    border: 1px solid rgba(11,19,84,0.06);
}
.ae-widget__title {
    font-family: var(--ae-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--electric);
}

/* ============================================================
   SINGLE SALON PAGE (restyled)
   ============================================================ */
.ae-salon-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding: 40px 72px;
    color: var(--white);
}
.ae-salon-hero__bg {
    position: absolute;
    inset: 0;
}
.ae-salon-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ae-salon-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(11,19,84,0.2) 0%, rgba(11,19,84,0.0) 30%, rgba(11,19,84,0.8) 70%, rgba(11,19,84,0.96) 100%);
}
.ae-salon-hero__content {
    position: relative;
    z-index: 1;
    max-width: var(--ae-container);
    margin: 0 auto;
    width: 100%;
}
.ae-salon-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,217,139,0.15);
    border: 1px solid rgba(0,217,139,0.3);
    padding: 6px 16px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--electric);
    margin-bottom: 16px;
}
.ae-salon-hero__title {
    font-family: var(--ae-font-heading);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 0.95;
    letter-spacing: -0.03em;
}
.ae-salon-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}
.ae-salon-hero__meta svg { vertical-align: middle; margin-right: 4px; }

.ae-salon-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0;
}
.ae-salon-info__main { order: 1; }
.ae-salon-info__sidebar { order: 2; }

.ae-salon-map {
    border-radius: var(--r-xl);
    overflow: hidden;
    margin-bottom: 24px;
}
.ae-salon-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.ae-footer,
footer {
    background: #0A1E8A;
    color: rgba(255,255,255,0.5);
    padding: 60px 72px 28px;
}
.ae-footer a,
footer a { color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.2s; }
.ae-footer a:hover,
footer a:hover { color: var(--white); }

.ae-footer__grid,
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 28px;
}
.ae-footer__title,
.f-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
    margin-bottom: 14px;
}
.ae-footer__links,
.f-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.ae-footer__links a,
.f-links a { font-size: 13px; color: rgba(255,255,255,0.48); }
.ae-footer__links a:hover,
.f-links a:hover { color: var(--white); }

.f-logo {
    font-family: var(--ae-font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 14px;
}
.f-logo img { height: 120px; width: auto; }
.f-logo span { color: var(--electric); }
.f-tagline { font-size: 13px; line-height: 1.65; }

.ae-footer__bottom,
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
}
.ae-footer__social,
.social-row {
    display: flex;
    gap: 10px;
}
.ae-footer__social a,
.soc {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.ae-footer__social a:hover,
.soc:hover {
    background: var(--electric);
    color: var(--navy);
    border-color: var(--electric);
}

/* ============================================================
   CONTACT CTA BANNER (restyled)
   ============================================================ */
.ae-contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--electric);
    color: var(--navy) !important;
    padding: 15px 28px;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s;
    border: none;
}
.ae-contact-cta:hover {
    background: #00f0a0;
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,217,139,0.4);
}
.ae-contact-cta--outline {
    background: transparent;
    color: var(--navy) !important;
    border: 1.5px solid rgba(11,19,84,0.18);
}
.ae-contact-cta--outline:hover {
    border-color: var(--navy);
    background: var(--white);
    color: var(--navy) !important;
}

/* ============================================================
   CONVIVIAL / ANIMATIONS SECTION (restyled)
   ============================================================ */
.ae-convivial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.ae-convivial-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--ae-shadow);
    border: 1px solid rgba(11,19,84,0.06);
    transition: all 0.3s;
}
.ae-convivial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ae-shadow-lg);
}
.ae-convivial-card__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.ae-convivial-card__title {
    font-family: var(--ae-font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}
.ae-convivial-card__text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.65;
    font-weight: 300;
}

/* No events */
.ae-no-events {
    text-align: center;
    padding: 48px 16px;
    color: var(--text-mid);
    font-size: 16px;
}

/* Annotation */
.ann {
    background: #FFF8E1;
    border-bottom: 2px solid #FFC107;
    padding: 12px 72px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #7A5A00;
    font-weight: 500;
}

/* ============================================================
   RESPONSIVE - TABLET (<=1024px)
   ============================================================ */
@media (max-width: 1024px) {
    /* Section padding reduction */
    .section-principe,
    .section-chiffres,
    .section-events,
    .section-marques,
    .section-pourquoi-cards,
    .section-pourquoi,
    .section-exposants,
    .section-reservation,
    .section-presse {
        padding: 72px 36px;
    }

    /* 2-col grids */
    .chiffres-grid,
    .events-grid,
    .pourquoi-cards-grid,
    .ae-features-grid { grid-template-columns: repeat(2, 1fr); }

    .event-card { aspect-ratio: 3/4; }

    /* Section principe: still 2-col but tighter */
    .section-principe { gap: 40px; }

    /* Pourquoi list version: stack */
    .section-pourquoi { gap: 48px; }

    /* Footer: 2-col on tablet */
    .ae-footer__grid,
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

    /* Hero content */
    .ae-hero__content,
    .hero-content { padding: 0 36px 56px; gap: 32px; }
    body.ae-homepage .hero-content { padding: 0 36px 56px !important; gap: 32px !important; }
}

/* ============================================================
   RESPONSIVE - MOBILE (<768px)
   ============================================================ */
@media (max-width: 767px) {
    /* Section padding */
    .section-principe,
    .section-chiffres,
    .section-events,
    .section-marques,
    .section-pourquoi-cards,
    .section-pourquoi,
    .section-exposants,
    .section-reservation,
    .section-presse {
        padding: 48px 20px;
    }

    /* Grid overrides to 1 column */
    .section-principe,
    .section-pourquoi,
    .section-exposants,
    .section-presse,
    .ae-press-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* 2-col on small tablets, will go 1-col at 640px */
    .chiffres-grid,
    .events-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pourquoi-cards-grid,
    .ae-features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .res-cards { grid-template-columns: 1fr; }

    /* Hero */
    .ae-hero,
    .hero { min-height: 85vh; }
    .ae-hero__content,
    .hero-content {
        padding: 0 20px 40px;
        flex-direction: column;
        align-items: flex-start;
    }
    body.ae-homepage .hero-content {
        padding: 0 20px 40px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .ae-hero__title,
    h1.hero-title { font-size: clamp(36px, 10vw, 54px); }
    body.ae-homepage h1.hero-title { font-size: clamp(36px, 10vw, 54px) !important; }
    .hero-dates-card { display: none; }
    body.ae-homepage .hero-dates-card { display: none !important; }
    .hero-actions { flex-wrap: wrap; }
    .hero-sub { font-size: 15px; margin-bottom: 28px; }

    /* Hide "Tous les evenements" on mobile */
    .sh .btn-outline { display: none; }

    /* Ticker */
    .ticker { padding: 10px 0; }
    .ticker-item { font-size: 10px; padding: 0 20px; gap: 12px; }

    /* Mosaic - horizontal scroll carousel */
    .mosaic {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
    }
    .mosaic-img {
        flex: 0 0 80vw;
        scroll-snap-align: start;
        height: 220px;
        border-radius: 16px;
        grid-row: unset;
    }
    .mosaic-img:nth-child(1) { grid-row: span 1; }

    /* Marques */
    .logo-pill { height: 48px; padding: 0 16px; }
    .logo-pill img { max-height: 18px; max-width: 56px; }
    .ae-marques-grid { gap: 8px; }
    .ae-marque-card { height: 48px; padding: 0 14px; }

    /* Salon cards */
    .ae-salons-grid { grid-template-columns: 1fr; }
    .ae-salon-card__body { padding: 16px; }

    /* Salon hero */
    .ae-salon-hero {
        min-height: 300px !important;
        padding: 40px 20px;
    }

    /* Countdown */
    .ae-countdown__unit { min-width: 50px; padding: 10px 6px; }
    .ae-countdown__unit span { font-size: 1.4rem; }
    .ae-countdown__timer { gap: 8px; }

    /* Form */
    .ae-form div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

    /* Footer */
    .ae-footer,
    footer { padding: 40px 20px 24px; }
    .ae-footer__grid,
    .footer-top { grid-template-columns: 1fr !important; gap: 24px !important; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    /* Sticky CTA */
    .ae-sticky-cta__btn { padding: 11px 18px !important; font-size: 11px !important; }
    .sticky { padding: 11px 18px; font-size: 11px; bottom: 12px; right: 12px; }

    /* Blog */
    .ae-blog-grid { grid-template-columns: 1fr; }

    /* Convivial */
    .ae-convivial-grid { grid-template-columns: 1fr; }

    /* Reservation cards */
    .res-card { padding: 28px 20px; }
    .res-title { font-size: 22px; }

    /* Exposants visual */
    .exp-visual { height: auto; display: flex; flex-direction: column; }
    .exp-visual img { height: 220px; }
    .exp-stats { flex-direction: column; position: static; padding: 16px; gap: 8px; }
    .stat-bubble { flex-direction: row; justify-content: center; gap: 8px; padding: 12px; }

    /* Presse */
    .presse-nums { gap: 24px; }
    .pn-num { font-size: 36px; }
    .presse-box { padding: 24px; }
    .presse-actions { flex-direction: column; }

    /* sh header */
    .sh { flex-direction: column; align-items: flex-start; gap: 16px; }
    .sh .btn-outline { width: 100%; justify-content: center; }

    /* Ann */
    .ann { padding: 10px 16px; font-size: 12px; }

    /* Buttons touch-friendly */
    .btn-primary,
    .btn-outline,
    .btn-ghost-hero,
    .btn-green,
    .btn-ghost,
    .btn-res,
    .ae-hero__cta,
    .ae-contact-cta { min-height: 44px; }

    /* 404 */
    .ae-404-page section div[style*="font-size:8rem"] { font-size: 5rem !important; }

    /* Event cards aspect ratio */
    .event-card { aspect-ratio: 4/5; }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE (<=640px)
   ============================================================ */
@media (max-width: 640px) {
    /* Grids to 1 column — except events stay 2x2 */
    .chiffres-grid,
    .pourquoi-cards-grid,
    .ae-features-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }

    /* Reduce section padding further */
    .section-principe,
    .section-chiffres,
    .section-events,
    .section-marques,
    .section-pourquoi-cards,
    .section-pourquoi,
    .section-exposants,
    .section-reservation,
    .section-presse {
        padding: 40px 16px;
    }

    /* Hero further reduction */
    .ae-hero,
    .hero { min-height: 80vh; }
    h1.hero-title,
    .ae-hero__title { font-size: clamp(32px, 9vw, 42px); }
    body.ae-homepage h1.hero-title { font-size: clamp(32px, 9vw, 42px) !important; }
    h1.hero-title span[style*="white-space"] { white-space: normal !important; }
    .hero-sub { font-size: 14px; }
    .hero-actions { gap: 8px; }
    .hero-left { max-width: 100%; overflow: hidden; }
    .btn-primary,
    .ae-hero__cta { padding: 13px 20px; font-size: 13px; }
    .btn-ghost-hero { padding: 13px 18px; font-size: 13px; }

    /* Event cards: 2x2 grid, square, lighter overlay with highlighted text */
    .event-card { aspect-ratio: 1/1; border-radius: 16px; }
    .event-card .ec-bg { filter: brightness(0.55); }
    .event-card:hover .ec-bg { filter: brightness(0.45); }
    .ec-content { padding: 14px 12px; }
    .ec-city { font-size: 8px; letter-spacing: 0.12em; }
    .ec-name { font-size: 14px; margin-bottom: 6px; }
    .ec-info { font-size: 10px; margin-bottom: 2px; background: rgba(0,0,0,0.35); display: inline-block; padding: 2px 6px; border-radius: 4px; }
    .ec-cta { margin-top: 8px; gap: 6px; }
    .btn-ec { font-size: 9px; padding: 6px 10px; }

    /* Chiffre cards */
    .chiffre-card { padding: 24px 20px; }
    .chiffre-num { font-size: clamp(36px, 8vw, 48px); }

    /* Pourquoi cards */
    .pq-card { aspect-ratio: 4/5; }

    /* Reservation */
    .res-card { padding: 24px 16px; }
    .res-title { font-size: 20px; }

    /* Footer */
    footer,
    .ae-footer { padding: 32px 16px 20px; }

    /* Exposants */
    .exp-visual { height: auto; }
    .exp-visual img { height: 180px; }

    /* Presse nums */
    .pn-num { font-size: 28px; }
    .presse-nums { flex-direction: column; gap: 16px; }

    /* Mosaic - already flex carousel from 768px breakpoint */

    /* Body text min size */
    .body-text,
    .ae-blog-card__excerpt,
    .ae-feature-card__text,
    .res-desc,
    .pq-desc { font-size: 14px; }
}

/* ============================================================
   RESPONSIVE - TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
    .ae-container { padding: 0 24px; }
    .ae-section { padding: 80px 0; }

    .ae-chiffres { grid-template-columns: repeat(4, 1fr); }

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

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

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

    .ae-salon-info { grid-template-columns: 1fr 320px; }
    .ae-salon-info__main { order: 1; }
    .ae-salon-info__sidebar { order: 2; }

    .ae-salon-map iframe { height: 400px; }

    .ae-convivial-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
    .ae-container { padding: 0 32px; }
    .ae-section { padding: 100px 0; }

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

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

    .ae-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

    .ae-salon-info { grid-template-columns: 1fr 380px; gap: 40px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.ae-animate {
    opacity: 0;
    transform: translateY(24px);
}
.ae-animate.visible {
    animation: fadeInUp .6s var(--ae-transition) forwards;
}

/* Stagger children */
.ae-stagger > *:nth-child(1) { animation-delay: 0s; }
.ae-stagger > *:nth-child(2) { animation-delay: .1s; }
.ae-stagger > *:nth-child(3) { animation-delay: .2s; }
.ae-stagger > *:nth-child(4) { animation-delay: .3s; }
.ae-stagger > *:nth-child(5) { animation-delay: .4s; }
.ae-stagger > *:nth-child(6) { animation-delay: .5s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .ae-sticky-cta, .sticky, .ae-notif-bar, .ae-france-map, .ticker { display: none !important; }
}

/* ============================================================
   GENERATEPRESS OVERRIDE — must be last
   ============================================================ */
body.ae-homepage,
body.ae-salon-page {
    --accent: #1230AE !important;
    --contrast: #1230AE !important;
    background: var(--white) !important;
    color: var(--navy) !important;
    font-family: 'DM Sans', sans-serif !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    padding: 0 !important;
}
body.ae-homepage a,
body.ae-salon-page a {
    text-decoration: none !important;
    color: inherit !important;
}
/* Force link colors in dark sections */
body.ae-homepage .section-chiffres a,
body.ae-homepage .section-pourquoi-cards a,
body.ae-homepage .section-presse a,
body.ae-homepage .section-presse .btn-ghost,
body.ae-homepage .section-presse .btn-green,
body.ae-homepage .section-presse .presse-email a,
body.ae-homepage .event-card a,
body.ae-homepage footer a {
    color: inherit !important;
}
body.ae-homepage .btn-ghost {
    color: var(--white) !important;
}
body.ae-homepage .btn-ghost:hover {
    color: #fff !important;
}
body.ae-homepage .btn-green {
    color: #fff !important;
}
body.ae-homepage .btn-primary {
    color: #fff !important;
}
body.ae-homepage .btn-outline {
    color: #1230AE !important;
}
body.ae-homepage .presse-email a {
    color: #00D98B !important;
}
body.ae-homepage .btn-res {
    text-decoration: none !important;
}
body.ae-homepage .rc-v .btn-res {
    color: #fff !important;
}
body.ae-homepage .rc-e .btn-res {
    color: #fff !important;
}
body.ae-homepage footer .f-links a {
    color: rgba(255,255,255,0.75) !important;
}
body.ae-homepage footer .f-links a:hover {
    color: #fff !important;
}
/* Single salon page link overrides */
body.ae-salon-page a {
    text-decoration: none !important;
    color: inherit !important;
}
body.ae-salon-page .btn-ic-primary {
    color: #fff !important;
    background: #1230AE !important;
}
body.ae-salon-page .btn-ic-primary:hover {
    color: #fff !important;
    background: #00D98B !important;
}
body.ae-salon-page .btn-ic-ghost {
    color: var(--navy) !important;
}
body.ae-salon-page .btn-ic-ghost:hover {
    color: #fff !important;
}
body.ae-salon-page .btn-cd-primary {
    color: #fff !important;
    background: #00D98B !important;
}
body.ae-salon-page .btn-cd-ghost {
    color: #1230AE !important;
}
body.ae-salon-page .btn-ec,
body.ae-salon-page .btn-primary {
    color: #fff !important;
}
body.ae-salon-page .btn-ghost {
    color: var(--white) !important;
}
body.ae-salon-page footer .f-links a {
    color: rgba(255,255,255,0.75) !important;
}
body.ae-salon-page footer .f-links a:hover {
    color: #fff !important;
}
body.ae-salon-page .rc-v .rc-btn,
body.ae-salon-page .rc-v .btn-res {
    color: #fff !important;
    background: #1230AE !important;
}
body.ae-salon-page .rc-v .rc-btn:hover,
body.ae-salon-page .rc-v .btn-res:hover {
    color: #fff !important;
    background: #00D98B !important;
}
body.ae-salon-page .rc-e .rc-btn,
body.ae-salon-page .rc-e .btn-res {
    color: #fff !important;
    background: #00D98B !important;
}
body.ae-salon-page .ss-rc-v .ss-rc-btn {
    color: #fff !important;
    background: #1230AE !important;
}
body.ae-salon-page .ss-rc-v .ss-rc-btn:hover {
    color: #fff !important;
    background: #00D98B !important;
}
body.ae-salon-page .ss-rc-e .ss-rc-btn {
    color: #fff !important;
    background: #00D98B !important;
}
body.ae-homepage .site-header,
body.ae-homepage .site-footer,
body.ae-homepage .top-bar,
body.ae-homepage #page,
body.ae-homepage .site.grid-container,
body.ae-homepage #site-navigation,
body.ae-homepage .main-navigation,
body.ae-homepage .site-info,
body.ae-salon-page .site-header,
body.ae-salon-page .site-footer,
body.ae-salon-page .top-bar,
body.ae-salon-page #page,
body.ae-salon-page .site.grid-container,
body.ae-salon-page #site-navigation,
body.ae-salon-page .main-navigation,
body.ae-salon-page .site-info {
    display: none !important;
}
/* Force hero layout exactly like maquette */
body.ae-homepage .hero,
body.ae-homepage .ae-hero {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
}
body.ae-homepage .hero-content {
    position: relative !important;
    z-index: 2 !important;
    padding: 0 72px 80px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 48px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}
body.ae-homepage .hero-left {
    max-width: 660px !important;
    flex: 1 !important;
}
body.ae-homepage .hero-dates-card {
    width: 220px !important;
    flex-shrink: 0 !important;
}
body.ae-homepage h1.hero-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: clamp(54px, 7.5vw, 100px) !important;
    font-weight: 800 !important;
    line-height: 0.92 !important;
    color: #fff !important;
    letter-spacing: -0.03em !important;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 4px 40px rgba(0,0,0,0.3) !important;
}
body.ae-homepage h1.hero-title em {
    font-style: italic !important;
    font-family: 'Instrument Serif', serif !important;
    font-weight: 400 !important;
    color: var(--electric) !important;
}
/* Force section backgrounds */
body.ae-homepage .section-principe { background: var(--cream) !important; }
body.ae-homepage .section-chiffres { background: var(--navy) !important; }
body.ae-homepage .section-events { background: var(--white) !important; }
body.ae-homepage .section-marques { background: var(--cream) !important; }
body.ae-homepage .section-pourquoi-cards { background: var(--navy) !important; }
body.ae-homepage .section-exposants { background: var(--white) !important; }
body.ae-homepage .section-reservation { background: var(--cream) !important; }
body.ae-homepage .section-presse { background: var(--navy) !important; }

/* HP marques: static grid, colored, bigger */
/* HP marques: marquee horizontal infini, gros, couleur */
.hp-marques {
    overflow: hidden !important;
    margin-top: 44px;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.hp-marques-inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 16px;
    width: max-content !important;
    animation: hp-logos-scroll 30s linear infinite !important;
}
.hp-marques .logo-pill {
    height: 80px !important;
    padding: 0 32px !important;
    filter: none !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.hp-marques .logo-pill img { max-height: 36px !important; max-width: 120px !important; }
@keyframes hp-logos-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
/* Footer logo bigger */
body.ae-homepage .f-logo img { height: 120px !important; }
